/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.11.9-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: onetruew_wp710
-- ------------------------------------------------------
-- Server version	10.11.9-MariaDB

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

--
-- Table structure for table `wpcx_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wpcx_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) 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) DEFAULT NULL,
  `schedule` longtext DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) 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=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_actionscheduler_actions`
--

LOCK TABLES `wpcx_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wpcx_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wpcx_actionscheduler_actions` VALUES
(26,'action_scheduler/migration_hook','complete','2021-03-30 03:27:15','2021-03-30 03:27:15','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1617074835;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1617074835;}',1,1,'2021-03-30 03:27:22','2021-03-30 03:27:22',0,NULL),
(27,'woocommerce_update_marketplace_suggestions','complete','2021-03-30 03:30:35','2021-03-30 03:30:35','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1617075035;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1617075035;}',0,1,'2021-03-30 03:31:05','2021-03-30 03:31:05',0,NULL);
/*!40000 ALTER TABLE `wpcx_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_actionscheduler_claims`
--

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

--
-- Dumping data for table `wpcx_actionscheduler_claims`
--

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

--
-- Table structure for table `wpcx_actionscheduler_groups`
--

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

--
-- Dumping data for table `wpcx_actionscheduler_groups`
--

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

--
-- Table structure for table `wpcx_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wpcx_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text 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=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_actionscheduler_logs`
--

LOCK TABLES `wpcx_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wpcx_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wpcx_actionscheduler_logs` VALUES
(1,26,'action created','2021-03-30 03:26:15','2021-03-30 03:26:15'),
(2,26,'action started via Async Request','2021-03-30 03:27:22','2021-03-30 03:27:22'),
(3,26,'action complete via Async Request','2021-03-30 03:27:22','2021-03-30 03:27:22'),
(4,27,'action created','2021-03-30 03:30:35','2021-03-30 03:30:35'),
(5,27,'action started via WP Cron','2021-03-30 03:31:05','2021-03-30 03:31:05'),
(6,27,'action complete via WP Cron','2021-03-30 03:31:05','2021-03-30 03:31:05');
/*!40000 ALTER TABLE `wpcx_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_ce4wp_abandoned_checkout`
--

DROP TABLE IF EXISTS `wpcx_ce4wp_abandoned_checkout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_ce4wp_abandoned_checkout` (
  `checkout_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_email` varchar(200) NOT NULL DEFAULT '',
  `checkout_contents` longtext NOT NULL,
  `checkout_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `checkout_updated_ts` int(11) unsigned NOT NULL DEFAULT 0,
  `checkout_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `checkout_created_ts` int(11) unsigned NOT NULL DEFAULT 0,
  `checkout_recovered` datetime DEFAULT '0000-00-00 00:00:00',
  `checkout_recovered_ts` int(11) unsigned DEFAULT 0,
  `checkout_consent` int(11) unsigned NOT NULL DEFAULT 1,
  `checkout_uuid` varchar(36) NOT NULL DEFAULT '',
  PRIMARY KEY (`checkout_id`),
  UNIQUE KEY `checkout_uuid` (`checkout_uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_ce4wp_abandoned_checkout`
--

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

--
-- Table structure for table `wpcx_commentmeta`
--

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

--
-- Dumping data for table `wpcx_commentmeta`
--

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

--
-- Table structure for table `wpcx_comments`
--

DROP TABLE IF EXISTS `wpcx_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) 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 NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) 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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_comments`
--

LOCK TABLES `wpcx_comments` WRITE;
/*!40000 ALTER TABLE `wpcx_comments` DISABLE KEYS */;
INSERT INTO `wpcx_comments` VALUES
(1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-03-30 03:15:01','2021-03-30 03:15:01','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'post-trashed','','comment',0,0);
/*!40000 ALTER TABLE `wpcx_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_e_submissions`
--

DROP TABLE IF EXISTS `wpcx_e_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) DEFAULT NULL,
  `hash_id` varchar(60) NOT NULL,
  `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) unsigned NOT NULL,
  `referer` varchar(500) NOT NULL,
  `referer_title` varchar(300) DEFAULT NULL,
  `element_id` varchar(20) NOT NULL,
  `form_name` varchar(60) NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) NOT NULL,
  `user_agent` text NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_e_submissions`
--

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

--
-- Table structure for table `wpcx_e_submissions_actions_log`
--

DROP TABLE IF EXISTS `wpcx_e_submissions_actions_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_e_submissions_actions_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL,
  `action_name` varchar(60) NOT NULL,
  `action_label` varchar(60) DEFAULT NULL,
  `status` varchar(20) NOT NULL,
  `log` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_e_submissions_actions_log`
--

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

--
-- Table structure for table `wpcx_e_submissions_values`
--

DROP TABLE IF EXISTS `wpcx_e_submissions_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_e_submissions_values`
--

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

--
-- Table structure for table `wpcx_links`
--

DROP TABLE IF EXISTS `wpcx_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) 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) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_links`
--

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

--
-- Table structure for table `wpcx_mailchimp_carts`
--

DROP TABLE IF EXISTS `wpcx_mailchimp_carts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_mailchimp_carts` (
  `id` varchar(255) NOT NULL,
  `email` varchar(100) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `cart` text NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_mailchimp_carts`
--

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

--
-- Table structure for table `wpcx_mailchimp_jobs`
--

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

--
-- Dumping data for table `wpcx_mailchimp_jobs`
--

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

--
-- Table structure for table `wpcx_options`
--

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

--
-- Dumping data for table `wpcx_options`
--

LOCK TABLES `wpcx_options` WRITE;
/*!40000 ALTER TABLE `wpcx_options` DISABLE KEYS */;
INSERT INTO `wpcx_options` VALUES
(1,'siteurl','http://choiceresources.co.uk','yes'),
(2,'home','http://choiceresources.co.uk','yes'),
(3,'blogname','Choice Resources','yes'),
(4,'blogdescription','Christian Homeschool Essentials','yes'),
(5,'users_can_register','0','yes'),
(6,'admin_email','ivankulongo@gmail.com','yes'),
(7,'start_of_week','1','yes'),
(8,'use_balanceTags','0','yes'),
(9,'use_smilies','1','yes'),
(10,'require_name_email','1','yes'),
(11,'comments_notify','1','yes'),
(12,'posts_per_rss','10','yes'),
(13,'rss_use_excerpt','1','yes'),
(14,'mailserver_url','mail.example.com','yes'),
(15,'mailserver_login','login@example.com','yes'),
(16,'mailserver_pass','password','yes'),
(17,'mailserver_port','110','yes'),
(18,'default_category','1','yes'),
(19,'default_comment_status','open','yes'),
(20,'default_ping_status','open','yes'),
(21,'default_pingback_flag','1','yes'),
(22,'posts_per_page','4','yes'),
(23,'date_format','F j, Y','yes'),
(24,'time_format','g:i a','yes'),
(25,'links_updated_date_format','F j, Y g:i a','yes'),
(26,'comment_moderation','0','yes'),
(27,'moderation_notify','1','yes'),
(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),
(29,'rewrite_rules','a:189:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s: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:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:40:\"e-landing-page/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?e-landing-page=$matches[1]&wc-api=$matches[3]\";s:46:\"e-landing-page/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"e-landing-page/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"fb_product_set/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?fb_product_set=$matches[1]&feed=$matches[2]\";s:50:\"fb_product_set/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?fb_product_set=$matches[1]&feed=$matches[2]\";s:31:\"fb_product_set/([^/]+)/embed/?$\";s:47:\"index.php?fb_product_set=$matches[1]&embed=true\";s:43:\"fb_product_set/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?fb_product_set=$matches[1]&paged=$matches[2]\";s:25:\"fb_product_set/([^/]+)/?$\";s:36:\"index.php?fb_product_set=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=57&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),
(30,'hack_file','0','yes'),
(31,'blog_charset','UTF-8','yes'),
(32,'moderation_keys','','no'),
(33,'active_plugins','a:9:{i:0;s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:53:\"facebook-for-woocommerce/facebook-for-woocommerce.php\";i:4;s:59:\"kliken-marketing-for-google/kliken-marketing-for-google.php\";i:5;s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";i:6;s:27:\"updraftplus/updraftplus.php\";i:7;s:55:\"wish-list-for-woocommerce/wish-list-for-woocommerce.php\";i:8;s:27:\"woocommerce/woocommerce.php\";}','yes'),
(34,'category_base','','yes'),
(35,'ping_sites','http://rpc.pingomatic.com/','yes'),
(36,'comment_max_links','2','yes'),
(37,'gmt_offset','0','yes'),
(38,'default_email_category','1','yes'),
(39,'recently_edited','','no'),
(40,'template','storefront','yes'),
(41,'stylesheet','storefront','yes'),
(42,'comment_registration','0','yes'),
(43,'html_type','text/html','yes'),
(44,'use_trackback','0','yes'),
(45,'default_role','subscriber','yes'),
(46,'db_version','49752','yes'),
(47,'uploads_use_yearmonth_folders','1','yes'),
(48,'upload_path','','yes'),
(49,'blog_public','1','yes'),
(50,'default_link_category','2','yes'),
(51,'show_on_front','page','yes'),
(52,'tag_base','','yes'),
(53,'show_avatars','1','yes'),
(54,'avatar_rating','G','yes'),
(55,'upload_url_path','','yes'),
(56,'thumbnail_size_w','150','yes'),
(57,'thumbnail_size_h','150','yes'),
(58,'thumbnail_crop','1','yes'),
(59,'medium_size_w','300','yes'),
(60,'medium_size_h','300','yes'),
(61,'avatar_default','mystery','yes'),
(62,'large_size_w','1024','yes'),
(63,'large_size_h','1024','yes'),
(64,'image_default_link_type','none','yes'),
(65,'image_default_size','','yes'),
(66,'image_default_align','','yes'),
(67,'close_comments_for_old_posts','0','yes'),
(68,'close_comments_days_old','14','yes'),
(69,'thread_comments','1','yes'),
(70,'thread_comments_depth','5','yes'),
(71,'page_comments','0','yes'),
(72,'comments_per_page','50','yes'),
(73,'default_comments_page','newest','yes'),
(74,'comment_order','asc','yes'),
(75,'sticky_posts','a:0:{}','yes'),
(76,'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'),
(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(79,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:55:\"wish-list-for-woocommerce/wish-list-for-woocommerce.php\";a:2:{i:0;s:21:\"Alg_WC_Wish_List_Core\";i:1;s:12:\"on_uninstall\";}}','no'),
(80,'timezone_string','','yes'),
(81,'page_for_posts','10','yes'),
(82,'page_on_front','57','yes'),
(83,'default_post_format','0','yes'),
(84,'link_manager_enabled','0','yes'),
(85,'finished_splitting_shared_terms','1','yes'),
(86,'site_icon','211','yes'),
(87,'medium_large_size_w','768','yes'),
(88,'medium_large_size_h','0','yes'),
(89,'wp_page_for_privacy_policy','3','yes'),
(90,'show_comments_cookies_opt_in','1','yes'),
(91,'admin_email_lifespan','1632626101','yes'),
(92,'disallowed_keys','','no'),
(93,'comment_previously_approved','1','yes'),
(94,'auto_plugin_theme_update_emails','a:0:{}','no'),
(95,'auto_update_core_dev','enabled','yes'),
(96,'auto_update_core_minor','enabled','yes'),
(97,'auto_update_core_major','enabled','yes'),
(98,'initial_db_version','49752','yes'),
(99,'wpcx_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:114:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),
(100,'fresh_site','0','yes'),
(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(102,'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'),
(103,'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'),
(104,'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'),
(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(106,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:8:\"header-1\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),
(107,'cron','a:18:{i:1617233832;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1617234089;a:1:{s:21:\"updraft_backup_resume\";a:1:{s:32:\"92b75fdcc35bea5054cd2ff1fe824237\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:2:{i:0;i:1;i:1;s:12:\"222688351c07\";}}}}i:1617234159;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1617235200;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1617236101;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:1617236774;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1617236780;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1617246901;a:5:{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;}}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;}}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:1617246913;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:1617246914;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1617247011;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1617247575;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1617247583;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1617258373;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1617269173;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1617765301;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:1618370833;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','yes'),
(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(118,'recovery_keys','a:0:{}','yes'),
(119,'theme_mods_twentytwentyone','a:4:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:6:\"footer\";i:3;}s:16:\"background_color\";s:6:\"fbc351\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1617074986;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),
(120,'https_detection_errors','a:0:{}','yes'),
(128,'_site_transient_timeout_browser_72766ab2b1c85af98adbbb9683600fdf','1617678913','no'),
(129,'_site_transient_browser_72766ab2b1c85af98adbbb9683600fdf','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"89.0.4389.90\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
(130,'_site_transient_timeout_php_check_8c0181da100b1c7d1f637c18117d0149','1617678914','no'),
(131,'_site_transient_php_check_8c0181da100b1c7d1f637c18117d0149','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),
(145,'can_compress_scripts','0','no'),
(148,'finished_updating_comment_type','1','yes'),
(155,'recently_activated','a:0:{}','yes'),
(156,'elementor_version','3.1.4','yes'),
(157,'elementor_install_history','a:1:{s:5:\"3.1.4\";i:1617074267;}','yes'),
(159,'_elementor_installed_time','1617074219','yes'),
(160,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:13:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:5:\"Ebook\";i:3;s:9:\"eCommerce\";i:4;s:9:\"Education\";i:5;s:6:\"Events\";i:6;s:18:\"Health and Fitness\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:868:{i:0;a:15:{s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:15:{s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:15:{s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:15:{s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:15:{s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:136;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:15:{s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:15:{s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:456;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:15:{s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:15:{s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:15:{s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:324;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:15:{s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:15:{s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:15:{s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:15:{s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:15:{s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:15:{s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:15:{s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:15:{s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:15:{s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:384;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:15:{s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:789;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:15:{s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:476;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:15:{s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:15:{s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:15:{s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:685;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:15:{s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:15:{s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:15:{s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:15:{s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:15:{s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:15:{s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:15:{s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:15:{s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:638;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:15:{s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:549;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:15:{s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:15:{s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:354;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:15:{s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:15:{s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:15:{s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:15:{s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:683;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:15:{s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:15:{s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:15:{s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:785;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:15:{s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:15:{s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:15:{s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:743;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:15:{s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:637;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:15:{s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:15:{s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:15:{s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:15:{s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:202;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:15:{s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:15:{s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:833;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:15:{s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:15:{s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Health &#038; Fitness &#8211; Aesthetic Clinic\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/health-fitness-aesthetic-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:865;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:15:{s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:15:{s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:363;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:15:{s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:647;s:11:\"trend_index\";i:651;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:15:{s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:15:{s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:15:{s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:15:{s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:15:{s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:15:{s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:15:{s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:473;s:11:\"trend_index\";i:529;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:15:{s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:15:{s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:15:{s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:15:{s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:15:{s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:15:{s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:620;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:15:{s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:71;a:15:{s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:15:{s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:584;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:15:{s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:756;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:15:{s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:15:{s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:15:{s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:15:{s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:15:{s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:15:{s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:15:{s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:785;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:15:{s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:15:{s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:15:{s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:549;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:15:{s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:15:{s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:15:{s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:699;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:15:{s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:15:{s:2:\"id\";i:1190;s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1490707391;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:2;s:11:\"trend_index\";i:2;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:89;a:15:{s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:15:{s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:91;a:15:{s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:15:{s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:437;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:15:{s:2:\"id\";i:225;s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";i:1470829872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:1;s:11:\"trend_index\";i:3;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:94;a:15:{s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:95;a:15:{s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:15:{s:2:\"id\";i:463;s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";i:1477388340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:4;s:11:\"trend_index\";i:1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:97;a:15:{s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:15:{s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:15:{s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:749;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:15:{s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:15:{s:2:\"id\";i:181;s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";i:1470826567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:3;s:11:\"trend_index\";i:4;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:102;a:15:{s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:15:{s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:15:{s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:15:{s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:15:{s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:15:{s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:158;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:15:{s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:15:{s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:15:{s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:791;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:15:{s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:15:{s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:15:{s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:794;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:15:{s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:305;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:15:{s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:62;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:15:{s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:802;s:11:\"trend_index\";i:680;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:15:{s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:15:{s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:15:{s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:15:{s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:121;a:15:{s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:509;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:15:{s:2:\"id\";i:150;s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";i:1470829879;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:6;s:11:\"trend_index\";i:5;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:123;a:15:{s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:124;a:15:{s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:154;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:15:{s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:126;a:15:{s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:15:{s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:128;a:15:{s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:504;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:15:{s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:15:{s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:131;a:15:{s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:15:{s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:815;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:15:{s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:218;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:134;a:15:{s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:15:{s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:15:{s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:137;a:15:{s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:138;a:15:{s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:632;s:11:\"trend_index\";i:276;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:15:{s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:15:{s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:24;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:141;a:15:{s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:462;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:15:{s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:612;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:15:{s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:748;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:15:{s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:15:{s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:15:{s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:7;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:147;a:15:{s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:15:{s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:149;a:15:{s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:150;a:15:{s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:622;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:15:{s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:15:{s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:15:{s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:789;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:154;a:15:{s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:109;s:11:\"trend_index\";i:27;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:155;a:15:{s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:480;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:15:{s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:704;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:15:{s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:158;a:15:{s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:15:{s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:545;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:15:{s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:161;a:15:{s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:491;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:15:{s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:15:{s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:254;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:15:{s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:15:{s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:166;a:15:{s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:15:{s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:849;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:15:{s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:82;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:169;a:15:{s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:383;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:15:{s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:15:{s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:15:{s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:490;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:15:{s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:818;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:15:{s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:440;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:175;a:15:{s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:560;s:11:\"trend_index\";i:473;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:15:{s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:51;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:177;a:15:{s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:15:{s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:15:{s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:15:{s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:377;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:15:{s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:15:{s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:827;s:11:\"trend_index\";i:771;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:15:{s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:397;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:15:{s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:807;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:15:{s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:314;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:15:{s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:164;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:15:{s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:15:{s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:839;s:11:\"trend_index\";i:730;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:15:{s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:841;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:15:{s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:518;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:15:{s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:192;a:15:{s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:15:{s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:15:{s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:85;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:15:{s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:709;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:15:{s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:435;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:15:{s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:863;s:11:\"trend_index\";i:842;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:15:{s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:15:{s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:403;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:15:{s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:864;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:15:{s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:15:{s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:15:{s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:15:{s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:15:{s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:15:{s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:614;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:15:{s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:15:{s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:15:{s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:15:{s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:723;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:15:{s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:828;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:212;a:15:{s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:15:{s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:15:{s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:811;s:11:\"trend_index\";i:765;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:15:{s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:15:{s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:642;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:15:{s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:748;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:15:{s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:852;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:15:{s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:15:{s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:15:{s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:867;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:15:{s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:242;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:15:{s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:746;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:15:{s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:225;a:15:{s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:15:{s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:15:{s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:855;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:15:{s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:15:{s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:15:{s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:851;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:15:{s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:15:{s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:775;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:15:{s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:15:{s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:862;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:15:{s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:15:{s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:15:{s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:798;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:15:{s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:15:{s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:15:{s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:15:{s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:242;a:15:{s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:733;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:15:{s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:693;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:15:{s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:245;a:15:{s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:246;a:15:{s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:232;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:15:{s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:15:{s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:790;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:249;a:15:{s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:15:{s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:251;a:15:{s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:130;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:15:{s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:15:{s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:844;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:15:{s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:698;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:15:{s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:15:{s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:805;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:15:{s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:15:{s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:15:{s:2:\"id\";i:16192;s:5:\"title\";s:30:\"Management App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1607866881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/management-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:33:\"[\"App\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:824;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:15:{s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:311;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:15:{s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:418;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:262;a:15:{s:2:\"id\";i:15839;s:5:\"title\";s:29:\"Chiropractor &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1607855449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/chiropractor-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Business\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:15:{s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:15:{s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:15:{s:2:\"id\";i:15827;s:5:\"title\";s:32:\"Creative Agency &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1607855280;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/creative-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:168:\"[\"Agency\",\"bootstrap\",\"Business\",\"corporate\",\"Landing Pages\",\"Marketing Campaign\",\"Marketing Landing Page\",\"Product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:266;a:15:{s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:15:{s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:235;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:268;a:15:{s:2:\"id\";i:16120;s:5:\"title\";s:37:\"Life coach Tom &#8211; Online Service\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1607865812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/life-coach-tom-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:30:\"[\"Consulting\",\"Landing Pages\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:845;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:15:{s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:15:{s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:15:{s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:15:{s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:687;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:15:{s:2:\"id\";i:16059;s:5:\"title\";s:34:\"Melbourne Conference &#8211; Event\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1607864236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/melbourne-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:15:{s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:15:{s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:15:{s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:15:{s:2:\"id\";i:16073;s:5:\"title\";s:56:\"International Women&#8217;s Day Conference &#8211; Event\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1607864979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/international-womens-day-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:774;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:15:{s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:15:{s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:182;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:15:{s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:547;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:15:{s:2:\"id\";i:16085;s:5:\"title\";s:29:\"Tech Conference &#8211; Event\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1607865227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/tech-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:846;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:15:{s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:524;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:15:{s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:15:{s:2:\"id\";i:16102;s:5:\"title\";s:38:\"Environmental Conference &#8211; Event\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1607865473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/environmental-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:830;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:15:{s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:15:{s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:534;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:15:{s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:834;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:15:{s:2:\"id\";i:15931;s:5:\"title\";s:37:\"Tokyo Design Conference &#8211; Event\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1607861271;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/tokyo-design-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:813;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:15:{s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:15:{s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:15:{s:2:\"id\";i:16412;s:5:\"title\";s:36:\"Photography Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1607869919;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/photography-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:52:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:860;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:15:{s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:15:{s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:15:{s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:335;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:295;a:15:{s:2:\"id\";i:16183;s:5:\"title\";s:32:\"Luxury Homes &#8211; Real Estate\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1607866726;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:835;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:15:{s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:15:{s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:298;a:15:{s:2:\"id\";i:16420;s:5:\"title\";s:36:\"Spring Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1607899243;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/spring-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Coupon\",\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:847;s:11:\"trend_index\";i:830;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:15:{s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:772;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:15:{s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:472;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:15:{s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:15:{s:2:\"id\";i:16427;s:5:\"title\";s:34:\"Dream Car Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1607934325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/dream-car-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:53:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Offer\",\"Sale\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:812;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:15:{s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:696;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:15:{s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:305;a:15:{s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:15:{s:2:\"id\";i:16433;s:5:\"title\";s:42:\"Leshnik Mega Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1607934474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/leshnik-mega-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:45:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:770;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:15:{s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:162;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:15:{s:2:\"id\";i:12805;s:5:\"title\";s:38:\"Photography &#8211; B&#038;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:15:{s:2:\"id\";i:15986;s:5:\"title\";s:40:\"From Freelance to Business &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1607862915;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/from-freelance-to-business-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:143:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"Landing Pages\",\"Marketing\",\"Product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:836;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:15:{s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:195;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:311;a:15:{s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:15:{s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:104;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:15:{s:2:\"id\";i:16002;s:5:\"title\";s:30:\"Architect Manual &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1607863075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/architect-manual-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:833;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:15:{s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:15:{s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:15:{s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:15:{s:2:\"id\";i:16014;s:5:\"title\";s:23:\"Good Life &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1607863305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/lp/good-life-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:15:{s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:292;s:11:\"trend_index\";i:338;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:15:{s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:535;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:15:{s:2:\"id\";i:16242;s:5:\"title\";s:37:\"Fashion Season Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1607867761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/fashion-season-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:15:{s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:15:{s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:15:{s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:15:{s:2:\"id\";i:16202;s:5:\"title\";s:39:\"Starlight Nation Festival &#8211; Event\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1607867113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/starlight-nation-festival-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:15:{s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:707;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:15:{s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:15:{s:2:\"id\";i:16139;s:5:\"title\";s:37:\"Financial Consultant &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1607866334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/financial-consultant-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:40:\"[\"Consulting\",\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:825;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:15:{s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:15:{s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:342;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:15:{s:2:\"id\";i:15822;s:5:\"title\";s:30:\"Family Vacation &#8211; Travel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1607855143;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/family-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:331;a:15:{s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:773;s:11:\"trend_index\";i:843;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:15:{s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:15:{s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:388;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:15:{s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:257;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:15:{s:2:\"id\";i:15964;s:5:\"title\";s:31:\"Law Convention &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-â€“-Landing-Page.png\";s:12:\"tmpl_created\";i:1607862731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/law-convention-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:36:\"[\"Convention\",\"Landing Pages\",\"Law\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:853;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:15:{s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:502;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:15:{s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:15:{s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:15:{s:2:\"id\";i:15910;s:5:\"title\";s:38:\"Litigation Law Office &#8211; Business\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1607860827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/litigation-law-office-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:32:\"[\"Landing Pages\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:822;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:15:{s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:15:{s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:342;a:15:{s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:309;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:15:{s:2:\"id\";i:16025;s:5:\"title\";s:33:\"Conoco Mobile App &#8211; Product\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1607863511;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/conoco-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:15:{s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:286;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:15:{s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:15:{s:2:\"id\";i:15853;s:5:\"title\";s:29:\"Me Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1607857451;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/me-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:15:{s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:15:{s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:349;a:15:{s:2:\"id\";i:15844;s:5:\"title\";s:32:\"Torel Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1607856863;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/torel-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:15:{s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:443;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:15:{s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:15:{s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:15:{s:2:\"id\";i:16041;s:5:\"title\";s:31:\"Nano Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1607863992;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:15:{s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:15:{s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:15:{s:2:\"id\";i:15890;s:5:\"title\";s:39:\"Personal Trainer &#8211; Online Service\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1607860512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-trainer-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:35:\"[\"Fitness\",\"Landing Pages\",\"Sport\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:837;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:15:{s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:15:{s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:359;a:15:{s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:15:{s:2:\"id\";i:16233;s:5:\"title\";s:36:\"Journey Photography &#8211; Business\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1607867416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/journey-photography-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:42:\"[\"Business\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:788;s:11:\"trend_index\";i:644;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:15:{s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:128;s:11:\"trend_index\";i:79;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:15:{s:2:\"id\";i:9139;s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1532949924;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:7;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:15:{s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:15:{s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:15:{s:2:\"id\";i:16162;s:5:\"title\";s:29:\"Private Chef &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1607866578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/private-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:24:\"[\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:840;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:15:{s:2:\"id\";i:1634;s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1494352119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:223;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:15:{s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:329;s:11:\"trend_index\";i:259;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:15:{s:2:\"id\";i:16325;s:5:\"title\";s:28:\"Quality Lens &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1607868782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/quality-lens-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:369;a:15:{s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:15:{s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:15:{s:2:\"id\";i:16332;s:5:\"title\";s:31:\"Luxury Flat &#8211; Real Estate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1607868929;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/luxury-flat-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:38:\"[\"flat\",\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:809;s:11:\"trend_index\";i:708;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:372;a:15:{s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:15:{s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:15:{s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1607869068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:375;a:15:{s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:196;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:15:{s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:377;a:15:{s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:827;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:15:{s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:15:{s:2:\"id\";i:16358;s:5:\"title\";s:41:\"Sunset Valley Project &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1607869234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/sunset-valley-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:842;s:11:\"trend_index\";i:836;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:15:{s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:15:{s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:65;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:382;a:15:{s:2:\"id\";i:1504;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1494352112;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:15:{s:2:\"id\";i:16379;s:5:\"title\";s:33:\"Property Page &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1607869379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/property-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:42:\"[\"Landing Pages\",\"Property\",\"Real estate\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:15:{s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:385;a:15:{s:2:\"id\";i:16392;s:5:\"title\";s:30:\"Open House &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1607869551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:150:\"[\"Agent\",\"Business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"Landing Pages\",\"listing\",\"modern\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:838;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:15:{s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:19;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:387;a:15:{s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:15:{s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:389;a:15:{s:2:\"id\";i:15950;s:5:\"title\";s:30:\"Stylist &#8211; Online Service\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1607862286;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/stylist-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:162:\"[\"cosmetics\",\"Fashion\",\"girly\",\"hairdresser\",\"Landing Pages\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"Products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:737;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:15:{s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:15:{s:2:\"id\";i:16253;s:5:\"title\";s:33:\"Bicycle Adventures &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1607867944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/bicycle-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:36:\"[\"Bicycle\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:392;a:15:{s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:393;a:15:{s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:15:{s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:15:{s:2:\"id\";i:16271;s:5:\"title\";s:42:\"Luxury Travel Destinations  &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1607868120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/luxury-travel-destinations-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:768;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:15:{s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:164;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:15:{s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:398;a:15:{s:2:\"id\";i:16283;s:5:\"title\";s:29:\"Vacation Deals &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1607868279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/vacation-deals-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:850;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:15:{s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:621;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:15:{s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:401;a:15:{s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:15:{s:2:\"id\";i:1503;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1494352113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:15:{s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:15:{s:2:\"id\";i:16299;s:5:\"title\";s:29:\"New Adventures &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1607868454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/new-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:50:\"[\"Adventures\",\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:15:{s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:15:{s:2:\"id\";i:16312;s:5:\"title\";s:26:\"Summer Time &#8211; Travel\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-â€“-Landing-Page.png\";s:12:\"tmpl_created\";i:1607868625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/summer-time-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:829;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:15:{s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:408;a:15:{s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:15:{s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:15:{s:2:\"id\";i:15870;s:5:\"title\";s:32:\"Tel Aviv Vacation &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1607860195;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/tel-aviv-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:804;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:411;a:15:{s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:15:{s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:413;a:15:{s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:320;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:15:{s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:15:{s:2:\"id\";i:16440;s:5:\"title\";s:31:\"Marketing Webinar &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1607934662;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/marketing-webinar-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:37:\"[\"Event\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:794;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:416;a:15:{s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:417;a:15:{s:2:\"id\";i:16212;s:5:\"title\";s:33:\"Wedding Celebration &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1607867299;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/wedding-celebration-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:35:\"[\"Event\",\"Landing Pages\",\"Wedding\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:688;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:418;a:15:{s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:419;a:15:{s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:15:{s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:839;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:15:{s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:247;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:422;a:15:{s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:15:{s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:424;a:15:{s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:487;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:15:{s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:499;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:15:{s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:427;a:15:{s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:15:{s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:15:{s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:15:{s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:15:{s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:15:{s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:15:{s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:434;a:15:{s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:506;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:15:{s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:15:{s:2:\"id\";i:519;s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";i:1477388808;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:10;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:437;a:15:{s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:15:{s:2:\"id\";i:487;s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1477388357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:439;a:15:{s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:516;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:15:{s:2:\"id\";i:855;s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1494352061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:15:{s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:15:{s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:15:{s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:15:{s:2:\"id\";i:955;s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1494352069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:15:{s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:446;a:15:{s:2:\"id\";i:9373;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1542811219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:469;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:15:{s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:15:{s:2:\"id\";i:974;s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1494352071;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:15:{s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:450;a:15:{s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:15:{s:2:\"id\";i:11948;s:5:\"title\";s:18:\"Maintenance Mode 3\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm3.png\";s:12:\"tmpl_created\";i:1572153978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:452;a:15:{s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:15:{s:2:\"id\";i:754;s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";i:1485269691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:251;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:15:{s:2:\"id\";i:752;s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";i:1485269737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:466;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:15:{s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:456;a:15:{s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:457;a:15:{s:2:\"id\";i:753;s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";i:1485269710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:15:{s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:15:{s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"dance studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:15:{s:2:\"id\";i:751;s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";i:1485269743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:257;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:461;a:15:{s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"dance studio\",\"footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:15:{s:2:\"id\";i:2402;s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";i:1506441447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:15:{s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"dance studio\",\"header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:370;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:15:{s:2:\"id\";i:3626;s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";i:1513513193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:407;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:15:{s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:657;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:15:{s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"footer\",\"marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:175;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:15:{s:2:\"id\";i:11966;s:5:\"title\";s:18:\"Maintenance mode 4\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm4.png\";s:12:\"tmpl_created\";i:1572154274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:15:{s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"header\",\"marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:15:{s:2:\"id\";i:3632;s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";i:1513513171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:222;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:15:{s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:15:{s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:302;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:15:{s:2:\"id\";i:3619;s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";i:1513513137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:15:{s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:15:{s:2:\"id\";i:9425;s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";i:1542901234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:360;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:15:{s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:15:{s:2:\"id\";i:11973;s:5:\"title\";s:18:\"Maintenance mode 5\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm5.png\";s:12:\"tmpl_created\";i:1572154523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:15:{s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:478;a:15:{s:2:\"id\";i:11981;s:5:\"title\";s:18:\"Maintenance mode 6\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm6.png\";s:12:\"tmpl_created\";i:1572155125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:409;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:15:{s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:157;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:480;a:15:{s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:211;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:15:{s:2:\"id\";i:147;s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";i:1470829868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:5;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:482;a:15:{s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:483;a:15:{s:2:\"id\";i:777;s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";i:1485273092;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:15:{s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:485;a:15:{s:2:\"id\";i:2404;s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";i:1506441452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:15:{s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:425;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:487;a:15:{s:2:\"id\";i:492;s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";i:1477388365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:14;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:488;a:15:{s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:160;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:489;a:15:{s:2:\"id\";i:3451;s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";i:1512054116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:15:{s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:15:{s:2:\"id\";i:2152;s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";i:1499774132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:381;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:15:{s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:493;a:15:{s:2:\"id\";i:1068;s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";i:1488805928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:15:{s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:464;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:495;a:15:{s:2:\"id\";i:2813;s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-â€“-Home-Page.png\";s:12:\"tmpl_created\";i:1509615049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:15:{s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:497;a:15:{s:2:\"id\";i:728;s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";i:1485269993;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:15:{s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:15:{s:2:\"id\";i:2403;s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";i:1506441428;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:15:{s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:15:{s:2:\"id\";i:1903;s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";i:1496822325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:15:{s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:503;a:15:{s:2:\"id\";i:2123;s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";i:1499772989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:11;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:504;a:15:{s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:107;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:15:{s:2:\"id\";i:1888;s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";i:1496822319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:315;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:15:{s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:360;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:15:{s:2:\"id\";i:1891;s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";i:1496822323;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:786;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:15:{s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:509;a:15:{s:2:\"id\";i:1880;s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";i:1496822317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:15:{s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:543;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:15:{s:2:\"id\";i:1885;s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";i:1496822321;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:15:{s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:15:{s:2:\"id\";i:2723;s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-â€“-Portfolio.png\";s:12:\"tmpl_created\";i:1509633883;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:15:{s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:15:{s:2:\"id\";i:2145;s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";i:1499774125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:15:{s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:15:{s:2:\"id\";i:2155;s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";i:1499774130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:15:{s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:89;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:15:{s:2:\"id\";i:1085;s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";i:1488810874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:8;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:15:{s:2:\"id\";i:143;s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";i:1470820447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:28;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:15:{s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:15:{s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:523;a:15:{s:2:\"id\";i:101;s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";i:1470829785;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:54;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:15:{s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:525;a:15:{s:2:\"id\";i:140;s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";i:1470820463;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:18;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:15:{s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:462;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:527;a:15:{s:2:\"id\";i:213;s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";i:1470829766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:20;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:15:{s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:405;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:529;a:15:{s:2:\"id\";i:2802;s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-â€“-Portfolio.png\";s:12:\"tmpl_created\";i:1509615440;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:15:{s:2:\"id\";i:2828;s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-â€“-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:531;a:15:{s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:15:{s:2:\"id\";i:1461;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1494352121;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:15:{s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:15:{s:2:\"id\";i:1460;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1494352124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:15:{s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:15:{s:2:\"id\";i:1459;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1494352125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:367;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:15:{s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:538;a:15:{s:2:\"id\";i:1052;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1488810873;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:47;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:15:{s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:540;a:15:{s:2:\"id\";i:1505;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1494352110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:15:{s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:542;a:15:{s:2:\"id\";i:726;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1485270062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:15:{s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:15:{s:2:\"id\";i:1613;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1494352129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:503;s:11:\"trend_index\";i:530;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:15:{s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:74;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:15:{s:2:\"id\";i:1612;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1494352127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:15:{s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:15:{s:2:\"id\";i:1614;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1494352131;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:15:{s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:98;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:15:{s:2:\"id\";i:906;s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1494352066;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:15:{s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:15:{s:2:\"id\";i:879;s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1494352064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:15:{s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:15:{s:2:\"id\";i:926;s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1494352068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:461;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:15:{s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:15:{s:2:\"id\";i:1032;s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1488810866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:460;s:11:\"trend_index\";i:678;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:15:{s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:15:{s:2:\"id\";i:730;s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1485273430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:15:{s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:15:{s:2:\"id\";i:643;s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1481549290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:15:{s:2:\"id\";i:542;s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1477388484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:404;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:15:{s:2:\"id\";i:1187;s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1490707385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:165;s:16:\"popularity_index\";i:53;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:15:{s:2:\"id\";i:641;s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1481549264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:15:{s:2:\"id\";i:189;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1470820715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:16;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:15:{s:2:\"id\";i:1547;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1494352115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:374;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:15:{s:2:\"id\";i:1546;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1494352116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:15:{s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:15:{s:2:\"id\";i:1545;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1494352118;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:418;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:15:{s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:15:{s:2:\"id\";i:2714;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-â€“-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:410;s:11:\"trend_index\";i:670;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:15:{s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:15:{s:2:\"id\";i:195;s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1470820765;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:573;a:15:{s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:15:{s:2:\"id\";i:197;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1470825711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:575;a:15:{s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:15:{s:2:\"id\";i:1193;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1490707422;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:86;s:11:\"trend_index\";i:317;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:577;a:15:{s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:15:{s:2:\"id\";i:1415;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1494352106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:15:{s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:15:{s:2:\"id\";i:1414;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1494352107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:15:{s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:15:{s:2:\"id\";i:1413;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1494352109;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:486;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:15:{s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:15:{s:2:\"id\";i:1573;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1494352133;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:15:{s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:15:{s:2:\"id\";i:1572;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1494352134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:15:{s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:15:{s:2:\"id\";i:1570;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1494352136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:15:{s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:15:{s:2:\"id\";i:1571;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1494352138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:15:{s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:15:{s:2:\"id\";i:192;s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1470820734;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:300;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:593;a:15:{s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:15:{s:2:\"id\";i:2141;s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";i:1499774122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:358;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:15:{s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:15:{s:2:\"id\";i:137;s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";i:1470829828;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:55;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:597;a:15:{s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:26;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:15:{s:2:\"id\";i:256;s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";i:1470829796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:599;a:15:{s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:16;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:15:{s:2:\"id\";i:2150;s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";i:1499774127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:601;a:15:{s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:15:{s:2:\"id\";i:223;s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";i:1470820471;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:603;a:15:{s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:15:{s:2:\"id\";i:24;s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";i:1470248619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:12;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:605;a:15:{s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:15:{s:2:\"id\";i:184;s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";i:1470829889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:25;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:607;a:15:{s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:15:{s:2:\"id\";i:625;s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";i:1481549196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:15:{s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:610;a:15:{s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:15:{s:2:\"id\";i:187;s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";i:1470829892;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:403;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:612;a:15:{s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:613;a:15:{s:2:\"id\";i:238;s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";i:1470829865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:15:{s:2:\"id\";i:647;s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";i:1481549320;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:15:{s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:623;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:15:{s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:61;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:15:{s:2:\"id\";i:2138;s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";i:1499774119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:616;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:15:{s:2:\"id\";i:823;s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";i:1485272966;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:382;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:15:{s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:620;a:15:{s:2:\"id\";i:824;s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";i:1485272900;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:15:{s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:15:{s:2:\"id\";i:825;s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";i:1485272513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:623;a:15:{s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:15:{s:2:\"id\";i:245;s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";i:1470829876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:625;a:15:{s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:15:{s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:627;a:15:{s:2:\"id\";i:1075;s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";i:1488810871;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:210;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:628;a:15:{s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:629;a:15:{s:2:\"id\";i:1051;s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";i:1488810869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:17;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:630;a:15:{s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:355;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:15:{s:2:\"id\";i:1245;s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";i:1491207184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:258;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:15:{s:2:\"id\";i:1247;s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";i:1491207138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:35;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:633;a:15:{s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:15:{s:2:\"id\";i:1248;s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";i:1491207050;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:423;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:15:{s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"business\",\"footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:15:{s:2:\"id\";i:1249;s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";i:1491207380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:470;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:15:{s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"business\",\"header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:15:{s:2:\"id\";i:1250;s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";i:1491207450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:639;a:15:{s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:245;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:15:{s:2:\"id\";i:1260;s:5:\"title\";s:18:\"Maintenance Mode 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";i:1491207507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:504;s:11:\"trend_index\";i:610;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:15:{s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:15:{s:2:\"id\";i:1261;s:5:\"title\";s:18:\"Maintenance Mode 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";i:1491207584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:215;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:643;a:15:{s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:604;s:11:\"trend_index\";i:271;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:15:{s:2:\"id\";i:1272;s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";i:1491207674;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:296;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:15:{s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:15:{s:2:\"id\";i:1279;s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";i:1491207756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:160;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:647;a:15:{s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:321;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:15:{s:2:\"id\";i:1745;s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";i:1494849745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:290;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:15:{s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:15:{s:2:\"id\";i:1742;s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";i:1494849744;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:469;s:11:\"trend_index\";i:625;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:15:{s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:15:{s:2:\"id\";i:1748;s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";i:1494849742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:313;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:15:{s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:390;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:15:{s:2:\"id\";i:3963;s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";i:1516284821;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:238;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:15:{s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:386;s:11:\"trend_index\";i:394;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:15:{s:2:\"id\";i:3969;s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";i:1516284829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:15:{s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:36;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:15:{s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:15:{s:2:\"id\";i:3966;s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";i:1516284839;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:15:{s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:15:{s:2:\"id\";i:3972;s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";i:1516284847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:594;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:15:{s:2:\"id\";i:2080;s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";i:1508161124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:355;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:15:{s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:15:{s:2:\"id\";i:2088;s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";i:1508161129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:15:{s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"footer\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:363;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:15:{s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"header\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:15:{s:2:\"id\";i:2085;s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";i:1508161134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:15:{s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:15:{s:2:\"id\";i:2462;s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-â€“-about.png\";s:12:\"tmpl_created\";i:1508243317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:15:{s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:592;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:15:{s:2:\"id\";i:2362;s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";i:1508243335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:15:{s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:15:{s:2:\"id\";i:614;s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";i:1481549169;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:15:{s:2:\"id\";i:2126;s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";i:1508325849;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:271;s:11:\"trend_index\";i:325;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:15:{s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:15:{s:2:\"id\";i:2129;s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";i:1508325881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:15:{s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:15:{s:2:\"id\";i:2135;s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";i:1508325922;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:15:{s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:447;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:15:{s:2:\"id\";i:2094;s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";i:1509621053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:269;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:15:{s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:15:{s:2:\"id\";i:2120;s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";i:1509631820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:416;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:15:{s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:371;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:15:{s:2:\"id\";i:3153;s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";i:1508950132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:15:{s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:344;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:15:{s:2:\"id\";i:3338;s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";i:1511203351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:835;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:15:{s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:15:{s:2:\"id\";i:3339;s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";i:1511203636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:15:{s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:15:{s:2:\"id\";i:3335;s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";i:1511203246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:15:{s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:517;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:15:{s:2:\"id\";i:3340;s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";i:1511203713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:15:{s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:15:{s:2:\"id\";i:3517;s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";i:1513877937;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:15:{s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:15:{s:2:\"id\";i:3734;s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";i:1514197794;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:15:{s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:15:{s:2:\"id\";i:3764;s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";i:1514198234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:15:{s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:15:{s:2:\"id\";i:3565;s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";i:1514204382;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:454;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:15:{s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:15:{s:2:\"id\";i:3862;s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";i:1514206745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:471;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:15:{s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:690;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:15:{s:2:\"id\";i:3777;s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";i:1514205420;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:15:{s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:588;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:15:{s:2:\"id\";i:420;s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";i:1475067229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:22;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:707;a:15:{s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:15:{s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:425;s:11:\"trend_index\";i:252;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:15:{s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:15:{s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:576;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:15:{s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:444;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:15:{s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:249;s:11:\"trend_index\";i:141;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:15:{s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:15:{s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:15:{s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:15:{s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:717;a:15:{s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:15:{s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:715;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:15:{s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:15:{s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:15:{s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:15:{s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:15:{s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:15:{s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:15:{s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:275;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:15:{s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:15:{s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:15:{s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:15:{s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:15:{s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:731;a:15:{s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:15:{s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:550;s:11:\"trend_index\";i:719;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:15:{s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:15:{s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:406;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:15:{s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:15:{s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:796;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:15:{s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:15:{s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:15:{s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:575;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:15:{s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:593;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:15:{s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:580;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:15:{s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:512;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:15:{s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:15:{s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:747;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:15:{s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:798;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:15:{s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:799;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:15:{s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:498;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:15:{s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:15:{s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:15:{s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:15:{s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:72;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:15:{s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:48;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:15:{s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:573;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:15:{s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:15:{s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:15:{s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:366;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:15:{s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:15:{s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:759;a:15:{s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:15:{s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:15:{s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:15:{s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:15:{s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:191;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:15:{s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:765;a:15:{s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:766;a:15:{s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:200;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:15:{s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:768;a:15:{s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:769;a:15:{s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:770;a:15:{s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:771;a:15:{s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:772;a:15:{s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:15:{s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:774;a:15:{s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:15:{s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:15:{s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:15:{s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:15:{s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:15:{s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:174;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:15:{s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:15:{s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:293;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:782;a:15:{s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:141;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:783;a:15:{s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:126;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:15:{s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:785;a:15:{s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:15:{s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:787;a:15:{s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:788;a:15:{s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:789;a:15:{s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:790;a:15:{s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:15:{s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:792;a:15:{s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:15:{s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:794;a:15:{s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:15:{s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:32;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:15:{s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:68;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:15:{s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:15:{s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:15:{s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:800;a:15:{s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:427;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:15:{s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:15:{s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:561;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:15:{s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:804;a:15:{s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:15:{s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:806;a:15:{s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:807;a:15:{s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:15:{s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:448;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:15:{s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:810;a:15:{s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:364;s:11:\"trend_index\";i:762;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:15:{s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:266;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:812;a:15:{s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:15:{s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:15:{s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:518;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:15:{s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:15:{s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:263;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:15:{s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:818;a:15:{s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:426;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:15:{s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:370;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:820;a:15:{s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:107;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:821;a:15:{s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:822;a:15:{s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:823;a:15:{s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:165;s:11:\"trend_index\";i:422;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:824;a:15:{s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:825;a:15:{s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:826;a:15:{s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:174;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:827;a:15:{s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:573;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:828;a:15:{s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:829;a:15:{s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:283;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:830;a:15:{s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:306;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:831;a:15:{s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:832;a:15:{s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:833;a:15:{s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:834;a:15:{s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:835;a:15:{s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:836;a:15:{s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:446;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:837;a:15:{s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:838;a:15:{s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:839;a:15:{s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:566;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:840;a:15:{s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:400;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:841;a:15:{s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:842;a:15:{s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:455;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:843;a:15:{s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:844;a:15:{s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:439;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:845;a:15:{s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:846;a:15:{s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:847;a:15:{s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:848;a:15:{s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:254;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:849;a:15:{s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:850;a:15:{s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:415;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:851;a:15:{s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:682;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:852;a:15:{s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:853;a:15:{s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:376;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:854;a:15:{s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:855;a:15:{s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:601;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:856;a:15:{s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:857;a:15:{s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:858;a:15:{s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:859;a:15:{s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:595;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:860;a:15:{s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:861;a:15:{s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:862;a:15:{s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:528;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:863;a:15:{s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:646;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:864;a:15:{s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:414;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:865;a:15:{s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:594;s:11:\"trend_index\";i:219;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:866;a:15:{s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:674;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:867;a:15:{s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:461;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),
(161,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:55:\"What Is Material Design? Definition, Uses, and Examples\";s:7:\"excerpt\";s:147:\"Material Design is the standard for designing and creating websites and apps. Discover why and learn how to use it to make a user-friendly website.\";s:7:\"created\";i:1612263675;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/what-is-material-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:53:\"Elementor SEO: How To Optimize Your Elementor Website\";s:7:\"excerpt\";s:154:\"SEO is crucial to the success of any website, but to many users, it still remains a mystery. Discover what SEO is and how to use it to optimize your site.\";s:7:\"created\";i:1611838485;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:113:\"https://elementor.com/blog/elementor-seo/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.1: Experiments, Performance Enhancements, And a New Landing Page Workflow\";s:7:\"excerpt\";s:162:\"The new Elementor version 3.1 features performance improvements, a new Landing Page area and workflow to manage your marketing pages, and exploratory experiments.\";s:7:\"created\";i:1611665700;s:5:\"badge\";s:11:\"New Feature\";s:3:\"url\";s:125:\"https://elementor.com/blog/introducing-elementor-3-1/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:33:\"How To Redirect URLs in WordPress\";s:7:\"excerpt\";s:152:\"Redirecting visitors from one page to another is an important part of website maintenance. Explore all the reasons for redirects and how to create them.\";s:7:\"created\";i:1611143960;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/redirect-url-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:33:\"How to Create the Perfect Favicon\";s:7:\"excerpt\";s:140:\"Favicons are an integral part of building up your brand and a recognizable website. Understand what they are, and how to use them correctly.\";s:7:\"created\";i:1610975844;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/favicon-complete-guide/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),
(166,'elementor_pro_version','3.2.1','yes'),
(167,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(168,'_elementor_pro_installed_time','1617074267','yes'),
(169,'elementor_submissions_db_version','5','yes'),
(170,'elementor_connect_site_key','a7576c8703252387d27fb4331bf66a83','yes'),
(171,'elementor_allow_tracking','yes','yes'),
(172,'elementor_tracker_last_send','1617074373','yes'),
(173,'elementor_pro_license_key','ep-YB85kxhPI6n4D9UmfN1F1616877823ijYZhLE4DLFk','yes'),
(174,'_elementor_pro_license_data_fallback','a:2:{s:7:\"timeout\";i:1617286143;s:5:\"value\";s:372:\"{\"expires\":\"2022-03-27 20:37:44\",\"payment_id\":10254663,\"subscription_id\":10254663,\"customer_name\":\"Amna Kulongo\",\"customer_email\":\"amnakulongo@gmail.com\",\"price_id\":1,\"license_limit\":1,\"site_count\":1,\"activations_left\":0,\"success\":true,\"license\":\"valid\",\"item_id\":6630546,\"item_name\":\"Elementor Pro - Personal\",\"subscriptions\":\"enable\",\"checksum\":\"checksum\",\"features\":[]}\";}','yes'),
(175,'_elementor_pro_license_data','a:2:{s:7:\"timeout\";i:1617242943;s:5:\"value\";s:372:\"{\"expires\":\"2022-03-27 20:37:44\",\"payment_id\":10254663,\"subscription_id\":10254663,\"customer_name\":\"Amna Kulongo\",\"customer_email\":\"amnakulongo@gmail.com\",\"price_id\":1,\"license_limit\":1,\"site_count\":1,\"activations_left\":0,\"success\":true,\"license\":\"valid\",\"item_id\":6630546,\"item_name\":\"Elementor Pro - Personal\",\"subscriptions\":\"enable\",\"checksum\":\"checksum\",\"features\":[]}\";}','yes'),
(176,'_elementor_pro_api_requests_lock','a:2:{s:16:\"get_license_data\";i:1617199743;s:11:\"get_version\";i:1617230551;}','yes'),
(181,'elementor_active_kit','12','yes'),
(182,'elementor_fonts_manager_font_types','a:0:{}','yes'),
(183,'elementor_fonts_manager_fonts','a:0:{}','yes'),
(184,'elementor_custom_icon_sets_config','a:0:{}','yes'),
(185,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),
(186,'elementor_pro_theme_builder_conditions','a:4:{s:7:\"archive\";a:1:{i:444;a:1:{i:0;s:28:\"include/archive/post_archive\";}}s:6:\"single\";a:1:{i:410;a:1:{i:0;s:21:\"include/singular/post\";}}s:6:\"footer\";a:1:{i:49;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:43;a:1:{i:0;s:15:\"include/general\";}}}','yes'),
(188,'elementor_pro_remote_info_api_data_3.2.1','a:2:{s:7:\"timeout\";i:1617273752;s:5:\"value\";s:99:\"{\"stable_version\":\"3.2.1\",\"last_updated\":\"2021-03-21 15:44:17\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:117763:\\\"<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-16<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-16<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor Pro v3.1<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code> <\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant `<\\/li>\\n<\\/ul>\\n<p>` tags added to Single Template posts<\\/p>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix: Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&amp;gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>` to avoid 500 error when<\\/code>mod-headers` is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorPro\\\\Modules\\\\Forms\\\\Classes\\\\Action_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.2.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"5.7.0\",\"elementor_requires\":\"3.0.1\",\"package\":\"http:\\/\\/my.elementor.com\\/edd-sl\\/package_download\\/MTYxNzMxNjk1MzplcC1ZQjg1a3hoUEk2bjREOVVtZk4xRjE2MTY4Nzc4MjNpallaaExFNERMRms6MTpiODVhNTQ3ZmJmNWRjNWRmMGNiNTExZGVjZDY4MGMwODpodHRwQC8vY2hvaWNlcmVzb3VyY2VzLmNvLnVrOjA=\",\"download_link\":\"http:\\/\\/my.elementor.com\\/edd-sl\\/package_download\\/MTYxNzMxNjk1MzplcC1ZQjg1a3hoUEk2bjREOVVtZk4xRjE2MTY4Nzc4MjNpallaaExFNERMRms6MTpiODVhNTQ3ZmJmNWRjNWRmMGNiNTExZGVjZDY4MGMwODpodHRwQC8vY2hvaWNlcmVzb3VyY2VzLmNvLnVrOjA=\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.2.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"5.7.0\",\"elementor_requires\":\"3.0.1\",\"package\":\"http:\\/\\/my.elementor.com\\/edd-sl\\/previous_download\\/MTYxNzMxNjk1MzplcC1ZQjg1a3hoUEk2bjREOVVtZk4xRjE2MTY4Nzc4MjNpallaaExFNERMRms6MTozLjIuMDplMDE4MmVlMjdhNjM5YTEwYmEyZjdhN2IzMWI3N2EwNzpodHRwQC8vY2hvaWNlcmVzb3VyY2VzLmNvLnVr\",\"download_link\":\"http:\\/\\/my.elementor.com\\/edd-sl\\/previous_download\\/MTYxNzMxNjk1MzplcC1ZQjg1a3hoUEk2bjREOVVtZk4xRjE2MTY4Nzc4MjNpallaaExFNERMRms6MTozLjIuMDplMDE4MmVlMjdhNjM5YTEwYmEyZjdhN2IzMWI3N2EwNzpodHRwQC8vY2hvaWNlcmVzb3VyY2VzLmNvLnVr\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"},{\"type\":\"plugin\",\"plugin\":\"elementor\\/elementor.php\",\"version\":\"3.1.0\",\"operator\":\">=\"}]]}}\";}','yes'),
(190,'action_scheduler_hybrid_store_demarkation','25','yes'),
(191,'schema-ActionScheduler_StoreSchema','3.0.1617074772','yes'),
(192,'schema-ActionScheduler_LoggerSchema','2.0.1617074772','yes'),
(195,'woocommerce_schema_version','430','yes'),
(196,'woocommerce_store_address','22 Seymour Road','yes'),
(197,'woocommerce_store_address_2','Chatham','yes'),
(198,'woocommerce_store_city','Kent','yes'),
(199,'woocommerce_default_country','GB','yes'),
(200,'woocommerce_store_postcode','ME5 7AE','yes'),
(201,'woocommerce_allowed_countries','all','yes'),
(202,'woocommerce_all_except_countries','a:0:{}','yes'),
(203,'woocommerce_specific_allowed_countries','a:0:{}','yes'),
(204,'woocommerce_ship_to_countries','','yes'),
(205,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),
(206,'woocommerce_default_customer_address','base','yes'),
(207,'woocommerce_calc_taxes','no','yes'),
(208,'woocommerce_enable_coupons','yes','yes'),
(209,'woocommerce_calc_discounts_sequentially','no','no'),
(210,'woocommerce_currency','GBP','yes'),
(211,'woocommerce_currency_pos','left','yes'),
(212,'woocommerce_price_thousand_sep',',','yes'),
(213,'woocommerce_price_decimal_sep','.','yes'),
(214,'woocommerce_price_num_decimals','2','yes'),
(215,'woocommerce_shop_page_id','26','yes'),
(216,'woocommerce_cart_redirect_after_add','no','yes'),
(217,'woocommerce_enable_ajax_add_to_cart','yes','yes'),
(218,'woocommerce_placeholder_image','25','yes'),
(219,'woocommerce_weight_unit','kg','yes'),
(220,'woocommerce_dimension_unit','cm','yes'),
(221,'woocommerce_enable_reviews','yes','yes'),
(222,'woocommerce_review_rating_verification_label','yes','no'),
(223,'woocommerce_review_rating_verification_required','no','no'),
(224,'woocommerce_enable_review_rating','yes','yes'),
(225,'woocommerce_review_rating_required','yes','no'),
(226,'woocommerce_manage_stock','yes','yes'),
(227,'woocommerce_hold_stock_minutes','60','no'),
(228,'woocommerce_notify_low_stock','yes','no'),
(229,'woocommerce_notify_no_stock','yes','no'),
(230,'woocommerce_stock_email_recipient','ivankulongo@gmail.com','no'),
(231,'woocommerce_notify_low_stock_amount','2','no'),
(232,'woocommerce_notify_no_stock_amount','0','yes'),
(233,'woocommerce_hide_out_of_stock_items','no','yes'),
(234,'woocommerce_stock_format','','yes'),
(235,'woocommerce_file_download_method','force','no'),
(236,'woocommerce_downloads_require_login','no','no'),
(237,'woocommerce_downloads_grant_access_after_payment','yes','no'),
(238,'woocommerce_downloads_add_hash_to_filename','yes','yes'),
(239,'woocommerce_prices_include_tax','no','yes'),
(240,'woocommerce_tax_based_on','shipping','yes'),
(241,'woocommerce_shipping_tax_class','inherit','yes'),
(242,'woocommerce_tax_round_at_subtotal','no','yes'),
(243,'woocommerce_tax_classes','','yes'),
(244,'woocommerce_tax_display_shop','excl','yes'),
(245,'woocommerce_tax_display_cart','excl','yes'),
(246,'woocommerce_price_display_suffix','','yes'),
(247,'woocommerce_tax_total_display','itemized','no'),
(248,'woocommerce_enable_shipping_calc','yes','no'),
(249,'woocommerce_shipping_cost_requires_address','no','yes'),
(250,'woocommerce_ship_to_destination','billing','no'),
(251,'woocommerce_shipping_debug_mode','no','yes'),
(252,'woocommerce_enable_guest_checkout','yes','no'),
(253,'woocommerce_enable_checkout_login_reminder','no','no'),
(254,'woocommerce_enable_signup_and_login_from_checkout','no','no'),
(255,'woocommerce_enable_myaccount_registration','no','no'),
(256,'woocommerce_registration_generate_username','yes','no'),
(257,'woocommerce_registration_generate_password','yes','no'),
(258,'woocommerce_erasure_request_removes_order_data','no','no'),
(259,'woocommerce_erasure_request_removes_download_data','no','no'),
(260,'woocommerce_allow_bulk_remove_personal_data','no','no'),
(261,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),
(262,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),
(263,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),
(264,'woocommerce_trash_pending_orders','','no'),
(265,'woocommerce_trash_failed_orders','','no'),
(266,'woocommerce_trash_cancelled_orders','','no'),
(267,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),
(268,'woocommerce_email_from_name','Choice Resources','no'),
(269,'woocommerce_email_from_address','ivankulongo@gmail.com','no'),
(270,'woocommerce_email_header_image','','no'),
(271,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),
(272,'woocommerce_email_base_color','#96588a','no'),
(273,'woocommerce_email_background_color','#f7f7f7','no'),
(274,'woocommerce_email_body_background_color','#ffffff','no'),
(275,'woocommerce_email_text_color','#3c3c3c','no'),
(276,'woocommerce_merchant_email_notifications','no','no'),
(277,'woocommerce_cart_page_id','27','no'),
(278,'woocommerce_checkout_page_id','28','no'),
(279,'woocommerce_myaccount_page_id','29','no'),
(280,'woocommerce_terms_page_id','','no'),
(281,'woocommerce_force_ssl_checkout','no','yes'),
(282,'woocommerce_unforce_ssl_checkout','no','yes'),
(283,'woocommerce_checkout_pay_endpoint','order-pay','yes'),
(284,'woocommerce_checkout_order_received_endpoint','order-received','yes'),
(285,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),
(286,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),
(287,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),
(288,'woocommerce_myaccount_orders_endpoint','orders','yes'),
(289,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),
(290,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),
(291,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),
(292,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),
(293,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),
(294,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),
(295,'woocommerce_logout_endpoint','customer-logout','yes'),
(296,'woocommerce_api_enabled','no','yes'),
(297,'woocommerce_allow_tracking','no','no'),
(298,'woocommerce_show_marketplace_suggestions','yes','no'),
(299,'woocommerce_single_image_width','600','yes'),
(300,'woocommerce_thumbnail_image_width','300','yes'),
(301,'woocommerce_checkout_highlight_required_fields','yes','yes'),
(302,'woocommerce_demo_store','no','no'),
(303,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),
(304,'current_theme_supports_woocommerce','yes','yes'),
(305,'woocommerce_queue_flush_rewrite_rules','no','yes'),
(306,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),
(308,'default_product_cat','25','yes'),
(311,'woocommerce_version','5.1.0','yes'),
(312,'woocommerce_db_version','5.1.0','yes'),
(316,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),
(317,'action_scheduler_lock_async-request-runner','1617233886','yes'),
(318,'woocommerce_admin_notices','a:1:{i:0;s:20:\"no_secure_connection\";}','yes'),
(319,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"8qZ4mU0AoHomgr8UKOtzVBUd90U82yd4\";}','yes'),
(320,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),
(321,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(322,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(323,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(324,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(325,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(326,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(327,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(328,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(329,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(330,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(331,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(332,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(335,'woocommerce_admin_version','2.0.2','yes'),
(336,'woocommerce_admin_install_timestamp','1617074775','yes'),
(340,'wc_remote_inbox_notifications_specs','a:14:{s:23:\"facebook_pixel_api_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"facebook_pixel_api_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Improve the performance of your Facebook ads\";s:7:\"content\";s:168:\"Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved performance and measurement of your Facebook ad campaigns.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"upgrade_now_facebook_pixel_api\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Upgrade now\";}}s:3:\"url\";s:67:\"plugin-install.php?tab=plugin-information&plugin=&section=changelog\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-02-15 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-02-29 00:00:00\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"facebook-for-woocommerce\";s:7:\"version\";s:5:\"2.1.4\";s:8:\"operator\";s:2:\"<=\";}}}s:16:\"facebook_ec_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:16:\"facebook_ec_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:59:\"Sync your product catalog with Facebook to help boost sales\";s:7:\"content\";s:170:\"A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"learn_more_facebook_ec\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/facebook/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-03-01 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-03-15 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:24:\"facebook-for-woocommerce\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. Weâ€™re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:255:\"WooCommerce Shipping & Tax helps get your store â€œready to sellâ€ as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:274:\"Product Add-Ons allow your customers to personalize products while theyâ€™re shopping on your online store. No more follow-up email requestsâ€”customers get what they want, before theyâ€™re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:461:\"That\'s huge! You\'re well on your way to building a successful online store â€” now itâ€™s time to think about how you\'ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:31:\"wc-square-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-square-apple-pay-boost-sales\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:191:\"Now that you accept Apple PayÂ® with Square you can increase conversion rates by letting your customers know that Apple PayÂ® is available. Hereâ€™s a marketing guide to help you get started.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:97:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:38:\"wc-square-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"wc-square-apple-pay-grow-your-business\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"Grow your business with Square and Apple Pay \";s:7:\"content\";s:178:\"Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple PayÂ®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:104:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wcpay-apple-pay-is-now-available\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wcpay-apple-pay-is-now-available\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Apple Pay is now available with WooCommerce Payments!\";s:7:\"content\";s:397:\"Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>Â®. Itâ€™s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"add-apple-pay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Add Apple Pay\";}}s:3:\"url\";s:69:\"/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:121:\"https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.2.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";b:0;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}s:27:\"wcpay-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"wcpay-apple-pay-boost-sales\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:205:\"Now that you accept Apple PayÂ® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple PayÂ® is available. Hereâ€™s a marketing guide to help you get started.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:96:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"wcpay-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"wcpay-apple-pay-grow-your-business\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Grow your business with WooCommerce Payments and Apple Pay\";s:7:\"content\";s:178:\"Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple PayÂ®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:103:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:171:\"It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:173:\"Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}}','yes'),
(341,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":3:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;s:17:\"new_product_count\";i:0;}','yes'),
(342,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),
(343,'wc_blocks_db_schema_version','260','yes'),
(344,'woocommerce_meta_box_errors','a:0:{}','yes'),
(348,'_transient_woocommerce_reports-transient-version','1617074842','yes'),
(349,'_transient_timeout_orders-all-statuses','1617679803','no'),
(350,'_transient_orders-all-statuses','a:2:{s:7:\"version\";s:10:\"1617074842\";s:5:\"value\";a:0:{}}','no'),
(359,'action_scheduler_migration_status','complete','yes'),
(360,'woocommerce_onboarding_profile','a:9:{s:12:\"setup_client\";b:0;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:22:\"education-and-learning\";}}s:13:\"product_types\";a:2:{i:0;s:8:\"physical\";i:1;s:9:\"downloads\";}s:13:\"product_count\";s:5:\"1000+\";s:14:\"selling_venues\";s:2:\"no\";s:19:\"business_extensions\";a:4:{i:0;s:24:\"facebook-for-woocommerce\";i:1;s:25:\"mailchimp-for-woocommerce\";i:2;s:33:\"creative-mail-by-constant-contact\";i:3;s:27:\"kliken-marketing-for-google\";}s:5:\"theme\";s:10:\"storefront\";s:7:\"plugins\";s:7:\"skipped\";s:9:\"completed\";b:1;}','yes'),
(370,'mailchimp-woocommerce','a:0:{}','yes'),
(372,'mailchimp-woocommerce-store_id','60629ac577987','yes'),
(373,'mailchimp-woocommerce-store-id-last-verified','1617147644','yes'),
(374,'ce4wp_activated','1','yes'),
(375,'ce4wp_install_date','2021-03-30 3:28:05','yes'),
(377,'woocommerce_kk_wcintegration_settings','a:3:{s:10:\"account_id\";i:0;s:9:\"app_token\";s:0:\"\";s:12:\"google_token\";s:0:\"\";}','yes'),
(378,'_site_transient_timeout_kk_wc_welcome_message','1619666885','no'),
(379,'_site_transient_kk_wc_welcome_message','1','no'),
(380,'ce4wp_handshake_token','F4DFC735-2F01-4855-80C8-E19B7B0C5CBC','yes'),
(381,'ce4wp_handshake_expiration','1617234151','yes'),
(382,'ce4wp_instance_uuid','60629ac603c80','yes'),
(383,'ce4wp_referred_by','a:4:{s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:5:\"5.1.0\";s:4:\"time\";i:1617074888;s:6:\"source\";s:10:\"onboarding\";}','yes'),
(384,'facebook_config','a:4:{s:8:\"pixel_id\";s:1:\"0\";s:7:\"use_pii\";b:1;s:7:\"use_s2s\";b:0;s:12:\"access_token\";s:0:\"\";}','yes'),
(385,'ce4wp_abandoned_checkout_db_version','1.0','yes'),
(386,'wc_facebook_for_woocommerce_is_active','yes','yes'),
(391,'current_theme','Storefront','yes'),
(392,'theme_switched','','yes'),
(393,'theme_mods_storefront','a:3:{s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:9:\"secondary\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:362;}','yes'),
(394,'woocommerce_catalog_rows','4','yes'),
(395,'woocommerce_catalog_columns','3','yes'),
(396,'woocommerce_maybe_regenerate_images_hash','27acde77266b4d2a3491118955cb3f66','yes'),
(398,'storefront_nux_fresh_site','0','yes'),
(402,'wc_facebook_for_woocommerce_lifecycle_events','[{\"name\":\"install\",\"time\":1617075002,\"version\":\"2.3.3\"}]','no'),
(403,'wc_facebook_for_woocommerce_version','2.3.3','yes'),
(405,'_transient_timeout_sv_wc_plugin_wc_versions','1617679802','no'),
(406,'_transient_sv_wc_plugin_wc_versions','a:84:{i:0;s:5:\"5.1.0\";i:1;s:5:\"5.0.0\";i:2;s:5:\"4.9.2\";i:3;s:5:\"4.9.1\";i:4;s:5:\"4.9.0\";i:5;s:5:\"4.8.0\";i:6;s:5:\"4.7.1\";i:7;s:5:\"4.7.0\";i:8;s:5:\"4.6.2\";i:9;s:5:\"4.6.1\";i:10;s:5:\"4.6.0\";i:11;s:5:\"4.5.2\";i:12;s:5:\"4.5.1\";i:13;s:5:\"4.5.0\";i:14;s:5:\"4.4.1\";i:15;s:5:\"4.4.0\";i:16;s:5:\"4.3.3\";i:17;s:5:\"4.3.2\";i:18;s:5:\"4.3.1\";i:19;s:5:\"4.3.0\";i:20;s:5:\"4.2.2\";i:21;s:5:\"4.2.1\";i:22;s:5:\"4.2.0\";i:23;s:5:\"4.1.1\";i:24;s:5:\"4.1.0\";i:25;s:5:\"4.0.1\";i:26;s:5:\"4.0.0\";i:27;s:5:\"3.9.3\";i:28;s:5:\"3.9.2\";i:29;s:5:\"3.9.1\";i:30;s:5:\"3.9.0\";i:31;s:5:\"3.8.1\";i:32;s:5:\"3.8.0\";i:33;s:5:\"3.7.1\";i:34;s:5:\"3.7.0\";i:35;s:5:\"3.6.5\";i:36;s:5:\"3.6.4\";i:37;s:5:\"3.6.3\";i:38;s:5:\"3.6.2\";i:39;s:5:\"3.6.1\";i:40;s:5:\"3.6.0\";i:41;s:5:\"3.5.8\";i:42;s:5:\"3.5.7\";i:43;s:5:\"3.5.6\";i:44;s:5:\"3.5.5\";i:45;s:5:\"3.5.4\";i:46;s:5:\"3.5.3\";i:47;s:5:\"3.5.2\";i:48;s:5:\"3.5.1\";i:49;s:5:\"3.5.0\";i:50;s:5:\"3.4.7\";i:51;s:5:\"3.4.6\";i:52;s:5:\"3.4.5\";i:53;s:5:\"3.4.4\";i:54;s:5:\"3.4.3\";i:55;s:5:\"3.4.2\";i:56;s:5:\"3.4.1\";i:57;s:5:\"3.4.0\";i:58;s:5:\"3.3.5\";i:59;s:5:\"3.3.4\";i:60;s:5:\"3.3.3\";i:61;s:5:\"3.3.2\";i:62;s:5:\"3.3.1\";i:63;s:5:\"3.3.0\";i:64;s:5:\"3.2.6\";i:65;s:5:\"3.2.5\";i:66;s:5:\"3.2.4\";i:67;s:5:\"3.2.3\";i:68;s:5:\"3.2.2\";i:69;s:5:\"3.2.1\";i:70;s:5:\"3.2.0\";i:71;s:5:\"3.1.2\";i:72;s:5:\"3.1.1\";i:73;s:5:\"3.1.0\";i:74;s:5:\"3.0.9\";i:75;s:5:\"3.0.8\";i:76;s:5:\"3.0.7\";i:77;s:5:\"3.0.6\";i:78;s:5:\"3.0.5\";i:79;s:5:\"3.0.4\";i:80;s:5:\"3.0.3\";i:81;s:5:\"3.0.2\";i:82;s:5:\"3.0.1\";i:83;s:5:\"3.0.0\";}','no'),
(409,'_transient_timeout_wc_report_orders_stats_554093d616a93f3bfba8f1d32ca544d6','1617679809','no'),
(410,'_transient_wc_report_orders_stats_554093d616a93f3bfba8f1d32ca544d6','a:2:{s:7:\"version\";s:10:\"1617074842\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2021-13\";s:10:\"date_start\";s:19:\"2021-03-30 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2021-03-30 00:00:00\";s:8:\"date_end\";s:19:\"2021-03-30 04:30:00\";s:12:\"date_end_gmt\";s:19:\"2021-03-30 04:30:00\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),
(411,'_transient_timeout_wc_report_orders_stats_984ef93f70ddc653906b266333a17a9f','1617679809','no'),
(412,'_transient_wc_report_orders_stats_984ef93f70ddc653906b266333a17a9f','a:2:{s:7:\"version\";s:10:\"1617074842\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2021-13\";s:10:\"date_start\";s:19:\"2021-03-30 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2021-03-30 00:00:00\";s:8:\"date_end\";s:19:\"2021-03-30 04:30:00\";s:12:\"date_end_gmt\";s:19:\"2021-03-30 04:30:00\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),
(413,'_transient_timeout_wc_report_orders_stats_833fea0b4e4607be4c7889d8c5e2f904','1617679810','no'),
(414,'_transient_wc_report_orders_stats_833fea0b4e4607be4c7889d8c5e2f904','a:2:{s:7:\"version\";s:10:\"1617074842\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2021-13\";s:10:\"date_start\";s:19:\"2021-03-29 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2021-03-29 00:00:00\";s:8:\"date_end\";s:19:\"2021-03-29 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2021-03-29 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),
(415,'_transient_timeout_wc_report_orders_stats_6132e152e8234aa464e2831784c651eb','1617679810','no'),
(416,'_transient_wc_report_orders_stats_6132e152e8234aa464e2831784c651eb','a:2:{s:7:\"version\";s:10:\"1617074842\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2021-13\";s:10:\"date_start\";s:19:\"2021-03-29 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2021-03-29 00:00:00\";s:8:\"date_end\";s:19:\"2021-03-29 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2021-03-29 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),
(417,'woocommerce_task_list_tracked_completed_tasks','a:1:{i:0;s:13:\"store_details\";}','yes'),
(418,'woocommerce_task_list_welcome_modal_dismissed','yes','yes'),
(421,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1617075065;}','no'),
(425,'_transient_product_query-transient-version','1617233279','yes'),
(426,'_transient_product-transient-version','1617075697','yes'),
(427,'wc_facebook_background_product_sync_job_ed9b86aca5c25dc7ddb2756c185baece','{\"requests\":{\"p-30\":\"UPDATE\"},\"id\":\"ed9b86aca5c25dc7ddb2756c185baece\",\"created_at\":\"2021-03-30 03:33:21\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-03-30 03:33:22\",\"updated_at\":\"2021-03-30 03:33:22\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-03-30 03:33:22\"}','no'),
(432,'wc_facebook_background_product_sync_job_f234e69b02f8f86222c537eba3e945d1','{\"requests\":{\"p-34\":\"UPDATE\"},\"id\":\"f234e69b02f8f86222c537eba3e945d1\",\"created_at\":\"2021-03-30 03:35:23\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-03-30 03:35:24\",\"updated_at\":\"2021-03-30 03:35:24\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-03-30 03:35:24\"}','no'),
(437,'wc_facebook_background_product_sync_job_846157140ee6825472685d23fbde7f33','{\"requests\":{\"p-37\":\"UPDATE\"},\"id\":\"846157140ee6825472685d23fbde7f33\",\"created_at\":\"2021-03-30 03:37:27\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-03-30 03:37:28\",\"updated_at\":\"2021-03-30 03:37:28\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-03-30 03:37:28\"}','no'),
(442,'wc_facebook_background_product_sync_job_96eb96992a3e724e1ca835f0f2b8602e','{\"requests\":{\"p-40\":\"UPDATE\"},\"id\":\"96eb96992a3e724e1ca835f0f2b8602e\",\"created_at\":\"2021-03-30 03:39:18\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-03-30 03:39:18\",\"updated_at\":\"2021-03-30 03:39:19\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-03-30 03:39:19\"}','no'),
(456,'elementor_log','a:4:{s:32:\"2cc3fadf832176ee6086ee0cb2692535\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:101:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:7:\"\0*\0line\";i:171;s:7:\"\0*\0date\";s:19:\"2021-03-30 03:50:17\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:21:\"Undefined index: data\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:17;s:14:\"\0*\0times_dates\";a:17:{i:0;s:19:\"2021-03-30 03:50:17\";i:1;s:19:\"2021-03-30 03:54:37\";i:2;s:19:\"2021-03-30 03:55:43\";i:3;s:19:\"2021-03-30 03:58:48\";i:4;s:19:\"2021-03-30 03:59:31\";i:5;s:19:\"2021-03-30 03:59:57\";i:6;s:19:\"2021-03-30 05:53:39\";i:7;s:19:\"2021-03-30 06:05:21\";i:8;s:19:\"2021-03-30 06:10:45\";i:9;s:19:\"2021-03-30 06:58:10\";i:10;s:19:\"2021-03-30 07:54:24\";i:11;s:19:\"2021-03-30 09:41:42\";i:12;s:19:\"2021-03-30 20:11:03\";i:13;s:19:\"2021-03-30 21:55:14\";i:14;s:19:\"2021-03-30 23:32:43\";i:15;s:19:\"2021-03-31 16:16:31\";i:16;s:19:\"2021-03-31 19:35:59\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:21:\"Undefined index: data\";s:4:\"file\";s:101:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:4:\"line\";i:171;s:5:\"trace\";b:1;}}s:32:\"0d862eca0bad4d954c02b2e05d3c7d52\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:122:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php\";s:7:\"\0*\0line\";i:281;s:7:\"\0*\0date\";s:19:\"2021-03-30 05:15:00\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1043:\"Uncaught Error: Call to a member function update_meta() on bool in /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php:281\nStack trace:\n#0 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php(162): ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager-&gt;save_conditions(NULL, Array)\n#1 [internal function]: ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager-&gt;ajax_save_theme_template_conditions(Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#2 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/common/modules/ajax/module.php(171): call_user_func(Array, Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#3 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(292): Elementor\\Core\\Common\\Modules\\Ajax\\Module-&gt;handle_ajax_request(&#039;&#039;)\n#4 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(316): WP_H\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:15;s:14:\"\0*\0times_dates\";a:15:{i:0;s:19:\"2021-03-30 05:15:00\";i:1;s:19:\"2021-03-30 06:42:04\";i:2;s:19:\"2021-03-30 06:53:10\";i:3;s:19:\"2021-03-30 07:04:19\";i:4;s:19:\"2021-03-30 08:17:59\";i:5;s:19:\"2021-03-30 09:52:01\";i:6;s:19:\"2021-03-30 19:04:19\";i:7;s:19:\"2021-03-30 20:02:18\";i:8;s:19:\"2021-03-30 20:11:58\";i:9;s:19:\"2021-03-30 21:13:29\";i:10;s:19:\"2021-03-30 21:27:36\";i:11;s:19:\"2021-03-30 21:49:52\";i:12;s:19:\"2021-03-30 22:13:54\";i:13;s:19:\"2021-03-30 23:29:21\";i:14;s:19:\"2021-03-31 16:14:54\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1024:\"Uncaught Error: Call to a member function update_meta() on bool in /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php:281\nStack trace:\n#0 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php(162): ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager->save_conditions(NULL, Array)\n#1 [internal function]: ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager->ajax_save_theme_template_conditions(Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#2 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/common/modules/ajax/module.php(171): call_user_func(Array, Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#3 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(292): Elementor\\Core\\Common\\Modules\\Ajax\\Module->handle_ajax_request(\'\')\n#4 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(316): WP_H\";s:4:\"file\";s:122:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php\";s:4:\"line\";i:281;s:5:\"trace\";b:1;}}s:32:\"e17153bfe2ba498142cd738daf5b7a26\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:111:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/posts/skins/skin-content-base.php\";s:7:\"\0*\0line\";i:248;s:7:\"\0*\0date\";s:19:\"2021-03-30 08:25:38\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to get property &#039;ID&#039; of non-object\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:41;s:14:\"\0*\0times_dates\";a:41:{i:0;s:19:\"2021-03-30 08:25:38\";i:1;s:19:\"2021-03-30 08:52:44\";i:2;s:19:\"2021-03-30 10:08:14\";i:3;s:19:\"2021-03-30 10:37:15\";i:4;s:19:\"2021-03-30 11:01:51\";i:5;s:19:\"2021-03-30 12:25:51\";i:6;s:19:\"2021-03-30 13:02:14\";i:7;s:19:\"2021-03-30 13:08:54\";i:8;s:19:\"2021-03-30 13:51:53\";i:9;s:19:\"2021-03-30 15:20:18\";i:10;s:19:\"2021-03-30 15:48:16\";i:11;s:19:\"2021-03-30 18:18:39\";i:12;s:19:\"2021-03-30 18:18:40\";i:13;s:19:\"2021-03-30 18:18:41\";i:14;s:19:\"2021-03-30 18:18:42\";i:15;s:19:\"2021-03-30 18:18:43\";i:16;s:19:\"2021-03-30 18:18:44\";i:17;s:19:\"2021-03-30 18:18:45\";i:18;s:19:\"2021-03-30 18:18:46\";i:19;s:19:\"2021-03-30 18:18:47\";i:20;s:19:\"2021-03-30 18:18:48\";i:21;s:19:\"2021-03-30 18:18:49\";i:22;s:19:\"2021-03-30 18:18:50\";i:23;s:19:\"2021-03-30 18:18:51\";i:24;s:19:\"2021-03-30 18:18:52\";i:25;s:19:\"2021-03-30 18:18:53\";i:26;s:19:\"2021-03-30 18:18:54\";i:27;s:19:\"2021-03-30 19:22:43\";i:28;s:19:\"2021-03-30 20:21:27\";i:29;s:19:\"2021-03-30 21:22:52\";i:30;s:19:\"2021-03-30 21:42:39\";i:31;s:19:\"2021-03-30 21:58:16\";i:32;s:19:\"2021-03-30 23:05:02\";i:33;s:19:\"2021-03-30 23:32:48\";i:34;s:19:\"2021-03-30 23:32:49\";i:35;s:19:\"2021-03-30 23:32:50\";i:36;s:19:\"2021-03-30 23:32:52\";i:37;s:19:\"2021-03-30 23:32:52\";i:38;s:19:\"2021-03-30 23:32:52\";i:39;s:19:\"2021-03-30 23:32:54\";i:40;s:19:\"2021-03-30 23:32:54\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:41:\"Trying to get property \'ID\' of non-object\";s:4:\"file\";s:111:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/posts/skins/skin-content-base.php\";s:4:\"line\";i:248;s:5:\"trace\";b:1;}}s:32:\"645b992bd87d8b3ab6edfdc8c8fb253e\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:122:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php\";s:7:\"\0*\0line\";i:281;s:7:\"\0*\0date\";s:19:\"2021-03-30 11:18:44\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1043:\"Uncaught Error: Call to a member function update_meta() on null in /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php:281\nStack trace:\n#0 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php(162): ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager-&gt;save_conditions(57, Array)\n#1 [internal function]: ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager-&gt;ajax_save_theme_template_conditions(Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#2 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/common/modules/ajax/module.php(171): call_user_func(Array, Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#3 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(292): Elementor\\Core\\Common\\Modules\\Ajax\\Module-&gt;handle_ajax_request(&#039;&#039;)\n#4 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(316): WP_Hoo\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2021-03-30 11:18:44\";i:1;s:19:\"2021-03-30 19:05:38\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1024:\"Uncaught Error: Call to a member function update_meta() on null in /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php:281\nStack trace:\n#0 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php(162): ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager->save_conditions(57, Array)\n#1 [internal function]: ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager->ajax_save_theme_template_conditions(Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#2 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/common/modules/ajax/module.php(171): call_user_func(Array, Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#3 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(292): Elementor\\Core\\Common\\Modules\\Ajax\\Module->handle_ajax_request(\'\')\n#4 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(316): WP_Hoo\";s:4:\"file\";s:122:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php\";s:4:\"line\";i:281;s:5:\"trace\";b:1;}}}','no'),
(457,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),
(458,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),
(459,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),
(471,'elementor_controls_usage','a:4:{s:7:\"wp-page\";a:15:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:18;s:19:\"_inline_size_mobile\";i:5;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"layout\";i:2;s:3:\"gap\";i:2;s:8:\"html_tag\";i:2;s:13:\"content_width\";i:2;s:16:\"content_position\";i:2;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:27:\"background_hover_transition\";i:1;}s:14:\"section_border\";a:7:{s:26:\"box_shadow_box_shadow_type\";i:1;s:32:\"box_shadow_hover_box_shadow_type\";i:1;s:27:\"box_shadow_hover_box_shadow\";i:1;s:23:\"border_hover_transition\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:21:\"section_shape_divider\";a:2:{s:17:\"shape_divider_top\";i:1;s:24:\"shape_divider_top_height\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:9:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;s:4:\"menu\";i:1;s:10:\"text_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:14:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:27:\"menu_typography_font_family\";i:1;s:32:\"color_menu_item_hover_pointer_bg\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:23:\"border_radius_menu_item\";i:1;s:18:\"menu_space_between\";i:1;}s:22:\"section_style_dropdown\";a:8:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:35:\"dropdown_box_shadow_box_shadow_type\";i:1;s:30:\"dropdown_box_shadow_box_shadow\";i:1;}s:12:\"style_toggle\";a:7:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;s:29:\"toggle_background_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:17:\"animated-headline\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:6:\"marker\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:2:{s:12:\"marker_color\";i:1;s:12:\"stroke_width\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}}}s:14:\"call-to-action\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:18:\"section_main_image\";a:1:{s:8:\"bg_image\";i:2;}s:15:\"section_content\";a:2:{s:5:\"title\";i:2;s:11:\"description\";i:2;}}s:5:\"style\";a:2:{s:21:\"section_content_style\";a:6:{s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:33:\"description_typography_typography\";i:2;s:34:\"description_typography_font_family\";i:2;s:34:\"description_typography_font_weight\";i:2;}s:12:\"button_style\";a:1:{s:29:\"button_hover_background_color\";i:2;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:2;s:10:\"text_color\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:2:{s:11:\"arrows_size\";i:1;s:9:\"dots_size\";i:1;}s:19:\"section_style_image\";a:2:{s:19:\"image_border_border\";i:1;s:18:\"image_border_color\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:3:{s:21:\"motion_fx_tilt_effect\";i:1;s:24:\"motion_fx_tilt_direction\";i:1;s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:3:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_color\";i:1;s:28:\"_background_hover_transition\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:5;s:5:\"align\";i:3;s:11:\"header_size\";i:4;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:5;s:20:\"typography_font_size\";i:4;s:25:\"typography_text_transform\";i:2;}}}}s:5:\"posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:5:\"_skin\";i:1;s:16:\"cards_item_ratio\";i:1;}}s:5:\"style\";a:2:{s:27:\"cards_section_design_layout\";a:1:{s:16:\"cards_column_gap\";i:1;}s:25:\"cards_section_design_card\";a:1:{s:27:\"cards_card_vertical_padding\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:12:\"aspect_ratio\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:15:\"theme-site-logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:4:\"link\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:2:{s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:2;s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:7:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;s:16:\"text_color_hover\";i:2;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_text\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_field_style\";a:4:{s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:7:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}}s:6:\"header\";a:7:{s:15:\"theme-site-logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:10:\"image_size\";i:1;s:12:\"align_tablet\";i:1;s:5:\"image\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:12:\"width_mobile\";i:1;s:5:\"width\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:5:{s:11:\"align_items\";i:1;s:12:\"toggle_align\";i:1;s:7:\"pointer\";i:1;s:9:\"indicator\";i:1;s:10:\"full_width\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:6:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:35:\"padding_horizontal_menu_item_tablet\";i:1;s:33:\"padding_vertical_menu_item_tablet\";i:1;}s:22:\"section_style_dropdown\";a:3:{s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_family\";i:1;s:28:\"dropdown_top_distance_mobile\";i:1;}s:12:\"style_toggle\";a:1:{s:23:\"toggle_background_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}}}}s:31:\"wp-widget-alg_wc_wl_widget_link\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:21:\"woocommerce-menu-cart\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_toggle_style\";a:3:{s:26:\"toggle_button_border_width\";i:1;s:27:\"toggle_button_border_radius\";i:1;s:28:\"toggle_button_padding_tablet\";i:1;}}}}s:11:\"search-form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"search_content\";a:2:{s:4:\"skin\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_input_style\";a:2:{s:22:\"input_background_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:13:\"custom_height\";i:1;s:16:\"content_position\";i:1;s:8:\"html_tag\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:4:{s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;s:13:\"margin_mobile\";i:1;}}}}}s:11:\"single-post\";a:19:{s:15:\"theme-site-logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:10:\"image_size\";i:1;s:12:\"align_tablet\";i:1;s:5:\"image\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:12:\"width_mobile\";i:1;s:5:\"width\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:14;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:14;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:6:{s:11:\"align_items\";i:2;s:12:\"toggle_align\";i:1;s:7:\"pointer\";i:1;s:9:\"indicator\";i:1;s:10:\"full_width\";i:1;s:4:\"menu\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:6:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:35:\"padding_horizontal_menu_item_tablet\";i:1;s:33:\"padding_vertical_menu_item_tablet\";i:1;}s:22:\"section_style_dropdown\";a:3:{s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_family\";i:1;s:28:\"dropdown_top_distance_mobile\";i:1;}s:12:\"style_toggle\";a:1:{s:23:\"toggle_background_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}}}}s:31:\"wp-widget-alg_wc_wl_widget_link\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:21:\"woocommerce-menu-cart\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_toggle_style\";a:3:{s:26:\"toggle_button_border_width\";i:1;s:27:\"toggle_button_border_radius\";i:1;s:28:\"toggle_button_padding_tablet\";i:1;}}}}s:11:\"search-form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"search_content\";a:2:{s:4:\"skin\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_input_style\";a:2:{s:22:\"input_background_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:6:\"layout\";i:3;s:13:\"custom_height\";i:2;s:16:\"content_position\";i:2;s:8:\"html_tag\";i:1;s:3:\"gap\";i:1;s:15:\"column_position\";i:1;s:13:\"content_width\";i:1;s:6:\"height\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:4:{s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}}}s:25:\"theme-post-featured-image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:6:\"height\";i:1;s:12:\"width_mobile\";i:1;s:5:\"space\";i:1;s:12:\"space_mobile\";i:1;s:13:\"height_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"align\";i:1;s:10:\"image_size\";i:1;s:5:\"image\";i:1;}}}}s:16:\"theme-post-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:9:\"post-info\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}}}s:15:\"post-navigation\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:11:\"label_style\";a:6:{s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:26:\"label_typography_font_size\";i:1;s:28:\"label_typography_font_weight\";i:1;s:33:\"label_typography_font_size_tablet\";i:1;s:33:\"label_typography_font_size_mobile\";i:1;}}}}s:13:\"share-buttons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:23:\"section_buttons_content\";a:2:{s:13:\"share_buttons\";i:1;s:10:\"show_label\";i:1;}}}}s:18:\"theme-post-content\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:12:\"align_tablet\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"slides\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:2:{s:6:\"slides\";i:1;s:13:\"slides_height\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}}}s:5:\"posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:15:\"classic_columns\";i:1;s:22:\"classic_columns_tablet\";i:1;s:22:\"classic_posts_per_page\";i:1;s:18:\"classic_item_ratio\";i:1;}}}}s:10:\"author-box\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:13:\"post-comments\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:5:\"_skin\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:28:\"_element_custom_width_mobile\";i:1;}}}}}s:7:\"archive\";a:8:{s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:4:\"menu\";i:1;s:11:\"align_items\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}}}s:13:\"archive-posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:1:{s:23:\"archive_classic_columns\";i:1;}}}}s:6:\"slides\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:1:{s:6:\"slides\";i:1;}}}}s:18:\"wp-widget-archives\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}}}','no'),
(479,'fb_product_set_children','a:0:{}','yes'),
(516,'_transient_timeout_wc_featured_products','1619670153','no'),
(517,'_transient_wc_featured_products','a:0:{}','no'),
(518,'_transient_timeout_wc_products_onsale','1619670153','no'),
(519,'_transient_wc_products_onsale','a:0:{}','no'),
(520,'_transient_timeout_wc_product_loop_b6c3a67067c7a6990490559988aa6f69','1619824193','no'),
(521,'_transient_wc_product_loop_b6c3a67067c7a6990490559988aa6f69','a:2:{s:7:\"version\";s:10:\"1617232122\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:2:{i:0;i:40;i:1;i:37;}s:5:\"total\";i:2;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:2;s:12:\"current_page\";i:1;}}','no'),
(522,'_transient_timeout_wc_product_loop_b8d26df9e2fa9cabdc79438be4157ce7','1619824193','no'),
(523,'_transient_wc_product_loop_b8d26df9e2fa9cabdc79438be4157ce7','a:2:{s:7:\"version\";s:10:\"1617232122\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:30;i:1;i:34;i:2;i:37;i:3;i:40;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}}','no'),
(653,'storefront_nux_guided_tour','1','yes'),
(879,'elementor_library_category_children','a:0:{}','yes'),
(892,'_transient_timeout_wc_term_counts','1619723096','no'),
(893,'_transient_wc_term_counts','a:21:{i:27;s:1:\"1\";i:25;s:1:\"1\";i:24;s:1:\"2\";i:26;s:0:\"\";i:23;s:1:\"1\";i:19;s:1:\"2\";i:20;s:1:\"4\";i:18;s:1:\"1\";i:21;s:1:\"1\";i:22;s:1:\"1\";i:56;s:0:\"\";i:53;s:0:\"\";i:54;s:0:\"\";i:55;s:0:\"\";i:46;s:0:\"\";i:47;s:0:\"\";i:41;s:0:\"\";i:42;s:0:\"\";i:45;s:0:\"\";i:43;s:0:\"\";i:44;s:0:\"\";}','no'),
(946,'elementor_use_mini_cart_template','yes','yes'),
(974,'alg_wc_wl_page_id','229','yes'),
(975,'alg_wc_wl_enabled','yes','yes'),
(976,'alg_wc_wl_fontawesome','yes','yes'),
(977,'alg_wc_wl_fontawesome_url','https://use.fontawesome.com/releases/v5.5.0/css/all.css','yes'),
(978,'alg_wc_wl_admin_ajax_url','','yes'),
(979,'alg_wc_wl_social_enable','yes','yes'),
(980,'alg_wc_wl_social_position','a:1:{i:0;s:22:\"alg_wc_wl_table_before\";}','yes'),
(981,'alg_wc_wl_social_email_adm_emails','','yes'),
(982,'alg_wc_wl_social_email_subject','no','yes'),
(983,'alg_wc_wl_social_facebook','yes','yes'),
(984,'alg_wc_wl_social_google','yes','yes'),
(985,'alg_wc_wl_social_twitter','yes','yes'),
(986,'alg_wc_wl_social_email','yes','yes'),
(987,'alg_wc_wl_social_copy','no','yes'),
(988,'alg_wc_wl_dbtn_single_enable','no','yes'),
(989,'alg_wc_wl_dbtn_single_pos','woocommerce_single_product_summary','yes'),
(990,'alg_wc_wl_dbtn_single_pri','31','yes'),
(991,'alg_wc_wl_dbtn_loop_enable','no','yes'),
(992,'alg_wc_wl_dbtn_loop_pri','11','yes'),
(993,'alg_wc_wl_dbtn_loading','no','yes'),
(994,'alg_wc_wl_tbtn_single_enable','yes','yes'),
(995,'alg_wc_wl_tbtn_loop_enable','yes','yes'),
(996,'alg_wc_wl_tbtn_loop_position','woocommerce_before_shop_loop_item','yes'),
(997,'alg_wc_wl_tbtn_loop_priority','9','yes'),
(998,'alg_wc_wl_tbtn_loading','yes','yes'),
(999,'alg_wc_wl_lstock','no','yes'),
(1000,'alg_wc_wl_lprice','yes','yes'),
(1001,'alg_wc_wl_ladd_to_cart_btn','yes','yes'),
(1002,'alg_wc_wl_tab','yes','yes'),
(1003,'alg_wc_wl_tab_slug','my-wish-list','yes'),
(1004,'alg_wc_wl_tab_label','Wish list','yes'),
(1005,'alg_wc_wl_tab_priority','20','yes'),
(1006,'alg_wc_wl_notification_desktop','yes','yes'),
(1007,'alg_wc_wl_notification_mobile','no','yes'),
(1008,'alg_wc_wl_notification_wish_list_link','yes','yes'),
(1009,'alg_wc_wl_notification_show_ok_btn','no','yes'),
(1010,'alg_wish_list_version','1.6.2','yes'),
(1011,'widget_alg_wc_wl_widget_link','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1133,'auto_update_plugins','a:0:{}','no'),
(1151,'updraftplus-addons_siteid','8b4a9671083d97a9a22d8d8fcacd2545','no'),
(1183,'updraftplus_locked_fd','1','no'),
(1184,'updraftplus_last_lock_time_fd','2021-03-31 23:36:29','no'),
(1185,'updraftplus_semaphore_fd','1','no'),
(1186,'updraft_last_scheduled_fd','1617233789','yes'),
(1256,'product_cat_children','a:0:{}','yes'),
(1284,'_transient_timeout_wc_low_stock_count','1619705180','no'),
(1285,'_transient_wc_low_stock_count','0','no'),
(1286,'_transient_timeout_wc_outofstock_count','1619705180','no'),
(1287,'_transient_wc_outofstock_count','0','no'),
(1294,'_transient_timeout_wc_report_sales_by_date','1617320140','no'),
(1295,'_transient_wc_report_sales_by_date','a:24:{s:32:\"e99646f060ac9124183acc0ce0ae6978\";a:0:{}s:32:\"acc8f96cf8cf71c0f377ff9863a791e8\";a:0:{}s:32:\"76b2cbd9bc06094c5a13aa494b45d173\";a:0:{}s:32:\"4260e1683aa0df65f2c5b7c18de4eb09\";N;s:32:\"34e496dd773499cd432fd4db19129632\";a:0:{}s:32:\"5863b277de7212ce401a082760f785dd\";a:0:{}s:32:\"7dd55865c3eb5ae84fdf279daa5c6709\";a:0:{}s:32:\"cae0ef01f4d7167502a50ece4f7848c0\";a:0:{}s:32:\"122fa102fedde4c79a7013409c6f54b2\";a:0:{}s:32:\"0a6b8df139e012d77dbe4498930eb5f3\";a:0:{}s:32:\"f6e265e5ef69d529a7c7411b6d0a7700\";a:0:{}s:32:\"45af0cba2f37742bd563c848acd870ef\";N;s:32:\"79288fdffd6b153775fc6543b0193dfe\";a:0:{}s:32:\"99cb18cb2b867fa22a1aa6c0609ac388\";a:0:{}s:32:\"f578042b99bdc82ca929f4edd1c3559c\";a:0:{}s:32:\"1ce0f0184c12f0651f84166cfdd6a0d4\";a:0:{}s:32:\"b69c51ea939e01487c8705101faddd09\";a:0:{}s:32:\"e50cdbcf9a844645f89eefa7653b88ae\";a:0:{}s:32:\"27183b7459a4a527603c8a11dd2158b2\";a:0:{}s:32:\"6b80845d4def20ae9acd2a7fa6921045\";N;s:32:\"79bab38c65d37eff636ff671cd2a4408\";a:0:{}s:32:\"9f634bc48116f07e061ffbe0c00f1055\";a:0:{}s:32:\"d0f1c72533a6be6befe1c7897a0158eb\";a:0:{}s:32:\"f8f9952bf6b53ab10370d9362440644c\";a:0:{}}','no'),
(1296,'_transient_timeout_wc_admin_report','1617320140','no'),
(1297,'_transient_wc_admin_report','a:2:{s:32:\"f7c5e0c71822af8a7909a06a53207263\";a:0:{}s:32:\"3beaf85a99928dd9abaea87611845571\";a:0:{}}','no'),
(1341,'_site_transient_timeout_browser_83f75fe8d5c2f40c243760c04f60cc4e','1617734283','no'),
(1342,'_site_transient_browser_83f75fe8d5c2f40c243760c04f60cc4e','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"89.0.4389.114\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
(1698,'updraft_autobackup_default','0','yes'),
(1699,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-efececb3eb340a8ec74247295ef4a604\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}','yes'),
(1700,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";a:9:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";s:7:\"user_id\";s:64:\"c3673f3a9a1d57da65fb36d8f37b13ea05412ab708996d5b31c4999060d3bf83\";s:16:\"tmp_access_token\";a:4:{s:12:\"access_token\";s:165:\"ya29.a0AfH6SMByrZV5m5mb1x-6xZ3iMFkLKAMSMOf8KFdW1xrtMWOmr-YM67CmYUwrjJj60Daad7OxuQHp_VXvqBQhkDutnMgzle4RrrdVi-ZukYaNlDbma3kl36VKm55FTawrhx6XV1wDFxJEVMT44Ids4dtk_vzi3g\";s:7:\"created\";i:1617230462;s:10:\"expires_in\";i:3599;s:13:\"refresh_token\";s:0:\"\";}s:10:\"expires_in\";i:1617234031;s:9:\"ownername\";s:16:\"Choice Resources\";s:16:\"instance_enabled\";i:1;}}}','yes'),
(1701,'updraftplus_tmp_googledrive_access_token','','yes'),
(1702,'updraftplus_dismissedautobackup','','yes'),
(1703,'dismissed_general_notices_until','','yes'),
(1704,'dismissed_review_notice','','yes'),
(1705,'dismissed_clone_php_notices_until','','yes'),
(1706,'dismissed_clone_wc_notices_until','','yes'),
(1707,'dismissed_season_notices_until','','yes'),
(1708,'updraftplus_dismissedexpiry','','yes'),
(1709,'updraftplus_dismisseddashnotice','','yes'),
(1710,'updraft_interval','manual','yes'),
(1711,'updraft_interval_increments','none','yes'),
(1712,'updraft_interval_database','manual','yes'),
(1713,'updraft_retain','2','yes'),
(1714,'updraft_retain_db','2','yes'),
(1715,'updraft_encryptionphrase','','yes'),
(1716,'updraft_service','googledrive','yes'),
(1717,'updraft_googledrive_clientid','','yes'),
(1718,'updraft_googledrive_secret','','yes'),
(1719,'updraft_googledrive_remotepath','','yes'),
(1720,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-16135c5f594c9838f76dfa6752528446\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}}}','yes'),
(1721,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1722,'updraft_server_address','','yes'),
(1723,'updraft_dir','updraft','yes'),
(1724,'updraft_email','','yes'),
(1725,'updraft_delete_local','1','yes'),
(1726,'updraft_debug_mode','0','yes'),
(1727,'updraft_include_plugins','1','yes'),
(1728,'updraft_include_themes','1','yes'),
(1729,'updraft_include_uploads','1','yes'),
(1730,'updraft_include_others','1','yes'),
(1731,'updraft_include_wpcore','0','yes'),
(1732,'updraft_include_wpcore_exclude','','yes'),
(1733,'updraft_include_more','0','yes'),
(1734,'updraft_include_blogs','','yes'),
(1735,'updraft_include_mu-plugins','','yes'),
(1737,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),
(1738,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots','yes'),
(1739,'updraft_lastmessage','Table wpcx_options: Total expected rows (approximate): 576 (Mar 31 23:37:06)','yes'),
(1740,'updraft_googledrive_token','','yes'),
(1741,'updraft_dropboxtk_request_token','','yes'),
(1742,'updraft_dropboxtk_access_token','','yes'),
(1743,'updraft_adminlocking','','yes'),
(1744,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-d5d5899b2f0f1074343d1783a2212ecf\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),
(1745,'updraft_retain_extrarules','a:0:{}','yes'),
(1746,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1747,'updraft_include_more_path','a:0:{}','yes'),
(1748,'updraft_split_every','400','yes'),
(1749,'updraft_ssl_nossl','0','yes'),
(1750,'updraft_backupdb_nonwp','0','yes'),
(1751,'updraft_extradbs','a:0:{}','yes'),
(1752,'updraft_combine_jobs_around','','yes'),
(1753,'updraft_last_backup','a:6:{s:26:\"nonincremental_backup_time\";i:1617147814;s:11:\"backup_time\";i:1617147814;s:12:\"backup_array\";a:11:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2021-03-30-2343_Choice_Resources_cc3c498d5bf0-plugins.zip\";}s:12:\"plugins-size\";i:28460924;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2021-03-30-2343_Choice_Resources_cc3c498d5bf0-themes.zip\";}s:11:\"themes-size\";i:7671682;s:7:\"uploads\";a:1:{i:0;s:64:\"backup_2021-03-30-2343_Choice_Resources_cc3c498d5bf0-uploads.zip\";}s:12:\"uploads-size\";i:90486739;s:6:\"others\";a:1:{i:0;s:63:\"backup_2021-03-30-2343_Choice_Resources_cc3c498d5bf0-others.zip\";}s:11:\"others-size\";i:196;s:2:\"db\";s:58:\"backup_2021-03-30-2343_Choice_Resources_cc3c498d5bf0-db.gz\";s:7:\"db-size\";i:543211;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"59db3ef5e75d3b54c9dd950fac405a6b408c37c6\";s:7:\"themes0\";s:40:\"fcde08e1ed29c526e045be50f3e5c6a7056e20e2\";s:8:\"uploads0\";s:40:\"33e9b20288b39c20fc8e2cbba57fc4ee469bfc8b\";s:7:\"others0\";s:40:\"1fc7e6c813eeca80b194160a57c01f6d71c9768d\";s:3:\"db0\";s:40:\"f0cebdf7b410332d27813f4490f336ce71bf3487\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"0984661e465e9944f0ff501dcd3eaa741b24035f28a73226cbdff737ccf73666\";s:7:\"themes0\";s:64:\"6e6d70c017518ed3b40bbd21cbcfaa22c70087d674182b29af5494b3a00d2778\";s:8:\"uploads0\";s:64:\"e0968d9bee39112d980a6f7dc8c5652248b9b6ee0c0d7bf139844cb90c9caac9\";s:7:\"others0\";s:64:\"01a3efa2e95f439d05fefdfde039be74f54b35c92da737f68a7ddc854285fa16\";s:3:\"db0\";s:64:\"5010c80b1d9b382d05a5fe5495e1aa55487300d91357ab9146652bc712ce7cba\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"cc3c498d5bf0\";}','yes'),
(1754,'updraft_starttime_files','14:11','yes'),
(1755,'updraft_starttime_db','14:11','yes'),
(1756,'updraft_startday_db','0','yes'),
(1757,'updraft_startday_files','0','yes'),
(1758,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1759,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-f6e9c7ce662f45a0e8f76d5db5dd8796\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(1760,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-b5a471d9b8d846f06a5c631ea1b9411b\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";}}}','yes'),
(1761,'updraft_dreamhost','','yes'),
(1762,'updraft_s3generic_login','','yes'),
(1763,'updraft_s3generic_pass','','yes'),
(1764,'updraft_s3generic_remote_path','','yes'),
(1765,'updraft_s3generic_endpoint','','yes'),
(1766,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1767,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-5ff6005d7f62da6b6adbc2c15d474a62\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(1768,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1769,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1770,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-0e2e073ad4df99729e7a0be18cee209d\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(1771,'updraft_cloudfiles_user','','yes'),
(1772,'updraft_cloudfiles_apikey','','yes'),
(1773,'updraft_cloudfiles_path','','yes'),
(1774,'updraft_cloudfiles_authurl','','yes'),
(1775,'updraft_ssl_useservercerts','0','yes'),
(1776,'updraft_ssl_disableverify','0','yes'),
(1777,'updraft_s3_login','','yes'),
(1778,'updraft_s3_pass','','yes'),
(1779,'updraft_s3_remote_path','','yes'),
(1780,'updraft_dreamobjects_login','','yes'),
(1781,'updraft_dreamobjects_pass','','yes'),
(1782,'updraft_dreamobjects_remote_path','','yes'),
(1783,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-407efa7dae82740e9cffd97e4e4749b9\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:26:\"objects-us-east-1.dream.io\";}}}','yes'),
(1784,'updraft_report_warningsonly','a:0:{}','yes'),
(1785,'updraft_report_wholebackup','a:0:{}','yes'),
(1786,'updraft_report_dbbackup','a:0:{}','yes'),
(1787,'updraft_log_syslog','0','yes'),
(1788,'updraft_extradatabases','','yes'),
(1789,'updraftplus_tour_cancelled_on','backup_now','yes'),
(1790,'updraftplus_version','1.16.50','yes'),
(1791,'updraft_backup_history','a:6:{i:1617219571;a:18:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2021-03-31-1939_Choice_Resources_f7b4ffea3122-plugins.zip\";}s:12:\"plugins-size\";i:28460924;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2021-03-31-1939_Choice_Resources_f7b4ffea3122-themes.zip\";}s:11:\"themes-size\";i:7671682;s:7:\"uploads\";a:1:{i:0;s:64:\"backup_2021-03-31-1939_Choice_Resources_f7b4ffea3122-uploads.zip\";}s:12:\"uploads-size\";i:100830955;s:6:\"others\";a:1:{i:0;s:63:\"backup_2021-03-31-1939_Choice_Resources_f7b4ffea3122-others.zip\";}s:11:\"others-size\";i:832;s:5:\"nonce\";s:12:\"f7b4ffea3122\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:11:\"always_keep\";b:1;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1617219571;s:6:\"themes\";i:1617219580;s:7:\"uploads\";i:1617219581;s:6:\"others\";i:1617219592;}s:18:\"created_by_version\";s:7:\"1.16.50\";s:21:\"last_saved_by_version\";s:7:\"1.16.50\";s:12:\"is_multisite\";b:0;s:2:\"db\";a:1:{i:0;s:58:\"backup_2021-03-31-1939_Choice_Resources_f7b4ffea3122-db.gz\";}s:7:\"db-size\";s:6:\"540188\";}i:1617147814;a:19:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2021-03-30-2343_Choice_Resources_cc3c498d5bf0-plugins.zip\";}s:12:\"plugins-size\";i:28460924;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2021-03-30-2343_Choice_Resources_cc3c498d5bf0-themes.zip\";}s:11:\"themes-size\";i:7671682;s:7:\"uploads\";a:1:{i:0;s:64:\"backup_2021-03-30-2343_Choice_Resources_cc3c498d5bf0-uploads.zip\";}s:12:\"uploads-size\";i:90486739;s:6:\"others\";a:1:{i:0;s:63:\"backup_2021-03-30-2343_Choice_Resources_cc3c498d5bf0-others.zip\";}s:11:\"others-size\";i:196;s:2:\"db\";s:58:\"backup_2021-03-30-2343_Choice_Resources_cc3c498d5bf0-db.gz\";s:7:\"db-size\";i:543211;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"59db3ef5e75d3b54c9dd950fac405a6b408c37c6\";s:7:\"themes0\";s:40:\"fcde08e1ed29c526e045be50f3e5c6a7056e20e2\";s:8:\"uploads0\";s:40:\"33e9b20288b39c20fc8e2cbba57fc4ee469bfc8b\";s:7:\"others0\";s:40:\"1fc7e6c813eeca80b194160a57c01f6d71c9768d\";s:3:\"db0\";s:40:\"f0cebdf7b410332d27813f4490f336ce71bf3487\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"0984661e465e9944f0ff501dcd3eaa741b24035f28a73226cbdff737ccf73666\";s:7:\"themes0\";s:64:\"6e6d70c017518ed3b40bbd21cbcfaa22c70087d674182b29af5494b3a00d2778\";s:8:\"uploads0\";s:64:\"e0968d9bee39112d980a6f7dc8c5652248b9b6ee0c0d7bf139844cb90c9caac9\";s:7:\"others0\";s:64:\"01a3efa2e95f439d05fefdfde039be74f54b35c92da737f68a7ddc854285fa16\";s:3:\"db0\";s:64:\"5010c80b1d9b382d05a5fe5495e1aa55487300d91357ab9146652bc712ce7cba\";}}s:5:\"nonce\";s:12:\"cc3c498d5bf0\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:11:\"always_keep\";b:1;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1617147814;s:6:\"themes\";i:1617147824;s:7:\"uploads\";i:1617147825;s:6:\"others\";i:1617147835;}s:18:\"created_by_version\";s:7:\"1.16.50\";s:21:\"last_saved_by_version\";s:7:\"1.16.50\";s:12:\"is_multisite\";b:0;}i:1617056280;a:14:{s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:2:\"db\";a:1:{i:0;s:61:\"backup_2021-03-29-2218_Choiceresourcescouk_99e8115fef20-db.gz\";}s:5:\"nonce\";s:12:\"99e8115fef20\";s:7:\"db-size\";s:6:\"193501\";s:6:\"native\";b:0;s:6:\"others\";a:1:{i:0;s:66:\"backup_2021-03-29-2218_Choiceresourcescouk_99e8115fef20-others.zip\";}s:11:\"others-size\";s:4:\"1038\";s:7:\"uploads\";a:1:{i:0;s:67:\"backup_2021-03-29-2218_Choiceresourcescouk_99e8115fef20-uploads.zip\";}s:12:\"uploads-size\";s:8:\"29633785\";s:6:\"themes\";a:1:{i:0;s:66:\"backup_2021-03-29-2218_Choiceresourcescouk_99e8115fef20-themes.zip\";}s:11:\"themes-size\";s:7:\"8634149\";s:7:\"plugins\";a:1:{i:0;s:67:\"backup_2021-03-29-2218_Choiceresourcescouk_99e8115fef20-plugins.zip\";}s:12:\"plugins-size\";s:8:\"35952894\";}i:1616871780;a:14:{s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:2:\"db\";a:1:{i:0;s:61:\"backup_2021-03-27-1903_Choiceresourcescouk_3024444b3e0f-db.gz\";}s:5:\"nonce\";s:12:\"3024444b3e0f\";s:7:\"db-size\";s:6:\"461816\";s:6:\"native\";b:0;s:6:\"others\";a:1:{i:0;s:66:\"backup_2021-03-27-1903_Choiceresourcescouk_3024444b3e0f-others.zip\";}s:11:\"others-size\";s:3:\"402\";s:7:\"uploads\";a:1:{i:0;s:67:\"backup_2021-03-27-1903_Choiceresourcescouk_3024444b3e0f-uploads.zip\";}s:12:\"uploads-size\";s:8:\"29633785\";s:6:\"themes\";a:1:{i:0;s:66:\"backup_2021-03-27-1903_Choiceresourcescouk_3024444b3e0f-themes.zip\";}s:11:\"themes-size\";s:7:\"8634149\";s:7:\"plugins\";a:1:{i:0;s:67:\"backup_2021-03-27-1903_Choiceresourcescouk_3024444b3e0f-plugins.zip\";}s:12:\"plugins-size\";s:8:\"35952894\";}i:1616451480;a:14:{s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:2:\"db\";a:1:{i:0;s:61:\"backup_2021-03-22-2218_Choiceresourcescouk_67acb13d0ea5-db.gz\";}s:5:\"nonce\";s:12:\"67acb13d0ea5\";s:7:\"db-size\";s:6:\"359998\";s:6:\"native\";b:0;s:6:\"others\";a:1:{i:0;s:66:\"backup_2021-03-22-2218_Choiceresourcescouk_67acb13d0ea5-others.zip\";}s:11:\"others-size\";s:3:\"196\";s:7:\"uploads\";a:1:{i:0;s:67:\"backup_2021-03-22-2218_Choiceresourcescouk_67acb13d0ea5-uploads.zip\";}s:12:\"uploads-size\";s:8:\"11672368\";s:6:\"themes\";a:1:{i:0;s:66:\"backup_2021-03-22-2218_Choiceresourcescouk_67acb13d0ea5-themes.zip\";}s:11:\"themes-size\";s:7:\"5550551\";s:7:\"plugins\";a:1:{i:0;s:67:\"backup_2021-03-22-2218_Choiceresourcescouk_67acb13d0ea5-plugins.zip\";}s:12:\"plugins-size\";s:8:\"32447821\";}i:1617233789;a:16:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2021-03-31-2336_Choice_Resources_222688351c07-plugins.zip\";}s:12:\"plugins-size\";i:28460924;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2021-03-31-2336_Choice_Resources_222688351c07-themes.zip\";}s:11:\"themes-size\";i:7671682;s:7:\"uploads\";a:1:{i:0;s:64:\"backup_2021-03-31-2336_Choice_Resources_222688351c07-uploads.zip\";}s:12:\"uploads-size\";i:109155253;s:6:\"others\";a:1:{i:0;s:63:\"backup_2021-03-31-2336_Choice_Resources_222688351c07-others.zip\";}s:11:\"others-size\";i:1310;s:5:\"nonce\";s:12:\"222688351c07\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:11:\"always_keep\";b:1;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1617233789;s:6:\"themes\";i:1617233801;s:7:\"uploads\";i:1617233802;s:6:\"others\";i:1617233826;}s:18:\"created_by_version\";s:7:\"1.16.50\";s:21:\"last_saved_by_version\";s:7:\"1.16.50\";s:12:\"is_multisite\";b:0;}}','no'),
(1794,'updraft_lock_cc3c498d5bf0','1617199658','no'),
(1797,'_transient_timeout_wc_onboarding_product_data','1617286113','no'),
(1798,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 31 Mar 2021 14:08:34 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"11517\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:29:\"access-control-expose-headers\";s:33:\"X-WP-Total, X-WP-TotalPages, Link\";s:28:\"access-control-allow-headers\";s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";s:13:\"x-wccom-cache\";s:3:\"HIT\";s:13:\"cache-control\";s:10:\"max-age=60\";s:5:\"allow\";s:3:\"GET\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-rq\";s:16:\"dca5 85 111 3132\";s:3:\"age\";s:1:\"9\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";}}s:4:\"body\";s:48131:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment method designed exclusively for WooCommerce, by WooCommerce. Securely accept major credit and debit cards on your site. View and manage your transactions within your WordPress dashboard.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 2000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Opayo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory &amp; order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:48131:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment method designed exclusively for WooCommerce, by WooCommerce. Securely accept major credit and debit cards on your site. View and manage your transactions within your WordPress dashboard.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 2000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Opayo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory &amp; order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:3:\"raw\";s:48768:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Wed, 31 Mar 2021 14:08:34 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 11517\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\r\nX-Content-Type-Options: nosniff\r\nAccess-Control-Expose-Headers: X-WP-Total, X-WP-TotalPages, Link\r\nAccess-Control-Allow-Headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\r\nX-WCCOM-Cache: HIT\r\nCache-Control: max-age=60\r\nAllow: GET\r\nContent-Encoding: gzip\r\nX-rq: dca5 85 111 3132\r\nAge: 9\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\n\r\n{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment method designed exclusively for WooCommerce, by WooCommerce. Securely accept major credit and debit cards on your site. View and manage your transactions within your WordPress dashboard.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 2000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Opayo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory &amp; order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Wed, 31 Mar 2021 14:08:34 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:14:\"content-length\";a:1:{i:0;s:5:\"11517\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:33:\"X-WP-Total, X-WP-TotalPages, Link\";}s:28:\"access-control-allow-headers\";a:1:{i:0;s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";}s:13:\"x-wccom-cache\";a:1:{i:0;s:3:\"HIT\";}s:13:\"cache-control\";a:1:{i:0;s:10:\"max-age=60\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:4:\"x-rq\";a:1:{i:0;s:16:\"dca5 85 111 3132\";}s:3:\"age\";a:1:{i:0;s:1:\"9\";}s:7:\"x-cache\";a:1:{i:0;s:3:\"hit\";}s:4:\"vary\";a:1:{i:0;s:23:\"Accept-Encoding, Origin\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:59:\"https://woocommerce.com/wp-json/wccom-extensions/1.0/search\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),
(1799,'_transient_health-check-site-status-result','{\"good\":\"11\",\"recommended\":\"8\",\"critical\":\"1\"}','yes'),
(1804,'_transient_timeout__woocommerce_helper_updates','1617242916','no'),
(1805,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1617199716;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),
(1813,'_transient_timeout_elementor_remote_info_api_data_3.1.4','1617242944','no'),
(1814,'_transient_elementor_remote_info_api_data_3.1.4','a:4:{s:9:\"timestamp\";s:10:\"1617197159\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:60:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:5;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:6;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:16;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:19;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:20;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:21;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:23;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:24;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:25;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:27;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:28;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:29;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:30;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:31;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:32;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:33;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:34;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:35;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:36;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:37;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:38;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:39;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:40;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:41;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:42;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:43;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:44;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:45;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:46;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:47;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:48;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:49;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:51;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:52;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:59;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.1.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.6\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}}','no'),
(1815,'_site_transient_timeout_community-events-2e7ba96eb91dfae3f78fa124a36fa19d','1617243224','no'),
(1816,'_site_transient_community-events-2e7ba96eb91dfae3f78fa124a36fa19d','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"213.205.194.0\";}s:6:\"events\";a:5:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup - WPTW\";s:3:\"url\";s:77:\"https://www.meetup.com/WordPress-Tunbridge-Wells-Meetup/events/dznmlpyccgbcb/\";s:6:\"meetup\";s:39:\"WordPress Tunbridge Wells Meetup - WPTW\";s:10:\"meetup_url\";s:56:\"https://www.meetup.com/WordPress-Tunbridge-Wells-Meetup/\";s:4:\"date\";s:19:\"2021-04-01 19:00:00\";s:8:\"end_date\";s:19:\"2021-04-01 22:00:00\";s:20:\"start_unix_timestamp\";i:1617300000;s:18:\"end_unix_timestamp\";i:1617310800;s:8:\"location\";a:4:{s:8:\"location\";s:31:\"Tunbridge Wells, United Kingdom\";s:7:\"country\";s:2:\"gb\";s:8:\"latitude\";d:51.1331138610839985858547152020037174224853515625;s:9:\"longitude\";d:0.265242010355000001897707306852680630981922149658203125;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:56:\"Cambridge WordPress: Making WordPress Menus Even Smarter\";s:3:\"url\";s:60:\"https://www.meetup.com/wordpress-cambridge/events/276878061/\";s:6:\"meetup\";s:26:\"WordPress Cambridge Meetup\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wordpress-cambridge/\";s:4:\"date\";s:19:\"2021-04-12 19:00:00\";s:8:\"end_date\";s:19:\"2021-04-12 21:00:00\";s:20:\"start_unix_timestamp\";i:1618250400;s:18:\"end_unix_timestamp\";i:1618257600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:52.2099990844729973105131648480892181396484375;s:9:\"longitude\";d:0.1299999952316300000365600908480701036751270294189453125;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup - WPTW\";s:3:\"url\";s:77:\"https://www.meetup.com/WordPress-Tunbridge-Wells-Meetup/events/dznmlpycchbjb/\";s:6:\"meetup\";s:39:\"WordPress Tunbridge Wells Meetup - WPTW\";s:10:\"meetup_url\";s:56:\"https://www.meetup.com/WordPress-Tunbridge-Wells-Meetup/\";s:4:\"date\";s:19:\"2021-05-06 19:00:00\";s:8:\"end_date\";s:19:\"2021-05-06 22:00:00\";s:20:\"start_unix_timestamp\";i:1620324000;s:18:\"end_unix_timestamp\";i:1620334800;s:8:\"location\";a:4:{s:8:\"location\";s:31:\"Tunbridge Wells, United Kingdom\";s:7:\"country\";s:2:\"gb\";s:8:\"latitude\";d:51.1331138610839985858547152020037174224853515625;s:9:\"longitude\";d:0.265242010355000001897707306852680630981922149658203125;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup - WPTW\";s:3:\"url\";s:77:\"https://www.meetup.com/WordPress-Tunbridge-Wells-Meetup/events/dznmlpyccjbfb/\";s:6:\"meetup\";s:39:\"WordPress Tunbridge Wells Meetup - WPTW\";s:10:\"meetup_url\";s:56:\"https://www.meetup.com/WordPress-Tunbridge-Wells-Meetup/\";s:4:\"date\";s:19:\"2021-06-03 19:00:00\";s:8:\"end_date\";s:19:\"2021-06-03 22:00:00\";s:20:\"start_unix_timestamp\";i:1622743200;s:18:\"end_unix_timestamp\";i:1622754000;s:8:\"location\";a:4:{s:8:\"location\";s:31:\"Tunbridge Wells, United Kingdom\";s:7:\"country\";s:2:\"gb\";s:8:\"latitude\";d:51.1331138610839985858547152020037174224853515625;s:9:\"longitude\";d:0.265242010355000001897707306852680630981922149658203125;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup - WPTW\";s:3:\"url\";s:77:\"https://www.meetup.com/WordPress-Tunbridge-Wells-Meetup/events/dznmlpycckbcb/\";s:6:\"meetup\";s:39:\"WordPress Tunbridge Wells Meetup - WPTW\";s:10:\"meetup_url\";s:56:\"https://www.meetup.com/WordPress-Tunbridge-Wells-Meetup/\";s:4:\"date\";s:19:\"2021-07-01 19:00:00\";s:8:\"end_date\";s:19:\"2021-07-01 22:00:00\";s:20:\"start_unix_timestamp\";i:1625162400;s:18:\"end_unix_timestamp\";i:1625173200;s:8:\"location\";a:4:{s:8:\"location\";s:31:\"Tunbridge Wells, United Kingdom\";s:7:\"country\";s:2:\"gb\";s:8:\"latitude\";d:51.1331138610839985858547152020037174224853515625;s:9:\"longitude\";d:0.265242010355000001897707306852680630981922149658203125;}}}}','no'),
(1817,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1617243225','no');
INSERT INTO `wpcx_options` VALUES
(1818,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News â€“  â€“ WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Mar 2021 17:01:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.8-alpha-50620\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:68:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"So you want to make block patterns?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Mar 2021 17:01:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9995\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Learn how to make block patterns!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2021/03/reusable-block.mp4\";s:6:\"length\";s:6:\"273436\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2021/03/waves-pattern.mp4\";s:6:\"length\";s:6:\"493389\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Beatriz Fialho\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:22433:\"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"356\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=632%2C356&#038;ssl=1\" alt=\"\" class=\"wp-image-9998\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=768%2C432&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?w=1441&amp;ssl=1 1441w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>If you&#8217;ve ever built something for the WordPress block editor â€” a theme or a plugin â€” you may have also heard about <strong>block patterns</strong>. </p>\n\n\n\n<p>Looking at the patterns that come bundled with WordPress, I thought it would be nice to dedicate to them a short post. They&#8217;re pretty nice, useful shortcuts when you know them, but there&#8217;s a good chance you may not know what they are or why you might want to use them.</p>\n\n\n\n<h2>What&#8217;s a block pattern?</h2>\n\n\n\n<p>Patterns are&nbsp;<strong>collections of pre-arranged blocks</strong>&nbsp;that can be combined and arranged in many ways making it easier to create beautiful content. They act as a head-start, leaving you to plug and play with your content as you see fit and be as simple as single blocks or as complex as a full-page layout.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"414\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=632%2C414&#038;ssl=1\" alt=\"\" class=\"wp-image-10021\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=1024%2C670&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=300%2C196&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=768%2C503&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=1536%2C1005&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=2048%2C1340&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>They live in a tab in the block library. You can click or drag and you&#8217;re able to preview them with your site&#8217;s styles.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"413\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=632%2C413&#038;ssl=1\" alt=\"\" class=\"wp-image-10022\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=1024%2C669&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=300%2C196&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=768%2C502&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=1536%2C1003&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=2048%2C1338&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Basically, a block pattern is just a bunch of blocks put together in advance:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>	&lt;!-- wp:group --&gt;\n&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;\n&lt;hr class=\"wp-block-separator is-style-default\"/&gt;\n&lt;!-- /wp:separator --&gt;\n&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;\n&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;\n&lt;!-- /wp:image --&gt;\n&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;\n&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;â€” Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;\n&lt;!-- /wp:quote --&gt;\n&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;\n&lt;hr class=\"wp-block-separator is-style-default\"/&gt;\n&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;\n&lt;!-- /wp:group --&gt;</code></pre>\n\n\n\n<p>That&#8217;s also how you create them: just use the block editor to configure a smattering of blocks to your liking, and the hard part&#8217;s over.</p>\n\n\n\n<h2>How do I get them in the block library?</h2>\n\n\n\n<p>There&#8217;s <a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-patterns/\">more documentation in the handbook</a>, but what it boils down to is this:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php \n/*\nPlugin Name: Quote Pattern Example Plugin\n*/\n\nregister_block_pattern(\n	\'my-plugin/my-quote-pattern\',\n	array(\n		\'title\'       =&gt; __( \'Quote with Avatar\', \'my-plugin\' ),\n		\'categories\'  =&gt; array( \'text\' ),\n		\'description\' =&gt; _x( \'A big quote with an avatar\".\', \'Block pattern description\', \'my-plugin\' ),\n		\'content\'     =&gt; \'&lt;!-- wp:group --&gt;&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;&lt;!-- /wp:image --&gt;&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\\\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;â€” Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;&lt;!-- /wp:quote --&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- /wp:group --&gt;\',\n	)\n);\n\n?&gt;</code></pre>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f446.png\" alt=\"ðŸ‘†\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> That&#8217;s a snippet of PHP, which means you can drop it in a WordPress plugin, or perhaps more simply, paste it into the <strong>functions.php</strong> file from your theme. Done:</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"430\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=632%2C430&#038;ssl=1\" alt=\"\" class=\"wp-image-10047\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=1024%2C696&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=300%2C204&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=768%2C522&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=1536%2C1043&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?w=1908&amp;ssl=1 1908w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>For patterns that include images, it&#8217;s worth thinking about where those are stored. The <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks theme</a> (which is a fancy name for &#8220;TwentyTwentyOne Blocks&#8221;) stores images in the theme library.</p>\n\n\n\n<h2>Now what?</h2>\n\n\n\n<p>The thing about a block pattern is, as soon as you insert it from the block library, it stops being <em>a cohesive unit</em> â€” now it&#8217;s just a smattering of blocks, detached from the pattern you created and meant to be customized to your liking. It&#8217;s a <em>shortcut</em>, not a <em>template</em>. That also means you don&#8217;t have to worry about switching themes or deactivating pattern plugins: the blocks you already inserted won&#8217;t go anywhere.</p>\n\n\n\n<p>That being said, if you like this one pattern so much you want to use it again and again, with no customization at all, you can make it into a <a href=\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\">reusable block</a>:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls loop src=\"https://wordpress.org/news/files/2021/03/reusable-block.mp4\"></video></figure>\n\n\n\n<p>Reusable blocks are created, as the name implies, to be reused. The feature is a great way to store small bits of commonly used snippets that you can edit in one place to update in all. &#8220;<strong>Follow me on Twitter</strong>,&#8221; &#8220;<strong>Article series</strong>,<strong>&#8220;</strong> or <strong>&#8220;Subscribe to my podcast&#8221;</strong> are great examples of that.</p>\n\n\n\n<h2>What makes a good block pattern?</h2>\n\n\n\n<p>Patterns, as they ship today, are limited by the features available. If the block editor doesn&#8217;t allow you to customize letter-spacing, your block pattern can&#8217;t either. While the Global Styles project will expand what&#8217;s to blocks, in the meantime, we have to work with the available tools.</p>\n\n\n\n<p>Even then, with the most basic ingredients â€” color, photography, typography â€” it is possible to do a lot:</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://lh5.googleusercontent.com/W3RKCu5c7ONKnmuLdChmOhD40iZAFseq30i-qGwqFaq0dPTj_U5b1JXhhRR96-jRvJvKgC8BBZA4p_-EBYF-WoMRPoDLgCX8FG3RIWQhv6zX6-H7xBj4FZGGRm7cl_qdVgRy9G8q\" alt=\"\" /><figcaption>Three columns with images and text<br></figcaption></figure></div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"397\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=632%2C397&#038;ssl=1\" alt=\"\" class=\"wp-image-10036\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=1024%2C644&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=300%2C189&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=768%2C483&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=1536%2C965&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=2048%2C1287&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Media and text with image on the right</figcaption></figure></div>\n\n\n\n<p>I designed these patterns to potentially land in WordPress core, which all have a few properties in common:</p>\n\n\n\n<h3><strong>They share a theme.</strong></h3>\n\n\n\n<p>You can think of a pattern as a section of a website: it is meant to be part of a whole, and so it works best when it can exist in the context of other patterns that share the same theme. There are a few sharing a Nature theme in the patterns above, a few sharing an Art theme, and others sharing an Architecture theme. When seen together, it becomes easier to see how you might be able to piece together multiple pages of your site, one page at a time.</p>\n\n\n\n<figure class=\"wp-block-gallery columns-2\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"406\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=632%2C406&#038;ssl=1\" alt=\"\" data-id=\"10033\" data-full-url=\"https://wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png\" data-link=\"https://wordpress.org/news/?attachment_id=10033\" class=\"wp-image-10033\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=1024%2C658&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=300%2C193&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=768%2C493&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=1536%2C987&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=2048%2C1315&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"405\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=632%2C405&#038;ssl=1\" alt=\"\" data-id=\"10034\" data-full-url=\"https://wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png\" data-link=\"https://wordpress.org/news/?attachment_id=10034\" class=\"wp-image-10034\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=1024%2C657&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=300%2C193&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=768%2C493&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=1536%2C986&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=2048%2C1314&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li></ul></figure>\n\n\n\n<h3><strong>They share a minimalist color palette.</strong></h3>\n\n\n\n<p>By being parts of a whole, patterns will inevitably land in a context that uses different colors. With a reduced color palette, there&#8217;s both a better chance of fitting in and less to customize to make it just right.</p>\n\n\n\n<figure class=\"wp-block-gallery columns-2\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"535\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=632%2C535&#038;ssl=1\" alt=\"\" data-id=\"10042\" data-full-url=\"https://wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg\" data-link=\"https://wordpress.org/news/?attachment_id=10042\" class=\"wp-image-10042\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=1024%2C867&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=300%2C254&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=768%2C651&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=1536%2C1301&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?w=1903&amp;ssl=1 1903w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"271\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container.jpg?resize=632%2C271&#038;ssl=1\" alt=\"\" data-id=\"10043\" data-full-url=\"https://wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg\" data-link=\"https://wordpress.org/news/?attachment_id=10043\" class=\"wp-image-10043\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=1024%2C439&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=300%2C129&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=768%2C330&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=1536%2C659&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=2048%2C879&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li></ul></figure>\n\n\n\n<h3><strong>The best patterns <strong>do things you might have not done otherwise</strong>.</strong></h3>\n\n\n\n<p>Whether that&#8217;s images offset to create a unique silhouette, or just using less visible features (like fixed positioning in the Cover block), it&#8217;s a way to surface creativity.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>Tip: You can use any block in your patterns, including blocks that came from a plugin. And if that block is in the block directory, it will prompt you to install it with one click if it&#8217;s missing from your self-hosted WordPress:</em></p></blockquote>\n\n\n\n<figure class=\"wp-block-video\"><video controls loop src=\"https://wordpress.org/news/files/2021/03/waves-pattern.mp4\"></video></figure>\n\n\n\n<h2>Hereâ€™s a plugin for you</h2>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php \n/*\nPlugin Name: Quote Pattern Example Plugin\n*/\n\nregister_block_pattern(\n	\'my-plugin/my-quote-pattern\',\n	array(\n		\'title\'       =&gt; __( \'Quote with Avatar\', \'my-plugin\' ),\n		\'categories\'  =&gt; array( \'text\' ),\n		\'description\' =&gt; _x( \'A big quote with an avatar\".\', \'Block pattern description\', \'my-plugin\' ),\n		\'content\'     =&gt; \'&lt;!-- wp:group --&gt;&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;&lt;!-- /wp:image --&gt;&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\\\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;â€” Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;&lt;!-- /wp:quote --&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- /wp:group --&gt;\',\n	)\n);\n\n?&gt;</code></pre>\n\n\n\n<p>In case you want to make patterns, this example plugin features two of the patterns you saw above. Drop it in your plugins folder and they should show up in your block library.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"966\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=632%2C966&#038;ssl=1\" alt=\"\" class=\"wp-image-10062\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=670%2C1024&amp;ssl=1 670w, https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=196%2C300&amp;ssl=1 196w, https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?w=692&amp;ssl=1 692w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Installed pattern under &#8220;Text&#8221; Category</figcaption></figure></div>\n\n\n\n<p>Feel free to tweak it, customize it, and make it yours. Itâ€™s GPL, after all!</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><em>Thank you <a href=\'https://profiles.wordpress.org/joen/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joen</a> for the help writing this post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9995\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WP Briefing: Talking Full Site Editing with MatÃ­as Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2021/03/talking-full-site-editing-with-matias-ventura/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Mar 2021 15:05:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10013\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:296:\"In this episode, Josepha is joined by MatÃ­as Ventura, also known as â€œthe spark behind the vision of Gutenberg.\" Josepha and MatÃ­as discuss full site editing and answer your questions, from â€œis full site editing a standalone plugin?â€ to â€œwill full site editing break my current site?â€\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/03/WP-Briefing-005.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:31283:\"\n<p>In this episode, Josepha is joined by MatÃ­as Ventura, also known as â€œthe spark behind the vision of Gutenberg.â€ Josepha and MatÃ­as discuss full site editing and answer your questions, from â€œis full site editing a standalone plugin?â€ to â€œwill full site editing break my current site?â€</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/tt1-blocks/\">Twenty Twenty One theme</a></li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">Word Camp Central America&nbsp;</a></li><li><a href=\"https://make.wordpress.org/core/2021/03/12/q2-listening-hours-april-7th-2021/\">2Q21 Listening Hours with Matt Mullenweg and Josepha Haden Chomphosy</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10013\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>Josepha [0:41]: This month, we have a bonus briefing, so I&#8217;ve asked my dear friend and colleague <a href=\"https://profiles.wordpress.org/matveb/\">MatÃ­as Ventura</a> to join me. MatÃ­as was recently called â€œthe spark behind the vision of Gutenberg.â€ With full site editing coming our way in 202, I asked if he would join me for a quick Q&amp;A. Welcome, MatÃ­as.&nbsp;</p>\n\n\n\n<p>MatÃ­as [0:56]: Hello, hello! Thanks for inviting me. It&#8217;s a pleasure to be here.</p>\n\n\n\n<p>Josepha [1:00]: Well, I&#8217;m delighted to have you. And I think that we have a lot of excellent questions. All right, so MatÃ­as, we actually ended up with questions in about three different groupings. And so I&#8217;m going to start with the â€œwhat is it about full site editing,â€ sorts of questions that people had. We&#8217;re gonna work our way into â€œwhat are we doing with it?â€ and then â€œhow are we planning on getting this out the door?â€ Then, a couple of big picture questions that people asked. We&#8217;re just gonna leap right in this full site editing part of the Gutenberg plugin, or is it a standalone plugin?</p>\n\n\n\n<p>MatÃ­as [1:39]: Okay, we&#8217;ll start with the basics. Full site editing is part of the Gutenberg plugin right now. I think it&#8217;s important to mention that full site editing is like an umbrella for several projects that we&#8217;re working on. They are all aiming to bring blocks into more parts of your site so that editing becomes easier and more expressive, and so on. So full site editing right now encompasses adding a ton of new blocks. I think we have around 20 new blocks coming in, including navigation query, site, title, logo, etc. There&#8217;s also the interface to interact with templates outside of the content; that&#8217;s another big part of the full site editing project. We also have a lot of new design tools included, many of these have been released in previous major releases, but they still comprise a strong part of what full site editing is. We also have something called Global Styles, which aims to allow people to configure the visual aspects of blogs across the entire site, not just on any individual blog. And of course, then there&#8217;s a whole layer of how we utilize these tools. It can get complex because there are many layers and projects that need to come together. So yeah, all of these are accessible through the Gutenberg plugin right now.</p>\n\n\n\n<p>Josepha [3:07]: Yeah. So it&#8217;s not a standalone plugin. If you wanted to check out full site editing the site editor experience as it is now, you would just have to make sure you had the Gutenberg plugin on your site. Right?</p>\n\n\n\n<p>MatÃ­as: Yes, correct.</p>\n\n\n\n<p>Josepha:&nbsp; So a couple of the questions related to this are how exactly do I enable it on my site? And what is the easiest and safest way to try this on my site? And I think the answer is, is right in there. It&#8217;s in the Gutenberg plugin. And so if you have that plugin, you don&#8217;t need the testing plugin or anything else to make that work, right?</p>\n\n\n\n<p>MatÃ­as [3:51]:&nbsp; No, you like, you might need to install a theme like Twenty Twenty One blocks that unlock some of these new interfaces that we just talked about. Like other of these pieces are available for anything. But some of these, like the interface to edit templates, right now only talk with things that know how to express their desire.&nbsp;</p>\n\n\n\n<p>Josepha [4:14]: And I think we have less than 10 themes right now that do that, but I&#8217;ll leave some links to at least 2021 blocks in the show notes. And then, if there are another one or two themes that I can find, I can add those in there as well.&nbsp;</p>\n\n\n\n<p>So you have to have the Gutenberg plugin; you have to have a theme that works with that site editor kind of experience. And then you&#8217;re safe to try everything out. It shows up in your left toolbar just like any other thing, like if you were working with plugins, or if you were adding a post or anything else, right?</p>\n\n\n\n<p>MatÃ­as [4:51]: Yes, correct. And so, some of these details are being worked on right now. Like how and where you access things, and so on. These things are subject to change, but right now, you have this site editor beta in the sidebar when both you have the plugin running and a theme that&#8217;s capable.</p>\n\n\n\n<p>Josepha [5:10]: Yeah. Excellent note. If you are running this on a production website, I would recommend you not do that unless you are very, very good with WordPress. It&#8217;s a really safe and easy thing to test and try out. But because it is still in beta, I recommend always putting it on a test site. I have a couple of different test sites that I run on myself. Another question that I had was, â€œwill full site editing slow down my site?â€ And I think we have some refreshed performance tests coming out about that. And maybe they&#8217;ll be out by the time we publish this podcast.</p>\n\n\n\n<p>MatÃ­as [5:49]: Yeah, I mean, like the performance has been one of the major focuses for the whole project. In many cases, it should speed up things because we&#8217;re like, I think one of the big pieces that these projects bring into the picture, especially for themes, is that it allows only the necessary assets to be loaded on the front end. For example, if for a given page, there are, I don&#8217;t know, 10-15 blocks being used, you would only get the CSS and scrapes and so on related to those blocks. This can cut down on a lot a ton of CSS that themes used to end queue on a side, particularly if you were trying to customize many widgets and so on, like a lot of themes have the full styles or multiple widgets, even third party plugins, and so on. So one of the advantages of having this blog system is that we can know at the time of rendering what blogs are being used and only load those assets.&nbsp;</p>\n\n\n\n<p>Josepha [6:50]: Excellent. Another big question that we have is, â€œdoes full site editing work with the classic editor? And does it work with other builders?â€ I think that&#8217;s a really big answer if you&#8217;re going to get super deep into it. But I think that the short answer is yes, it does. Is that fair?</p>\n\n\n\n<p>MatÃ­as [7:08]: Yeah, I don&#8217;t think it touches a bit on that full site editing is not like a single thing. There are multiple projects around it. So again, like the template editor that only deals with blogs, it doesn&#8217;t have a lot to do with a classic editor. But the classic editor use for both doesn&#8217;t change anything at all; like the same way that when the block editor was introduced, it didn&#8217;t change how you could still write posts in the classic editor. You will still be able to do that.</p>\n\n\n\n<p>Josepha [7:41]: And if you are brand new to WordPress person, or, I mean, I guess at this point, you don&#8217;t have to be super brand new. If you&#8217;re fairly new to WordPress person and have no idea what we&#8217;re talking about when we say the classic editor, you don&#8217;t really have to worry about it either. You don&#8217;t have to go and find out what that is; the block editor that you have right now works perfectly for what you&#8217;re trying to do. So if you don&#8217;t know what I mean when I say classic editor, don&#8217;t worry about chasing it down either.&nbsp;</p>\n\n\n\n<p>I think that this last question we accidentally answered earlier, but I&#8217;m going to go ahead and ask it anyway since I received it. â€œI keep hearing that you can use the site editor with the 2021 theme. But I don&#8217;t seem to be able to. What am I missing?â€ I think the answer is that there&#8217;s the Twenty Twenty One theme shipped with the WordPress release 5.6. And then there is the Twenty Twenty One blocks theme; those are two different themes. The link to the Twenty Twenty One block theme is going to be in our show notes this time around. And so, if you have been trying to use the full site editor with Twenty Twenty One and not succeeding, try the link to the one below. And I bet that that will work for you.</p>\n\n\n\n<p>MatÃ­as [8:50]: Yes, that&#8217;s correct.&nbsp;</p>\n\n\n\n<p>Josepha [8:51]: All right, excellent. Well, that brings us kind of into our second set of questions, which is about how we are doing it. The first one that folks have is â€œwill full site editing be on by default in the next release. In this context, the next release is WordPress 5.8. But I think it&#8217;s a safe question to ask if full site editing will be on by default in the release that it&#8217;s planned for.</p>\n\n\n\n<p>MatÃ­as [9:15]: Yeah, and for this, I need to go back to the same principle of many projects because there are many pieces of full site editing, and we have been merging them in major releases, particularly like the blocks and the design tools. There are more coming in that we want to make accessible as soon as possible. The full experience that requires a theme to opt-in to templates using blogs wonâ€™t be by default; it requires a specific theme running. A lot of these details we&#8217;re still like determining exactly what projects are ready to be merged and so on. But yeah, if you have a theme right now that works the way you want, it doesn&#8217;t change anything there. If anything, it adds some more capabilities and more customization tools, and so on. And the theme can also regulate how much they want to incorporate.</p>\n\n\n\n<p>Josepha [10:13]: MatÃ­as, you&#8217;ve mentioned a couple of times in this podcast so far like this is a really complex and really complicated part of this work. And just for anyone out there who&#8217;s either encountering Gutenberg or full site editing or this podcast for the first time, I think a tiny bit of context that&#8217;s worth having here is that MatÃ­as and I have been working on this together in various capacities for like, five years. And MatÃ­as has probably been working on this for practically a decade. So, when we say that this is a really complicated problem, and when we say that this is a complex set of issues that we&#8217;re working with like, it is all that we have been thinking about for I want to say at least the last three or four years, but certainly it&#8217;s all that we have been trying to untangle for quite a bit of time before that as well. So we don&#8217;t take it lightly when we&#8217;re like, â€œthis is complicated;â€ we mean it. It&#8217;s really complicated. And we&#8217;re trying our hardest over here as WordPress.&nbsp;</p>\n\n\n\n<p>The next big question, since we&#8217;re all stuck in the â€œit&#8217;s very complicated,â€ part of things is the question, â€œwill this update break my current site?â€ Like, if I have a site that is updated and ready, and it&#8217;s exactly as I wanted it to be, and it took me two years to get there will full site editing, whichever release it&#8217;s in. Currently, 5.8 is what we&#8217;re planning for. Will that break anything on my site as I know it right now?</p>\n\n\n\n<p>MatÃ­as [11:44]: No, not at all. One of the major things that the WordPress team, the WordPress community, always cares so much about, never to break things. Many of these things are stepping stones that you can adopt, as we&#8217;ve talked about full site editing. But for example, we also have a few concurrent projects around the widget screen and the navigation screen that are meant to bring blocks into existing interfaces. So again, the theme doesn&#8217;t need to change, and a lot of care is being put into making this more like you&#8217;re unlocking new features, and nothing really breaks or falls apart.</p>\n\n\n\n<p>Josepha [12:23]: This update, like all the other updates, should have minimal, minimal impact on what you have to actively fix on your site. Every once in a while, a bug is gonna get by. We can&#8217;t say that we&#8217;re 100% perfect with not breaking things. But also, we always and I and I know that we&#8217;re planning on this for our remaining releases for the rest of the year. At the very least, I can&#8217;t imagine we&#8217;d ever change it. But after every major release, we always make a plan to have a minor release within the next one or two weeks. Because we know that a broken thing on a site is really incredibly impactful, even if you&#8217;re only 1% of the sites that had that happen to it. And so I think that&#8217;s true in this case, too. And getting that feedback back from all of the people who are actually using WordPress is the thing that makes us be able to kind of move quickly when we do see those problems.&nbsp;</p>\n\n\n\n<p>One of the questions that we have been getting is, â€œcan I see a live preview without saving the changes that I made?â€ When I got this question, I didn&#8217;t actually understand it. And so I went and looked at a site without the Gutenberg plugin on it, and then a site with the Gutenberg plugin on it. And of course, on sites without Gutenberg, without the block editor, without full site editing, when you are looking to preview, you have the option to open up your preview in a new window. And you don&#8217;t have that with Gutenberg because it&#8217;s supposed to be a true WYSIWYG editor. A true what you see is what you get, editor. I think that the answer to this is, yes, you can see a live preview without actually saving the changes on the front end of your site. But you don&#8217;t actually have to reload anything. You don&#8217;t have to open it up in a new window. You don&#8217;t have to, like, actively click â€œplease show me a previewâ€ because what you see in your editing screen should be what you see at the end of your app as an end-user.</p>\n\n\n\n<p>MatÃ­as [14:28]: Yeah, that&#8217;s the sort of the main gist to it. Yes, the site editor is built so that it always reflects the front end as truly as possible, so that&#8217;s one layer. Also, the preview tools should allow you to see in different devices like mobile breakpoints, and I don&#8217;t know if they will have breakpoints and stuff like that. There are a lot of things in the current interface that is just not enabled. There are some challenges in the sidebar. Because the site editor is not just focused on a single post, it&#8217;s focused on the entire site. So, there can be many, many changes that need to be shadowed for the site.&nbsp;</p>\n\n\n\n<p>If you&#8217;re changing the site title, some of the global styles, aspects, and so on need to be orchestrated. So, to see in the previewing new window, there are some challenges there to integrate. Again, the interface is not final yet; a lot of these things are still being tweaked and improved. There are many things from the regular post editor that are not enabled yet. But they will be enabled. So yeah, it&#8217;s a, I guess, it&#8217;s not a simple thing to answer. Because, again, the idea of previewing the site that&#8217;s core to the whole project is that you&#8217;re always interacting in the same way that when you&#8217;re in the customizer, you&#8217;re seeing the preview all the time. That&#8217;s the main scope of this project,</p>\n\n\n\n<p>Josepha [15:54]: Excellent. Changes like that changes to your workflow can be really hard to get your mind around, especially if part of that existing workflow was there to create some confidence in what you&#8217;re seeing with your users. And so I understand. Now that I&#8217;ve researched that question a bit, I see where that&#8217;s coming from. Based on existing workflows and existing patterns that we have for ourselves in WordPress, will we need to have a theme to use the full site editor?</p>\n\n\n\n<p>MatÃ­as [16:33]: I think we&#8217;ve already covered some of these. And again, they are tools that can work on any existing theme. There is other stuff that needs space-specific themes to opt-in into these tools, like blog templates and so on.</p>\n\n\n\n<p>Josepha [16:50]: Yes, I think the question that we have next, because I see that the literal next question I have is actually something we have covered; just because we&#8217;re being pretty conversational about it, not because anyone already asked the question. So I&#8217;m actually going to skip to the last question of this section that I received. I got this next one via Twitter. The question is, â€œhow do you view the role of themes once full site editing is fully rolled out and all the page elements (content, headers, widgets, footers, etc.) and all the views are managed via blocks and block patterns? Will things become typographic and block styles?â€</p>\n\n\n\n<p>MatÃ­as [17:28]: I think this is a great question because it goes to the heart of, why are we doing all this. One of the main reasons is to empower users more. WordPress has been democratizing publishing for a while; this is another step into allowing themes to get more customization tools and more control over their site if they want to. I think the recent call for testing has focused on the 404 page, for example. That&#8217;s something that forever has been locked away from users. And it&#8217;s also something that, as a theme developer, and I used to develop themes a long time ago, that was one of the things where you decide what sort of approach you take for the 404 page. Maybe sometimes you want to have something more whimsical. Sometimes you need something more serious. And committing to one when you can have such a diverse and broad user base can be challenging. With these, it becomes as easy as offering a few different patterns for that template. Then the user will always be able to change the copy and modify something. So again, it opens up a lot of these things that used to be locked down. However, from a theme perspective, I think this doesn&#8217;t reduce the theme at all. If anything, it allows the theme to focus less on coding and functions and more on design expression and aesthetics. I don&#8217;t think that would ever be exhausted. That will always remain as diverse as humans are interacting with WordPress. And so it&#8217;s not that I don&#8217;t see it&#8217;s just as like, typographic and block styles. How do you express a template, how do you express the structure, what choices you quote, what choices you make as a theme builder? And of course, there are many degrees of control there. Because a site maintainer may not want the 404 template to be editable, that sort of control will always be present.</p>\n\n\n\n<p>Josepha [19:38]: Yeah. And really fast. I have to add a caveat to a thing that you said in there. For anyone who&#8217;s listening keenly, you may have heard MatÃ­as say that the users can update any of the content there &#8211; any of the copy. In this context, we&#8217;re talking about users as in the people who are maintaining the site, not people who are visiting your site. Visitors to your site will not be able to change any copy on your page unless you&#8217;ve done something very interesting with your WordPress site, which is also fine if that&#8217;s what you prefer to do. By default, your visitors can&#8217;t change everything on your website, which is good news, frankly.</p>\n\n\n\n<p>So I&#8217;ve got one logistics question, which I&#8217;m happy to take. And then one is kind of a big picture question that I also got from Twitter. â€œWhat about the classic editor block; what is going to happen to that? And when will we know?â€ So ages and ages ago, before COVID? I think so. Probably maybe a couple of years ago, Matt said that the classic editor plugin would be supported through the end of 2021. And that is still the case; there will be active support on that through the end of 2021. After that, it will not be actively supported anymore. It won&#8217;t be removed from any place that you can get access to right now. In a â€œthis is the end of its lifecycleâ€ sort of way, we just won&#8217;t have anyone who is currently committed to maintaining that plugin anymore. So that&#8217;s what&#8217;s happening at the end of the year. And yeah, at the end of 2021. The big question that we have is, â€œwhy is full site editing being so rushed?â€ I think this is a bit of a loaded question.</p>\n\n\n\n<p>MatÃ­as [21:32]: Yeah, I think I think it&#8217;s still a fair question, though. I think we&#8217;re dealing with two things here. And one is ensuring that we release things in the best state possible. And also, some of the urgency is to offer tools that we know that people lack right now and that could really benefit from. Making that determination is very tricky. The full site editing project has been in the works for the last couple of years. If we count the initial phase of Gutenberg, that&#8217;s four to five years. We&#8217;ve been doing many calls for testing, which I think have been super useful to catch issues and reflect as a community on where things are going; how do we integrate with these? How do we use it? What are the shortcomings? What do we need to do? Based on all of these, we&#8217;ll continue to make decisions on when things become ready. We&#8217;re not committed to releasing something that&#8217;s not in a good state. And I think we will always be very careful about that. There are these two competing senses of the urgency &#8211; of getting some of these tools out, and because it also benefits from the feedback loops. I always say that, in many ways, the initial phase of Gutenberg, to me, is not finished. We took the initial two years to do the 5.0 release, the initial block editor, and so on. But, it&#8217;s still being improved at a very fast pace, among all the recent major releases improvements to the editor were included; that will continue to be the case. In many ways, phase one is not finished. And the moment we choose to release some of these tools or editing tools, it won&#8217;t be finished either. They will need to continue to grow, mature, and incorporate a lot of the feedback. Even the things that the ecosystem is building around. I&#8217;ve seen a few themes already that are incorporating a blank canvas template so that you can use them in some pages and take over and do everything with blocks. So even the community and ecosystem as a whole is also sort of paving the way for what needs to come.</p>\n\n\n\n<p>Josepha [24:06]: I think from my perspective, and of course, I&#8217;m on the people side of things, the communication side of things, the logistics side of things; I have a frequently a very different view from what a lot of other folks are seeing. And so from my side of things, I have to say, I&#8217;m communicating about this change in a really broad way, which has not been happening since 2019 when we started the work. We&#8217;ve been communicating broadly with the WordPress community, but not with everybody who uses WordPress. So, I think that for a lot of people, this looks like a project that we started really actively working on in the last six months or so. And now we&#8217;re just racing toward a finish line. I think that there&#8217;s, there&#8217;s not been a lot of awareness of everything that&#8217;s gone into it. And so, on the one hand, it feels a little less rushed to me knowing the full length of the history on this. But also, as you said, I really think that this gets a bunch of tools to people who otherwise have not been able to accomplish these things in WordPress or otherwise. I am so anxious to get something to people who really can benefit from this change the most. And it&#8217;s the nature of the open source, right that like, one, as long as you have users, you&#8217;re going to have stuff you have to fix in your software. So we&#8217;re never really, really going to be done with this; there&#8217;s not going to be like a done point of WordPress. And the second thing is, I think it&#8217;s generally true that you don&#8217;t really start getting full user feedback until after you have launched your major release. I think that we see that a lot in open source software; you can bring in as many people as you think you can in your user tests heading up to it. And in your accessibility tests. And, in general, quality assurance tests. You can bring in a lot of people and still not have gotten the full understanding of the various niche use cases that your users will bring to you. Because at this point, we&#8217;re like 40% of the web. And that means that we&#8217;re serving this majority collection of increasingly minority voices and niche voices in the space. And so, a little bit I feel a sense of urgency; I feel a bit of anxiousness about trying to get this out there for one, to get the tools in the hands of the people who can benefit the most from them, but also so that we can start really getting the full stress test of this software out and get that feedback in so that we can really build something responsive to what our users need our long tail, â€œanyone who ever uses WordPress ever,â€ definition of users. And so, that&#8217;s why I feel a sense of urgency around it. Even though you know, as I said, you and I have been working on this for like five years, and you&#8217;ve been working on it for a decade or something. I actually don&#8217;t know how long it&#8217;s been worked on.</p>\n\n\n\n<p>MatÃ­as [27:35]: Now that makes me feel a bit old.</p>\n\n\n\n<p>Josepha [27:40]: Nobody makes MatÃ­as feel old. He is a lovely, wonderful colleague. Sorry, MatÃ­as, If I made you feel old.</p>\n\n\n\n<p>MatÃ­as [27:46]: No, that&#8217;s totally fine. I also want to add that full site editing is not like a single toggle that&#8217;s going to drop into a major release. So I think that&#8217;s important to consider, I think this entire year is going to see a lot of these tools being, and sometimes the sort of the end-user is not the, again, the site maintainer. Still, you can also be the theme developer; I think there are many tools that would be empowering for theme developers to use. Again, we mentioned there are like five to ten themes, block themes right now. That needs to grow a lot, and that only grows through these sorts of feedback loops. And the theme community pushing things forward and seeing where things can lead to. I&#8217;m very excited about the pattern directory integration because I think that can also combine with blog themes in very powerful ways. Imagine if, I don&#8217;t know many of these patterns that are very common on the web and very needed, that if we can refine them together with a second community and make them available across themes, you can combine a header from one theme with a content of another; all these sorts of mixtures could happen. All of this needs exploration, the creativity of the entire community, and so on. In that sense, getting all these tools, even if it doesn&#8217;t immediately change anything for like the site itself, starts to unlock a lot of things.&nbsp;</p>\n\n\n\n<p>Josepha [29:27]: I&#8217;m going to take a bit of your answer from there and tie it all the way back to your first answer that we had when you joined me today. And say, I think you&#8217;re absolutely right. We have a set of users in our theme authors and our plugin developers as well that we desperately need to get looking at this set of tools. I hope that what we are shipping in the first iteration of this serves as an opportunity for all of those theme authors and agency owners, plugin authors, WordPress site configurers freelancers. Like, I really hope that this puts it into a really accessible, easy-to-access space for them so that they can do those experiments based on what they know their users need the most. They are the group that has the closest access to site maintainers. And what they need compared to, for instance, me or a potential you like we have a lot of information, you and I, we do a lot of tests, we have a strong sense of what is needed at the moment, but we don&#8217;t have as a close connection that our theme and agency and plugin folks all have. And so that&#8217;s another part of why I&#8217;m so excited to get this out in the current iteration of it.</p>\n\n\n\n<p>Josepha [31:04]: That was a lot of questions in a little bit of time. This is going to be officially my longest WordPress briefing. MatÃ­as, I am so glad that you were able to join me today. And I think that everyone&#8217;s going to be really, really excited to hear your answers to these questions.</p>\n\n\n\n<p>MatÃ­as [31:23]: Thank you for having me.</p>\n\n\n\n<p>Josepha [31:25]: All right, my friends. That brings us into our small list of big things. I&#8217;m going to skip our community highlight today just because we had a slightly longer word press briefing in our bonus iteration today. But the small list of big things. The first thing is WordCamp Central America is coming up on April 15; there is a registration link in the show notes that you can access your tickets with. I recommend that you go; we&#8217;ve got a lot of excellent speakers coming up there and a lot of good content and good training and learning for y&#8217;all. The second thing is that Matt Mullenweg and I have listening hours coming up with the community in the first week of April. I&#8217;ll add the link to register for those in the show notes as well; it&#8217;s just a few minutes for you all to stop by, check-in, see what&#8217;s going on, and share some celebrations or concerns with us. And I hope that I see you there.&nbsp;</p>\n\n\n\n<p>So that my friends is your small list of big things. Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10013\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WP Briefing: How WordPress Improves\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2021/03/how-wordpress-improves/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Mar 2021 15:08:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/?post_type=podcast&p=9980\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:178:\"In this episode, Josepha Haden Chomphosy explores the WordPress release process. Tune in to learn about what goes into a release and catch this weekâ€™s small list of big things.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/03/WP-Briefing-004.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10233:\"\n<p>In this episode, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> explores the WordPress release process. Tune in and learn the phases of a release and catch this weekâ€™s small list of big things.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2021/03/esperanza/\">WordPress 5.7 â€œEsperanzaâ€&nbsp;</a></li><li><a href=\"https://en.wikipedia.org/wiki/Esperanza_Spalding\">Esperanza Spalding</a></li><li><a href=\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\">Gutenberg Tutorial: Reusable Blocks</a></li><li><a href=\"https://make.wordpress.org/test/\">make.wordpres.org/test</a></li><li><a href=\"https://make.wordpress.org/core/handbook/contribute/git/\">GitHub repository&nbsp;</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-9980\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>All right, so last week, we wrapped up and shipped the WordPress 5.7 release. The release team this time around was smaller than we&#8217;ve had in the last couple of years. By the numbers, it looks really good: 66 enhancements or feature requests went in, 127 bugs were fixed, and seven versions of a Gutenberg plugin were merged and backported. If you use WordPress, you are probably aware that we have new releases throughout the year, but you probably don&#8217;t know much about the release process. There&#8217;s not really a reason to know unless you&#8217;re actively contributing to a release. For those interested in knowing more about how we improve WordPress, this week&#8217;s exploration is for you.</p>\n\n\n\n<p>We&#8217;re gonna take a look at what goes into WordPress releases and just kind of zoom our way in from the highest level. At the highest level, there are three major WordPress releases a year, plus the minor releases, plus Gutenberg releases. So if you&#8217;re following current WordPress work and future WordPress work, that&#8217;s going to get you to probably around <strong>30 releases a year</strong>. If we zoom in one level to the release itself, a single release of WordPress takes four to five months from start to the day that we ship, and an additional four to six weeks on support and translations, and minor releases after that. If you&#8217;re looking from my vantage point, you&#8217;ll see that WordPress releases have essentially five parts, some of which happen kind of simultaneously.&nbsp;</p>\n\n\n\n<p>The first part is planning and includes the project lead, lead developers, design; groups like that. The second phase is the creation phase when we&#8217;re actually building the things that have to go into the CMS that involves the design, core, editor, mobile, and other teams. Then there&#8217;s this phase that I like to refer to as the distribution phase. This is mostly done by the teams that make sure that WordPress is widely distributable; the polyglots team work on translations, accessibility does some work, docs make sure that everything is documented, and training, of course, gets things ready for when we have to be able to tell people how to use the release.&nbsp;</p>\n\n\n\n<p>Then there is the fourth phase; I really don&#8217;t think they go sequentially or in a waterfall format. The fourth-ish phase that I include, and that I tend to see, is this extending and iteration phase. It&#8217;s the phase where we see our theme authors and our plugin authors, folks who are doing support, show up and help us to make sure that WordPress is available not only widely but broadly to ensure that their audiences as theme authors and plugin authors are covered in the features that they need based on what they are using WordPress for. The fifth phase is the part of our communication that involves the community team, especially marketing, WordPressTV, and learn.wordpress.org. Basically, anyone who&#8217;s showing up to make sure that we all share what happened in the release, the features that are coming, and how that affects the users is involved in that particular phase. So five big phases of what happens over those four to five months, and then for the month or month and a half afterward.&nbsp;</p>\n\n\n\n<p>If we zoom in a bit more on the creation phase, each release has people who lead the work and coordinate contributor efforts during the course of the release. For any given release, hundreds of people contribute and receive credit for moving the WordPress project forward. Okay, hold on a second. Let&#8217;s pump the brakes and zoom in a bit on that. Hundreds of people work on every major release for a project that powers over 40% of the web that feels like a small number. But for the people who process the contributions in preparation for release, it&#8217;s actually pretty substantial. For every release, there is a small team of leaders who asked the hard questions. Is this a usable feature? Does this make WordPress better overall? And, of course, is this ready to ship?&nbsp; Some of those leaders, a smaller subset of even the leaders that we have already, are committers who actually prep and merge patches to the CMS; they don&#8217;t do all the work to create a design or write all the code. This tiny group of people processes hundreds and hundreds of bug fixes, improvements, and enhancements that have been submitted over the course of months and sometimes years. As a side note, that whole process is a little smaller, a little faster in the Gutenberg featured plugin, but the basic parts are still there. Alright, so we&#8217;ve zoomed from the big picture way into some of the finer details, and it really looks like any other project cycle. So now, I&#8217;m going to layer in the filter of open source to that process.</p>\n\n\n\n<p>There are a couple of things that make building software in an open source environment so different. The first is that the code is readily available. If you have a basic understanding of the languages, you can see the code, learn from it, and make suggestions about improving it. Second, you consider the user a co-developer in the process, which means that as long as people use your product, they will have opinions on what you shipped. This way of iterating improves WordPress and ties back to one of my favorite open source principles. The idea that with many eyes, all bugs are shallow. To me, that means that with enough people looking at a problem, someone is bound to be able to see the solution.</p>\n\n\n\n<p>This brings us to our community highlight, the segment where I share a note about contributors who have helped others along the way or a WordPress success story. This week&#8217;s highlight is from Nok in our Bangkok community. When asked to help her find her way into the WordPress community, she said, â€œ@shinichiN who started the WordPress community in Bangkok and encouraged me to contribute, and also @mayukojpn has introduced me to the WP community team to join as a deputy. â€œ Thank you for sharing those two inspiring people with us. And if you, listener, have any stories that you would like to share of your own WordPress success or people that you have been so grateful to help you find your way in the project, you can feel free to email those to me at <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>.</p>\n\n\n\n<p>That brings us to our final segment of the WP Briefing, the small list of big things. I only have three things to share with you this week. The first one is that about a week ago, we had our first release of 2021. It was the WordPress 5.7 release, titled Esperanza. If you have not yet seen it, go ahead and update your website or check with your host and make sure that they have updated you if you&#8217;re on a managed host. And then take a listen to the artists that it&#8217;s named after.&nbsp;</p>\n\n\n\n<p>The second thing that I want you to keep an eye out for is wordpress.org/news. We are starting a new series of content that gets at the heart of some of Gutenbergâ€™s basic parts; thereâ€™s a lot of change coming up in the next few releases of WordPress. And the most important thing to me is that you understand what we&#8217;re trying to change and where those changes are primarily taking place. There will be a couple of tutorials that go up there over the course of the of the next few weeks. The third item on the small list of big things is to remind you of our call for testing. As I mentioned earlier in the podcast, the users of any open source software are the code developers; the software built is supposed to make your life and work easier. When you test things and find interactions that can use a little bit of refinement or features that are not working exactly as expected, it&#8217;s incredibly helpful for us to have that information to always make sure that we&#8217;re solving problems instead of accidentally creating them. If you want to participate in the Current call for testing, you can head over to make.wordpress.org/test. Or, if you&#8217;ve been doing your own testing, you can also submit any bugs you have found in the GitHub repo, which I will share in the show notes below. So that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress briefing. Iâ€™m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9980\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress 5.7 â€œEsperanzaâ€\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2021/03/esperanza/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Mar 2021 20:52:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9888\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"Meet â€œEsperanzaâ€, the first WordPress release of 2021. â€œEsperanzaâ€ is named in honor of Esperanza Spalding, a modern musical prodigy. Her path as a musician is varied and inspiringâ€”learn more about her&#160;and give her music a listen! With this new version, WordPress brings you fresh colors. The editor helps you work in a few places [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://s.w.org/images/core/5.7/about-57-drag-drop-image.mp4\";s:6:\"length\";s:6:\"183815\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:40509:\"\n<div class=\"wp-block-cover\" style=\"background-color:#0a5b89\"><img loading=\"lazy\" width=\"632\" height=\"327\" class=\"wp-block-cover__image-background wp-image-9932\" alt=\"\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/about-header-brushes.png?resize=632%2C327&#038;ssl=1\" data-object-fit=\"cover\" data-object-position=\"52% 67%\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/03/about-header-brushes.png?w=1000&amp;ssl=1 1000w, https://i1.wp.com/wordpress.org/news/files/2021/03/about-header-brushes.png?resize=300%2C155&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/03/about-header-brushes.png?resize=768%2C397&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-large-font-size\"><strong>WordPress 5.7</strong> <strong>&#8220;Esperanza&#8221;</strong></p>\n\n\n\n<p class=\"has-text-align-center\">Bringing you fresh colors in the admin, simpler interactions in the editor, and controls right where you need them, WordPress 5.7 lets you focus on the content you create.</p>\n\n\n\n<div style=\"height:120px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p></p>\n</div></div>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Meet â€œEsperanzaâ€, the first WordPress release of 2021. â€œEsperanzaâ€ is named in honor of Esperanza Spalding, a modern musical prodigy. Her path as a musician is varied and inspiringâ€”<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://en.wikipedia.org/wiki/Esperanza_Spalding\">learn more about her</a>&nbsp;and give her music a listen!</p>\n\n\n\n<p>With this new version, WordPress brings you fresh colors. The editor helps you work in a few places you couldnâ€™t before without getting into code or hiring a pro. The controls you use most are right where you need them. Layout changes that should be simple, are even simpler to make.</p>\n\n\n\n<h2>Now the new editor is easier to use</h2>\n\n\n\n<p><strong>Font-size adjustment in more places:</strong>&nbsp;now, font-size controls are right where you need them in the List and Code blocks. No more trekking to another screen to make that single change!</p>\n\n\n\n<p><strong>Reusable blocks:</strong>&nbsp;several enhancements make reusable blocks more stable and easier to use. And now they save automatically with the post when you click the Update button.</p>\n\n\n\n<p><strong>Inserter drag-and-drop:</strong>&nbsp;drag blocks and block patterns from the inserter right into your post.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.7/about-57-drag-drop-image.mp4\"></video></figure>\n\n\n\n<h2>You can do more without writing custom code</h2>\n\n\n\n<p><strong>Full-height alignment:</strong>&nbsp;have you ever wanted to make a block, like the Cover block, fill the whole window? Now you can.</p>\n\n\n\n<p><strong>Buttons block:</strong>&nbsp;now you can choose a vertical or a horizontal layout. And you can set the width of a button to a preset percentage.</p>\n\n\n\n<p><strong>Social Icons block:</strong>&nbsp;now you can change the size of the icons.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img src=\"https://i0.wp.com/s.w.org/images/core/5.7/about-57-cover.jpg?w=632&#038;ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>A simpler default color palette</h2>\n\n\n\n<p>This new streamlined color palette collapses all the colors that used to be in the WordPress source code down to seven core colors and a range of 56 shades that meet theÂ <a href=\"https://www.w3.org/WAI/WCAG2AA-Conformance\">WCAG 2.0 AA recommended contrast ratio</a>Â against white or black.</p>\n\n\n\n<p>Find the new palette in the default WordPress Dashboard color scheme, and use it when youâ€™re building themes, plugins, or any other components. For all the details,&nbsp;<a href=\"https://make.wordpress.org/core/2021/02/23/standardization-of-wp-admin-colors-in-wordpress-5-7\">check out the Color Palette dev note</a>.</p>\n\n\n\n<h2>From HTTP to HTTPS in a single click</h2>\n\n\n\n<p>Starting now, switching a site from HTTP to HTTPS is a one-click move. WordPress will automatically update database URLs when you make the switch. No more hunting and guessing!</p>\n\n\n\n<h2>New Robots API</h2>\n\n\n\n<p>The new Robots API lets you include the filter directives in the robots meta tag, and the API includes the&nbsp;<code>max-image-preview: large</code>&nbsp;directive by default. That means search engines can show bigger image previews, which can boost your traffic (unless the site is marked&nbsp;<em>not-public</em>).</p>\n\n\n\n<h2>Lazy-load your iFrames</h2>\n\n\n\n<p>Now itâ€™s simple to let iframes lazy-load. By default, WordPress will add a&nbsp;<code>loading=\"lazy\"</code>&nbsp;attribute to iframe tags when both width and height are specified.</p>\n\n\n\n<h2>Ongoing cleanup after update to jQuery 3.5.1</h2>\n\n\n\n<p>For years jQuery helped make things move on the screen in ways the basic tools couldnâ€™tâ€”but that keeps changing, and so does jQuery.</p>\n\n\n\n<p>In 5.7, jQuery gets more focused and less intrusive, with fewer messages in the console.</p>\n\n\n\n<h2>Check the Field Guide for more!</h2>\n\n\n\n<p>Check out the latest version of the WordPress Field Guide. It highlights developer notes for each change you may want to be aware of.&nbsp;<a href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide\">WordPress 5.7 Field Guide.</a></p>\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>The WordPress 5.7 release comes to you from a small and experienced release squad:&nbsp;&nbsp;</p>\n\n\n\n<ul><li><strong>Release Lead:</strong>&nbsp;Matt Mullenweg (<a href=\'https://profiles.wordpress.org/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a>)</li><li><strong>Triage Lead:</strong>&nbsp;Tonya Mork (<a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>)</li><li><strong>Release Coordinator:</strong>&nbsp;Ebonie Butler (<a href=\'https://profiles.wordpress.org/metalandcoffee/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>metalandcoffee</a>)</li><li><strong>Core Tech Lead:</strong>&nbsp;Sergey Biryukov (<a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a>)</li><li><strong>Editor Tech Lead:</strong>&nbsp;Robert Anderson (<a href=\'https://profiles.wordpress.org/noisysocks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>noisysocks</a>)</li><li><strong>Design Lead:</strong>&nbsp;Tim Hengeveld (<a href=\'https://profiles.wordpress.org/hedgefield/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hedgefield</a>)</li><li><strong>Accessibility Lead:</strong>&nbsp;Sarah Ricker (@sarahricke<strong>r</strong>)</li><li><strong>Documentation Lead:&nbsp;</strong>Jb Audras (<a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>)</li><li><strong>Test Lead:</strong>&nbsp;Monika Rao (<a href=\'https://profiles.wordpress.org/monikarao/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>monikarao</a>)</li></ul>\n\n\n\n<p>This release is the reflection of the hard work of 481 generous volunteer contributors. Collaboration occurred on nearly 250 tickets on Trac and over 950 pull requests on GitHub.</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/7studio/\">7studio</a>, <a href=\"https://profiles.wordpress.org/aaribaud/\">aaribaud</a>, <a href=\"https://profiles.wordpress.org/technosailor/\">Aaron Brazell</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/abagtcs/\">abagtcs</a>, <a href=\"https://profiles.wordpress.org/acerempel/\">acerempel</a>, <a href=\"https://profiles.wordpress.org/activecoder/\">activecoder</a>, <a href=\"https://profiles.wordpress.org/ad7six/\">ad7six</a>, <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamboro/\">adamboro</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addison Stavlo</a>, <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais/\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a>, <a href=\"https://profiles.wordpress.org/albertomake/\">albertomake</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexwoollam/\">Alex Woollam</a>, <a href=\"https://profiles.wordpress.org/alex27/\">alex27</a>, <a href=\"https://profiles.wordpress.org/chemiker/\">Alexander Lueken</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/almendron/\">almendron</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/ambienthack/\">ambienthack</a>, <a href=\"https://profiles.wordpress.org/amolv/\">Amol Vhankalas</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">AndrÃ© Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/anyssa/\">Anyssa Ferreira</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/artpi/\">Artur Piszek</a>, <a href=\"https://profiles.wordpress.org/maigret/\">Aur&#233;lien Denis</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bartosz777/\">bartosz777</a>, <a href=\"https://profiles.wordpress.org/basscan/\">basscan</a>, <a href=\"https://profiles.wordpress.org/bduclos/\">bduclos</a>, <a href=\"https://profiles.wordpress.org/becdetat/\">becdetat</a>, <a href=\"https://profiles.wordpress.org/pixolin/\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bhanusinghkre/\">bhanusinghkre</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/bonniebeeman/\">bonniebeeman</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/ibdz/\">Boy Witthaya</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brijeshb42/\">brijeshb42</a>, <a href=\"https://profiles.wordpress.org/burnuser/\">burnuser</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/carloscastilloadhoc/\">carloscastilloadhoc</a>, <a href=\"https://profiles.wordpress.org/carlosgprim/\">carlosgprim</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/celendesign/\">celendesign</a>, <a href=\"https://profiles.wordpress.org/cenay/\">Cenay Nailor</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">ceyhun0</a>, <a href=\"https://profiles.wordpress.org/chexwarrior/\">chexwarrior</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger/\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/amethystanswers/\">Christina Workman</a>, <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/clayray/\">clayray</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreyw/\">Corey</a>, <a href=\"https://profiles.wordpress.org/cristinasoponar/\">cristinasoponar</a>, <a href=\"https://profiles.wordpress.org/dam6pl/\">Damian Nowak</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dvankooten/\">Danny van Kooten</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David BiÅˆovec</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davecpage/\">David Page</a>, <a href=\"https://profiles.wordpress.org/dbtedg/\">dbtedg</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/denishua/\">denishua</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">DÃ¡vid SzabÃ³</a>, <a href=\"https://profiles.wordpress.org/e_baker/\">e_baker</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella vanÂ Durpe</a>, <a href=\"https://profiles.wordpress.org/erichmond/\">Elliott Richmond</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej BajgoriÄ‡</a>, <a href=\"https://profiles.wordpress.org/enricocarraro/\">Enrico Carraro</a>, <a href=\"https://profiles.wordpress.org/epicfaace/\">epicfaace</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion/\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ericmann/\">Eric Mann</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Erin \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/eventualo/\">eventualo</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/florianziegler/\">Florian Ziegler</a>, <a href=\"https://profiles.wordpress.org/floriswt/\">floriswt</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekpress/\">GeekPress</a>, <a href=\"https://profiles.wordpress.org/geekzebre/\">geekzebre</a>, <a href=\"https://profiles.wordpress.org/geoffguillain/\">Geoff Guillain</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/gkibria69/\">gKibria</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gmariani405/\">gmariani405</a>, <a href=\"https://profiles.wordpress.org/alinod/\">Gord</a>, <a href=\"https://profiles.wordpress.org/greatsaltlake/\">greatsaltlake</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg ZiÃ³Å‚kowski</a>, <a href=\"https://profiles.wordpress.org/grzim/\">grzim</a>, <a href=\"https://profiles.wordpress.org/gumacahin/\">gumacahin</a>, <a href=\"https://profiles.wordpress.org/gunnard/\">gunnard</a>, <a href=\"https://profiles.wordpress.org/bordoni/\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/hansjovisyoast/\">Hans-Christiaan Braun</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani/\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hauvong/\">hauvong</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/helmutwalker/\">helmutwalker</a>, <a href=\"https://profiles.wordpress.org/tejwanihemant/\">Hemant Tejwani</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/nonverbla/\">hirasso</a>, <a href=\"https://profiles.wordpress.org/hmabpera/\">hmabpera</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hsingyuc7/\">hsingyuc7</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/ibiza69/\">ibiza69</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/ingereck/\">ingereck</a>, <a href=\"https://profiles.wordpress.org/iprg/\">iprg</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi/\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/iviweb/\">iviweb</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jadeddragoon/\">jadeddragoon</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jakeparis/\">jakeparis</a>, <a href=\"https://profiles.wordpress.org/jakubtyrcha/\">jakub.tyrcha</a>, <a href=\"https://profiles.wordpress.org/jamesgol/\">James Golovich</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/viablethought/\">Jason Ryan</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffr0/\">Jeff Chandler</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/jessplease/\">Jessica Duarte</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/joanrho/\">joanrho</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelclimbsthings/\">joelclimbsthings</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/jrchamp/\">Jonathan Champ</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jomisica/\">Jos&#233; Miguel</a>, <a href=\"https://profiles.wordpress.org/jose64/\">Jose Luis</a>, <a href=\"https://profiles.wordpress.org/accessiblejoe/\">Joseph Karr O&#039;Connor</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/tai/\">JOTAKI, Taisuke</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsmoriss/\">JS Morisset</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/justinsainton/\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jtsternberg/\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">kafleg</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/karamcnair/\">kara.mcnair</a>, <a href=\"https://profiles.wordpress.org/vyskoczilova/\">Karolina Vyskocilova</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/tmfespresso/\">kimdcottrell</a>, <a href=\"https://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"https://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/hwk-fr/\">Konrad Chmielewski</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/kurtpayne/\">Kurt Payne</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a>, <a href=\"https://profiles.wordpress.org/litemotiv/\">litemotiv</a>, <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/_luigi/\">Luigi Cavalieri</a>, <a href=\"https://profiles.wordpress.org/lpawlik/\">Lukas Pawlik</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">Luke Walczak</a>, <a href=\"https://profiles.wordpress.org/oellin/\">Magali</a>, <a href=\"https://profiles.wordpress.org/magnuswebdesign/\">magnuswebdesign</a>, <a href=\"https://profiles.wordpress.org/mahfuz01/\">Mahafuz</a>, <a href=\"https://profiles.wordpress.org/akramipro/\">Mahdi Akrami</a>, <a href=\"https://profiles.wordpress.org/malinajirka/\">malinajirka</a>, <a href=\"https://profiles.wordpress.org/mallorydxw/\">mallorydxw</a>, <a href=\"https://profiles.wordpress.org/tomdxw/\">mallorydxw-old</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a>, <a href=\"https://profiles.wordpress.org/marcelo2605/\">marcelo2605</a>, <a href=\"https://profiles.wordpress.org/marcio-zebedeu/\">Marcio Zebedeu</a>, <a href=\"https://profiles.wordpress.org/netweblogic/\">Marcus</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/marijnkoopman/\">Marijn Koopman</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/mdwolinski/\">Mark D Wolinski</a>, <a href=\"https://profiles.wordpress.org/markhowellsmead/\">Mark Howells-Mead</a>, <a href=\"https://profiles.wordpress.org/markscottrobson/\">Mark Robson</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/vindl/\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/mberard/\">Mathieu Berard Smartfire</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"https://profiles.wordpress.org/mdrockwell/\">mdrockwell</a>, <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"https://profiles.wordpress.org/megabyterose/\">Megan</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/mehrshaddarzi/\">Mehrshad Darzi</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mendezcode/\">mendezcode</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/miinasikk/\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan DiniÄ‡</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">mirka</a>, <a href=\"https://profiles.wordpress.org/daddou/\">Mohamed El Amine DADDOU</a>, <a href=\"https://profiles.wordpress.org/monika/\">Monika</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/morenaf/\">morenaf</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/mzorz/\">mzorz</a>, <a href=\"https://profiles.wordpress.org/naveen17797/\">Naveen</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/nre/\">nicky</a>, <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a>, <a href=\"https://profiles.wordpress.org/nico_martin/\">Nico Martin</a>, <a href=\"https://profiles.wordpress.org/nicolalaserra/\">Nicola Laserra</a>, <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/nwjames/\">nwjames</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a>, <a href=\"https://profiles.wordpress.org/oxyc/\">oxyc</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patopaiar/\">patopaiar</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/pawki07/\">pawki07</a>, <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/gungeekatx/\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pinkalbeladiya/\">Pinkal Devani</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/prettyboymp/\">prettyboymp</a>, <a href=\"https://profiles.wordpress.org/princeahmed/\">Prince</a>, <a href=\"https://profiles.wordpress.org/pypwalters/\">pypwalters</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rafaelgalani/\">Rafael Galani</a>, <a href=\"https://profiles.wordpress.org/rafhun/\">rafhun</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ratneshk/\">ratneshk</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/reardestani/\">Reza Ardestani</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly/\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/roger995/\">roger995</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/romain-d/\">Romain</a>, <a href=\"https://profiles.wordpress.org/burtrw/\">Ronnie Burt</a>, <a href=\"https://profiles.wordpress.org/magicroundabout/\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a>, <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Sa&#353;a</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">Sarah Ricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/shahinsid07/\">Shahin Sid</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/souri_wpaustria/\">souri_wpaustria</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a>, <a href=\"https://profiles.wordpress.org/t-p/\">t-p</a>, <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a>, <a href=\"https://profiles.wordpress.org/voboghure/\">Tapan</a>, <a href=\"https://profiles.wordpress.org/teamdnk/\">TeamDNK</a>, <a href=\"https://profiles.wordpress.org/utz119/\">TeBenachi</a>, <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a>, <a href=\"https://profiles.wordpress.org/thorlentz/\">thorlentz</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tinodidriksen/\">tinodidriksen</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/arcangelini/\">Tony A</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/tonysandwich/\">tonysandwich</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/transl8or/\">transl8or</a>, <a href=\"https://profiles.wordpress.org/tylertork/\">Tyler Tork</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/umangvaghela123/\">Umang Vaghela</a>, <a href=\"https://profiles.wordpress.org/vandestouwe/\">vandestouwe</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">vcanales</a>, <a href=\"https://profiles.wordpress.org/vipulc2/\">Vipul Chandel</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T.</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/wendyjchen/\">Wendy Chen</a>, <a href=\"https://profiles.wordpress.org/wesselvandenberg/\">wesselvandenberg</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wallstead/\">Willis Allstead</a>, <a href=\"https://profiles.wordpress.org/worldedu/\">worldedu</a>, <a href=\"https://profiles.wordpress.org/wponlinesupport/\">WP OnlineSupport</a>, <a href=\"https://profiles.wordpress.org/tikifez/\">Xristopher Anderton</a>, <a href=\"https://profiles.wordpress.org/yannkozon/\">Yann Kozon</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yscik/\">yscik</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yuliyan/\">yuliyan</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.\n\n\n\n<p></p>\n\n\n\n<div class=\"wp-block-group has-background\" style=\"background-color:#0a5b89\"><div class=\"wp-block-group__inner-container\">\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-white-color has-text-color has-large-font-size\"><strong>Code is poetry.</strong></p>\n</div></div>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Olga Gleckler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/03/people-of-wordpress-olga-gleckler/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Mar 2021 22:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9875\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"The latest edition of our People in WordPress series features developer Olga Gleckler, who grew her interest in computers into a career as a tech entrepreneur.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:19992:\"\n<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed peopleâ€™s lives for the better. In this monthly series, we share some of the amazing stories that are lesser-known.</em></p>\n\n\n\n<p><strong>From a natural interest in computers and fixing things as a young woman, Olga Gleckler from St Petersburg, Russia, found WordPress took her on a journey to becoming a successful female tech entrepreneur. On International Womenâ€™s Day, we share her story.&nbsp;&nbsp;</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=580%2C768&#038;ssl=1\" alt=\"Olga with a WordCamp Vienna t-shirt\" class=\"wp-image-9878\" width=\"580\" height=\"768\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=773%2C1024&amp;ssl=1 773w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=226%2C300&amp;ssl=1 226w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=768%2C1018&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=1159%2C1536&amp;ssl=1 1159w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=1546%2C2048&amp;ssl=1 1546w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?w=1932&amp;ssl=1 1932w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 580px) 100vw, 580px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2><strong>Finding your path can take longer than you expect</strong></h2>\n\n\n\n<p>From the age of 15, Olga found herself under pressure to find a free place for her professional studies. She said: â€œI didnâ€™t know how high or low my chances were even if I had very good marks. I could have been just the biggest fish in a small pond. But anyway, I made up my mind to go to technical school.â€</p>\n\n\n\n<p>On leaving school in St Petersburg with her certificate, Olga felt her knowledge of opportunities was very narrow. She had pictured being an ecologist or guide translator based on the subjects she had been taught at school. There was also an advertising boom in Russia and she began to explore this as a career avenue. She had developed her computer skills and found opportunities to practise by helping her teachers with administrative work.</p>\n\n\n\n<p>Though she did not have access to any formal career advice, her journey led her into programming. She said: â€œThe range of technical schools was not wide. I spent four years studying transistor markings, soldering and drawing PCB layouts. Programming courses using Pascal didn&#8217;t do anything useful with it.â€</p>\n\n\n\n<p>A lack of suitable access to English-language courses made things harder for Olga. She was determined that she would master the language later in her life. In the meantime, she left technical school with an honors degree and improved typing skills.</p>\n\n\n\n<p>â€œI faced it was a wild, unfriendly market. I didnâ€™t know how to recognize a genuine job offer or how to avoid the bad ones. It was difficult and I donâ€™t know how long I wouldâ€™ve looked for work without help.â€</p>\n\n\n\n<h2><strong>Think differently to find where you belong</strong></h2>\n\n\n\n<p>Olga&#8217;s father worked in an IT company and was able to give her some advice and help with potential introductions. When she was still studying, he suggested her strong technical skills might be useful as a substitute typist. When she finished her studies, he helped her apply for a job updating a legal system on clientsâ€™ computers.<br><br>Six months later, she got a full-time job in the same service department. She liked her position and her clients. However, she was given friendly advice that without a university degree she would not be able to have any further promotions.</p>\n\n\n\n<p>At this time, Olga was trying to study PHP from a book. She found it very exciting at first, but a lot of their functions did not give her explanations on how to build something useful. She found when she tried to build practical items from book reading, it did not always make sense and the solutions would often fail.&nbsp;</p>\n\n\n\n<p>She said: â€œIt was hard to admit a failure even to myself and it was nagging me for a long time. I had to choose something I could handle, that I was interested in and could afford. It turned out to be advertising.â€</p>\n\n\n\n<p>She spent most of the familyâ€™s holidays on learning sessions during the next six years. Olga recalled: â€œIt was tricky for my husband to make me leave a computer, once I was glued to it, so he bought me my first laptop. English was still hard for me, I got high marks through just memorizing all the words in a textbook and how they should sound.â€</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Doubting your professional skills can happen when you are at home isolated looking after children. Keeping up your interests is important.</strong></p></blockquote>\n\n\n\n<p>Olgaâ€™s life took a change after having a new baby and she spent three years doubting her professional skills and her chances of getting a good job. She tried to get back into other interests through studying, baking and drawing, but found â€˜the pram was pulling me backâ€™. She found she became very isolated and felt less able to contribute as the family was relying on her husbandâ€™s income as she tried to focus on looking forward.</p>\n\n\n\n<p>She said: â€œI was convinced (and saw) that not too many companies wanted a woman in the office, who with a small baby might need lots of leave.â€</p>\n\n\n\n<p>She finished her education when she returned to work after three years caring for her son. She secured a promotion but with changes in the companyâ€™s staffing, things were tense. She found the difficulties there had become more heightened and felt that young female colleagues were treated as â€˜pieces of furnitureâ€™ by one manager. She did not want to stay in this environment and in a few months time decided to leave.</p>\n\n\n\n<h2><strong>Your next chapter may be nearby</strong></h2>\n\n\n\n<p>Determined to not repeat this type of experience, Olga looked at the brighter side. She said: â€œI wanted to be a marketer. Knowing how tricky it is to sell intangibles, I wanted a solid product to work with.â€&nbsp;</p>\n\n\n\n<p>It turned out to be more difficult to find a job outside traditional IT as a young mother. Some human resource officers advised her to remain within the technology arena.</p>\n\n\n\n<p>Olga remained hopeful and continued to study hard. She had many learning experiences along the way, which she hopes others can learn from too. One was setting a low bar to employers. She said: â€œCompanies I worked in wanted to get all publicity and sales increases achieved through deductions from my salary.â€ This happened once and the next time she was in this situation she asked specifically about the budget before signing up. &#8220;I was assured this would not be the case, but again I found the budget for publicity came out of my wages. It was a tough period of disappointments. So when I was offered a part-time administrative job with basic sick leave, I took it gladly as a reprieve.â€</p>\n\n\n\n<p>The job was far from home and involved a lot of travelling. Olga spent two to three hours a day on buses with Harry Potter audio books for company. â€œIn these traffic jams, I started to feel English at last and loved it. It gave me a freedom no money can buy. Life was getting better.â€ </p>\n\n\n\n<p>Though the job did not pay highly, it gave her something valuable &#8211; a working website. After her boss and the developer parted company, she was asked to maintain the site. Through some studying and reverse engineering, she discovered how it worked and it gave her an insight into how to write simple websites from scratch.</p>\n\n\n\n<p>Olgaâ€™s first encounter with JavaScript wasnâ€™t easy: â€œMy first JavaScript calculator almost made me crazy, but I pursued it.â€</p>\n\n\n\n<p>Quickly she started to get small tasks from friends and relatives, usually to solve some urgent problems and started to meet popular content management systems. One of the first she met with was WordPress. There was an issue in a website theme used by a website which had been changed and not maintained. It took a whole weekend to solve, but she was determined to work it out. Back then, WordPress was â€˜just a systemâ€™. She didnâ€™t know then how much it was to become part of her life.</p>\n\n\n\n<p>Olga spent the next two years in this role. As time went on, she started to feel worried and less satisfied with the work. The last straw for her was a negative statement from her boss, who was not a programmer and who hadnâ€™t seen any of the work done on the website. She felt the approach was unfair as she had done extensive work on the site. She recalls: â€œI became angry, but it was exactly what I needed to move jobs.â€</p>\n\n\n\n<p>When Olga was job hunting, she didn&#8217;t feel she had the courage to apply for a developerâ€™s role, despite the learning and work she had already done. So instead she started working on projects where she felt she was more like a â€˜seller of box-ready websitesâ€™. It was another tough half a year for her with a lot of work, low payment and plans not turning out as she had hoped. On top of long hours, she ended up with pneumonia. She said: â€œI see now that I was doing a disservice to customers, websites are not a microwave meal &#8211; quick, cheap and dummy. There was no life in the sites without a lot of work which no one was willing to buy. Most of the sites I sold back then died after the first year and they never were truly alive and useful.â€</p>\n\n\n\n<h2><strong>You need to be brave and have courage</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=632%2C422&#038;ssl=1\" alt=\"Olga in Berlin wearing the WordPress Code is Poetry lanyard and a WordCamp t-shirt\" class=\"wp-image-9879\" width=\"632\" height=\"422\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=1024%2C684&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=300%2C200&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=768%2C513&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?w=2048&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Olga really wanted a developer job but seeking jobs of this type was very frustrating. From the job adverts she found, it felt like most IT companies were asking for geniuses who already knew a lot of technologies and frameworks. She found this very demotivating.</p>\n\n\n\n<p>She then found a job offer on a website outside the most popular job portals  and it seemed like a perfect fit. They wanted someone with experience to write from scratch, understand someone elseâ€™s code and maintain it, with an ability to translate technical documentation and articles, and make simple designs for printing products. After completing a trial task, she was taken on, and enjoyed a better salary, in a calm environment with good colleagues and without the requirement for a lot of extra hours.&nbsp;</p>\n\n\n\n<p>The advert turned out to be a direct ad from one of the sales departments in a technology company. By succeeding in the  task set, Olga had bypassed the Human Resources team which she felt&nbsp;would not normally have considered her.&nbsp;</p>\n\n\n\n<p>Her boss agreed to her working remotely most of the time. It solved any potential leave problems which Olga had thought may be an obstacle.&nbsp;</p>\n\n\n\n<p>For Olga it had been 14 years since the original decision to become a programmer and it was only the beginning.&nbsp;</p>\n\n\n\n<p>After a few years at what she describes as an â€˜amazing experienceâ€™ in this workplace, Olga felt able to move on to her next challenge as a developer.</p>\n\n\n\n<h2><strong>Decision-making can benefit from wider knowledge</strong></h2>\n\n\n\n<p>After working with different systems Olga became sure that WordPress is the best CMS for developers and clients. But she was disappointed to find that the ease of use meant that good code was not always a priority for some of the sites she looked at.&nbsp;</p>\n\n\n\n<p>â€œThe biggest flaw of WordPress &#8211; itâ€™s so easy to make things work that some may feel they donâ€™t need to bother to do things right, but this becomes a problem later.â€</p>\n\n\n\n<p>In custom themes for a site, she also saw sites being made and clients left without any further support, or items hard coded when clients actually needed more control to change regularly.</p>\n\n\n\n<p>Olga used to rely on examples she could easily find, documentation and search engines to improve her understanding in using WordPress. She discovered that just by searching for a specific feature or a solution, you can miss the whole picture.&nbsp;</p>\n\n\n\n<p>She turned to online courses to get more comprehensive knowledge and then started to attend WordPress events, firstly online and then by foot, trains and planes! She discovered a worldwide community that was very much alive. She didnâ€™t know when she started studying online materials and attending discussions that she would end up contributing herself to the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform a few years later.</p>\n\n\n\n<p>WordCamps and contributor days became a big part of her life. From her early days attending events and starting out contributing to WordPress, she is an active member of the WordPress.org Global Marketing and Polyglots Teams, and supported the recent WordPress release. She is just beginning her first WordCamp organiser experience, joining WordCamp Europe 2021 on the Contribute Team. </p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=632%2C602&#038;ssl=1\" alt=\"Olga next to a banner of WordCamp St Petersburg 2018\" class=\"wp-image-9883\" width=\"632\" height=\"602\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=1024%2C976&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=300%2C286&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=768%2C732&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=1536%2C1464&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=2048%2C1951&amp;ssl=1 2048w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Olga said: â€œThrough the wider WordPress community, I knew not only where to look but also whom to ask. Most importantly, I found allies who donâ€™t think Iâ€™m going crazy by speaking with delight about work, and with whom I share a passion and fondness for WordPress. This is what matters.</p>\n\n\n\n<p>â€œNow, after more than seven years of full time development, I am still enjoying endless learning, frequent discoveries, mistakes and an impassioned wish to do better.â€</p>\n\n\n\n<p>This and a desire to help others use WordPress.org is part of Olgaâ€™s continued contribution to its Support and Marketing Teams, and led her to be involved in the Release Marketing questions and answers in 2020.</p>\n\n\n\n<h2><strong>There is no chequered flag on the way</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"946\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=632%2C946&#038;ssl=1\" alt=\"Olga at WordCamp Europe in Berlin in 2019\" class=\"wp-image-9881\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=684%2C1024&amp;ssl=1 684w, https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=200%2C300&amp;ssl=1 200w, https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=768%2C1151&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=1025%2C1536&amp;ssl=1 1025w, https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?w=1367&amp;ssl=1 1367w, https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The road to freedom and becoming her own boss has not been easy for Olga. It is the path that got her where she is today, and she continues to find joy in it. She retains the lessons sheâ€™s learned and is always hungry to learn more.</p>\n\n\n\n<p>&nbsp;â€œI travelled through a very uneven path, with a lot of obstacles and noise, but for me itâ€™s like a kaleidoscope where a little turn presents a new picture, a new â€œah-haâ€ moment, new excitement after seemingly pointless efforts.â€&nbsp;</p>\n\n\n\n<p>She added: â€œWhen in doubt I remind myself about David Ogilvy (generally considered the Founding Father of the modern advertising industry) who tried a lot of things before he struck gold with advertising, and maybe thatâ€™s why he did.â€</p>\n\n\n\n<p>Finally, she learned not only to keep a good spirit and try different things, but also to dare as you move forward.</p>\n\n\n\n<h2><strong>Contributors</strong></h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), ChloÃ© Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>). Thank you to Olga Gleckler (<a href=\'https://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>) for sharing her #ContributorStory.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/Y3odYTyvSfJbVxUxUWEgKxOprox2zxVwhk7_vdW-AIs4IlE-jK0Zt1itCj867x0dIAbIiK-VeuTLMZr6BjNEY0fkTf--4dT1hkLbnGtsPFNfyrVBYIN59IirTkNnqiQgqxk6E1MI\" alt=\"HeroPress logo\" /></figure>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by </em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members in our <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a> series.</em></p>\n\n\n\n<p><em>#ContributorStory #HeroPress</em></p>\n\n\n\n<p></p>\n\n\n\n<p><em>Photo credits: 2nd and 4th Pablo Gigena, Berlin, 2019</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: February 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2021/03/the-month-in-wordpress-february-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Mar 2021 16:00:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9842\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:293:\"You donâ€™t have to be rich to have an online presence. You donâ€™t have to find loopholes in proprietary platforms and hope that they never change their terms of service. You own all of the content that you create on a WordPress site and have the liberty to move it to a new host if [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15761:\"\n<blockquote class=\"wp-block-quote\"><p>You donâ€™t have to be rich to have an online presence. You donâ€™t have to find loopholes in proprietary platforms and hope that they never change their terms of service. You own all of the content that you create on a WordPress site and have the liberty to move it to a new host if you need to, or switch your theme if it fits your mood.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was Josepha Haden Chomphosy on <a href=\"https://wordpress.org/news/2021/02/wordpress-is-freedom/\">WordPress is Free(dom) episode</a> of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, speaking about the four freedoms of open-source software. Those four freedoms are core to how WordPress is developed. A lot of the updates we bring you this month will resonate with those freedoms.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress now powers 40% of the web</h2>\n\n\n\n<p>W3Techs reported that <a href=\"https://w3techs.com/blog/entry/40_percent_of_the_web_uses_wordpress\">WordPress now powers 40% of the top 10 million websites in the world</a>! Every two minutes, a new website using WordPress says, <em>â€œHello worldâ€</em>! For the top 1000 sites, the market share is even higher at 51.8%. Over the past 10 years, the growth rate has increased, which is reflected by the fact that 66.2% of all new websites use WordPress!</p>\n\n\n\n<h2>WordPress release updates</h2>\n\n\n\n<p>February was an eventful month for WordPress releases!</p>\n\n\n\n<ul><li>WordPress maintenance releases â€” <a href=\"https://wordpress.org/news/2021/02/wordpress-5-6-1-maintenance-release/\">version 5.6.1</a> and <a href=\"https://wordpress.org/news/2021/02/wordpress-5-6-2-maintenance-release/\">version 5.6.2</a> â€” came out this in February. Update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org.</li><li>Members of the Core team are working hard on WordPress 5.7, due in March. <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-3/\">Beta 3</a> versions of WordPress 5.7 launched in February. The <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-release-candidate/\">first</a> and <a href=\"https://wordpress.org/news/2021/03/wordpress-5-7-release-candidate-2/\">second</a> release candidates of WordPress 5.7 are also out! You can test the Beta versions and the release candidate by <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin. To know more about WordPress 5.7, <a href=\"https://make.wordpress.org/polyglots/2021/02/22/wordpress-5-7-ready-to-be-translated/\">check out its field guide</a>.&nbsp;</li></ul>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>. The Core team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a>. UTC. You can also contribute to WordPress 5.7 <a href=\"https://make.wordpress.org/polyglots/2021/02/22/wordpress-5-7-ready-to-be-translated/\">by translating it into your local language</a>. Learn more on the <a href=\"https://make.wordpress.org/polyglots/2021/03/02/wordpress-5-7-translation-status-march-2-2020/\">translation status post</a>.</p>\n\n\n\n<h2>Gutenberg celebrates its 100th release with version 10</h2>\n\n\n\n<p>The 100th release of the Gutenberg plugin â€” <a href=\"https://make.wordpress.org/core/2021/02/17/whats-new-in-gutenberg-10-0-february/\">Version 10</a>,&nbsp; launched on February 17th, more than four years after the project was first announced at WordCamp US 2016. <a href=\"https://wordpress.org/news/2021/02/reflecting-on-gutenbergs-100th-release/\">Matias Venturaâ€™s post</a> offers a birdâ€™s eye view of the project over the last four years. Version 10 adds the basic pages block and makes the parent block selector visible in the block toolbar. <a href=\"https://make.wordpress.org/core/2021/02/05/whats-new-in-gutenberg-9-9-5-february/\">Version 9.9</a> of Gutenberg â€” coincidentally, the 99th release of the plugin, which is also the latest Gutenberg release that will be featured in WordPress 5.7, also came out in February. Key highlights of the release include custom icons and background colors in social icons, a redesigned options modal for blocks (which is now called block preferences), and text labels in the block toolbar.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/handbook/focuses/full-site-editing/\">Full Site Editing (FSE)</a> is an exciting new WordPress feature that allows you to use blocks outside the post or page content. The <a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/\">main focus</a> of the Core team for 2021 is to merge FSE into WordPress core. Hereâ€™s the latest on the Full Site Editing project:&nbsp;</p>\n\n\n\n<ul><li>The <a href=\"https://make.wordpress.org/test/2021/02/18/fse-program-testing-call-2-build-a-homepage-with-site-editing-blocks/\">second call for testing</a> as part of the <a href=\"https://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing outreach program</a> is out! To participate, <a href=\"https://make.wordpress.org/test/2021/02/18/fse-program-testing-call-2-build-a-homepage-with-site-editing-blocks/\">check out the second testing call</a> on the <a href=\"https://make.wordpress.org/test/\">Make/Test blog</a> and join the <a href=\"https://make.wordpress.org/core/tag/fse-outreach-experiment/\">#fse-outreach-experiment</a> Slack channel. Deadline: March 5, 2021.</li><li>In case you missed participating in the FSE outreach program, <a href=\"https://make.wordpress.org/test/2021/02/04/fse-program-test-fse-anytime/\">you can now test FSE anytime</a> â€”check out <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/how-to-test-fse/\">this handbook page on testing FSE</a> to learn more.</li><li>Contributor teams are asking for help&nbsp; from local WordPress Communities to support the FSE Project.<a href=\"https://make.wordpress.org/test/2021/02/05/fse-program-connecting-with-local-communities/\"> Learn more on how you can contribute</a>.</li><li><a href=\"https://make.wordpress.org/test/tag/fse-answers/\">Check out these answers</a> for the most common FSE questions on the Make/Test blog.</li><li><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> has provided an update on the <a href=\"https://make.wordpress.org/core/2021/02/01/full-site-editing-and-themes-where-things-are/\">current status of the FSE and themes</a>.</li></ul>\n\n\n\n<h2>Decision-making checklist for in-person meetups</h2>\n\n\n\n<p>The Community Team <a href=\"https://make.wordpress.org/community/2021/02/16/announcement-decision-making-checklist-for-in-person-meetups-now-available/\">has published handbook pages and a decision-making checklist for organizers</a> to restart in-person meetups at areas where it is safe to do so (e.g., countries such as New Zealand, Australia, and Taiwan, where there are lower COVID-19 risks). However, WordPress meetups and WordCamps in most parts of the world will remain online due to COVID-19.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>The Polyglots team has <a href=\"https://make.wordpress.org/polyglots/2021/02/09/proposal-call-for-volunteers-polyglots-training-working-group/\">kicked-off a proposal to create a working group of contributors </a>to develop training resources for translation contributors.</li><li>The Meta team is actively <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">working on a tool</a> to help the Themes team automate the theme testing process. The team has already shipped a <a href=\"https://github.com/WordPress/theme-review-action\">proof-of-concept of the Theme Review Action tool</a> to test the process and is <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">looking for feedback</a>. The Meta team is also working on <a href=\"https://make.wordpress.org/meta/2021/02/19/reducing-the-plugin-review-teams-workload-through-automation/\">reducing the Plugin teamâ€™s workload by improving the code scanner tool</a> used for scanning plugins.</li><li>The <a href=\"https://make.wordpress.org/themes/2021/02/24/meeting-notes-matt-josepha-and-theme-review-team/\">Themes team met with the WordPress project leadership team (Matt Mullenweg and Josepha Haden)</a> about improving the Theme directory. They decided to reframe the theme review process by adding â€œreview guard railsâ€ with automated tooling.</li><li>The Plugin Review Team reiterated that <a href=\"https://make.wordpress.org/plugins/2021/02/16/reminder-forked-premium-plugins-are-not-permitted/\">forked premium plugins are not allowed in the Plugin directory.</a>&nbsp;</li><li>After three weekends of celebrating WordPress, <a href=\"https://india.wordcamp.org/2021/\">WordCamp India 2021</a> concluded on February 15. <a href=\"https://prague.wordcamp.org/2021/\">WordCamp Prague 2021</a> took place on February 27. WordCamp India <a href=\"https://india.wordcamp.org/2021/watch-now/\">videos are already available</a>, and videos of both camps will soon be uploaded to WordPress.tv.&nbsp;</li><li>Several online WordCamps were scheduled this month. <a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp CentroamÃ©rica</a>, <a href=\"https://greece.wordcamp.org/2021/\">WordCamp Greece</a>, and <a href=\"https://neo.wordcamp.org/2021/\">WordCamp North East Ohio</a> are scheduled for April 2021. <a href=\"https://japan.wordcamp.org/2021/\">WordCamp Japan</a> takes place in June and has opened-up their <a href=\"https://japan.wordcamp.org/2021/call-for-speakers-is-now-open/\">call for speakers in English and Japanese</a>. Meanwhile, the inaugural <a href=\"https://cochabamba.wordcamp.org/2021/\">WordCamp Cochabamba (Bolivia)</a> runs in July!.</li><li>The Community Team wants <a href=\"https://make.wordpress.org/community/2021/02/25/proposal-to-improve-the-organizing-experience-for-online-wordcamps/\">feedback on how to improve online WordCamps</a>. The team has also announced a <a href=\"https://make.wordpress.org/community/2021/02/18/proposal-2021-global-community-sponsorship-program/\">revamped 2021 Global Community sponsorship program</a> to support online events.</li><li>The Design Team is <a href=\"https://make.wordpress.org/design/2021/02/03/review-feedback-request-ux-for-learn-wordpress-org/\">reviewing the user experience</a> for <a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a>. Please share any <a href=\"https://make.wordpress.org/design/2021/02/03/review-feedback-request-ux-for-learn-wordpress-org/\">design-feedback that you have as comments on the post</a>.</li><li>The Accessibility Team is working on <a href=\"https://make.wordpress.org/accessibility/2021/02/28/accessibility-team-meeting-notes-february-26-2021/\">publishing the updated accessibility standards document </a>(with regard to WCAG 2.1 changes) alongside the WordPress version 5.7 release. The team has also <a href=\"https://make.wordpress.org/accessibility/2021/02/28/accessibility-teams-goals-for-wordpress-5-8-and-beyond/\">started brainstorming goals for WordPress 5.8</a> and beyond.&nbsp;</li><li>The Support Team is <a href=\"https://make.wordpress.org/support/2021/02/rethinking-the-master-list/\">rethinking the use of the master list</a> used for troubleshooting recurring issues. The team is also <a href=\"https://make.wordpress.org/support/2021/02/removing-plugin-and-theme-names-used-as-topic-tags-on-the-forums/\">removing plugin/theme names used as topic tags</a> in forums.</li><li>The Training Team has <a href=\"https://make.wordpress.org/training/2021/03/02/march-2021-sprint-planning/\">kicked off their March 2021 sprint planning</a> to work on their goals.</li><li>The <a href=\"https://make.wordpress.org/core/tag/feature-notifications/\">WP Notify project</a> working group (which is working toward a better notification system for&nbsp; WordPress) has completed the <a href=\"https://github.com/WordPress/wp-notify/wiki/Requirements-(v1)\">first version of the requirements document</a>, and officially kicked off <a href=\"https://make.wordpress.org/core/2021/02/09/wp-notify-meeting-notes-february-8-2021/\">active development of the feature plugin</a>. Contact the team in the <a href=\"https://wordpress.slack.com/archives/C2K1C71FE\">#feature-notifications</a> Slack channel if you would like to contribute. You can start by reviewing the <a href=\"https://github.com/WordPress/wp-notify/issues\">list of the current issues</a>.</li><li><a href=\"https://wordpress.org/news/2021/02/people-of-wordpress-pooja-derashri/\">Pooja Derashri of India</a> was featured in February&#8217;s <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a> series. A cross-team initiative led by the Marketing Team with support from <a href=\"https://heropress.com/\">HeroPress</a>, the series aims to highlight lesser-known stories of WordPress contributors. The Contributor Story series is collecting new features. If you are an active contributor to a WordPress.org team or a local WordCamp, contact the <a href=\"https://make.wordpress.org/marketing/\">Marketing Team</a> in the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> Slack channel for more information.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next â€œMonth in WordPressâ€ post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\n\n\n\n<p><em>The Month in WordPress post series is a collective effort, and it would not be possible without contributions from different members of the WordPress Community. Starting this month, we would like to credit and thank all individuals that support this effort with their contributions. I would like to thank the following folks for their contributions to February&#8217;s Month in WordPress: <a href=\'https://profiles.wordpress.org/adityakane/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adityakane</a> <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a> <a href=\'https://profiles.wordpress.org/courtneypk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>courtneypk</a> <a href=\'https://profiles.wordpress.org/kristastevens/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kristastevens</a></em> <em>and <a href=\'https://profiles.wordpress.org/psykro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psykro</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9842\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.7 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/03/wordpress-5-7-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Mar 2021 20:49:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9829\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:394:\"The second release candidate for WordPress 5.7 is now available! ðŸŽ‰ You can test the WordPress 5.7 release candidate in two ways: Try the&#160;WordPress Beta Tester&#160;plugin (choose the â€œBleeding edgeâ€ channel and Beta/RC Onlyâ€ stream options) Or&#160;download the release candidate here (zip). Thank you to all of the contributors who tested theÂ Beta/RC releases and gave [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ebonie Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2713:\"\n<p>The second release candidate for WordPress 5.7 is now available! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f389.png\" alt=\"ðŸŽ‰\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>You can test the WordPress 5.7 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the â€œBleeding edgeâ€ channel and Beta/RC Onlyâ€ stream options)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.7-RC2.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested theÂ Beta/RC releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.7 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme file to 5.7. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>,&nbsp;so those can be figured out before the final release.</p>\n\n\n\n<p>The&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide\">WordPress 5.7 Field Guide</a>&nbsp;will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think youâ€™ve found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. Weâ€™d love to hear from you! If youâ€™re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<p><em>Props to <a href=\'https://profiles.wordpress.org/lukecarbis/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lukecarbis</a> for the haiku and <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> and <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a> for peer reviewing!</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Five-seven next week<br>So test your plugins and themes<br>Update your readme</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9829\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WP Briefing: My Typical Day as WordPressâ€™s Executive Director\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2021/03/my-typical-day-as-wordpresss-executive-director/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Mar 2021 04:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/?post_type=podcast&p=9825\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:184:\"In this episode, Josepha Haden Chomphosy speaks to her role as the Executive Director of WordPress. Learn about the day-to-day of her role and how it supports the mission of WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/02/WP-Briefing-003.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9927:\"\n<p>In this episode, Josepha Haden Chomphosy speaks to her role as the Executive Director of WordPress. Learn about the day-to-day of her role and how it supports the mission of WordPress.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></li><li><a href=\"https://twitter.com/arunaswp/status/1339344702466887686\">Contributor Highlight&nbsp;</a></li><li><a href=\"https://make.wordpress.org/core\">WordPress Core</a>&nbsp;</li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-9825\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>I&#8217;ve been asked many times what the day-to-day work looks like for the Executive Director of the WordPress project. I don&#8217;t really think I&#8217;ve done a great job of answering that question. My default answer is either too broad, and I say, â€œI helped turn the WordPress vision into reality by supporting the community of contributors,â€ or way too narrow, and I start telling people what&#8217;s on my calendar. Probably no one cares about each entry on my calendar, and almost every contributor is covered by â€œI get things done by helping people.â€ So today, I invite you to join me in exploring the type of work required and the balance it takes to keep WordPress working.</p>\n\n\n\n<p>First, some context on the weekly activity I see in WordPress, on average, 1,800 to 2,000 contributors a week, participate in conversations and tickets across the entire WordPress project in our entire ecosystem. There are about 20 volunteer teams that are each led by two to three team reps. Each of those teams actually has smaller groups that work on specific things; all told, it&#8217;s probably about 50 distinct teams. And probably quite a few more if you are very generous in your counting about what makes up a team for us.&nbsp;</p>\n\n\n\n<p>Among those teams, a minimum of about 35 meetings a week are held, plus more for working groups. That doesn&#8217;t take into account the things most people are aware of externally.&nbsp; It doesn&#8217;t take into account the big quarterly or annual activity things like WordPress software releases or any of our events. When those sorts of things do happen, there&#8217;s a bit of an increase in our activity.</p>\n\n\n\n<p>&nbsp;I work 40 to 60 hours a week on WordPress, depending on what&#8217;s going on, to make sure that I know what&#8217;s happening now; so that I have insight into what the next three to five years will bring. All of that is in support of <strong>the WordPress community, which I define as anyone who has ever interacted with WordPress ever</strong>, regardless of whether they know it or not. In case you&#8217;re feeling a bit lost right now, we can shorthand that entire context as this is really big and really complex.</p>\n\n\n\n<p>Given that giant scope, it makes sense that people wonder what the work looks like. So I&#8217;ll talk about it in three big chunks: what I focus my time on, what I focus my attention on, and what helps me balance my decisions.&nbsp;</p>\n\n\n\n<p>So first, what I focus my time on. I spend about a quarter of my time in meetings, mostly with current contributors, project leadership, and community members. I spend another quarter of my time in WordPress community outreach, checking in with current folks, reaching out to future WordPressers, and checking in with people that I haven&#8217;t heard from in a long time to make sure that I know what they need and if there&#8217;s anything that I can do to help. After that, I spend a bit under 15% of my time each on writing/communications work or ad hoc project work. I then spend 10% of my time reviewing proposals, editing, communication drafts for others, and determining my stances on discussions that we&#8217;re having in tickets and elsewhere. I spend all of my remaining time planning for various goals, projects, initiatives and personally working to remove blockers for our volunteer contributors. So the bulk of my time, about 50% or more, is spent in calls with people, which makes sense if you&#8217;ve ever worked with me; personal connections with the community have been the best part of my job for a long time. Since the community is what makes WordPress so great, it&#8217;s only natural that I want to stay connected.&nbsp;</p>\n\n\n\n<p>The second big chunk is what I focus my attention on. I pay attention to four big pillars of work in the project. The first one is the WordPress CMS itself. So that&#8217;s the core team, accessibility, design, and many, many others. The second one is the WordPress community. And that&#8217;s the training team, everybody who is working on the Learn initiative, and the actual community team as well.&nbsp;</p>\n\n\n\n<p>The third big pillar that I focus on is the WordPress contributor experience, which is mostly the meta team but&nbsp; includes all of the teams they work with: plugins, themes, polyglots, etc. The fourth big pillar that I turn my attention to is our communication; what I am saying about the WordPress project to people outside of it and what I am helping our team reps to say about the work that we&#8217;re accomplishing for the WordPress project inside the project. In general, we have to make sure that we coordinate a big group of contributors around a common idea or a common practice as we move forward.&nbsp;</p>\n\n\n\n<p>Now, the way I focus both my time and attention probably isn&#8217;t quite right if you&#8217;re focused on a single feature or team. And it&#8217;s definitely not right if you aren&#8217;t spending 40 hours a week in the project; what that probably looks like for you is more like an hour in a team meeting, 30 minutes or so on clarifying conversations, and any remaining time that you are able to contribute focused on the feature that you&#8217;re actually contributing to. And so, there you have it all my time and attention. That is WordPress in a nutshell.&nbsp;</p>\n\n\n\n<p>This brings us to the third chunk, the balance part. You might be wondering, how do I make sure I am fair and balanced in decisions that I have to make. That is something that I think about all the time, and I take very seriously. It&#8217;s hard to make decisions that might affect 2,000 people. It&#8217;s even harder when those decisions might affect 40% of the web. I know that I don&#8217;t have all the answers. And I&#8217;m fortunate enough to have 50 or 60 people in the community who offer me advice and guidance every single week. I&#8217;m in constant contact with the project lead, of course, but I also prioritize messages and concerns raised from team reps. And I always strive to understand before I try to problem solve. I don&#8217;t always get it right, but I do always work to get better. And that is the day-to-day work of a WordPress executive director.</p>\n\n\n\n<p>That brings us to our community highlight. I tweeted out into the community asking for excellent examples of Freelancer success stories, and today I&#8217;m going to share a story from <a href=\"https://profiles.wordpress.org/ideag/\">ArÅ«nas Liuiza</a>. Their story goes like this:&nbsp;</p>\n\n\n\n<p class=\"has-text-align-justify\">â€œFor almost a decade, freelance WordPress gigs allowed me to support myself and my family and keep my full-time teaching position at the local college, which was paying peanuts but was an awesome, meaningful, and fulfilling. I am sincerely grateful for that.â€</p>\n\n\n\n<p>That brings us to our final segment of this brief podcast. The small list of big things to keep an eye out for in the next two weeks in WordPress. I only have two things this week. The first one is daylight saving time. It is that time of year where daylight saving time starts or stops at various parts in the globe. If you are a team rep here at WordPress, don&#8217;t forget to talk to your teams in your meetings in the next few weeks to decide what you&#8217;re going to do. You can move your team meeting if you want, and you can keep it where it is and see what new voices show up when it moves around for various people. Either way, make sure that you chat it out with your team and make sure that everybody understands what is and isn&#8217;t moving on your calendar. That will also be relevant to any of our brand new work-from-home folks in the middle of this global pandemic.&nbsp;</p>\n\n\n\n<p>The second thing to share is that there is a major release of WordPress coming up that&#8217;s going to happen on March 9th. Itâ€™s WordPress 5.7; it&#8217;s going to be a good release. We&#8217;ve been working on it since December or maybe a little bit earlier. So keep an eye out for announcements about that here on wordpress.org/news, or if you want to follow more about the developer details and the process details you can head on over to wordpress.org/core. That, my friends, is your small list of big things. Thank you for tuning in today for the WordPress briefing. Iâ€™m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n\n\n\n\n\n\n\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Did You Know About Reusable Blocks?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Feb 2021 19:17:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9777\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Learn about reusable blocks in this Gutenberg tutorial.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:9:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:61:\"https://wordpress.org/news/files/2021/02/1_create_content.mov\";s:6:\"length\";s:7:\"1586076\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:66:\"https://wordpress.org/news/files/2021/02/2_convert_to_reusable.mov\";s:6:\"length\";s:7:\"2637657\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:66:\"https://wordpress.org/news/files/2021/02/3_reusable_blocks_tab.mov\";s:6:\"length\";s:7:\"1482152\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:68:\"https://wordpress.org/news/files/2021/02/4_saving_global_changes.mov\";s:6:\"length\";s:7:\"2110818\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:73:\"https://wordpress.org/news/files/2021/02/5_manage_all_reusable_blocks.mov\";s:6:\"length\";s:7:\"2310871\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/02/6_tip_name_them.mov\";s:6:\"length\";s:7:\"1498729\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:64:\"https://wordpress.org/news/files/2021/02/7_tip_place_in_flow.mov\";s:6:\"length\";s:7:\"8545345\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:66:\"https://wordpress.org/news/files/2021/02/8_tip_import_export-1.mov\";s:6:\"length\";s:7:\"5534991\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:65:\"https://wordpress.org/news/files/2021/02/10_complex_layouts-2.mov\";s:6:\"length\";s:8:\"22852109\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8397:\"\n<p><strong><em>Created by Joen Asmussen, <a href=\'https://profiles.wordpress.org/joen/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joen</a></em></strong></p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?resize=585%2C329&#038;ssl=1\" alt=\"\" class=\"wp-image-9803\" width=\"585\" height=\"329\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?resize=1024%2C577&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?resize=300%2C169&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?resize=768%2C433&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?w=1440&amp;ssl=1 1440w, https://i1.wp.com/wordpress.org/news/files/2021/02/Reusable-Blocks-featured.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 585px) 100vw, 585px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>The WordPress block editor (a.k.a. Gutenberg) comes with a feature called &#8220;reusable blocks.â€ They are blocks, saved for later, edited in one place.</p>\n\n\n\n<p>Have you ever wanted to:</p>\n\n\n\n<ul><li>Re-use the same snippet of text across posts and pages?</li><li>Save complex layouts to spare you having to copy/paste from one post to another?</li></ul>\n\n\n\n<p>Reusable blocks can do these things.</p>\n\n\n\n<h2>Like templates, you mean?</h2>\n\n\n\n<p>Not quite. Think of reusable blocks as snippets of globally synchronized content that are personal to you. You can edit all your reusable blocks in one place, and any post or page you inserted that block into, get the updated version as well.&nbsp;</p>\n\n\n\n<p>Where you might use templates to structure your website, you can use reusable blocks to structure your content. For example:</p>\n\n\n\n<ul><li>A testimonial on your homepage and your product page.</li><li>A &#8220;this post is part of a series&#8221; box that you insert part-way through your article.</li><li>A &#8220;Follow me on social media&#8221; section you can weave into the prose of your popular article.</li><li>Complex but static blocks, such as a &#8220;Subscribe to my newsletter&#8221; box, a contact form, a survey, quiz, or polls.</li></ul>\n\n\n\n<p>Key properties are that reusable blocks are unbeatable when you want to reuse a snippet of content, edit it in one place, and have the changes propagate to every instance.</p>\n\n\n\n<h2>Show me how</h2>\n\n\n\n<p>To create a reusable block, open the block editor and create the content you want to reuse:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/1_create_content.mov\"></video></figure>\n\n\n\n<p>Now select the content you want to turn into a reusable block, then click the three-dot &#8220;More&#8221; menu and choose &#8220;Add to Reusable blocks.â€</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/2_convert_to_reusable.mov\"></video></figure>\n\n\n\n<p>VoilÃ , youâ€™ve now created a reusable block. From now on, you can find this block, and any other you create, in the &#8220;Reusable blocks&#8221; tab in the block library:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/3_reusable_blocks_tab.mov\"></video></figure>\n\n\n\n<p>This is also where you can insert the newly created block on any of your posts or pages.</p>\n\n\n\n<h2>Where do I edit my existing reusable blocks?</h2>\n\n\n\n<p>To edit a reusable block, select it and make your edits. When you make an edit, the Publish button will have a little dot indicator:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/4_saving_global_changes.mov\"></video></figure>\n\n\n\n<p>This dot indicates youâ€™ve made a global change that potentially affects posts beyond just the one youâ€™re editing, the same as when youâ€™re editing templates. This lets you confirm the change was intentional.</p>\n\n\n\n<p><strong>Another way to edit your reusable blocks</strong> is to click the global three-dot &#8220;More&#8221; menu and selecting &#8220;Manage all reusable blocks&#8221;:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/5_manage_all_reusable_blocks.mov\"></video></figure>\n\n\n\n<p>This takes you to a section letting you edit, rename, export, or delete every reusable block you created.&nbsp;</p>\n\n\n\n<h2>What else can I do?</h2>\n\n\n\n<p>Here are a couple of tips and tricks you can leverage to get the most out of reusable blocks.</p>\n\n\n\n<h3>Give them a good name</h3>\n\n\n\n<p>When you name a reusable block, you are essentially choosing your search terms, as the name is what you search for in the block library (or when you use the &#8220;slash command,â€ typing / in an empty paragraph):</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/6_tip_name_them.mov\"></video></figure>\n\n\n\n<p>Avoid names such as &#8220;Gallery&#8221; or &#8220;Image,â€ as thatâ€™ll be annoying when you just want to insert one of those. You can avoid that with a unique name, such as &#8220;My author biography.â€</p>\n\n\n\n<h3>Insert in the best place of your content flow</h3>\n\n\n\n<p>One obvious benefit of reusable blocks is that they are just blocks, just like everything else in the block editor. That means you can insert it anywhere in your content. You might want your rich author biography to sit at the top or bottom of the post, but <em>This post is part of a series</em> box that might sit well two or three paragraphs not to disrupt the reading flow.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/7_tip_place_in_flow.mov\"></video></figure>\n\n\n\n<h3>A design shortcut</h3>\n\n\n\n<p>Maybe you created a complex layout you&#8217;re happy with, a call to action with the right image and buttons, and it took a while to get it just right. Go on and save it as a reusable block: even if you mean to insert it only to convert it to a regular block, it might still save you a minute.&nbsp;</p>\n\n\n\n<p>To convert a reusable block to regular (blocks, select it and click the &#8220;Convert to regular blocks&#8221;:</p>\n\n\n\n<p></p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/10_complex_layouts-2.mov\"></video></figure>\n\n\n\n<p><em>Design by </em><a href=\"https://beatrizfialho.com/\"><em>Beatriz Fialho</em></a><em>.</em></p>\n\n\n\n<p><strong>Tip:</strong> You can also find some nice patterns on <a href=\"https://gutenberghub.com/\">Gutenberg Hub</a> or <a href=\"https://shareablock.com/\">ShareABlock</a>.</p>\n\n\n\n<h3>Take it with you</h3>\n\n\n\n<p>Need to move to another site? You can both export and import reusable blocks. Go to the <em>Manage all reusable blocks</em> section from the global three-dot &#8220;More&#8221; menu, hover over the block you want to export, and click &#8220;Export as JSON&#8221;:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2021/02/8_tip_import_export-1.mov\"></video></figure>\n\n\n\n<p>The downloaded file can be imported on any WordPress 5.0 or newer website.</p>\n\n\n\n<h2>Try it</h2>\n\n\n\n<p>Create a draft post and play around with Reusable Blocks to see how you might start using them. You can always delete them when youâ€™re done playing.</p>\n\n\n\n<p>You can test importing and using a small reusable block I created as an example. It&#8217;s a &#8220;Further reading&#8221; block that shows the four latest posts from the category &#8220;Featured&#8221;:</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh6.googleusercontent.com/33_L1WQrTxNiidm8IKcSfn7_nYjcpq5zpSzycmKliDnGzFI_hLu7yLPV1vnqWgCS7H6JtFAGEXz-AVkNBLtQQEM80VA6KUfcmj1JAoVZ5ZNMavVzlGzBPEiqiD3-eUzZSvOTYm_E\" alt=\"\" /></figure>\n\n\n\n<p>It might work well as a highlight in an article, giving the reader something new to read or awareness of your other content.</p>\n\n\n\n<p><em><strong>The videos in this post show the reusable blocks flow in the upcoming WordPress 5.7.</strong></em></p>\n\n\n\n<p><a href=\"https://gist.github.com/jasmussen/53cb51dcd9a2bb561893aa7c5e126cdf\"><strong>Download the block from this gist</strong></a>, import it to your WordPress site, then customize to make it yours.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9777\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.7 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2021/02/wordpress-5-7-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 Feb 2021 21:07:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9773\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:374:\"The first release candidate for WordPress 5.7 is now available! ðŸŽ‰ Please join us in celebrating this very important milestone in the community&#8217;s progress towards the final release! â€œRelease Candidateâ€ means that the new version is ready for release, but with millions of users and thousands of plugins and themes, itâ€™s possible something was missed. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ebonie Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3842:\"\n<p>The first release candidate for WordPress 5.7 is now available! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f389.png\" alt=\"ðŸŽ‰\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Please join us in celebrating this very important milestone in the community&#8217;s progress towards the final release!</p>\n\n\n\n<p>â€œRelease Candidateâ€ means that the new version is ready for release, but with millions of users and thousands of plugins and themes, itâ€™s possible something was missed. WordPress 5.7 is slated for release&nbsp;on&nbsp;<strong>March 9, 2021</strong>, but <em>your</em>&nbsp;help is needed to get thereâ€”if you havenâ€™t tried 5.7 yet,&nbsp;<strong>now is the time</strong>!</p>\n\n\n\n<p>You can test the WordPress 5.7 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the â€œBleeding edgeâ€ channel and Beta/RC Onlyâ€ stream options)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.7-RC1.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the&nbsp;Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>Whatâ€™s in WordPress 5.7?</h2>\n\n\n\n<ul><li>Robots API and Media Search Engine Visibility</li><li>Detect HTTPS support</li><li>Lazy-load iframes</li><li>jQuery migrate-related Deprecation notice clean-up</li><li>Admin color paletteÂ standardization</li><li><a href=\"https://make.wordpress.org/core/2021/02/05/whats-new-in-gutenberg-9-9-5-february/\">Version 9.9</a> of the Gutenberg plugin.</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.7 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme file to 5.7. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>,&nbsp;so those can be figured out before the final release.</p>\n\n\n\n<p>The&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide\">WordPress 5.7 Field Guide</a>&nbsp;will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;This release also marks the&nbsp;<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>&nbsp;point of the 5.7 release schedule.</p>\n\n\n\n<p><em><strong>If you think youâ€™ve found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. Weâ€™d love to hear from you! If youâ€™re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<p><em>Props to <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> for copy suggestions and <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a> for final review.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Test this test that <br>Catch everything that you can<br>Before it&#8217;s live&#8230;</em><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f92f.png\" alt=\"ðŸ¤¯\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9773\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 31 Mar 2021 14:13:45 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"â›„\";s:13:\"last-modified\";s:29:\"Tue, 30 Mar 2021 17:01:10 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20201017025008\";}','no'),
(1819,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1617243225','no'),
(1820,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1617200025','no'),
(1821,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1617243225','no'),
(1822,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: GoDaddy Pro Will Kick off 2-Day Expand Event on April 27\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114518\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/godaddy-pro-will-kick-off-2-day-expand-event-on-april-27?utm_source=rss&utm_medium=rss&utm_campaign=godaddy-pro-will-kick-off-2-day-expand-event-on-april-27\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5095:\"<p class=\"has-drop-cap\">GoDaddy Pro is launching its first <a href=\"https://www.godaddy.com/pro/expand\">virtual Expand event</a> on April 27. The <a href=\"http://events.godaddy.com/expand\">free-to-attend conference</a> will focus on web professionals and will last until April 28.</p>\n\n\n\n<p>In February, GoDaddy <a href=\"https://wptavern.com/godaddy-launches-the-hub-a-new-site-project-and-client-management-experience-for-web-professionals\">re-launched GoDaddy Pro</a> as a formal sub-brand of the company. The &ldquo;Pro&rdquo; branding was not a new outing. However, it was a fresh take on an old idea. As part of this launch, they introduced a re-engineered interface named the Hub. The experience was geared toward website designers and developers, providing them with a central location to manage their client projects. More than simply a new set of tools, the company created a dedicated branding experience for GoDaddy Pro.</p>\n\n\n\n<p>&ldquo;We are committed to, passionate about, and truly in awe of web designers and developers,&rdquo; said Adam Warner, the Global Field Marketing Sr. Manager at GoDaddy. &ldquo;It has been a pleasure supporting this audience, but it&rsquo;s now our mission to up the ante and deepen our commitment. Our goal with GoDaddy Pro is to empower web pros with a unified tool that helps them create outsize efficiency for their operation, deliver incredible results for their clients, grow their skills and operation, and connect and inspire by fostering community.&rdquo;</p>\n\n\n\n<p>The Expand 2021 event is a continuation of that goal. The target audience is described as &ldquo;web designers and developers who identify as eager side hustlers or website freelancers.&rdquo; The conference&rsquo;s sessions are meant to provide instructions, resources, and connections to help developers grow their businesses.</p>\n\n\n\n<p>The event will begin with an opening keynote from GoDaddy&rsquo;s Aman Bhutani, the CEO; Tara Wellington, the Senior Director of Product Management; and Warner. It will feature eight sessions, split evenly between each day. The event&rsquo;s schedule will fit into a small window between 10 am and 12:30 pm <a href=\"https://www.timeanddate.com/time/zones/pt\">Pacific Time</a> on both days.</p>\n\n\n\n<p>By some conference standards, even virtual ones, this may seem like a small event. However, the tighter focus could be a welcome one for people suffering from <a href=\"https://wptavern.com/wordcamp-us-2020-canceled-due-to-pandemic-stress-and-online-event-fatigue\">online event fatigue</a>. Each session is scheduled to last around 30 minutes.</p>\n\n\n\n<p>The sessions will focus on a wide span of topics like client management, eCommerce, creating a project starter stack, website security, and scaling a freelance business with care plans.</p>\n\n\n\n<h2>The History Behind GoDaddy Pro Expand</h2>\n\n\n\n<p class=\"has-drop-cap\">Spearheading the first Expand conference, Warner avoided talking about target audiences, performance indicators, or budgetary concerns in an internal memo sent throughout GoDaddy. The effort is about creating a series of GoDaddy Pro Expand events globally in the coming months and years that help the community.</p>\n\n\n\n<p>The idea for a conference had been in the making since 2018. Warner described the purpose of GoDaddy Pro, Expand 2021, and meetups as empowering and inspiring the next generation of web designers and developers to deliver for their clients and create self-sustaining freelance businesses.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Expand 2021 is, in some way, my Opus for giving back to the community that raised me and giving the new generation a head start in following their own passions. It&rsquo;s the culmination of my years exploring and creating on the internet. My first time on the internet was in 1993. I was in my third year of college, working at Hungry Howie&rsquo;s Pizza in small-town Michigan. A co-worker had some of us to her house, and her boyfriend logged us on to a Bulletin Board System (BBS). We chatted in a dull, orange text late into the night to people around the world.</p><p>I was amazed then, and that sense of wonder and possibility stayed with me as I started to learn HTML and build simple websites a few years later. Then came my discovery of WordPress in early 2005 and the incredible global community of users willing to lift each other up for collective success.</p><p>It was at that moment, I knew I had to find a way to make websites and WordPress my career.</p></blockquote>\n\n\n\n<p>Now, 28 years later, Warner is taking the next step in organizing his first event from scratch along with over 40 others. He wanted to build a conference that was devoid of &ldquo;talking heads touting theoretical advice.&rdquo; Instead, to offer an experience with actionable knowledge that web professionals can use immediately.</p>\n\n\n\n<p>&ldquo;The real purpose of Expand 2021 is to &lsquo;pay it forward&rsquo; by advising and inspiring the next generation of web designers and developers, enabling them to take the next steps in their paths,&rdquo; said Warner.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Mar 2021 20:16:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: So you want to make block patterns?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9995\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12967:\"<img width=\"632\" height=\"356\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=632%2C356&ssl=1\" alt=\"\" class=\"wp-image-9998\" />\n\n\n\n<p>If you&#8217;ve ever built something for the WordPress block editor â€” a theme or a plugin â€” you may have also heard about <strong>block patterns</strong>. </p>\n\n\n\n<p>Looking at the patterns that come bundled with WordPress, I thought it would be nice to dedicate to them a short post. They&#8217;re pretty nice, useful shortcuts when you know them, but there&#8217;s a good chance you may not know what they are or why you might want to use them.</p>\n\n\n\n<h2>What&#8217;s a block pattern?</h2>\n\n\n\n<p>Patterns are&nbsp;<strong>collections of pre-arranged blocks</strong>&nbsp;that can be combined and arranged in many ways making it easier to create beautiful content. They act as a head-start, leaving you to plug and play with your content as you see fit and be as simple as single blocks or as complex as a full-page layout.</p>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"414\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=632%2C414&ssl=1\" alt=\"\" class=\"wp-image-10021\" /></div>\n\n\n\n<p>They live in a tab in the block library. You can click or drag and you&#8217;re able to preview them with your site&#8217;s styles.</p>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"413\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=632%2C413&ssl=1\" alt=\"\" class=\"wp-image-10022\" /></div>\n\n\n\n<p>Basically, a block pattern is just a bunch of blocks put together in advance:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>	&lt;!-- wp:group --&gt;\n&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;\n&lt;hr class=\"wp-block-separator is-style-default\"/&gt;\n&lt;!-- /wp:separator --&gt;\n&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;\n&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;\n&lt;!-- /wp:image --&gt;\n&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;\n&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;â€” Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;\n&lt;!-- /wp:quote --&gt;\n&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;\n&lt;hr class=\"wp-block-separator is-style-default\"/&gt;\n&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;\n&lt;!-- /wp:group --&gt;</code></pre>\n\n\n\n<p>That&#8217;s also how you create them: just use the block editor to configure a smattering of blocks to your liking, and the hard part&#8217;s over.</p>\n\n\n\n<h2>How do I get them in the block library?</h2>\n\n\n\n<p>There&#8217;s <a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-patterns/\">more documentation in the handbook</a>, but what it boils down to is this:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php \n/*\nPlugin Name: Quote Pattern Example Plugin\n*/\n\nregister_block_pattern(\n	\'my-plugin/my-quote-pattern\',\n	array(\n		\'title\'       =&gt; __( \'Quote with Avatar\', \'my-plugin\' ),\n		\'categories\'  =&gt; array( \'text\' ),\n		\'description\' =&gt; _x( \'A big quote with an avatar\".\', \'Block pattern description\', \'my-plugin\' ),\n		\'content\'     =&gt; \'&lt;!-- wp:group --&gt;&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;&lt;!-- /wp:image --&gt;&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\\\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;â€” Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;&lt;!-- /wp:quote --&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- /wp:group --&gt;\',\n	)\n);\n\n?&gt;</code></pre>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f446.png\" alt=\"ðŸ‘†\" class=\"wp-smiley\" /> That&#8217;s a snippet of PHP, which means you can drop it in a WordPress plugin, or perhaps more simply, paste it into the <strong>functions.php</strong> file from your theme. Done:</p>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"430\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=632%2C430&ssl=1\" alt=\"\" class=\"wp-image-10047\" /></div>\n\n\n\n<p>For patterns that include images, it&#8217;s worth thinking about where those are stored. The <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks theme</a> (which is a fancy name for &#8220;TwentyTwentyOne Blocks&#8221;) stores images in the theme library.</p>\n\n\n\n<h2>Now what?</h2>\n\n\n\n<p>The thing about a block pattern is, as soon as you insert it from the block library, it stops being <em>a cohesive unit</em> â€” now it&#8217;s just a smattering of blocks, detached from the pattern you created and meant to be customized to your liking. It&#8217;s a <em>shortcut</em>, not a <em>template</em>. That also means you don&#8217;t have to worry about switching themes or deactivating pattern plugins: the blocks you already inserted won&#8217;t go anywhere.</p>\n\n\n\n<p>That being said, if you like this one pattern so much you want to use it again and again, with no customization at all, you can make it into a <a href=\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\">reusable block</a>:</p>\n\n\n\n\n\n\n\n<p>Reusable blocks are created, as the name implies, to be reused. The feature is a great way to store small bits of commonly used snippets that you can edit in one place to update in all. &#8220;<strong>Follow me on Twitter</strong>,&#8221; &#8220;<strong>Article series</strong>,<strong>&#8220;</strong> or <strong>&#8220;Subscribe to my podcast&#8221;</strong> are great examples of that.</p>\n\n\n\n<h2>What makes a good block pattern?</h2>\n\n\n\n<p>Patterns, as they ship today, are limited by the features available. If the block editor doesn&#8217;t allow you to customize letter-spacing, your block pattern can&#8217;t either. While the Global Styles project will expand what&#8217;s to blocks, in the meantime, we have to work with the available tools.</p>\n\n\n\n<p>Even then, with the most basic ingredients â€” color, photography, typography â€” it is possible to do a lot:</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/W3RKCu5c7ONKnmuLdChmOhD40iZAFseq30i-qGwqFaq0dPTj_U5b1JXhhRR96-jRvJvKgC8BBZA4p_-EBYF-WoMRPoDLgCX8FG3RIWQhv6zX6-H7xBj4FZGGRm7cl_qdVgRy9G8q\" alt=\"\" />Three columns with images and text<br /></div>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"397\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=632%2C397&ssl=1\" alt=\"\" class=\"wp-image-10036\" />Media and text with image on the right</div>\n\n\n\n<p>I designed these patterns to potentially land in WordPress core, which all have a few properties in common:</p>\n\n\n\n<h3><strong>They share a theme.</strong></h3>\n\n\n\n<p>You can think of a pattern as a section of a website: it is meant to be part of a whole, and so it works best when it can exist in the context of other patterns that share the same theme. There are a few sharing a Nature theme in the patterns above, a few sharing an Art theme, and others sharing an Architecture theme. When seen together, it becomes easier to see how you might be able to piece together multiple pages of your site, one page at a time.</p>\n\n\n\n<ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><img width=\"632\" height=\"406\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=632%2C406&ssl=1\" alt=\"\" class=\"wp-image-10033\" /></li><li class=\"blocks-gallery-item\"><img width=\"632\" height=\"405\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=632%2C405&ssl=1\" alt=\"\" class=\"wp-image-10034\" /></li></ul>\n\n\n\n<h3><strong>They share a minimalist color palette.</strong></h3>\n\n\n\n<p>By being parts of a whole, patterns will inevitably land in a context that uses different colors. With a reduced color palette, there&#8217;s both a better chance of fitting in and less to customize to make it just right.</p>\n\n\n\n<ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><img width=\"632\" height=\"535\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=632%2C535&ssl=1\" alt=\"\" class=\"wp-image-10042\" /></li><li class=\"blocks-gallery-item\"><img width=\"632\" height=\"271\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container.jpg?resize=632%2C271&ssl=1\" alt=\"\" class=\"wp-image-10043\" /></li></ul>\n\n\n\n<h3><strong>The best patterns <strong>do things you might have not done otherwise</strong>.</strong></h3>\n\n\n\n<p>Whether that&#8217;s images offset to create a unique silhouette, or just using less visible features (like fixed positioning in the Cover block), it&#8217;s a way to surface creativity.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>Tip: You can use any block in your patterns, including blocks that came from a plugin. And if that block is in the block directory, it will prompt you to install it with one click if it&#8217;s missing from your self-hosted WordPress:</em></p></blockquote>\n\n\n\n\n\n\n\n<h2>Hereâ€™s a plugin for you</h2>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php \n/*\nPlugin Name: Quote Pattern Example Plugin\n*/\n\nregister_block_pattern(\n	\'my-plugin/my-quote-pattern\',\n	array(\n		\'title\'       =&gt; __( \'Quote with Avatar\', \'my-plugin\' ),\n		\'categories\'  =&gt; array( \'text\' ),\n		\'description\' =&gt; _x( \'A big quote with an avatar\".\', \'Block pattern description\', \'my-plugin\' ),\n		\'content\'     =&gt; \'&lt;!-- wp:group --&gt;&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;&lt;!-- /wp:image --&gt;&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\\\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;â€” Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;&lt;!-- /wp:quote --&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- /wp:group --&gt;\',\n	)\n);\n\n?&gt;</code></pre>\n\n\n\n<p>In case you want to make patterns, this example plugin features two of the patterns you saw above. Drop it in your plugins folder and they should show up in your block library.</p>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"966\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=632%2C966&ssl=1\" alt=\"\" class=\"wp-image-10062\" />Installed pattern under &#8220;Text&#8221; Category</div>\n\n\n\n<p>Feel free to tweak it, customize it, and make it yours. Itâ€™s GPL, after all!</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><em>Thank you <a href=\"https://profiles.wordpress.org/joen/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joen</a> for the help writing this post.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Mar 2021 17:01:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Beatriz Fialho\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"WPTavern: Open Collective Launches Funds to Help Companies Streamline Donations to Multiple Open Source Projects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114400\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:269:\"https://wptavern.com/open-collective-launches-funds-to-help-companies-streamline-donations-to-multiple-open-source-projects?utm_source=rss&utm_medium=rss&utm_campaign=open-collective-launches-funds-to-help-companies-streamline-donations-to-multiple-open-source-projects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4141:\"<p>Open Collective has launched <a href=\"https://blog.opencollective.com/funds-for-open-source/\">Funds</a>, a new funding infrastructure for funneling contributions to open source projects. Any open source project can receive contributions from a Fund, even those that are not listed on Open Collective due to having their own foundation or working with another fiscal host. The new feature was added to Open Collective&rsquo;s existing non-profit funding platform that serves more than 2,500 projects. </p>\n\n\n\n<p>Funds were designed to mitigate the friction between corporations and open source projects, cutting out the excessive bureaucracy that can sometimes stifle funding for smaller projects. Companies can use the feature to support multiple projects that are crucial to their business efforts and underlying tech.</p>\n\n\n\n<p>&ldquo;Funds facilitates a relationship between maintainers and organizations on their own terms,&rdquo; Open Collective co-founder Pia Mancini said. &ldquo;No contracts, no promises, no agendas. We take on the work of administrating payments to projects and of ensuring companies have what they need in their procurement processes.&rdquo;</p>\n\n\n\n<p>Traditionally, if you wanted to work on an open source project full time, you would most likely need to be sponsored by a company. Although WordPress&rsquo; &ldquo;<a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a>&rdquo; campaign isn&rsquo;t perfect, it has brought some stability, enabling the project to drive important efforts forward even in leaner times of contribution from unpaid volunteers. Some open source projects aren&rsquo;t able to thrive this way, especially those that are categorized as simple utilities.</p>\n\n\n\n<p>Critical dependencies can sometimes be grossly underfunded when supported by only a handful of individuals who may not have steady employment to buoy their maintainership efforts. The <a rel=\"noreferrer noopener\" href=\"http://heartbleed.com/\" target=\"_blank\">Heartbleed Bug</a> that was disclosed in 2014 put a spotlight on the immense economic challenges of funding open source work. In the aftermath of this global fiasco, the tech industry turned its attention towards brainstorming different initiatives that might create a more healthy ecosystem.</p>\n\n\n\n<p>Open Collective&rsquo;s Funds feature aims to make &ldquo;working for an open source project a legitimate alternative to a career working for a for-profit corporation.&rdquo; Prior to launching the new feature, the platform quietly tested a number of Funds with Airbnb, Indeed, Salesforce, and other companies with successful outcomes for maintainers.</p>\n\n\n\n<p>&ldquo;Airbnb&rsquo;s investment in webpack has enabled groundbreaking advancements in web compiler technology, paved the way for the last 2 major versions, and enabled us to devote entire teams to ecosystem management, CLI, docs, and infrastructure,&rdquo; webpack core team member Sean Larkin said. </p>\n\n\n\n<p>Airbnb received so many reports of the positive impact of its Fund that the company decided to expand its open source sustainability commitment by 50% to $150,000.</p>\n\n\n\n<p>&ldquo;Donations from Airbnb have made it possible for ESLint to pay core contributors for work,&rdquo; ESLint creator Nicholas Zakas said. &ldquo;As a result, contributors are able to spend more time pushing forward large projects that weren&rsquo;t possible when we relied solely on volunteering.&rdquo;</p>\n\n\n\n<p>As open source projects are becoming less self-contained and more interdependent, maintaining the health of the overall ecosystem is a priority. When smaller utilities that everyone depends on are underfunded, it can have a ripple effect that slows down progress throughout the vast web of projects that rely on the dependency. </p>\n\n\n\n<p>Open Collective&rsquo;s Funds feature is one solution that helps companies streamline their donations and keep track of their contributions to multiple projects in one place. Companies interested in creating a new Fund can get in touch with the organization via its <a href=\"https://www.oscollective.org/contact\">contact form</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Mar 2021 06:39:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Creating Tiled, Masonry, and Other Image Layouts With Meow Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114473\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/creating-tiled-masonry-and-other-image-layouts-with-meow-gallery?utm_source=rss&utm_medium=rss&utm_campaign=creating-tiled-masonry-and-other-image-layouts-with-meow-gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4546:\"<p class=\"has-drop-cap\">I am uncertain of how I first came across the <a href=\"https://wordpress.org/plugins/meow-gallery/\">Meow Gallery</a> WordPress plugin. It was a pinned tab in my browser for a while, but it has recently become one of those projects that I keep coming back to. I delight in the imagery of the Meow Apps brand, created by Japan-based software developer Jordy Meow. It has the sort of fun and artistic visuals that are often missing in the WordPress business ecosystem. This creativity also comes across in the Meow Apps plugins.</p>\n\n\n\n<p>The problem with WordPress gallery plugins is that I find a new one I want to use every other week. It is a bit of an obsession. There are so many different options that it is tough to grow comfortable with a solution before finding something new and shiny to tinker with.</p>\n\n\n\n<p>Such is the case with Meow Gallery. From the simplicity of its options to the range of layouts that the plugin provides, it has found its way onto my ever-growing list of favorite gallery-related plugins.</p>\n\n\n\n<p>I also prefer the decoupled, modular nature of what Meow Apps is doing with its plugins. Meow Gallery keeps a tight focus on the gallery layout itself.  Users can select an image lightbox/overlay extension separately. <a href=\"https://wordpress.org/plugins/meow-lightbox/\">Meow Lightbox</a> is recommended, of course. However, both are developed to work alongside third-party gallery or lightbox plugins. It is the sort of building-block solution that more developers in the community should embrace, ultimately offering end-users more freedom.</p>\n\n\n\n<p>Meow Gallery is straightforward to use. It works similarly to the core Gallery block. When first adding images, users can drag-and-drop them directly into it or select from their media library. From that point, the experiences begin to diverge.</p>\n\n\n\n<img />Tiled gallery with 10px gutter.\n\n\n\n<p>Instead of selecting the number of columns, whether to crop, or the image size, the Meow Gallery block automatically handles this based on the type of layout chosen.  Options may change based on the layout too. The following are available:</p>\n\n\n\n<ul><li>Tiles</li><li>Masonry</li><li>Justified</li><li>Square</li><li>Cascade</li><li>Carousel (pro only)</li><li>Map (pro only)</li></ul>\n\n\n\n<p>The block also offers a handful of basic animations, link options, and more. However, the gutter setting provides more control over the output. The gutter is the horizontal and vertical space between images. Users can choose between 0 and 100. Gutter spacing is the one option from the plugin that WordPress should adopt, allowing theme authors to opt-into a default and users to customize.</p>\n\n\n\n<img />Square-layout gallery with no gutter.\n\n\n\n<p>The plugin also has <a href=\"https://meowapps.com/plugin/meow-gallery/\">commercial features</a>, but they are value-added upsells instead of necessary functionality. The pro version includes extras like more layouts, new animations, and infinite scrolling for galleries with many images.</p>\n\n\n\n<p>The one off-putting issue with Meow Gallery is that it creates a custom block. Having already seen solutions from other plugin authors that extend the default Gallery block, I was hoping this plugin would go in the same direction. Extending the core block makes it easier for end-users to switch gallery plugins at any point. However, users can transform Meow Gallery blocks into Gallery blocks and vice versa.</p>\n\n\n\n<p>Keep in mind that the WordPress Gallery block is also undergoing drastic changes. Currently, the plan is to make it more of a container block that houses nested Image blocks. By not extending the core block, plugin users will miss out on some of the advantages this change brings. Of course, the plugin developer could follow suit and add the same features to the project.</p>\n\n\n\n<p>Meow Gallery relies on the WordPress <code>gallery</code> shortcode. Therefore, it will continue working regardless of whether users deactivate the plugin in the future. As a fallback, it is not a perfect solution. Users of the block editor would likely rather have it revert to the core Gallery block &mdash; the shortcode and block are not remotely the same. However, it is a bit of a compromise between showing a working gallery or nothing at all.</p>\n\n\n\n<p>I suspect the reliance on the shortcode is for historical reasons. Meow Gallery existed in the pre-block era. However, the developer has managed to keep up with the times, offering support for both the block and classic editor.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Mar 2021 21:26:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: WP Briefing: How WordPress Improves\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/?post_type=podcast&p=9980\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2021/03/how-wordpress-improves/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10231:\"<p>In this episode, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> explores the WordPress release process. Tune in and learn the phases of a release and catch this weekâ€™s small list of big things.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2021/03/esperanza/\">WordPress 5.7 â€œEsperanzaâ€&nbsp;</a></li><li><a href=\"https://en.wikipedia.org/wiki/Esperanza_Spalding\">Esperanza Spalding</a></li><li><a href=\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\">Gutenberg Tutorial: Reusable Blocks</a></li><li><a href=\"https://make.wordpress.org/test/\">make.wordpres.org/test</a></li><li><a href=\"https://make.wordpress.org/core/handbook/contribute/git/\">GitHub repository&nbsp;</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-9980\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>All right, so last week, we wrapped up and shipped the WordPress 5.7 release. The release team this time around was smaller than we&#8217;ve had in the last couple of years. By the numbers, it looks really good: 66 enhancements or feature requests went in, 127 bugs were fixed, and seven versions of a Gutenberg plugin were merged and backported. If you use WordPress, you are probably aware that we have new releases throughout the year, but you probably don&#8217;t know much about the release process. There&#8217;s not really a reason to know unless you&#8217;re actively contributing to a release. For those interested in knowing more about how we improve WordPress, this week&#8217;s exploration is for you.</p>\n\n\n\n<p>We&#8217;re gonna take a look at what goes into WordPress releases and just kind of zoom our way in from the highest level. At the highest level, there are three major WordPress releases a year, plus the minor releases, plus Gutenberg releases. So if you&#8217;re following current WordPress work and future WordPress work, that&#8217;s going to get you to probably around <strong>30 releases a year</strong>. If we zoom in one level to the release itself, a single release of WordPress takes four to five months from start to the day that we ship, and an additional four to six weeks on support and translations, and minor releases after that. If you&#8217;re looking from my vantage point, you&#8217;ll see that WordPress releases have essentially five parts, some of which happen kind of simultaneously.&nbsp;</p>\n\n\n\n<p>The first part is planning and includes the project lead, lead developers, design; groups like that. The second phase is the creation phase when we&#8217;re actually building the things that have to go into the CMS that involves the design, core, editor, mobile, and other teams. Then there&#8217;s this phase that I like to refer to as the distribution phase. This is mostly done by the teams that make sure that WordPress is widely distributable; the polyglots team work on translations, accessibility does some work, docs make sure that everything is documented, and training, of course, gets things ready for when we have to be able to tell people how to use the release.&nbsp;</p>\n\n\n\n<p>Then there is the fourth phase; I really don&#8217;t think they go sequentially or in a waterfall format. The fourth-ish phase that I include, and that I tend to see, is this extending and iteration phase. It&#8217;s the phase where we see our theme authors and our plugin authors, folks who are doing support, show up and help us to make sure that WordPress is available not only widely but broadly to ensure that their audiences as theme authors and plugin authors are covered in the features that they need based on what they are using WordPress for. The fifth phase is the part of our communication that involves the community team, especially marketing, WordPressTV, and learn.wordpress.org. Basically, anyone who&#8217;s showing up to make sure that we all share what happened in the release, the features that are coming, and how that affects the users is involved in that particular phase. So five big phases of what happens over those four to five months, and then for the month or month and a half afterward.&nbsp;</p>\n\n\n\n<p>If we zoom in a bit more on the creation phase, each release has people who lead the work and coordinate contributor efforts during the course of the release. For any given release, hundreds of people contribute and receive credit for moving the WordPress project forward. Okay, hold on a second. Let&#8217;s pump the brakes and zoom in a bit on that. Hundreds of people work on every major release for a project that powers over 40% of the web that feels like a small number. But for the people who process the contributions in preparation for release, it&#8217;s actually pretty substantial. For every release, there is a small team of leaders who asked the hard questions. Is this a usable feature? Does this make WordPress better overall? And, of course, is this ready to ship?&nbsp; Some of those leaders, a smaller subset of even the leaders that we have already, are committers who actually prep and merge patches to the CMS; they don&#8217;t do all the work to create a design or write all the code. This tiny group of people processes hundreds and hundreds of bug fixes, improvements, and enhancements that have been submitted over the course of months and sometimes years. As a side note, that whole process is a little smaller, a little faster in the Gutenberg featured plugin, but the basic parts are still there. Alright, so we&#8217;ve zoomed from the big picture way into some of the finer details, and it really looks like any other project cycle. So now, I&#8217;m going to layer in the filter of open source to that process.</p>\n\n\n\n<p>There are a couple of things that make building software in an open source environment so different. The first is that the code is readily available. If you have a basic understanding of the languages, you can see the code, learn from it, and make suggestions about improving it. Second, you consider the user a co-developer in the process, which means that as long as people use your product, they will have opinions on what you shipped. This way of iterating improves WordPress and ties back to one of my favorite open source principles. The idea that with many eyes, all bugs are shallow. To me, that means that with enough people looking at a problem, someone is bound to be able to see the solution.</p>\n\n\n\n<p>This brings us to our community highlight, the segment where I share a note about contributors who have helped others along the way or a WordPress success story. This week&#8217;s highlight is from Nok in our Bangkok community. When asked to help her find her way into the WordPress community, she said, â€œ@shinichiN who started the WordPress community in Bangkok and encouraged me to contribute, and also @mayukojpn has introduced me to the WP community team to join as a deputy. â€œ Thank you for sharing those two inspiring people with us. And if you, listener, have any stories that you would like to share of your own WordPress success or people that you have been so grateful to help you find your way in the project, you can feel free to email those to me at <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>.</p>\n\n\n\n<p>That brings us to our final segment of the WP Briefing, the small list of big things. I only have three things to share with you this week. The first one is that about a week ago, we had our first release of 2021. It was the WordPress 5.7 release, titled Esperanza. If you have not yet seen it, go ahead and update your website or check with your host and make sure that they have updated you if you&#8217;re on a managed host. And then take a listen to the artists that it&#8217;s named after.&nbsp;</p>\n\n\n\n<p>The second thing that I want you to keep an eye out for is wordpress.org/news. We are starting a new series of content that gets at the heart of some of Gutenbergâ€™s basic parts; thereâ€™s a lot of change coming up in the next few releases of WordPress. And the most important thing to me is that you understand what we&#8217;re trying to change and where those changes are primarily taking place. There will be a couple of tutorials that go up there over the course of the of the next few weeks. The third item on the small list of big things is to remind you of our call for testing. As I mentioned earlier in the podcast, the users of any open source software are the code developers; the software built is supposed to make your life and work easier. When you test things and find interactions that can use a little bit of refinement or features that are not working exactly as expected, it&#8217;s incredibly helpful for us to have that information to always make sure that we&#8217;re solving problems instead of accidentally creating them. If you want to participate in the Current call for testing, you can head over to make.wordpress.org/test. Or, if you&#8217;ve been doing your own testing, you can also submit any bugs you have found in the GitHub repo, which I will share in the show notes below. So that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress briefing. Iâ€™m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Mar 2021 15:15:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WordPress.org blog: WP Briefing: My Typical Day as WordPressâ€™s Executive Director\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/?post_type=podcast&p=9825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2021/03/my-typical-day-as-wordpresss-executive-director/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9925:\"<p>In this episode, Josepha Haden Chomphosy speaks to her role as the Executive Director of WordPress. Learn about the day-to-day of her role and how it supports the mission of WordPress.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></li><li><a href=\"https://twitter.com/arunaswp/status/1339344702466887686\">Contributor Highlight&nbsp;</a></li><li><a href=\"https://make.wordpress.org/core\">WordPress Core</a>&nbsp;</li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-9825\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>I&#8217;ve been asked many times what the day-to-day work looks like for the Executive Director of the WordPress project. I don&#8217;t really think I&#8217;ve done a great job of answering that question. My default answer is either too broad, and I say, â€œI helped turn the WordPress vision into reality by supporting the community of contributors,â€ or way too narrow, and I start telling people what&#8217;s on my calendar. Probably no one cares about each entry on my calendar, and almost every contributor is covered by â€œI get things done by helping people.â€ So today, I invite you to join me in exploring the type of work required and the balance it takes to keep WordPress working.</p>\n\n\n\n<p>First, some context on the weekly activity I see in WordPress, on average, 1,800 to 2,000 contributors a week, participate in conversations and tickets across the entire WordPress project in our entire ecosystem. There are about 20 volunteer teams that are each led by two to three team reps. Each of those teams actually has smaller groups that work on specific things; all told, it&#8217;s probably about 50 distinct teams. And probably quite a few more if you are very generous in your counting about what makes up a team for us.&nbsp;</p>\n\n\n\n<p>Among those teams, a minimum of about 35 meetings a week are held, plus more for working groups. That doesn&#8217;t take into account the things most people are aware of externally.&nbsp; It doesn&#8217;t take into account the big quarterly or annual activity things like WordPress software releases or any of our events. When those sorts of things do happen, there&#8217;s a bit of an increase in our activity.</p>\n\n\n\n<p>&nbsp;I work 40 to 60 hours a week on WordPress, depending on what&#8217;s going on, to make sure that I know what&#8217;s happening now; so that I have insight into what the next three to five years will bring. All of that is in support of <strong>the WordPress community, which I define as anyone who has ever interacted with WordPress ever</strong>, regardless of whether they know it or not. In case you&#8217;re feeling a bit lost right now, we can shorthand that entire context as this is really big and really complex.</p>\n\n\n\n<p>Given that giant scope, it makes sense that people wonder what the work looks like. So I&#8217;ll talk about it in three big chunks: what I focus my time on, what I focus my attention on, and what helps me balance my decisions.&nbsp;</p>\n\n\n\n<p>So first, what I focus my time on. I spend about a quarter of my time in meetings, mostly with current contributors, project leadership, and community members. I spend another quarter of my time in WordPress community outreach, checking in with current folks, reaching out to future WordPressers, and checking in with people that I haven&#8217;t heard from in a long time to make sure that I know what they need and if there&#8217;s anything that I can do to help. After that, I spend a bit under 15% of my time each on writing/communications work or ad hoc project work. I then spend 10% of my time reviewing proposals, editing, communication drafts for others, and determining my stances on discussions that we&#8217;re having in tickets and elsewhere. I spend all of my remaining time planning for various goals, projects, initiatives and personally working to remove blockers for our volunteer contributors. So the bulk of my time, about 50% or more, is spent in calls with people, which makes sense if you&#8217;ve ever worked with me; personal connections with the community have been the best part of my job for a long time. Since the community is what makes WordPress so great, it&#8217;s only natural that I want to stay connected.&nbsp;</p>\n\n\n\n<p>The second big chunk is what I focus my attention on. I pay attention to four big pillars of work in the project. The first one is the WordPress CMS itself. So that&#8217;s the core team, accessibility, design, and many, many others. The second one is the WordPress community. And that&#8217;s the training team, everybody who is working on the Learn initiative, and the actual community team as well.&nbsp;</p>\n\n\n\n<p>The third big pillar that I focus on is the WordPress contributor experience, which is mostly the meta team but&nbsp; includes all of the teams they work with: plugins, themes, polyglots, etc. The fourth big pillar that I turn my attention to is our communication; what I am saying about the WordPress project to people outside of it and what I am helping our team reps to say about the work that we&#8217;re accomplishing for the WordPress project inside the project. In general, we have to make sure that we coordinate a big group of contributors around a common idea or a common practice as we move forward.&nbsp;</p>\n\n\n\n<p>Now, the way I focus both my time and attention probably isn&#8217;t quite right if you&#8217;re focused on a single feature or team. And it&#8217;s definitely not right if you aren&#8217;t spending 40 hours a week in the project; what that probably looks like for you is more like an hour in a team meeting, 30 minutes or so on clarifying conversations, and any remaining time that you are able to contribute focused on the feature that you&#8217;re actually contributing to. And so, there you have it all my time and attention. That is WordPress in a nutshell.&nbsp;</p>\n\n\n\n<p>This brings us to the third chunk, the balance part. You might be wondering, how do I make sure I am fair and balanced in decisions that I have to make. That is something that I think about all the time, and I take very seriously. It&#8217;s hard to make decisions that might affect 2,000 people. It&#8217;s even harder when those decisions might affect 40% of the web. I know that I don&#8217;t have all the answers. And I&#8217;m fortunate enough to have 50 or 60 people in the community who offer me advice and guidance every single week. I&#8217;m in constant contact with the project lead, of course, but I also prioritize messages and concerns raised from team reps. And I always strive to understand before I try to problem solve. I don&#8217;t always get it right, but I do always work to get better. And that is the day-to-day work of a WordPress executive director.</p>\n\n\n\n<p>That brings us to our community highlight. I tweeted out into the community asking for excellent examples of Freelancer success stories, and today I&#8217;m going to share a story from <a href=\"https://profiles.wordpress.org/ideag/\">ArÅ«nas Liuiza</a>. Their story goes like this:&nbsp;</p>\n\n\n\n<p class=\"has-text-align-justify\">â€œFor almost a decade, freelance WordPress gigs allowed me to support myself and my family and keep my full-time teaching position at the local college, which was paying peanuts but was an awesome, meaningful, and fulfilling. I am sincerely grateful for that.â€</p>\n\n\n\n<p>That brings us to our final segment of this brief podcast. The small list of big things to keep an eye out for in the next two weeks in WordPress. I only have two things this week. The first one is daylight saving time. It is that time of year where daylight saving time starts or stops at various parts in the globe. If you are a team rep here at WordPress, don&#8217;t forget to talk to your teams in your meetings in the next few weeks to decide what you&#8217;re going to do. You can move your team meeting if you want, and you can keep it where it is and see what new voices show up when it moves around for various people. Either way, make sure that you chat it out with your team and make sure that everybody understands what is and isn&#8217;t moving on your calendar. That will also be relevant to any of our brand new work-from-home folks in the middle of this global pandemic.&nbsp;</p>\n\n\n\n<p>The second thing to share is that there is a major release of WordPress coming up that&#8217;s going to happen on March 9th. Itâ€™s WordPress 5.7; it&#8217;s going to be a good release. We&#8217;ve been working on it since December or maybe a little bit earlier. So keep an eye out for announcements about that here on wordpress.org/news, or if you want to follow more about the developer details and the process details you can head on over to wordpress.org/core. That, my friends, is your small list of big things. Thank you for tuning in today for the WordPress briefing. Iâ€™m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Mar 2021 15:15:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WordPress.org blog: WP Briefing: Talking Full Site Editing with MatÃ­as Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10013\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2021/03/talking-full-site-editing-with-matias-ventura/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:31281:\"<p>In this episode, Josepha is joined by MatÃ­as Ventura, also known as â€œthe spark behind the vision of Gutenberg.â€ Josepha and MatÃ­as discuss full site editing and answer your questions, from â€œis full site editing a standalone plugin?â€ to â€œwill full site editing break my current site?â€</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/tt1-blocks/\">Twenty Twenty One theme</a></li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">Word Camp Central America&nbsp;</a></li><li><a href=\"https://make.wordpress.org/core/2021/03/12/q2-listening-hours-april-7th-2021/\">2Q21 Listening Hours with Matt Mullenweg and Josepha Haden Chomphosy</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10013\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>Josepha [0:41]: This month, we have a bonus briefing, so I&#8217;ve asked my dear friend and colleague <a href=\"https://profiles.wordpress.org/matveb/\">MatÃ­as Ventura</a> to join me. MatÃ­as was recently called â€œthe spark behind the vision of Gutenberg.â€ With full site editing coming our way in 202, I asked if he would join me for a quick Q&amp;A. Welcome, MatÃ­as.&nbsp;</p>\n\n\n\n<p>MatÃ­as [0:56]: Hello, hello! Thanks for inviting me. It&#8217;s a pleasure to be here.</p>\n\n\n\n<p>Josepha [1:00]: Well, I&#8217;m delighted to have you. And I think that we have a lot of excellent questions. All right, so MatÃ­as, we actually ended up with questions in about three different groupings. And so I&#8217;m going to start with the â€œwhat is it about full site editing,â€ sorts of questions that people had. We&#8217;re gonna work our way into â€œwhat are we doing with it?â€ and then â€œhow are we planning on getting this out the door?â€ Then, a couple of big picture questions that people asked. We&#8217;re just gonna leap right in this full site editing part of the Gutenberg plugin, or is it a standalone plugin?</p>\n\n\n\n<p>MatÃ­as [1:39]: Okay, we&#8217;ll start with the basics. Full site editing is part of the Gutenberg plugin right now. I think it&#8217;s important to mention that full site editing is like an umbrella for several projects that we&#8217;re working on. They are all aiming to bring blocks into more parts of your site so that editing becomes easier and more expressive, and so on. So full site editing right now encompasses adding a ton of new blocks. I think we have around 20 new blocks coming in, including navigation query, site, title, logo, etc. There&#8217;s also the interface to interact with templates outside of the content; that&#8217;s another big part of the full site editing project. We also have a lot of new design tools included, many of these have been released in previous major releases, but they still comprise a strong part of what full site editing is. We also have something called Global Styles, which aims to allow people to configure the visual aspects of blogs across the entire site, not just on any individual blog. And of course, then there&#8217;s a whole layer of how we utilize these tools. It can get complex because there are many layers and projects that need to come together. So yeah, all of these are accessible through the Gutenberg plugin right now.</p>\n\n\n\n<p>Josepha [3:07]: Yeah. So it&#8217;s not a standalone plugin. If you wanted to check out full site editing the site editor experience as it is now, you would just have to make sure you had the Gutenberg plugin on your site. Right?</p>\n\n\n\n<p>MatÃ­as: Yes, correct.</p>\n\n\n\n<p>Josepha:&nbsp; So a couple of the questions related to this are how exactly do I enable it on my site? And what is the easiest and safest way to try this on my site? And I think the answer is, is right in there. It&#8217;s in the Gutenberg plugin. And so if you have that plugin, you don&#8217;t need the testing plugin or anything else to make that work, right?</p>\n\n\n\n<p>MatÃ­as [3:51]:&nbsp; No, you like, you might need to install a theme like Twenty Twenty One blocks that unlock some of these new interfaces that we just talked about. Like other of these pieces are available for anything. But some of these, like the interface to edit templates, right now only talk with things that know how to express their desire.&nbsp;</p>\n\n\n\n<p>Josepha [4:14]: And I think we have less than 10 themes right now that do that, but I&#8217;ll leave some links to at least 2021 blocks in the show notes. And then, if there are another one or two themes that I can find, I can add those in there as well.&nbsp;</p>\n\n\n\n<p>So you have to have the Gutenberg plugin; you have to have a theme that works with that site editor kind of experience. And then you&#8217;re safe to try everything out. It shows up in your left toolbar just like any other thing, like if you were working with plugins, or if you were adding a post or anything else, right?</p>\n\n\n\n<p>MatÃ­as [4:51]: Yes, correct. And so, some of these details are being worked on right now. Like how and where you access things, and so on. These things are subject to change, but right now, you have this site editor beta in the sidebar when both you have the plugin running and a theme that&#8217;s capable.</p>\n\n\n\n<p>Josepha [5:10]: Yeah. Excellent note. If you are running this on a production website, I would recommend you not do that unless you are very, very good with WordPress. It&#8217;s a really safe and easy thing to test and try out. But because it is still in beta, I recommend always putting it on a test site. I have a couple of different test sites that I run on myself. Another question that I had was, â€œwill full site editing slow down my site?â€ And I think we have some refreshed performance tests coming out about that. And maybe they&#8217;ll be out by the time we publish this podcast.</p>\n\n\n\n<p>MatÃ­as [5:49]: Yeah, I mean, like the performance has been one of the major focuses for the whole project. In many cases, it should speed up things because we&#8217;re like, I think one of the big pieces that these projects bring into the picture, especially for themes, is that it allows only the necessary assets to be loaded on the front end. For example, if for a given page, there are, I don&#8217;t know, 10-15 blocks being used, you would only get the CSS and scrapes and so on related to those blocks. This can cut down on a lot a ton of CSS that themes used to end queue on a side, particularly if you were trying to customize many widgets and so on, like a lot of themes have the full styles or multiple widgets, even third party plugins, and so on. So one of the advantages of having this blog system is that we can know at the time of rendering what blogs are being used and only load those assets.&nbsp;</p>\n\n\n\n<p>Josepha [6:50]: Excellent. Another big question that we have is, â€œdoes full site editing work with the classic editor? And does it work with other builders?â€ I think that&#8217;s a really big answer if you&#8217;re going to get super deep into it. But I think that the short answer is yes, it does. Is that fair?</p>\n\n\n\n<p>MatÃ­as [7:08]: Yeah, I don&#8217;t think it touches a bit on that full site editing is not like a single thing. There are multiple projects around it. So again, like the template editor that only deals with blogs, it doesn&#8217;t have a lot to do with a classic editor. But the classic editor use for both doesn&#8217;t change anything at all; like the same way that when the block editor was introduced, it didn&#8217;t change how you could still write posts in the classic editor. You will still be able to do that.</p>\n\n\n\n<p>Josepha [7:41]: And if you are brand new to WordPress person, or, I mean, I guess at this point, you don&#8217;t have to be super brand new. If you&#8217;re fairly new to WordPress person and have no idea what we&#8217;re talking about when we say the classic editor, you don&#8217;t really have to worry about it either. You don&#8217;t have to go and find out what that is; the block editor that you have right now works perfectly for what you&#8217;re trying to do. So if you don&#8217;t know what I mean when I say classic editor, don&#8217;t worry about chasing it down either.&nbsp;</p>\n\n\n\n<p>I think that this last question we accidentally answered earlier, but I&#8217;m going to go ahead and ask it anyway since I received it. â€œI keep hearing that you can use the site editor with the 2021 theme. But I don&#8217;t seem to be able to. What am I missing?â€ I think the answer is that there&#8217;s the Twenty Twenty One theme shipped with the WordPress release 5.6. And then there is the Twenty Twenty One blocks theme; those are two different themes. The link to the Twenty Twenty One block theme is going to be in our show notes this time around. And so, if you have been trying to use the full site editor with Twenty Twenty One and not succeeding, try the link to the one below. And I bet that that will work for you.</p>\n\n\n\n<p>MatÃ­as [8:50]: Yes, that&#8217;s correct.&nbsp;</p>\n\n\n\n<p>Josepha [8:51]: All right, excellent. Well, that brings us kind of into our second set of questions, which is about how we are doing it. The first one that folks have is â€œwill full site editing be on by default in the next release. In this context, the next release is WordPress 5.8. But I think it&#8217;s a safe question to ask if full site editing will be on by default in the release that it&#8217;s planned for.</p>\n\n\n\n<p>MatÃ­as [9:15]: Yeah, and for this, I need to go back to the same principle of many projects because there are many pieces of full site editing, and we have been merging them in major releases, particularly like the blocks and the design tools. There are more coming in that we want to make accessible as soon as possible. The full experience that requires a theme to opt-in to templates using blogs wonâ€™t be by default; it requires a specific theme running. A lot of these details we&#8217;re still like determining exactly what projects are ready to be merged and so on. But yeah, if you have a theme right now that works the way you want, it doesn&#8217;t change anything there. If anything, it adds some more capabilities and more customization tools, and so on. And the theme can also regulate how much they want to incorporate.</p>\n\n\n\n<p>Josepha [10:13]: MatÃ­as, you&#8217;ve mentioned a couple of times in this podcast so far like this is a really complex and really complicated part of this work. And just for anyone out there who&#8217;s either encountering Gutenberg or full site editing or this podcast for the first time, I think a tiny bit of context that&#8217;s worth having here is that MatÃ­as and I have been working on this together in various capacities for like, five years. And MatÃ­as has probably been working on this for practically a decade. So, when we say that this is a really complicated problem, and when we say that this is a complex set of issues that we&#8217;re working with like, it is all that we have been thinking about for I want to say at least the last three or four years, but certainly it&#8217;s all that we have been trying to untangle for quite a bit of time before that as well. So we don&#8217;t take it lightly when we&#8217;re like, â€œthis is complicated;â€ we mean it. It&#8217;s really complicated. And we&#8217;re trying our hardest over here as WordPress.&nbsp;</p>\n\n\n\n<p>The next big question, since we&#8217;re all stuck in the â€œit&#8217;s very complicated,â€ part of things is the question, â€œwill this update break my current site?â€ Like, if I have a site that is updated and ready, and it&#8217;s exactly as I wanted it to be, and it took me two years to get there will full site editing, whichever release it&#8217;s in. Currently, 5.8 is what we&#8217;re planning for. Will that break anything on my site as I know it right now?</p>\n\n\n\n<p>MatÃ­as [11:44]: No, not at all. One of the major things that the WordPress team, the WordPress community, always cares so much about, never to break things. Many of these things are stepping stones that you can adopt, as we&#8217;ve talked about full site editing. But for example, we also have a few concurrent projects around the widget screen and the navigation screen that are meant to bring blocks into existing interfaces. So again, the theme doesn&#8217;t need to change, and a lot of care is being put into making this more like you&#8217;re unlocking new features, and nothing really breaks or falls apart.</p>\n\n\n\n<p>Josepha [12:23]: This update, like all the other updates, should have minimal, minimal impact on what you have to actively fix on your site. Every once in a while, a bug is gonna get by. We can&#8217;t say that we&#8217;re 100% perfect with not breaking things. But also, we always and I and I know that we&#8217;re planning on this for our remaining releases for the rest of the year. At the very least, I can&#8217;t imagine we&#8217;d ever change it. But after every major release, we always make a plan to have a minor release within the next one or two weeks. Because we know that a broken thing on a site is really incredibly impactful, even if you&#8217;re only 1% of the sites that had that happen to it. And so I think that&#8217;s true in this case, too. And getting that feedback back from all of the people who are actually using WordPress is the thing that makes us be able to kind of move quickly when we do see those problems.&nbsp;</p>\n\n\n\n<p>One of the questions that we have been getting is, â€œcan I see a live preview without saving the changes that I made?â€ When I got this question, I didn&#8217;t actually understand it. And so I went and looked at a site without the Gutenberg plugin on it, and then a site with the Gutenberg plugin on it. And of course, on sites without Gutenberg, without the block editor, without full site editing, when you are looking to preview, you have the option to open up your preview in a new window. And you don&#8217;t have that with Gutenberg because it&#8217;s supposed to be a true WYSIWYG editor. A true what you see is what you get, editor. I think that the answer to this is, yes, you can see a live preview without actually saving the changes on the front end of your site. But you don&#8217;t actually have to reload anything. You don&#8217;t have to open it up in a new window. You don&#8217;t have to, like, actively click â€œplease show me a previewâ€ because what you see in your editing screen should be what you see at the end of your app as an end-user.</p>\n\n\n\n<p>MatÃ­as [14:28]: Yeah, that&#8217;s the sort of the main gist to it. Yes, the site editor is built so that it always reflects the front end as truly as possible, so that&#8217;s one layer. Also, the preview tools should allow you to see in different devices like mobile breakpoints, and I don&#8217;t know if they will have breakpoints and stuff like that. There are a lot of things in the current interface that is just not enabled. There are some challenges in the sidebar. Because the site editor is not just focused on a single post, it&#8217;s focused on the entire site. So, there can be many, many changes that need to be shadowed for the site.&nbsp;</p>\n\n\n\n<p>If you&#8217;re changing the site title, some of the global styles, aspects, and so on need to be orchestrated. So, to see in the previewing new window, there are some challenges there to integrate. Again, the interface is not final yet; a lot of these things are still being tweaked and improved. There are many things from the regular post editor that are not enabled yet. But they will be enabled. So yeah, it&#8217;s a, I guess, it&#8217;s not a simple thing to answer. Because, again, the idea of previewing the site that&#8217;s core to the whole project is that you&#8217;re always interacting in the same way that when you&#8217;re in the customizer, you&#8217;re seeing the preview all the time. That&#8217;s the main scope of this project,</p>\n\n\n\n<p>Josepha [15:54]: Excellent. Changes like that changes to your workflow can be really hard to get your mind around, especially if part of that existing workflow was there to create some confidence in what you&#8217;re seeing with your users. And so I understand. Now that I&#8217;ve researched that question a bit, I see where that&#8217;s coming from. Based on existing workflows and existing patterns that we have for ourselves in WordPress, will we need to have a theme to use the full site editor?</p>\n\n\n\n<p>MatÃ­as [16:33]: I think we&#8217;ve already covered some of these. And again, they are tools that can work on any existing theme. There is other stuff that needs space-specific themes to opt-in into these tools, like blog templates and so on.</p>\n\n\n\n<p>Josepha [16:50]: Yes, I think the question that we have next, because I see that the literal next question I have is actually something we have covered; just because we&#8217;re being pretty conversational about it, not because anyone already asked the question. So I&#8217;m actually going to skip to the last question of this section that I received. I got this next one via Twitter. The question is, â€œhow do you view the role of themes once full site editing is fully rolled out and all the page elements (content, headers, widgets, footers, etc.) and all the views are managed via blocks and block patterns? Will things become typographic and block styles?â€</p>\n\n\n\n<p>MatÃ­as [17:28]: I think this is a great question because it goes to the heart of, why are we doing all this. One of the main reasons is to empower users more. WordPress has been democratizing publishing for a while; this is another step into allowing themes to get more customization tools and more control over their site if they want to. I think the recent call for testing has focused on the 404 page, for example. That&#8217;s something that forever has been locked away from users. And it&#8217;s also something that, as a theme developer, and I used to develop themes a long time ago, that was one of the things where you decide what sort of approach you take for the 404 page. Maybe sometimes you want to have something more whimsical. Sometimes you need something more serious. And committing to one when you can have such a diverse and broad user base can be challenging. With these, it becomes as easy as offering a few different patterns for that template. Then the user will always be able to change the copy and modify something. So again, it opens up a lot of these things that used to be locked down. However, from a theme perspective, I think this doesn&#8217;t reduce the theme at all. If anything, it allows the theme to focus less on coding and functions and more on design expression and aesthetics. I don&#8217;t think that would ever be exhausted. That will always remain as diverse as humans are interacting with WordPress. And so it&#8217;s not that I don&#8217;t see it&#8217;s just as like, typographic and block styles. How do you express a template, how do you express the structure, what choices you quote, what choices you make as a theme builder? And of course, there are many degrees of control there. Because a site maintainer may not want the 404 template to be editable, that sort of control will always be present.</p>\n\n\n\n<p>Josepha [19:38]: Yeah. And really fast. I have to add a caveat to a thing that you said in there. For anyone who&#8217;s listening keenly, you may have heard MatÃ­as say that the users can update any of the content there &#8211; any of the copy. In this context, we&#8217;re talking about users as in the people who are maintaining the site, not people who are visiting your site. Visitors to your site will not be able to change any copy on your page unless you&#8217;ve done something very interesting with your WordPress site, which is also fine if that&#8217;s what you prefer to do. By default, your visitors can&#8217;t change everything on your website, which is good news, frankly.</p>\n\n\n\n<p>So I&#8217;ve got one logistics question, which I&#8217;m happy to take. And then one is kind of a big picture question that I also got from Twitter. â€œWhat about the classic editor block; what is going to happen to that? And when will we know?â€ So ages and ages ago, before COVID? I think so. Probably maybe a couple of years ago, Matt said that the classic editor plugin would be supported through the end of 2021. And that is still the case; there will be active support on that through the end of 2021. After that, it will not be actively supported anymore. It won&#8217;t be removed from any place that you can get access to right now. In a â€œthis is the end of its lifecycleâ€ sort of way, we just won&#8217;t have anyone who is currently committed to maintaining that plugin anymore. So that&#8217;s what&#8217;s happening at the end of the year. And yeah, at the end of 2021. The big question that we have is, â€œwhy is full site editing being so rushed?â€ I think this is a bit of a loaded question.</p>\n\n\n\n<p>MatÃ­as [21:32]: Yeah, I think I think it&#8217;s still a fair question, though. I think we&#8217;re dealing with two things here. And one is ensuring that we release things in the best state possible. And also, some of the urgency is to offer tools that we know that people lack right now and that could really benefit from. Making that determination is very tricky. The full site editing project has been in the works for the last couple of years. If we count the initial phase of Gutenberg, that&#8217;s four to five years. We&#8217;ve been doing many calls for testing, which I think have been super useful to catch issues and reflect as a community on where things are going; how do we integrate with these? How do we use it? What are the shortcomings? What do we need to do? Based on all of these, we&#8217;ll continue to make decisions on when things become ready. We&#8217;re not committed to releasing something that&#8217;s not in a good state. And I think we will always be very careful about that. There are these two competing senses of the urgency &#8211; of getting some of these tools out, and because it also benefits from the feedback loops. I always say that, in many ways, the initial phase of Gutenberg, to me, is not finished. We took the initial two years to do the 5.0 release, the initial block editor, and so on. But, it&#8217;s still being improved at a very fast pace, among all the recent major releases improvements to the editor were included; that will continue to be the case. In many ways, phase one is not finished. And the moment we choose to release some of these tools or editing tools, it won&#8217;t be finished either. They will need to continue to grow, mature, and incorporate a lot of the feedback. Even the things that the ecosystem is building around. I&#8217;ve seen a few themes already that are incorporating a blank canvas template so that you can use them in some pages and take over and do everything with blocks. So even the community and ecosystem as a whole is also sort of paving the way for what needs to come.</p>\n\n\n\n<p>Josepha [24:06]: I think from my perspective, and of course, I&#8217;m on the people side of things, the communication side of things, the logistics side of things; I have a frequently a very different view from what a lot of other folks are seeing. And so from my side of things, I have to say, I&#8217;m communicating about this change in a really broad way, which has not been happening since 2019 when we started the work. We&#8217;ve been communicating broadly with the WordPress community, but not with everybody who uses WordPress. So, I think that for a lot of people, this looks like a project that we started really actively working on in the last six months or so. And now we&#8217;re just racing toward a finish line. I think that there&#8217;s, there&#8217;s not been a lot of awareness of everything that&#8217;s gone into it. And so, on the one hand, it feels a little less rushed to me knowing the full length of the history on this. But also, as you said, I really think that this gets a bunch of tools to people who otherwise have not been able to accomplish these things in WordPress or otherwise. I am so anxious to get something to people who really can benefit from this change the most. And it&#8217;s the nature of the open source, right that like, one, as long as you have users, you&#8217;re going to have stuff you have to fix in your software. So we&#8217;re never really, really going to be done with this; there&#8217;s not going to be like a done point of WordPress. And the second thing is, I think it&#8217;s generally true that you don&#8217;t really start getting full user feedback until after you have launched your major release. I think that we see that a lot in open source software; you can bring in as many people as you think you can in your user tests heading up to it. And in your accessibility tests. And, in general, quality assurance tests. You can bring in a lot of people and still not have gotten the full understanding of the various niche use cases that your users will bring to you. Because at this point, we&#8217;re like 40% of the web. And that means that we&#8217;re serving this majority collection of increasingly minority voices and niche voices in the space. And so, a little bit I feel a sense of urgency; I feel a bit of anxiousness about trying to get this out there for one, to get the tools in the hands of the people who can benefit the most from them, but also so that we can start really getting the full stress test of this software out and get that feedback in so that we can really build something responsive to what our users need our long tail, â€œanyone who ever uses WordPress ever,â€ definition of users. And so, that&#8217;s why I feel a sense of urgency around it. Even though you know, as I said, you and I have been working on this for like five years, and you&#8217;ve been working on it for a decade or something. I actually don&#8217;t know how long it&#8217;s been worked on.</p>\n\n\n\n<p>MatÃ­as [27:35]: Now that makes me feel a bit old.</p>\n\n\n\n<p>Josepha [27:40]: Nobody makes MatÃ­as feel old. He is a lovely, wonderful colleague. Sorry, MatÃ­as, If I made you feel old.</p>\n\n\n\n<p>MatÃ­as [27:46]: No, that&#8217;s totally fine. I also want to add that full site editing is not like a single toggle that&#8217;s going to drop into a major release. So I think that&#8217;s important to consider, I think this entire year is going to see a lot of these tools being, and sometimes the sort of the end-user is not the, again, the site maintainer. Still, you can also be the theme developer; I think there are many tools that would be empowering for theme developers to use. Again, we mentioned there are like five to ten themes, block themes right now. That needs to grow a lot, and that only grows through these sorts of feedback loops. And the theme community pushing things forward and seeing where things can lead to. I&#8217;m very excited about the pattern directory integration because I think that can also combine with blog themes in very powerful ways. Imagine if, I don&#8217;t know many of these patterns that are very common on the web and very needed, that if we can refine them together with a second community and make them available across themes, you can combine a header from one theme with a content of another; all these sorts of mixtures could happen. All of this needs exploration, the creativity of the entire community, and so on. In that sense, getting all these tools, even if it doesn&#8217;t immediately change anything for like the site itself, starts to unlock a lot of things.&nbsp;</p>\n\n\n\n<p>Josepha [29:27]: I&#8217;m going to take a bit of your answer from there and tie it all the way back to your first answer that we had when you joined me today. And say, I think you&#8217;re absolutely right. We have a set of users in our theme authors and our plugin developers as well that we desperately need to get looking at this set of tools. I hope that what we are shipping in the first iteration of this serves as an opportunity for all of those theme authors and agency owners, plugin authors, WordPress site configurers freelancers. Like, I really hope that this puts it into a really accessible, easy-to-access space for them so that they can do those experiments based on what they know their users need the most. They are the group that has the closest access to site maintainers. And what they need compared to, for instance, me or a potential you like we have a lot of information, you and I, we do a lot of tests, we have a strong sense of what is needed at the moment, but we don&#8217;t have as a close connection that our theme and agency and plugin folks all have. And so that&#8217;s another part of why I&#8217;m so excited to get this out in the current iteration of it.</p>\n\n\n\n<p>Josepha [31:04]: That was a lot of questions in a little bit of time. This is going to be officially my longest WordPress briefing. MatÃ­as, I am so glad that you were able to join me today. And I think that everyone&#8217;s going to be really, really excited to hear your answers to these questions.</p>\n\n\n\n<p>MatÃ­as [31:23]: Thank you for having me.</p>\n\n\n\n<p>Josepha [31:25]: All right, my friends. That brings us into our small list of big things. I&#8217;m going to skip our community highlight today just because we had a slightly longer word press briefing in our bonus iteration today. But the small list of big things. The first thing is WordCamp Central America is coming up on April 15; there is a registration link in the show notes that you can access your tickets with. I recommend that you go; we&#8217;ve got a lot of excellent speakers coming up there and a lot of good content and good training and learning for y&#8217;all. The second thing is that Matt Mullenweg and I have listening hours coming up with the community in the first week of April. I&#8217;ll add the link to register for those in the show notes as well; it&#8217;s just a few minutes for you all to stop by, check-in, see what&#8217;s going on, and share some celebrations or concerns with us. And I hope that I see you there.&nbsp;</p>\n\n\n\n<p>So that my friends is your small list of big things. Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Mar 2021 15:05:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Gutenberg Times: New Gallery Block, Convert Blocks, Business News and more  Weekend Edition #164\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17347\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://gutenbergtimes.com/gallery-block-convert-blocks-business-weekend-edition-164/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21372:\"<p>Howdy, </p>\n\n\n\n<p>Despite the new spread of the coronavirus in Europe and the problems around vaccinations, I am  quite hopeful to be able to travel again in the second half of the year and visit the homeland after two years. Patience is a virtue. </p>\n\n\n\n<p>Today, we have a full roster of content for developers, content creators, theme authors, implementers and contributors.  Again I am awed by the astonishing creativity in the WordPress space! </p>\n\n\n\n<p>Remember, you don&#8217;t need to read it all in one sitting. It&#8217;ll keep the whole week!  </p>\n\n\n\n<p><strong>Yours ðŸ’•<br />Birgit </strong></p>\n\n\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-full-site-editing-themes\">Full-Site Editing + Themes</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-refactor-of-the-gallery-block-using-image-blocks\">Refactor of the Gallery Block, using image blocks. </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-block-editor-for-content-creators\">Block editor for content creators</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-should-you-switch-to-the-block-editor\">Should you switch to the block editor? </a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-business-news-around-gutenberg\">Business News around Gutenberg</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#5-extendify\">Extendify</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#6-plugins-now-owned-by-extendify\">Plugins now owned by Extendify: </a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-people-behind-extendify\">People behind Extendify</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#8-go-daddy\">GoDaddy</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#9-developing-for-the-block-editor\">Developing for the block editor</a></li><li><a href=\"https://gutenbergtimes.com/feed/#10-meta-charset-utf-8-word-press-events\">&lt;meta charset=&#8221;utf-8&#8243;>WordPress Events</a></li></ul></div>\n\n\n\n<h2 id=\"0-full-site-editing-themes\">Full-Site Editing + Themes</h2>\n\n\n\n<p>WPTavern has a podcast again! The WordPress Juke Box. For the inaugural episode host Nathan Wrigley interviewed. Among other things, <strong>Josepha Haden Chomphosy</strong> talked about her benchmark for the Go/NoGo decision to merge Full-Site Editing into core for the 5.8 release in July. Find additional thoughts in my post: <a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\"><strong>Full-site Editing MVP: Can I Build a Landing Page?</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> posted the fourth call for testing: <strong><a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\">Building a restaurant themed header</a></strong>, with instructions to use columns, navigation block and other features for the header template part. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>There is a lot of movement on the Gutenberg Repo and the Themes Team keeps a list of relevant issues and discussions for theme developers. <a href=\"https://twitter.com/one_maggie\"><strong>Maggie Cabrera</strong></a> published the round-up post <strong><a href=\"https://make.wordpress.org/themes/2021/03/26/gutenberg-themes-week-of-march-25-2021/\">Gutenberg + Themes: Week of March 25, 2021</a></strong>. It&#8217;s an excellent reading list if you need to dive deeper in the upcoming changes for your theme or your customer. One of the issues caught my eye: the discussion and work around block alignment settings for themes. The current way predates the revamp of the Inner Blocks. There is some work to be done, streamlining the styling for themes. <a href=\"https://github.com/WordPress/gutenberg/issues/29506\">Join the discussion on GitHub</a>. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<h3 id=\"1-refactor-of-the-gallery-block-using-image-blocks\">Refactor of the Gallery Block, using image blocks. </h3>\n\n\n\n<p>If you love to take a sneak peek at the new version of the Gallery block, heed the call for testing by <a href=\"https://twitter.com/glendaviesnz\"><strong>Glen</strong></a><strong><a href=\"https://twitter.com/glendaviesnz\"> </a></strong><a href=\"https://twitter.com/glendaviesnz\"><strong>Davies</strong>:</a> <a href=\"https://make.wordpress.org/core/2021/03/23/gallery-block-update-call-for-testing/\"><strong>Gallery Block Update â€“ Call for Testing</strong></a>. The refactored version is now using single image blocks inside the Gallery block. You can us all the great features: individual links per image, block styles, choices for size and editing capabilities. If you also use a plugin with your site, like CoBlocks, you can still apply the great filters and animations to your gallery block. In his post, Davies walks you through the few features and asked to test all the many facets of the new Gallery block. </p>\n\n\n\n<p>On the WPTavern, <strong>Justin Tadlock</strong> explains how this new change can make a lot of difference on how gallery layouts will be built. Among other ideas, he pictures that among images, a Pull Quote block could be added. <a href=\"https://wptavern.com/refactoring-gutenbergs-gallery-block-to-support-nested-images\">Refactoring Gutenbergâ€™s Gallery Block To Support Nested Images</a>.</p>\n\n\n\n<p>I posted <a href=\"https://make.wordpress.org/core/2021/03/23/gallery-block-update-call-for-testing/#comment-40962\">my first impression as a comment</a> and created <a href=\"https://github.com/WordPress/gutenberg/issues/30250\">a bug report on GitHub</a> when my images lost all their styling when I added the gallery block to a group. I suggested making it possible to apply block styles to more than one image at a time, and that the gallery block / image block copies the respective Alt texts from the media library. Both suggestions made it into the <a href=\"https://github.com/WordPress/gutenberg/projects/56#card-57737540\">project board.</a></p>\n\n\n\n<h2 id=\"2-block-editor-for-content-creators\">Block editor for content creators</h2>\n\n\n\n<p><a href=\"https://twitter.com/liamdempsey\"><strong>Liam Dempsey</strong></a> asked his Twitter followers for recommendation of Block plugins. He collected all the suggestions in this blog post: <strong><a href=\"https://liamdempsey.com/community-recommendations-for-gutenberg-blocks-in-wordpress/\">Community Recommendations for Gutenberg Blocks in WordPress</a>.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Amie Suzan</strong> at at <a href=\"https://twitter.com/virfice\"><strong>Virfice</strong></a> reviewed the <strong>Blocksy Theme and gives 18 <a href=\"https://www.virfice.com/blocksy-wordpress-theme-review/\">Unavoidable Reasons to Build Sites With It</a></strong>. The theme received some attention after Chris Lema revamped his site using the block editor it <a href=\"https://chrislema.com/this-site-now-runs-on-the-blocksy-theme/\">now runs on the Blocksy theme</a>. Justin Tadlock at the WPTavern also found the <a href=\"https://wptavern.com/blocksy-wordpress-theme-provides-a-solid-block-editor-experience\">Blocksy theme to provide a solid block editor experience</a></p>\n\n\n\n<p>ðŸŒ  <a href=\"https://wordpress.org/themes/blocksy/\">WPRepo</a> | <a href=\"https://creativethemes.com/blocksy/\">Website</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/andersnoren\">Anders&nbsp;NorÃ©n</a></strong> published a new free theme in the WordPress Repository, named <strong>Eskell</strong>, inspired by the Swedish graphic designer&nbsp;Olle Eksell. In his <strong>introduction to the theme</strong>, Andres wrote: &#8220;(&#8230;) <em>the star of the show in Eksell is the archive page, which features a masonry grid of posts and a category filter that updates the grid with posts from the selected category without a hard reload.&#8221;</em> In includes full color settings and dark mode for devices that support it. He continues: <em>&#8220;The Blank Canvas Template hides everything on the page except the blocks you add to the Block Editor content. That gives users the freedom to create entirely custom pages, with whatever blocks they want. It feels like a little preview of what weâ€™ll be able to do once Full Site Editing is merged into WordPress Core.&#8221;</em></p>\n\n\n\n<p> <strong>Justin Tadlock </strong>published a review <a href=\"https://wptavern.com/compatibility-is-not-enough-the-eksell-wordpress-theme-creates-art-with-blocks\">Eksell theme creates art with blocks</a> and <a href=\"https://wptavern.com/eksell-portfolio-theme-now-available-in-wordpress-themes-directory\">a follow-up article</a> on the WPTavern. </p>\n\n\n\n<p>ðŸŒ <a href=\"https://wordpress.org/themes/eksell/\">WPRepo</a> | <a href=\"https://www.andersnoren.se/teman/eksell-wordpress-theme/\">Website</a> | <a href=\"https://andersnoren.se/themes/eksell/\">Demo</a></p>\n\n\n\n<h2 id=\"3-should-you-switch-to-the-block-editor\">Should you switch to the block editor? </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/bfintal\">Benjamin Intal</a></strong> from Stackable posted <strong><a href=\"https://wpstackable.com/blog/why-you-should-switch-to-the-gutenberg-wordpress-editor/\">Why You Should Switch to the Gutenberg WordPress Editor</a></strong>. He wrote: <em>&#8220;In this article, we enumerate some reasons why the Gutenberg WordPress editor might be your new primary choice for page building. Read on, and we might just convince you to give Gutenberg another shot.&#8221;</em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>WordPressVIP post takes us <strong><a href=\"https://wpvip.com/case-studies/behind-the-scenes-of-news-uks-rampant-speed-to-value/\">Behind the scenes of News UKâ€™s rampant speed to value</a></strong>. News UK is the powerhouse behind some of the UKâ€™s most famous news, media, and lifestyle brands. Its reach ranges from the highly respected the London Times to the hugely popular Sun. In the more detailed case study, you&#8217;ll learn from the editor&#8217;s perspective how the usage of the block editor has streamlined content production, increased productivity and fosters a culture of innovation between teams. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On the WPBuild podcast <strong>A-Z of WordPress</strong> this week, <strong>Nathan Wrigley </strong>and <strong>David Walmsley</strong> tackled the letter  <a href=\"https://wpbuilds.com/2021/03/25/222-g-is-for-gutenberg/\"><strong>G &#8211; Gutenberg</strong></a>. If the early controversy in 2018 had you shy away from trying it out,  but now you heard so much positive about it, this episode will give you an update on how people are using the block-editor now and what&#8217;s in store for 2021. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Let <a href=\"https://twitter.com/allie_nimmons\"><strong>Allie Nimmons</strong></a> of WPBuffs tell you <strong><a href=\"https://wpbuffs.com/why-and-how-to-use-the-wordpress-block-editor/\">Why and How to use the WordPress block editor.</a> </strong> It&#8217;s an excellent introduction and tutorial with dozens of links to learn more. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>For those of us who are worried about migrating a ton of content from classic editor and short codes to block editor, <a href=\"https://twitter.com/_dsawardekar\"><strong>Darshan Sawardekar</strong></a>, lead web engineer at the web agency 10up, has good news. This week, he announced <a href=\"https://10up.com/blog/2021/convert-to-blocks/\"><strong>the release of the Convert to Blocks plugin.</strong></a> Convert to Blocks converts your content to blocks on the fly and those changes will be saved when you update the post. It&#8217;s not a Bulk Converter, it only converts content once it is opened in the block editor. </p>\n\n\n\n<p>ðŸŒ <a href=\"https://wordpress.org/plugins/convert-to-blocks/\">WPRepo</a> | <a href=\"https://github.com/10up/convert-to-blocks\">GitHub</a></p>\n\n\n\n<p>A couple of months ago, the WPTavern published the article <strong><a href=\"https://wptavern.com/ask-the-bartender-how-to-bulk-convert-classic-wordpress-posts-to-blocks\">How To Bulk Convert Classic WordPress Posts To Blocks?</a></strong>. Justin Tadlock listed two more plugins for the purpose: <a href=\"https://bulkconverttoblocks.com/\">Bulk Convert to Blocks</a> (still in development) and <a href=\"https://wordpress.org/plugins/bulk-block-converter/\">Bulk Block Converter</a>, last updated a year ago. We used it at a recent project and it worked very well. </p>\n\n\n\n<h2 id=\"4-business-news-around-gutenberg\">Business News around Gutenberg</h2>\n\n\n\n<h3 id=\"5-extendify\">Extendify</h3>\n\n\n\n<p><a href=\"https://wptavern.com/extendify-acquires-editor-plus-introduces-commercial-templates-in-its-plan-to-improve-block-editing\">WPTavern has the scoop:  <em>Extendify</em> recently aquired plugin EditorPlus</a> and joined forces with Munir Kamal and his team around Gutenberg Hub. Back in November 2020, they also acquired Redux Framework, and hired its creator, <a href=\"https://twitter.com/dovyp\">DÅvy Paukstys</a>, part-time. </p>\n\n\n\n<h4 id=\"6-plugins-now-owned-by-extendify\">Plugins now owned by Extendify: </h4>\n\n\n\n<ul><li><a href=\"https://wordpress.org/plugins/editorplus/\">Editor Plus,</a></li><li><a href=\"https://wordpress.org/plugins/acf-blocks/\">ACF Blocks</a>,</li><li><a href=\"https://wordpress.org/plugins/forms-gutenberg/\">Gutenberg Forms</a>,</li><li><a href=\"https://wordpress.org/plugins/redux-framework/\">Redux Framework</a>,</li><li><a href=\"https://wordpress.org/plugins/ml-slider/\">MetaSlider</a>,&nbsp;</li><li><a href=\"https://wordpress.org/plugins/block-slider/\">Block Slider</a>. </li></ul>\n\n\n\n<h4 id=\"7-people-behind-extendify\">People behind Extendify</h4>\n\n\n\n<p><a href=\"https://twitter.com/chrislubkert\"><strong>Chris Lukbert</strong></a>&nbsp;and&nbsp;<a href=\"https://twitter.com/arturgrabo\"><strong>Artur Grabowski</strong></a>, co-founders of <a href=\"https://extendify.com/\">Extendify</a>, are former Automattic employees. So is <strong><a href=\"https://twitter.com/karmatosed\">Tammie Lister,</a></strong> Extendify&#8217;s Head of Design. Lister has been a major WordPress contributor on the Gutenberg block-editor as co-lead since  the beginning in 2017. She participated in one of our first Live Q &amp; As in  <a href=\"https://gutenbergtimes.com/episode-6-creating-gutenberg-live-q-a-w-leads-tammie-lister-joen-asmussen-and-matias-ventura/\">November 2018 </a>with her Gutenberg co-leads  Joen Asmussen and Matias Ventura. You can also read more about Lister on <a href=\"https://heropress.com/essays/discovering-your-place/\">HeroPress: Discovering Your Place</a>. </p>\n\n\n\n<h3 id=\"8-go-daddy\">GoDaddy</h3>\n\n\n\n<p>GoDaddy is sponsoring <a href=\"https://twitter.com/Mamaduka\"><strong>George Mamadashvili</strong></a> to contribute on the WordPress Gutenberg project full-time. Mamadashvili was one of the developers behind the cool blocks published under the brand of SortaBrilliant in 2018 and 2019. Recently, he released <a href=\"https://wordpress.org/plugins/toggles/\">Toggles</a>, an accordion block for FAQs, and other use cases. You can also use it to hide spoilers in Movie or Book reviews. </p>\n\n\n\n<h2 id=\"9-developing-for-the-block-editor\">Developing for the block editor</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/mattwatsoncodes\">Matt Watson</a></strong> published his 5th tutorial <a href=\"https://wholesomecode.ltd/guides/create-customizer-panel-wordpress-gutenberg-components/\">Create a Customizer Panel using Gutenberg Components</a> for developers. You should read his previous posts before tackling this one. </p>\n\n\n\n<ul><li><a href=\"https://wholesomecode.ltd/guides/creating-plugin-wordpress-gutenberg/\">Creating a Plugin for the Block Editor</a></li><li><a href=\"https://wholesomecode.ltd/guides/options-settings-data-wordpress-gutenberg/\">Using Options to Store Data in the Block Editor</a>&nbsp;</li><li><a href=\"https://wholesomecode.ltd/guides/entry-points-wordpress-create-block-script/\">Add Entry Points to the Create-Block Script</a></li><li><a href=\"https://wholesomecode.ltd/guides/create-settings-page-wordpress-gutenberg-components/\">Create a Settings Page using Gutenberg Components</a></li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On <strong>WordPressTV</strong> you&#8217;ll find <strong>Chris van Patten</strong>&#8216;s <a href=\"https://wordpress.tv/2020/04/02/chris-van-patten-the-ultimate-beginners-guide-to-the-gutenberg-data-api/\">The Ultimate Beginnerâ€™s Guide to the Gutenberg Data&nbsp;API</a>. The Data API is how you get data in and out of Gutenberg, track changes across blocks, and execute events around the editor.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The <strong>WordCamp India</strong> presentation by <strong><a href=\"https://twitter.com/gziolo\">Grzegorz &#8220;Greg&#8221; ZiÃ³Å‚kowski</a> <a href=\"https://www.youtube.com/watch?v=YQwHsk27HMQ\">Block</a></strong><a href=\"https://www.youtube.com/watch?v=YQwHsk27HMQ\"><strong> Development with scaffolding</strong></a> helps you get started building a single block plugin with the <a href=\"https://www.npmjs.com/package/@wordpress/create-block\">create-block-script</a>. </p>\n\n\n\n<p></p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2 id=\"10-meta-charset-utf-8-word-press-events\">WordPress Events</h2>\n\n\n\n<p><strong>April 6, 2021 9 am EDT / 14:00 UTC</strong><br /><a href=\"https://www.youtube.com/watch?v=jAIlY3lTAos\"><strong>WPCafe: Building the Twenty Twenty-One</strong> </a>with Caroline Nymark and Mel Dwan-Choyce, live on YouTube</p>\n\n\n\n<p><strong>April 6, 2021 9 am EDT / 14:00 UTC</strong><br /><a href=\"https://www.youtube.com/watch?v=jAIlY3lTAos\"><strong>WPCafe: Building the Twenty Twenty-One</strong> </a>with Caroline Nymark and Mel Dwan-Choyce, live on YouTube</p>\n\n\n\n<p><strong>April 15, 2021 6:30 pm EDT / 23:30 UTC</strong><br /><strong><a href=\"https://www.meetup.com/SF-WordPress-Users/events/277019024/\">South Florida Mega Meetup</a></strong> &#8220;New Site Builder Edition&#8221;</p>\n\n\n\n<p><strong>April 15 &#8211; 17, 2021</strong><br /><a href=\"https://centroamerica.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp CentroamÃ©rica 2021</a></p>\n\n\n\n<p><strong>April 27 and 28th</strong><br /><a href=\"https://www.godaddy.com/pro/expand\"><strong>Expand 2021</strong></a> &#8211;&nbsp;a virtual event hosted by GoDaddy that brings the web design and developer community together to share ideas and experiences, make connections and support each other.</p>\n\n\n\n<p><strong>May 24 &#8211; 27. 2021</strong><br /><strong><a href=\"https://wordsesh.com/\" target=\"_blank\" rel=\"noreferrer noopener\">WordSesh 2021</a> </strong><br /><a href=\"https://wordsesh.com/speak/\">Speaker submissions are </a>due on Monday! (March 29th)! </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" id=\"block-828c0dab-dbd1-4313-9d2c-1d1d3aa9bc87\" />\n\n\n\n<p id=\"block-7cb87457-965b-4235-ab43-168b3a78f4ee\">On the<a href=\"https://wpcalendar.io/online/\">&nbsp;<strong>Calendar for WordPress Online Events</strong></a> you&#8217;ll find a list of the upcoming WordPress Meetups, around the world, including WooCommerce, Elementor, Divi Builder and Beaver Builder meetups.</p>\n\n\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 27 Mar 2021 20:30:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: WordPress to Drop Support for IE11 in Upcoming 5.8 or 5.9 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/wordpress-to-drop-support-for-ie11-in-upcoming-5-8-or-5-9-release?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-to-drop-support-for-ie11-in-upcoming-5-8-or-5-9-release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3258:\"<p>In early March, WordPress contributors began discussing the possibility of <a href=\"https://wptavern.com/wordpress-considers-dropping-support-for-ie-11-after-usage-falls-below-1\">dropping support for IE11</a> in the near future after usage fell below ~1%. This week, the discussion&rsquo;s facilitator, H&eacute;ctor Prieto, <a href=\"https://make.wordpress.org/core/2021/03/25/discussion-summary-dropping-support-for-ie11/\">confirmed</a> the majority of participants are in agreement to move forward and set a timeline for discontinuing support. Contributors are now considering either the 5.8. or 5.9 release.</p>\n\n\n\n<p>&ldquo;The argument for dropping in 5.8 is to realize the change and improvement quicker, while others are inclined to wait until 5.9 to provide a longer window between the official announcement and the effective date,&rdquo; Prieto said. The final call is up the the 5.8 release team, which has not yet been identified.</p>\n\n\n\n<p>The release scope and schedule hinges on whether or not the <a href=\"https://make.wordpress.org/updates/2021/03/12/full-site-editing-pre-merge-overview/\">April go/no-go conditions</a> are met for including full-site editing in the merge for 5.8 (July 2021) or 5.9 (December 2021). Teams for 5.8 will be finalized in April/May, and they will decide how to proceed for discontinuing IE11.</p>\n\n\n\n<p>Jb Audras suggested that if 5.8 release leads elect to drop support for IE11,  he could work with other contributors to update the BrowseHappy notice in one of the upcoming minor versions.</p>\n\n\n\n<p>&ldquo;Even if the BrowseHappy notice can be updated independently from&nbsp;Core&nbsp;releases, I think it&rsquo;s better to update alongside a release, to give better visibility to this change,&rdquo; Audras said.</p>\n\n\n\n<p>Microsoft 365 apps and services will no longer support IE11 <a href=\"https://techcommunity.microsoft.com/t5/microsoft-365-blog/microsoft-365-apps-say-farewell-to-internet-explorer-11-and/ba-p/1591666\">beginning August 17, 2021</a>. Drupal recently went through a similar process of deciding to drop IE11 support with the upcoming Drupal 10 release, anticipated in June 2022. Those who have to use IE11 retain the option to remain on Drupal 9&rsquo;s LTS release until the end of 2023. Participants in the <a href=\"https://www.drupal.org/project/drupal/issues/3155358\">discussion</a> cited many of the same considerations now facing WordPress contributors.</p>\n\n\n\n<p>Matt Mullenweg <a href=\"https://make.wordpress.org/core/2021/03/04/discussion-dropping-support-for-ie11/#comment-40870\">commented</a> on the preliminary discussion to suggest giving IE11 users a path forward if they land on wp-admin using an unsupported browser: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Supportive of dropping support, and if someone visits on an explicitly dropped browser like IE11 showing them a friendly message saying why wp-admin&nbsp;is not accessible and next steps they can take.</p></blockquote>\n\n\n\n<p>The technical implementation is being discussed in the <a href=\"https://core.trac.wordpress.org/ticket/48743\">ticket</a> Riad Benguella created to discourage IE11 usage and WordPress&rsquo; projects and teams will begin examining the practical implications of dropping support.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Mar 2021 23:32:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: 10up Creates Classic Post Migration Route With Its Convert to Blocks WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"https://wptavern.com/10up-creates-classic-post-migration-route-with-its-convert-to-blocks-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=10up-creates-classic-post-migration-route-with-its-convert-to-blocks-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3803:\"<p class=\"has-drop-cap\">Yesterday, 10up officially announced <a href=\"https://10up.com/blog/2021/convert-to-blocks/\">Convert to Blocks</a>, a WordPress plugin for transforming classic posts into blocks. The goal is to provide users with a safe migration route for old content while removing the burdens of other options in the space.</p>\n\n\n\n<p>I briefly mentioned this plugin in an <a href=\"https://wptavern.com/ask-the-bartender-how-to-bulk-convert-classic-wordpress-posts-to-blocks\">article covering bulk conversion</a> in the Ask the Bartender series. However, I could not recommend it to most users because it was <a href=\"https://github.com/10up/convert-to-blocks\">hosted on GitHub</a>, a site that is geared toward developers. With it now officially in the WordPress plugin directory, it is a much more user-friendly option.</p>\n\n\n\n<p>Most conversion options either convert posts in bulk or through a manual process, such as the user clicking a button. Bulk converters can be problematic at a large scale simply because there is no reliable way for users to check the success of each post&rsquo;s conversion to blocks. Of course, users could check these posts individually, but that is impractical when dealing with more than a few dozen posts.</p>\n\n\n\n<p>Bulk converters are also done so in conjunction with a database backup. It is sensible to do this when altering large amounts of content at once just to be on the safe side.</p>\n\n\n\n<p>&ldquo;We saw a space for a third way &mdash; a solution that eliminates editors stumbling upon Classic blocks and needing to know how to convert them, while also holding back on content transformation until content needs to be modified &mdash; at which point it is also, typically, checked again on the front end of the site,&rdquo; <a href=\"https://10up.com/blog/2021/convert-to-blocks/\">wrote Darshan Sawardekar</a>, a 10up lead web engineer, in the announcement.</p>\n\n\n\n<p>&ldquo;That&rsquo;s where the idea for Convert to Blocks came into play. It began as a creative engineering solution to mitigate risk and improve content mapping. Its success inspired the development and public release of the plugin to help others facilitate safe content migrations to the WordPress block editor.&rdquo;</p>\n\n\n\n<p>10up&rsquo;s solution is a bit of a middle ground. It only converts a post when a user enters the editing screen for it. From that point, the user can check whether the conversion looks correct, fix any problems if they arise, and save the post.</p>\n\n\n\n<img />Converted gallery post.\n\n\n\n<p>Essentially, it works the same as the default convert-to-blocks options in WordPress without the manual step.</p>\n\n\n\n<p>For many users, this is the ideal solution. Because classic content works the same as it always has on the front end, it is unnecessary to convert it unless the need to edit the post also arises.</p>\n\n\n\n<p>Convert to Blocks also adds a new column to the manage posts screen named &ldquo;Editor.&rdquo; It lists whether the post content was created with either the block or classic editor, providing users with an at-a-glance look without checking posts individually.</p>\n\n\n\n<img />Additional &ldquo;Editor&rdquo; column on the manage posts screen.\n\n\n\n<p>Like other plugins, Convert to Blocks uses the core transformation feature, which is an imperfect solution. Depending on the content of the post, the conversion will sometimes throw an error. That is why bulk solutions are often problematic. With this plugin, users will know immediately upon editing a post if there is an issue.</p>\n\n\n\n<p>Given the plugins available today for converting classic posts to blocks, this would be my top choice. It focuses on transforming to blocks where it matters &mdash; during the editing process &mdash; and removes some manual work for the user.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Mar 2021 16:01:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: Free Software Community Condemns Richard Stallmanâ€™s Reinstatement to FSF Board of Directors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114253\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:245:\"https://wptavern.com/free-software-community-condemns-richard-stallmans-reinstatement-to-fsf-board-of-directors?utm_source=rss&utm_medium=rss&utm_campaign=free-software-community-condemns-richard-stallmans-reinstatement-to-fsf-board-of-directors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7505:\"<p>GPL author Richard Stallman <a href=\"https://streamable.com/nzthxn\">announced</a> this week that he has rejoined the board of the Free Software Foundation (FSF), which he established in 1985, and is not planning to resign a second time:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;I have an announcement to make. I&rsquo;m now on the Free Software Foundation Board of Directors once again. We were working on a video to announce this with, but that turned out to be difficult, we didn&rsquo;t have experience doing that sort of thing so it didn&rsquo;t get finished but here is the announcement. Some of you will be happy at this, and some might be disappointed, but who knows? In any case, that&rsquo;s how it is, and I&rsquo;m not planning to resign a second time.&rdquo;</p></blockquote>\n\n\n\n<p>In 2019, Stallman <a href=\"https://wptavern.com/gpl-author-richard-stallman-resigns-from-free-software-foundation\">resigned</a> as director of the board and president of the FSF, and was subsequently <a href=\"https://wptavern.com/gnu-project-maintainers-move-to-oust-richard-stallman-from-leadership\">ousted by GNU project maintainers</a> from his position as head of the project. Calls for his removal were precipitated by Stallman&rsquo;s controversial remarks on rape, assault, and child sex trafficking, along with two decades of <a href=\"https://geekfeminism.wikia.org/wiki/Richard_Stallman\">behaviors and statements</a> that many have found to be disturbing and offensive. His return came as a shock to the free software community, though some suspect he never really left.</p>\n\n\n\n<p>&ldquo;I did not support the decision to reinstate RMS,&rdquo; former FSF board member Kat Walsh <a href=\"https://twitter.com/mindspillage/status/1374448587388588037\">said</a> after resigning from the board yesterday. &ldquo;I made my arguments and placed my opposing vote; while I was glad I was able to do that I regret not being able to turn the decision the other way.</p>\n\n\n\n<p>&ldquo;I wish the organization well; my departure is not a rejection of the ideas of free software, only a belief that my role in the organization was no longer the best way to put them forward into the world.&rdquo;</p>\n\n\n\n<p>Stallman&rsquo;s reinstatement came with a staggering lack of transparency from FSF&rsquo;s board of directors and has triggered a cascade of condemnation from individuals and organizations across the tech industry. Among the many critical responsibilities it maintains, the FSF currently&nbsp;<a rel=\"noreferrer noopener\" href=\"https://en.wikipedia.org/wiki/Free_Software_Foundation#History\" target=\"_blank\">holds the copyrights to enforce the GPL</a>.</p>\n\n\n\n<p>The Open Source Initiative published a <a href=\"https://opensource.org/OSI_Response\">statement</a> this week, calling for Stallman&rsquo;s removal from FSF&rsquo;s leadership:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The Open Source Initiative calls upon the Free Software Foundation to hold Stallman responsible for past behavior, remove him from the organization&rsquo;s leadership and work to address the harm he caused to all those he has excluded: those he considers less worthy, and those he has hurt with his words and actions. We will not participate in any events that include Richard M. Stallman and we cannot collaborate with the Free Software Foundation until Stallman is removed from the organization&rsquo;s leadership. &nbsp;</p></blockquote>\n\n\n\n<p>Red Hat <a href=\"https://www.redhat.com/en/blog/red-hat-statement-about-richard-stallmans-return-free-software-foundation-board?sc_cid=701f2000000tyBjAAI\">announced</a> that it is suspending all funding of the FSF and any FSF-hosted events. Mozilla <a href=\"https://twitter.com/mozilla/status/1374513444838199304\">joined</a> the Open Source Diversity Community, Outreachy, and the Software Conservancy project in supporting an <a href=\"https://rms-open-letter.github.io/\">open letter</a> that calls for the removal of the entire Board of the Free Software Foundation, along with the removal of Stallman from all leadership positions, including the GNU Project. The letter states that the undersigned do not acknowledge Stallman&rsquo;s leadership of the FSF and do not condone his actions and opinions:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>There has been enough tolerance of RMS&rsquo;s repugnant ideas and behavior. We cannot continue to let one person ruin the meaning of our work. Our communities have no space for people like Richard M. Stallman, and we will not continue suffering his behavior, giving him a leadership role, or otherwise holding him and his hurtful and dangerous ideology as acceptable.</p></blockquote>\n\n\n\n<p> The petition has been signed by more than 2400 free software advocates. Notable signatories include Molly de Blanc (Debian Project, GNOME Foundation), Elana Hashman (Debian Technical Committee Member, Open Source Initiative Director, Kubernetes SIG Instrumentation Chair), Neil McGovern (GNOME Foundation Executive Director, Former Debian Project Leader), and Luis Villa (Former Director of the Open Source Initiative and the GNOME Foundation; contributor to the GPL v3 drafting process).</p>\n\n\n\n<p>The Electronic Frontier Foundation (EFF) published a <a href=\"https://www.eff.org/deeplinks/2021/03/statement-re-election-richard-stallman-fsf-board\">statement</a> urging the voting members&nbsp;of the FSF board to call a special meeting to reconsider Stallman&rsquo;s reinstatement, in support of the &ldquo;long-term viability of the free software movement:&rdquo;</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Free software is a vital component of an open and just technological society: its key institutions and individuals cannot place misguided feelings of loyalty above their commitment to that cause. The movement for digital freedom is larger than any one individual contributor, regardless of their role. Indeed, we hope that this moment can be an opportunity to bring in new leaders and new ideas to the free software movement.</p></blockquote>\n\n\n\n<p>Stallman still has many staunch supporters, as more than 2,000 people have signed an <a href=\"https://rms-support-letter.github.io/\">open letter</a> in support of him and his leadership. They contend that removing RMS &ldquo;will hurt FSF&rsquo;s image and will deal a significant blow to the momentum of the free software movement.&rdquo;</p>\n\n\n\n<p>Stallman is still listed among the <a href=\"https://www.fsf.org/about/staff-and-board\">FSF&rsquo;s board of directors</a>, but the board appears to be reorganizing. A preliminary <a href=\"https://www.fsf.org/news/preliminary-board-statement-on-fsf-governance\">statement</a> on upcoming changes to the board&rsquo;s governance said they are moving to adopt a transparent, formal process for identifying candidates and appointing new board members. The board intends to require existing board members to submit to this process as well &ldquo;to decide which of them remain on the board,&rdquo; with a deadline of 30 days to complete the changes.</p>\n\n\n\n<p>By allowing Stallman to resume his position, the FSF squandered the opportunity it had to redefine itself following his resignation in 2019. The organization missed the chance to carve out a new future that would be free from his damaging influence. If the board doesn&rsquo;t act in the best interests of the greater community, by remedying its lack of transparency and accountability, it may permanently resign the organization to irrelevance.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Mar 2021 05:46:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Gutenberg Times: Full-site Editing MVP: Can I Build a Landing Page?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17337\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6562:\"<p><strong>Josepha Haden Chomphosy</strong> was the featured guest on the <a href=\"https://wptavern.com/podcast/1-josepha-haden-chomphosy-on-the-past-present-and-future-of-wordpress\">inaugural episode of the WPTavern Jukebox podcast</a>, hosted by <strong>Nathan Wrigley</strong>. In their conversation, they covered a lot of ground. The show is definitely worth your 40 minutes of listen. </p>\n\n\n\n<p>Around minute 23 of the audio they talked a bit more about Full-Site Editing and its merge into the core. Chomphosy said she knows &#8216;this summer&#8217; is an ambitions goal, and she also assured the listeners that the team won&#8217;t release something that&#8217;s not functional and usable. </p>\n\n\n\n<h2>Go/NoGo Mid to End of April</h2>\n\n\n\n<p>The Core release and Gutenberg teams will make the Go/NoGo decision to merge Full-Site Editing for the next WordPress release in July (5.8)  on April 17 or on April 23.  In other words, the state of Full Site editing in Gutenberg plugin version 10.4 and 10.5.  If it doesn&#8217;t get merged into 5.8, Full-Site Editing will be merged in WordPress 5.9 to be released in December 2021</p>\n\n\n\n<p>Chomphosy also shared her &#8211; unofficial &#8211; benchmark of what should be possible with the prototype of the Site Editor by April: Can you &#8211; without writing code &#8211; create a landing page with Full-site editing tools. She calls it &#8220;the smallest viable sentence. The I-AM of websites.&#8221;</p>\n\n\n\n<h2>A Landing page is the smallest viable unit</h2>\n\n\n\n<p>This single web page consists of a header, a footer, a hero image with a button, some text, a form or a call to action.  This narrows the focus of the MVP, the prototype, considerably. It also increases the probability that the first low-key, opt-in version of Full-Site editing might actually make it into the next WordPress version. A narrow scope will also help content creators, teachers and developers get started working on their discovery of the new WordPress feature. As soon as it is merged into WordPress core, plugin developer and theme builders can test their ideas against it and get familiar with the underlying concepts. </p>\n\n\n\n<p>It&#8217;s a good way to ease-in content creators, too. When you are not dealing with the header and footer of a big site, but just for a single page, itâ€™s not so critical if you get lost on the way from content editing to template part (header, footer) editing and back again. It&#8217;s all on the same page, literally. </p>\n\n\n\n<p>This transition was one of the major causes of confusion during the <a href=\"https://make.wordpress.org/core/2021/03/16/high-level-feedback-from-the-fse-program-march/\">first few testing calls for the FSE outreach program</a> and the developers are working on making it less confusing. With this unofficial benchmark of a single landing page creation, the team will have additional time and input on how to better handle that switch between editing a template that is used for many pages and the content of a single post or page content.</p>\n\n\n\n<p>A very tangible goal, &#8220;Can I build a landing page with the tools available?&#8221; makes it straightforward for WordPress contributors who work on the parts that make that are not code, like documentation, marketing, training and testing.</p>\n\n\n\n<h2>Call For Testing: Create a Header</h2>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\">4th call for testing</a> via the WordPress FSE-Outreach program asks you to<a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\"> create a header for a Restaurant</a>. <strong>Anne McCarthy</strong> has detailed instructions for you as well as video if you are in a testing mood. Your input is definitely wanted!</p>\n\n\n\n<p>Chomphosy also added that Matias Ventura, the technical lead for Gutenberg,  might have different benchmarks for the MVP. I am curious, and <a href=\"https://twitter.com/JosephaHaden/status/1371956586516606977\">answer Josepha&#8217;s call for questions</a> on Full-Site Editing for her next episode of the WPBriefing podcast when Matias will be her guest. </p>\n\n\n\n<p>Full-Side Editing project encompasses a lot more than the Site Editor with template parts. There are Global Styles, Widgets in Customizer, a new Navigation and Widget screen, block-based themes with a theme.json file and query block. Some of it will work its way into the MVP. We will see how far the team progresses on their journey, that will only begin once Full-Site editing comes to Millions of WordPress users. No Fear, though. It will all be opt-in. Nothing will break. </p>\n\n\n\n<p class=\"has-white-color has-secondary-background-color has-text-color has-background has-large-font-size\">&#8220;Given enough eyeballs, all bugs are shallow&#8221; &#8212; Eric Raymond&#8217;s Linus&#8217; Law</p>\n\n\n\n<div class=\"wp-block-group has-secondary-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\">Leave Your Email for our Weekend Edition</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too. We only share your email address <br />with our Email provider Mailchimp</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n</div></div>\n\n\n\n<p></p>\n\n\n\n<div class=\"wp-block-cover alignfull has-background-dim\"><img /><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-large-font-size\">Take a deep dive into </p>\n\n\n\n<p class=\"has-text-align-center has-white-color has-text-color has-huge-font-size\"><a href=\"https://gutenbergtimes.com/full-site-editing/\">Full-Edit Editing </a></p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-background\">Ultimate Resources List</a></div>\n</div>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Mar 2021 04:34:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"WPTavern: Extendify Acquires Editor Plus, Introduces Commercial Templates in Its Plan To Improve Block Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114307\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:263:\"https://wptavern.com/extendify-acquires-editor-plus-introduces-commercial-templates-in-its-plan-to-improve-block-editing?utm_source=rss&utm_medium=rss&utm_campaign=extendify-acquires-editor-plus-introduces-commercial-templates-in-its-plan-to-improve-block-editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6447:\"<p class=\"has-drop-cap\">With the release of <a href=\"https://wordpress.org/plugins/editorplus/\">Editor Plus 2.7</a> in recent weeks, <a href=\"https://extendify.com/\">Extendify</a> stamped its brand name on the plugin. The company officially acquired the plugin months ago. However, this was its first public outing as the new owner of a project that has seen a steady uptick in its popularity, recently surpassing 5,000 active installations.</p>\n\n\n\n<p>Extendify was busy in late 2020. The company quietly purchased the <a href=\"https://wordpress.org/plugins/redux-framework/\">Redux Framework</a> in November. D&#333;vy Paukstys, the creator, remained on board part-time with the financial backing needed to continue the project. In December, Extendify joined forces with Munir Kamal and his team behind Editor Plus and Gutenberg Hub.</p>\n\n\n\n<p>&ldquo;Our mission is to turn WordPress into a superpower for entrepreneurs around the world,&rdquo; said Extendify co-founder Chris Lubkert. &ldquo;As you know, despite its unrivaled popularity, many users still struggle to use WordPress to create the site they need. We see tremendous potential to empower WordPress users to create a Gutenberg-native website in a few clicks. By bringing together Redux, Editor Plus, and Gutenberg Hub, we have the foundational pieces to create a world-class onboarding and site-building experience.&rdquo;</p>\n\n\n\n<p>There are no plans to build a &ldquo;super&rdquo; plugin that combines Editor Plus and Redux. Gutenberg Hub will continue providing resources to help users leverage the block editor.</p>\n\n\n\n<p>&ldquo;Currently, the Redux template library and the library in Editor Plus are separate,&rdquo; said Lubkert. &ldquo;But we are heavily investing in making the Extendify library the best solution for users and eventually plan to introduce this to the Redux user base as well.&rdquo;</p>\n\n\n\n<p>Extendify&rsquo;s first public act as Editor Plus&rsquo;s owner was not to introduce new features in its recent major-release, version 2.7. Instead, users were presented with a limitation on features they previously had access to for free.</p>\n\n\n\n<p>Version 2.7 limits the template and pattern inserter, <a href=\"https://wptavern.com/editor-plus-2-6-adds-block-pattern-and-template-library\">introduced in 2.6</a>, to three imports. Beyond that, users must upgrade to one of the Extendify Pro paid tiers. The single-site option is $99 per year with an introductory rate of $49. The unlimited sites tier is $299, and it currently has a $149 limited-time offer.</p>\n\n\n\n<img />Template and pattern inserter.\n\n\n\n<p>At first glance, it seemed like a cash grab from new owners. There were no public announcements or explanations for the change outside of a minor note in the plugin&rsquo;s change log &mdash; just new ownership and upsells. Lubkert said he plans to rectify this by publishing an announcement post next week.</p>\n\n\n\n<p>Extendify had already been involved with new feature development for months. The API behind the template inserter was coming from their server in Editor Plus 2.6. It was the groundwork for Extendify Pro, but it was also still under development.</p>\n\n\n\n<p>&ldquo;We&rsquo;re a small, nimble team, and it was a development timing issue,&rdquo; said Lubkert. &ldquo;We finished the library approximately three weeks before we finished paid plans, and we certainly didn&rsquo;t want to delay users getting their hands on the library while we finished up work on Extendify Pro.&rdquo;</p>\n\n\n\n<p>Users will not lose any previously-imported templates. However, importing anything beyond three additional templates in Editor Plus 2.7 or newer will require a purchase of Extendify Pro for an API key.</p>\n\n\n\n<p>&ldquo;We are now offering an added layer of value for users who want to benefit from the power of Editor Plus but may not be in a position to use it to create their site from scratch,&rdquo; said Lubkert. &ldquo;For those users, we are creating the most beautiful and effective Gutenberg-native templates, built with Editor Plus, as part of the Extendify Pro template library. As you know, we launched the initial beta version a few weeks ago. A subscription is required for unlimited access to the library, but all users can import any three templates or patterns for free.&rdquo;</p>\n\n\n\n<p><em>With the launch of the template inserter in 2.6, there was no public mention of it being a beta version.</em></p>\n\n\n\n<p>Templates and patterns from Gutenberg Hub remain free. Users can still browse the site, copy a template code snippet, and paste it into the block editor.</p>\n\n\n\n<p>The team removed the custom blocks extension in Editor Plus 2.7.1, released earlier today. This feature allowed end-users to copy blocks from the Gutenberg Hub block library, paste them into the plugin, and save them for use on the site. Users could also add custom blocks via this settings screen.</p>\n\n\n\n<img />Removed custom block feature.\n\n\n\n<p>&ldquo;The custom block feature in Editor Plus was an experiment that was pretty cool, actually,&rdquo; said Lubkert. &ldquo;However, [Kamal] suggested removing it from Editor Plus since it is now very similar to the reusable block functionality in core. We want Editor Plus to push the envelope of what is possible with Gutenberg, and having a duplicate feature that is available in core doesn&rsquo;t add real, incremental value for our users.&rdquo;</p>\n\n\n\n<p>Updating to 2.7+ will also likely deactivate the plugin for end-users. The primary plugin filename changed from <code>index.php</code> to <code>editorplus.php</code>. Developers should generally avoid doing this because WordPress uses this filename to determine if a plugin is active.</p>\n\n\n\n<p>I remain optimistic about Editor Plus&rsquo;s future now that it has the financial backing it deserves. Having been an early supporter of the project, I knew this day would come. Nearly every time I spoke with Kamal in the past, I asked him about plans for monetizing the product. It had grown beyond what one developer could reasonably handle and scale without a business plan in place.</p>\n\n\n\n<p>&ldquo;We agree with your sentiment that WordPress projects need to generate revenue in order to fund the development of truly transformational experiences,&rdquo; said Lubkert. &ldquo;We have been investing in our team as well. Tammie Lister joined us as Head of Design. We&rsquo;ve also added engineering, support, and QA team members.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Mar 2021 21:44:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WordPress Foundation: 5 tips for organizing a successful online do_action charity hackathon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpressfoundation.org/?p=182733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wordpressfoundation.org/2021/5-tips-for-organizing-a-successful-online-do_action-charity-hackathon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6491:\"<p>In 2020, unfazed by the COVID-19 pandemic, <a href=\"https://wordpressfoundation.org/2020/charity-hackathons-august-2020-report/\">community organizers rallied together and worked hard to give a WordPress-powered web presence for charities</a> through <a href=\"https://doaction.org/\">online charity hackathons</a>. Our passionate and resilient community members are pulling out all stops this year to continue the good work. We already have two applications for do_action events in the queue, with more in the pipeline! This post aims to encourage all our zealous organizers with tips on how best to organize successful <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/organising-an-online-do_action-event/\">online do_action charity hackathons</a>.</p>\n\n\n\n<ol><li><strong>Recruit a core team and prepare an event plan</strong><br />Enlist a team of 5-10 members to wrangle the event. Much like a WordCamp, organizers need to plan do_action events down to the last detail. Make sure you have a plan for the entire event lifecycle &#8211; including <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/gathering-non-profits/\">selecting nonprofits</a>, <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/getting-particpants/\">finding volunteers</a>, <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/finding-sponsors/\">finding sponsors</a>, task management, and execution. For inspiration, check out how the <a href=\"https://github.com/doactionjp/do_action_guideline\">do_action Japan team came up with a plan for the event beforehand</a>! Having a solid communication strategy and setting deadlines is equally important. Finding answers to questions like: â€œ<em>When do volunteer teams meet?â€,Â  â€œHow often should there be check-ins?â€,Â  â€œHow do we track tasks?â€,Â  â€œHow do we measure progress?â€ </em>and<em> â€œ What deadlines do we need to meet?â€ </em>for instance, will help in devising a strategy.</li><li><strong>Finding non-profits and volunteersÂ </strong><br /><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/gathering-non-profits/\">Finding eligible non-profits</a> for your event could be a challenge. When your event publishes the call for non-profits, share it widely on social media. Since this is a charitable event, we have noticed that getting PR from local news media outlets is a lot easier. You might also want to reach out to Non-profit organizations and offer assistance proactively. You can follow the same approach for volunteer recruitment too.</li><li><strong>Fix your collaboration tools and communication strategy<br /></strong>Since this will be an online event, you will need the right collaboration tools to make the event successful. <strong>Please note: A doaction.org G Suite/Google Workspace account will be provided to all do_action event organizers in 2021 and beyond! Feel free to use that account for all your needs. Check out </strong><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/google-workspace-account-for-do_action-events/\"><strong>the handbook page for more information</strong></a><strong>.</strong> Here are some tools that you can use for your event:<ul><li>doaction.org website (call for nonprofits &amp; hackathon participants)</li><li>Slack (overall event prep, communication on the event days) &#8211; A free plan will be sufficient.</li><li>Zoom (event organizer &amp; inter-team meetings, opening/closing remarks) &#8211; <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/getting-started/special-virtual-events-zoom-request/\">WordPress Community zoom accounts</a> can be used.Â </li><li><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/google-workspace-account-for-do_action-events/\">Google Workspace tools</a> (provided to all 2021 organizers in the <a href=\"mailto:location@doaction.org\">location@doaction.org</a> format) &#8211; Gmail (inquiries &amp; sponsor communication), Google Forms (call for organizers &amp; sponsors, post-event survey), Google Sheets (task &amp; data management), Google Docs (collaborative editing of documents, Google Drive (for storage needs),Â  and Google Slides (opening/closing remarks presentation)</li><li>WordPress.com P2 &#8211; for task management</li><li>Trello &#8211; for task management.</li><li>Figma (design)</li></ul></li><li><strong>Finding sponsors<br /></strong>For online do_action events, organizers need not worry about venue or catering expenses. Hence, sponsorship benefits for these events can be passed along directly to non-profits. Most WordPress companies are passionate about supporting non-profits, and providing product/service licenses is a cost-effective way for them to support the community. Consider reaching out to specific companies as per your needs. Sponsorship benefits that do_action events in 2020 had availed include:<ul><li>Free domain and web hosting for non-profits</li><li>Sponsored premium plugins and themes (Only 100% GPL Compliant themes and plugins are allowed)</li><li>Sponsored website services (backups, caching, security, optimization, etc.)</li></ul></li><li><strong>Find a way to offer post-event support for non-profit websites<br /></strong>Make sure that once the event is over, each non-profit is trained on how to use and update the site. Perhaps a few volunteers could provide post-event support for a short while (while ensuring that the right expectations are set on both sides). Offering post-event support as a sponsorship benefit could also be a solution to that problem.</li></ol>\n\n\n\n<p>Does all of this sound exciting? Would you like to support your local community by organizing a do_action event? <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/do_action-event-application/\">Send in your application</a> right away! You can read more about do_action in the <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/\">event handbook</a>. Thank you for all that you do to support the global community through WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Mar 2021 03:50:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Hari Shanker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: #1 â€“ Josepha Haden Chomphosy on the Past, Present, and Future of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=113869\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/podcast/1-josepha-haden-chomphosy-on-the-past-present-and-future-of-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=1-josepha-haden-chomphosy-on-the-past-present-and-future-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50139:\"<h2 class=\"is-style-default\">About this episode.</h2>\n\n\n\n<p>The podcast today features Josepha Haden Chomphosy.</p>\n\n\n\n<p>Josepha is the Executive Director of the WordPress project, and as such, she has been at the forefront of WordPress&rsquo; evolution for many years. For the last six years, Josepha has worked full time on the project, and has been the release lead, as well as being involved with community events.</p>\n\n\n\n<p>Many of the WordPress updates that you&rsquo;ve seen recently have been under her stewardship, and she&rsquo;s heavily involved in the project&rsquo;s roadmap, and so talking with her about the past, present and future of WordPress seemed like the perfect topic.</p>\n\n\n\n<p>Briefly, the points discussed are:</p>\n\n\n\n<ul><li>Josepha&rsquo;s discovery of WordPress and its community;</li><li>how she considers that community in the many decisions she needs to make to push the project forward;</li><li>who can be involved and how one can join in;</li><li>the release of Gutenberg and how the turbulence of its introduction into WordPress core led her to rethink how the community is involved in such releases;</li><li>the concern that contributors are sometimes working in ways that are not sustainable;</li><li>how Josepha wants to ensure that contributors have the tools that they need to do their work; and</li><li>how she wants to leverage LearnWP to make it easier for WordPress&rsquo; growing audience to make the most of the software.</li></ul>\n\n\n\n<p>If any of the points raised here resonate with you, please leave a comment below.</p>\n\n\n\n<p>If you have any thoughts on what we should include in future episodes of the podcast, please go to the <a href=\"https://wptavern.com/contact/jukebox\">podcast contact form</a> and tell us what you think.</p>\n\n\n\n<h2 class=\"is-style-default\">Mentioned in this episode.</h2>\n\n\n\n<ul><li><a href=\"http://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021\">Josepha&rsquo;s &lsquo;Big Picture Goals 2021&rsquo; post</a></li><li><a href=\"http://github.com/WordPress/gutenberg/issues/24551\">Site Editing Milestones</a></li><li><a href=\"http://make.wordpress.org/core/2021/02/11/making-wordpress-releases-easier/\">Making WordPress Releases Easier</a></li><li><a href=\"https://wptavern.com/wordpress-contributors-discuss-scaling-back-releases-4-major-releases-is-not-a-viable-plan-in-2021\">WordPress Contributors Discuss Scaling Back Releases: &ldquo;4 Major Releases Is Not a Viable Plan in 2021&rdquo;</a></li><li><a href=\"http://wordpress.org/news/2021/02/welcome-to-your-wp-briefing/\">The first episode of Josepha&rsquo;s podcast, WP Briefing</a></li><li><a href=\"http://josepha.blog\">Josepha&rsquo;s personal blog</a></li></ul>\n\n\nTranscript<div><div class=\"chat-transcript\"><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:00:00]</div> <div class=\"chat-text\"><p>Welcome to the first edition of the WP Tavern podcast, which we&rsquo;re calling Jukebox. My name is Nathan Wrigley and as this is the first ever episode of the podcast, I&rsquo;m going to spend a few moments, setting your expectations. Our aim here is to create a podcast and transcript for people who are interested in WordPress and the WordPress community.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>As a starting point, we&rsquo;re going to produce one episode each month, but that may change down the road. We&rsquo;re not bound to any particular subject, so it might be an interview with a core contributor one time and an organizer of WordCamps the next. A panel discussion about a broad subject, such as the future of WordPress or an episode about a very specific topic.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>As I say, we&rsquo;re not bound to anything except that it&rsquo;s going to have WordPress at its heart.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>With that in mind, it would be great to receive suggestions from you, the audience. I&rsquo;d like to hear from you directly about what you&rsquo;d like the podcast to feature. That may be a topic that you&rsquo;re curious about, a person that you&rsquo;d like to hear from or anything else that comes to mind.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>You can do that by going to wptavern.com forward slash contact forward slash Jukebox. And there you&rsquo;ll find a form to complete. Once again, that URL, wptavern.com forward slash contact forward slash Jukebox, and thanks in advance to anyone who reaches out.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Okay. So the podcast today features Josepha Haden Chomphosy. Josepha is the executive director of the WordPress project. And as such, she has been at the forefront of WordPress&rsquo; evolution for many years. For the last six years, Josepha has worked full time on the project and has been the release lead as well as being involved with community events.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Many of the WordPress updates that you&rsquo;ve seen recently have been under her stewardship, and she&rsquo;s heavily involved in the project&rsquo;s roadmap, and so talking with her about the past present and future of WordPress seemed like the perfect topic. We talk about her discovery of WordPress and its community and how she considers that community in her decisions. Who can be involved and how. We also get into the subject of Gutenberg and how the turbulence of its introduction into WordPress core led her to rethink how the community is involved in such releases. Towards the end, we discuss how, in the future, Josepha wants to ensure that contributors have the tools that they need to do their work and how she wants to leverage LearnWP to make it easier for WordPress&rsquo; growing audience to make the most of the software. If any of the points raised here resonate with you be sure to head over and find the post at wptavern.com forward slash podcast, and leave a comment there. And so without further delay, I bring you Josepha Haden Chomphosy.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>I am here with Josepha Haden Chomphosy. Josepha, welcome to the podcast.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:03:42]</div> <div class=\"chat-text\"><p>Thanks for having me, Nathan.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:03:43]</div> <div class=\"chat-text\"><p>You&rsquo;re very welcome. Now it strikes me, it is possible that there are some people out there in the WordPress community who don&rsquo;t actually know who you are and what your role is. So the first question is exactly that. Could you tell us a little bit about yourself and what your role is in WordPress?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:04:00]</div> <div class=\"chat-text\"><p>Yeah. Well, my name, as you mentioned is Josepha Haden Chomphosy, and I am the executive director of the WordPress project. And, I help to make sure that whatever the vision is of the technology and the community and the ecosystem around it has everything that it needs to succeed, and so I look after the people who are here contributing, and I look after the tools that they need in order to contribute, and of course, look after all of our products, our events in person and online, as well as our CMS and all of the kind of design and stuff that goes into it.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:04:33]</div> <div class=\"chat-text\"><p>So quite a lot. Yeah, quite a lot. About that, what do you find yourself doing on a day-to-day basis other than coming on podcast episodes like this? What typically would you find yourself doing in a normal week?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:04:45]</div> <div class=\"chat-text\"><p>Yeah. In a normal week, I probably have about 50% of my time is taken up with meetings either in voice or video or on Slack, and a huge amount of my time is helping to make decisions from like the medium to large scale of things. And so, yeah, it&rsquo;s a lot of talking to people, making sure that I know what they need, making sure that I know how to get them what they need once we get there. And yeah, it&rsquo;s mostly, I guess, mostly my job is talking, planning and solving problems, which frankly sounds like a fun job to me. I realize not everyone.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:05:24]</div> <div class=\"chat-text\"><p>No, that sounds good to me. Did you start with WordPress a very long time ago? Is this something you&rsquo;ve been doing for a really long time? In other words, what&rsquo;s your path? How did you get to where you are now from where you first made contact with a CMS called WordPress?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:05:37]</div> <div class=\"chat-text\"><p>Yeah, I think at this point I&rsquo;m technically considered a WordPress veteran, but I actually have not been in the project for as long as some people have. I first discovered, learned the word WordPress in 2009. My mom actually introduced me to the CMS. In 2010, I started, my local community with a couple of other folks in Kansas City, and then it kind of all grew from there. I actually have been, I just recently passed my six year anniversary with being a full time sponsored contributor through Automattic. So yeah, I think that makes me technically a veteran of WordPress. Matt and I were talking about that during WordCamp India this past weekend.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:06:20]</div> <div class=\"chat-text\"><p>You obviously liked the sort of the FOSS model that we&rsquo;ve got in the WordPress community. I don&rsquo;t know if you have a history of working in industry or something like that. Is this the kind of community, the kind of decision-making process that speaks to you where there&rsquo;s an open way of doing things, which can be different to a more top down approach in business.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:06:39]</div> <div class=\"chat-text\"><p>Yeah. I came into WordPress and into leadership probably from a pretty unusual path. And so there&rsquo;s that to start with. I&rsquo;m not a natural born leader. I spent a lot of time learning how to do it. And as I was learning all about how to lead the way that made the most sense to me from the start was leading from within and leading from whatever seat you happen to occupy in your group at the time. And so it&rsquo;s a lot of this concept of servant leadership and a lot leading groups as they exist as their own organism, as opposed to top down, just like trying to manage them. I really love group dynamics and leading mass groups of people. It is a particular passion of mine. And there are times when you do have to just say, I&rsquo;m sorry, everyone, I know that this doesn&rsquo;t make us happy, but we&rsquo;ve got to do this because we must do this for the health of our organization or whatever it is, you know, like mask mandates to be terribly topical.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>In my experience of working with nonprofits and volunteering during the course of my life. There was no other leadership style that really was as sustainable and resilient and brought people into the organization as much as this kind of style of leadership that I have now. And it happens to fit really, really well in open source and for the most part also fits really, really well in WordPress. So I guess I kind of just got lucky.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:08:13]</div> <div class=\"chat-text\"><p>Yeah, it&rsquo;s a really nice community to be in. And it occurs to me that many people that interact with WordPress will, well, I say many people, I don&rsquo;t know what the figures would be, but they would go and download the software let&rsquo;s say from wordpress.org and upload it to their server, and they&rsquo;re good to go. That&rsquo;s their relationship with WordPress. They&rsquo;re happy with that. They use it. New features come out and they&rsquo;re delighted. It&rsquo;s great. New features come out and they&rsquo;re kind of concerned and that&rsquo;s great. How do things actually get done though? How is the project moving forward? I suppose it boils down to who makes the decisions, but also what is the consultation approach? How does the consultation occur to iterate the project forward? Because I suspect there will be many people listening to this who will have, no conception of how that&rsquo;s done or how the software got to where it is today, as opposed to two years ago.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:09:01]</div> <div class=\"chat-text\"><p>Yeah. I&rsquo;m going to answer that question in two parts. The first part I&rsquo;m going to take is how are these decisions generally made? And that part comes with a big caveat of&hellip; in a perfect situation, this is how this will occur. And then the second thing that I want to address in there is the question of how it probably should happen, especially for open source at scale as WordPress is.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So to answer the first part. The way that I always want it to work. And the way that when things are optimally occurring, these decisions should be made. A good idea can come from anywhere. And so anytime that a contributor brings a good idea to their team rep or to me, or to a trusted fellow contributor, and they want to get an idea of whether it would succeed or not. There is historically this idea of feature proposals, which we do in some of our teams right now, but not in all of our teams where that idea gets a review from the full community, or however many people are showing up on the blog at the moment. And after they&rsquo;ve had a bit of a conversation figured out the rough parts figured out what the solution, what the problem is they&rsquo;re trying to solve what the users most beneficial way forward would be, once they figure all those things out, then they bring it to in a lot of cases, Matt, in a lot of cases, me, and then we figure out based on feedback from team reps and committers and major maintainers and contributors, what are the things that we need to know about these proposals to make sure that we get the right decision in place. That is how it should work if everything&rsquo;s optimal right now, there are a lot of places where people don&rsquo;t feel like they are able to raise their voice for questions. There are a lot of places where there is not enough support either from the volunteers who are showing up or just from the concept of the overall roadmap, where the people aren&rsquo;t there to help make the, make it past that first hurdle of, someone help me figure out if this is a good idea. For the 40% of the web that we&rsquo;re supporting. And so that&rsquo;s how it should work optimally. It doesn&rsquo;t always work perfectly well. In cases where anyone gets a proposal or a suggestion that is, has not been discussed in their community, and hasn&rsquo;t been discussed in the project and we have to kind of figure out ad hoc, what is the right way forward here?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I actually do have a number of the people that I personally speak to, to get advice on the best way forward. I&rsquo;ve got some technical people who&rsquo;ve been in the project for ages that I look to for advice. I reach out to some of the industry partners. I hesitate to call WordPress an industry. For some reason. The WordPress ecosystem sustaining partners, we have folks like the people over at SiteGround or Yoast or depending on who I need to talk to any other sort of company that fits in with the questions that I have, and then a bunch of our long-term community maintainers, people like Andrea Middleton or folks like that who can make sure that I understand what all of our benefits are, what all of our risks are, what all the hurdles are like. It&rsquo;s been a long time since one person could do all of this work, reliably alone. And so I make a strong use of a bunch of really dedicated contributors, I would say people who are really looking out for the community and I reach out to them quite frequently.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>As far as how it should go in the future, I do think that most of the lessons in the cathedral and the Bazaar, which is kind of the canonical source of how to do open source were written for much smaller projects than we are. And so I think that, there&rsquo;s a feeling right now in the community of there is this cathedral and it&rsquo;s not the community, the community is the Bazaar.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And on the one hand, I think that is true. Like the community itself does represent this beautiful chaotic kind of crackling energy sort of thing that we have. But I actually think our community, as small as it is compared to the number of users that WordPress has is actually that central part of what makes WordPress successful and functional. And the bizarre is actually all of those users that we don&rsquo;t have any access to. Access to&hellip; that sounds really weird. We don&rsquo;t have any way to talk to predictably right now. And so I think that we are due for a change in our mindsets around that it is, a one percenter thing to be able to contribute to an open source project. And we should not be forgetting that we are building this on behalf of a huge portion of the population,</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:13:54]</div> <div class=\"chat-text\"><p>One of the things which seems to crop up from time to time is exactly what you&rsquo;ve just mentioned. That the user base is enormous, but the community of people who are actually building it is obviously much smaller. And whether there&rsquo;s a disconnect, in some instances between what the, as you described, the 1% might feel is required, and the Bazaar, if you&rsquo;d like what they feel is required. And I really, struggle to understand how on earth one would communicate between those two different sides of the coin. If you liked it, we really want you to understand that this is what we&rsquo;re proposing, this is what we feel is the future for WordPress, but how do we join those two streams together? Over here, the cathedral over here, the bazaar, and I just don&rsquo;t even know how to square that circle and imagine that&rsquo;s an enormous challenge.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:14:42]</div> <div class=\"chat-text\"><p>Yeah, it is. So, reconciling the question of building for all of our users versus building for all of our developers or for all of our, what I call our extender community. It&rsquo;s a really hard task. Every feature that gets put into WordPress, whether it&rsquo;s the CMS or how we manage a team or how we put our tools together. Every single feature decision that&rsquo;s made is made with the best knowledge that anybody has at that moment for one, and for two, the closer and closer you get into the really heart of the work being done on the project, the more and more that you are trying to make decisions for all of core and all of the active contributors and all of the theme authors and plugin authors and all of the users of WordPress and all of their visitors to their websites. That is a huge burden. You have to think about so many groups and the community reminds me personally of this a lot. Like it comes up frequently that, we, I&rsquo;m told, don&rsquo;t know who our audience is and on the one hand that&rsquo;s right, we don&rsquo;t literally know every single type of visitor that we have here. And every single type of thing that people are building using WordPress. And on the one hand, like that&rsquo;s the beauty of it is that we don&rsquo;t have to know who you are to want to give you the freedoms of open-source. And on the other hand, it does really bring up a lot of, for a lot of people, some ethical questions of, should we be making decisions on behalf of other people. But I honestly, Helen said it in a core chat a few months ago, when you are making software, you&rsquo;re always making decisions on behalf of other people.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Even if you do know exactly who you&rsquo;re talking to. And so it&rsquo;s not necessarily possible to talk to all of our audiences at the same time and it&rsquo;s definitely not possible to make all of our audiences, all of our users happy in one go, but the blizzard community pretty famously many, many years ago said we serve a majority group of minority voices and we will always make someone mad and we just want to not always make the same people mad because then we&rsquo;re making blind choices or at least biased choices. I think about that often.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:17:12]</div> <div class=\"chat-text\"><p>So when decisions are made which the community, maybe 50% of them are going in one direction and 50% think actually this doesn&rsquo;t seem like the right direction. Good example may be when 5.0 came along and Gutenberg, I should say Gutenberg because that&rsquo;s probably more correct, was put into core that obviously there was a real bifurcation of where the community was going at that point to some extent. How do you cope with that kind of thing? How do you tackle when people are disgruntled, when people are bringing things to you where they&rsquo;re dissatisfied or they believe they&rsquo;ve somehow been ignored? Is it a question of saying to them, look, you just need to be involved. If you&rsquo;re involved, then we know what you&rsquo;re saying. How do you deal with it?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:17:51]</div> <div class=\"chat-text\"><p>Yeah. Well, I first have to say that I think that communities that are comfortable dissenting, are really healthy. When we see groups of people, when we see communities where people are all constantly, always agreeing and always in the same direction, it looks great on the outside, but from the standpoint of a maintainer of that community, cause I&rsquo;m a maintainer of the WordPress community itself. That is a really unhealthy organization when I wasn&rsquo;t hearing anything from anyone except for when they were, shouting at each other on Twitter, that was a sign of real organizational unhealth in my mind. So I think that healthy organizations are ones that are comfortable enough to say I do have worries about this. Cause if we don&rsquo;t know where the worries are, we don&rsquo;t know how to make solutions to avoid the worries. But I never did say to anyone and I don&rsquo;t feel like the answer was well, if you&rsquo;re upset about it, you should get in here.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I don&rsquo;t think that&rsquo;s a fair response, especially because like I said earlier, contributing to open source is a really, really privileged thing to do. You got to have a lot of extra time to do that. And, time is money in a lot of cases. And so I never did say that. I actually, 5.0 merge was really, really hard, that whole process and not a lot of people believed in the way forward on it. And they were raising the concerns, but this was the vision that had been set out. And so what I did was not to say, well, if you&rsquo;re mad show up and do some work on things, what I did was say, Hey, I know you&rsquo;re mad and I&rsquo;m going to come and let you tell me how mad you are. And I actually did a six month listening tour. To hear what everyone was the angriest about. And it led up to a very lengthy 5.0 slash block editor merge retrospective post, where I had spoken to basically all of the committers, basically everyone who was writing code to create Gutenberg, everyone who was writing the core code to make sure that it was ready and a bunch of our agencies in the ecosystem, a bunch of our theme authors and plugin authors. I spoke to a ton of people over those six months just to see what they were the angriest about. And we&rsquo;ve been since then making changes to fix it. It is fair that they were worried and it&rsquo;s fair that they had something to say about that. And I don&rsquo;t think, I never did think, that the right answer was to say, well, If you&rsquo;ve got an anger, you got a job. That&rsquo;s not what they were trying to tell me. You know.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:20:28]</div> <div class=\"chat-text\"><p>It seems that you&rsquo;re concerned with communicating and making sure that communication out to the community is a part of your role, and although I don&rsquo;t really want to go into this in great depth. You&rsquo;ve recently launched a bite-size if you like, a short 10 minute to 12 minute length podcast, every couple of weeks, we&rsquo;ve got two episodes so far, it&rsquo;s called WP Briefing. Is that an effort from you to try and get the message out in a different way that people can consume. Bite-sized, often, easy to understand.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:20:57]</div> <div class=\"chat-text\"><p>Yeah. So something like this, a way for WordPress leadership to communicate more frequently, and with a little bit more ease has been on my list of goals, list of needs that the WordPress project needs since about 2018. I did not think that I was going to be the one to do it. I was hoping that we would get a more technology project sort of person available, but at the end of the day, I was talking through it with Matt, at sometime last year, sometime in 2020 and we both kind of collectively came to the decision that, yeah, it would be nice to have some technology folks. So the way that I hope that we can do open source in WordPress and the way that I hope that we can, that I can lead a group of people while always remembering their humanity and always adhering to my concept of basic ethical practices at scale. Like why wouldn&rsquo;t I be the person who should show up and say, hey, this is how I think that&hellip; we can do this in WordPress. I think it&rsquo;s a good opportunity for people to hear what goes into WordPress, because it&rsquo;s really easy to be like WordPress is free and it&rsquo;s just available by magic, and you don&rsquo;t know that there are 2000 volunteer contributors that show up every single week to make that happen for 40% of the web. You just don&rsquo;t know what you don&rsquo;t know when you&rsquo;re first getting involved in WordPress. And so like this, I think is a good opportunity to uncover all of the hard work of the community.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:22:37]</div> <div class=\"chat-text\"><p>I agree. I think it&rsquo;s a great initiative. I&rsquo;m going to pivot the conversation slightly because we&rsquo;ve had Gutenberg for several years now and we&rsquo;ve got a big year ahead. There&rsquo;s an awful lot going on. If you&rsquo;ve been following the roadmap, you&rsquo;ll understand that this year is a really, really major year. So I&rsquo;m just wondering where we&rsquo;re at, what is in store for this year and how you feel we&rsquo;re aligned to deliver on the things that you hope in your aggressive roadmap. What&rsquo;s the chances of achieving them all?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:23:05]</div> <div class=\"chat-text\"><p>Yeah, firstly, I do see all of the flags being raised about my aggressive timeline and my incredibly full set of goals for the WordPress project for the year, and there is a lot out there and I know tha. I am fully prepared to say that, at the end of the year, we&rsquo;re going to look back and we will have missed some of those goals. And that&rsquo;s going to be fine too, for a lot of things. Now, the one that is really, really raising, some eyebrows is this full site editing merge, and the merge process. Last time, you know, it took us a whole year, and so the idea that we can say at the start of 2021, we&rsquo;re going to get it in by the summer has been really, really shocking to folks because it cuts that time in half. And on the one hand yeah, it is, it&rsquo;s really aggressive, but on the other hand, I know absolutely that the community can rise to that challenge. Like we always do. It&rsquo;s a lovely group of people that really show up to make the best solution for the WordPress users that they can, and I have been really pleased to see all of the work that&rsquo;s gone into full site editing over the last 12 months already and longer technically, but definitely the last 12 months it&rsquo;s made huge strides.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So I want to clarify for all of your listeners that like the first primary target date to look out for is that April 2021 date. That&rsquo;s what I am considering the go, no go date because I will never take something that is super duper broken and users can&rsquo;t use, and say we&rsquo;re getting it in to 5.8 because I made a promise to myself. Like I&rsquo;m not going to ship a broken tool when I can help it. And there is probably, I think if my guess is right, there&rsquo;s going to be a Gutenberg plugin release on the 17th of April and then the 23rd of April as well. And those will be our two moments when we can say we believe we can do this.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And there&rsquo;s been a lot of discussion around okay, but what is the MVP that you think is going to get in there? And I have been directing people to these milestones that there&rsquo;s this ticket that has the milestones for full site editing, and we did clear one of those milestones and are getting it ready for testing right now. And this is an unofficial concept of the MVP, but I do think I&rsquo;m right about this. The guiding question that I have been asking myself as I am watching full site editing, kind of get pulled together is could I using the blocks available, pull together the major functional parts of a campaign landing page.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>That is what I&rsquo;m using as my guiding light for do I think this is ready or not? And, you know, campaign landing pages, that&rsquo;s like the smallest sentence of a smallest viable sentence. It is the I am of websites. Right. Like, you&rsquo;ve got your header and footer. You&rsquo;ve got your hero image. You probably have a button on the hero or a slider if you&rsquo;re feeling fancy and then you&rsquo;ve got text, you need to have a form you need to have a way to have a call to action. It is a functional website on its own. But it is the smallest version of a website. And so the question that I have is can you without code, pull that together? And I don&rsquo;t know if that is, for instance, like Mathias Ventura. I don&rsquo;t know if that is the guiding question that he&rsquo;s asking himself as he&rsquo;s looking toward what makes an MVP possible, but it&rsquo;s hard to build software in the open, right? And so like you have to have a big enough goal so that you can display a plausible promise, to the users so that you can say this is what we believe this is going to look like, but not so big that you have gotten so far ahead of them that they don&rsquo;t feel like they can catch up and finding that really narrow space between far enough that you can tell what it&rsquo;s supposed to be, but that you don&rsquo;t feel overwhelmed by how much has changed is really hard to get to. And so that&rsquo;s why I&rsquo;m bringing us into some really clear focus around like we&rsquo;re driving to April so that we can ask ourselves as we go, those really poignant questions of does this get us closer to the MVP? Does this help us solve this problem for our users? Because honestly, full site editing is this intersection of the promise of the technology and the promise of the philosophy. This is where the rubber meets the road on what we&rsquo;ve been saying about Gutenberg for so long, all of our promise lies in here. And so, it&rsquo;s important to get the tool right, but it&rsquo;s also important to get the proper landing area for the first foray of the tool, right.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:27:57]</div> <div class=\"chat-text\"><p>Okay. So I&rsquo;ll link in the, in the show notes that we put together for this I&rsquo;d link to your big picture goals, 2021 article, which promoted the debate about the MVP, but I&rsquo;ll also make sure to link to the site editing milestones GitHub piece as well so that people can figure out exactly what&rsquo;s going on.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Just turning away from the full site editing thing, as much as I want to keep talking about that. There&rsquo;s more going on, isn&rsquo;t there because in the near future, you&rsquo;re highlighting a couple of other things, the need for LearnWP to become a real resource for people to get up to date, upskill their interactions with WordPress, and also contributor tools, and although we haven&rsquo;t got a lot of time for those, maybe pick one of those and tell me why you&rsquo;re so bullish about those.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:28:38]</div> <div class=\"chat-text\"><p>Gosh, let&rsquo;s go with Learn. I&rsquo;m bullish about contributor tools because I desperately want our community to have tools that are easy to use.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:28:45]</div> <div class=\"chat-text\"><p>Okay. That&rsquo;s good. Yeah.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:28:48]</div> <div class=\"chat-text\"><p>I&rsquo;m really excited for the work on Learn for a number of reasons. For one, we are a global project and right now, so much of our training about how to even get your bearings in WordPress before you are able to get to the 101 content that&rsquo;s out there happens at an event. And in order to get to an event, you have to pay basically three ways. You have to pay with your money in a lot of cases, you have to pay with your time. And for any entrepreneur, you&rsquo;re also potentially paying with an opportunity cost. All the time that you spend there, not only are you not working, but you&rsquo;re also not working to fill your funnel. And so finding a way to take that training opportunity and remove as many barriers as possible and make it available online for anyone who needs it, to be able to get to no matter where they are, that is so important to me and so compelling. That&rsquo;s my big picture, hope there. And right now there are still quite a few barriers to entry. We mostly have English based workshops and tutorials there. And so if any of your listeners are interested in joining that effort, we need a lot of translations. We need a lot of workshops\\ in other languages and various things like that. But I really believe that this is a space where WordPress can be really forward facing in owning the fact that we know how to use our tools the best and that our community is the best group of people to tell each other and to tell future community members what can happen and not happen with WordPress, they are the people who know what is needed. They are the subject matter experts of their own business and their own plugins that they needed to do those things. And so getting that opportunity with as few barriers as possible, but, to really be able to say we are a canonical source of good information about how to use this, especially when you don&rsquo;t know even remotely what you&rsquo;re doing yet. I think that&rsquo;s a good step forward for you.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:30:52]</div> <div class=\"chat-text\"><p>Yeah. With any software with just about any product, in fact, in the world, having fantastic documentation that you can understand and consume, and there&rsquo;s one, as you said, canonical source that you can go to and if it&rsquo;s not exactly there, you may well pick up another path to finding exactly where it is, and so, I just think that&rsquo;s such a great thing now that we&rsquo;re hitting 40% of the internet, this seems like a really valuable project.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>With time being limited. I&rsquo;m going to pivot once more and talk about the longer term, the things that are off in the horizon. And it&rsquo;s a very broad question because I don&rsquo;t want to stifle you. What are the things in the longer term, after this year that you&rsquo;re getting excited about in the WordPress space?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:31:33]</div> <div class=\"chat-text\"><p>Gosh, you asked me a really big question and I have 20 answers. I&rsquo;m going to tell you some of the things that I&rsquo;m super excited about. I am for one super excited about really continuing to remove these barriers to entry for future WordPressers. I define our community as anyone who has interacted with WordPress, whether they know it or not. And at 40% of the web, it is increasingly true that the people in the, don&rsquo;t know, they interacted with WordPress group is also getting bigger and because the work of all of our contributors, all of our entire community that shows up to help get this done, no matter which team they get it done in, because every time they commit changes to the work and to the greater collective project that they&rsquo;re working on that change and their name with that change and their work lives in the entire history of that. They add, they take 17 years of learning that came before them add in a new learning based on new information we have today, and then they are forever in the history of what made WordPress successful and getting to a point where our 40% of the web, just websites, and also the people who interact with that 40% have some concept of what goes into that work and this community that is behind it. The more and more that they have a deep understanding of that just like wine appreciation or something, jazz appreciation. The more that you understand that the more that you see the value in what is happening here with open source. Cause you know, open source is a contentious kind of space in the world. If you look at it and how it applies to businesses and how it applies to in some cases, governmental structures and things like that. And I really feel like the more that we dignify the work that goes into this tool, and the more that we can subvert that feeling of WordPress isn&rsquo;t secure because of whatever reasons, like the more that we can change those narratives, the more that we dignify the professions of all of the WordPress contributors that show up in their very tiny spare time, because they&rsquo;re giving back to a project that gave them so much in the work that they do today.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I just&hellip; this is going to sound really sappy is the honor of my career to be doing this work with WordPressers, and the fact that the general public has a tendency to say Oh, well, WordPress is terrible because it&rsquo;s by volunteers is just not fair to them and it&rsquo;s not accurate to what they&rsquo;re doing either and so I feel like the sooner that we can really shore up this concept of yeah, it is volunteers, but they are all absolutely experts in whatever field they&rsquo;re in and in their spare time, they give back to something that made them so good. The sooner we can do that for the community as a whole, I think the better just dignifying the profession of being in WordPress.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:34:42]</div> <div class=\"chat-text\"><p>I&rsquo;m going anchor my reply to that, to an article that you posted recently called making WordPress releases easier. I&rsquo;ll link to it in the show notes and on some of the points that you drew out in there, marry perfectly to what you&rsquo;ve just said, because one of the concerns that you were raising in the longer term is the idea of things like this discussion can came up in the context of the release cycle and whether or not we should be trying to go for a specific number four releases per year, or whether there should be some flexibility there, whatever that number may be. But you express concern for things like developer fatigue and the fact that we need to realign the number of core developers that we&rsquo;ve got and the number of designers, who are helping in the system. So what were you meaning when you were describing your worry about the developers that were currently using exhibiting signs of fatigue and so on?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:35:30]</div> <div class=\"chat-text\"><p>As with every single time I talk about the deepest parts of my work&hellip; have to start by saying like my whole job is identifying our risks and our most weak places and finding ways to make them stronger and finding ways to steer around the risks that we have, and so sometimes what I say sounds super duper dire, but yeah, in general, I think that WordPress is in a really good space right now. It&rsquo;s in a really good position, especially considering that we are still in the middle of a global pandemic. And so that general context for what I&rsquo;m about to say, which is going to sound a little dire. We have a number of committers and a number of maintainers that show up to do this work every day. And that is not only for the code, but also for the design work. It&rsquo;s also for our translations, it&rsquo;s for folks in the support forums, like all of our 25 teams or something, everyone who shows up to do that work every day. It&rsquo;s really hard in a global pandemic situation to keep everyone feeling resilient and feeling like everyone around them as a human being and keeping them mindful of the fact that they are also a human being.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Everything is really stressful for the world and for them and for our users and people who are trying to, replace their income by coming up with a WordPress site, using a WooCommerce solution or whatever it is. And it&rsquo;s&hellip; on the one hand true that we would have had a little bit of difficulty with fatigue with our maintainers and committers even before this, but especially right now, especially in the context that we find ourselves in, it&rsquo;s really hard for people to recharge and all of the work that would have needed to happen in order to get us to four releases this year should have happened in 2020, but we were all really, really focused on pivoting an entire arm of our community into a space that we are not necessarily terribly familiar with online events. It&rsquo;s just not something that we as a project did a lot of, and so I guess my overall concern is we have two major projects that go at the same time at the same pace and the more and more people use WordPress and Gutenberg, the more and more we have tickets that are opened. And we have roughly the same number of people who can help us to make the decision, write the code create the design, whatever it is, and then review it, test it, commit it. It&rsquo;s the same general number of people right now as it was in 2019. And it&rsquo;s getting harder and harder for me to find ways to reliably feel like they&rsquo;re getting themselves recharged and practicing sustainable self care work.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:38:24]</div> <div class=\"chat-text\"><p>Is this a job of recruiting more people in or trying to, like you have obviously have been doing trying to get more people in the community involved. Is it a bums on seats to use a crude analogy? Is that what&rsquo;s required?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:38:37]</div> <div class=\"chat-text\"><p>I think it&rsquo;s a bit of both. I think it&rsquo;s a little bit&hellip; Get more people in here who can help us do the work, which is hard to do in a normal setting and is also harder to do when we&rsquo;re not seeing each other in person. I have a whole thing about that. Um, many, many thoughts, but it&rsquo;s a little bit getting people in here. And also it&rsquo;s a little bit making it very clear to the people who are using 100% of their spare time. Like they have two hours a week. And so they did a patch and they showed up and they&rsquo;re like, please take my patch. And if they know that we don&rsquo;t have it about 110 people reviewing and testing and committing things, we really have 30. It can help to give those 30 committers a little bit more space because people don&rsquo;t expect that 30 people can manage 300 new tickets every hour or something. Just to kind of uncover the mountain that we&rsquo;re working with, I guess, to give everybody a little bit more breathing room, I guess that&rsquo;s it.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:39:42]</div> <div class=\"chat-text\"><p>Well, Josepha, I know that your time is valuable and I know that I&rsquo;ve consumed probably already more of it than was allowed. So just I&rsquo;d just like, say thank you. I know that you have an awful lot sitting on your shoulders, certainly from my part greatest appreciation. Thanks for all the work that you do and thank you for coming on the podcast and talking to me today.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-josephahadenchomphosy vcard\"><cite class=\"fn\">Josepha Haden Chomphosy</cite> [00:39:59]</div> <div class=\"chat-text\"><p>Thanks for having me. I thought this was really fun.</p>\n</div></div></div></div>\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Mar 2021 23:15:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: Insert Font Awesome Icons Into the Block Editor via the JVM Gutenberg Rich Text Icons Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:249:\"https://wptavern.com/insert-font-awesome-icons-into-the-block-editor-via-the-jvm-gutenberg-rich-text-icons-plugin?utm_source=rss&utm_medium=rss&utm_campaign=insert-font-awesome-icons-into-the-block-editor-via-the-jvm-gutenberg-rich-text-icons-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3071:\"<p class=\"has-drop-cap\">Joris van Montfort, a freelance WordPress developer, released the <a href=\"https://wordpress.org/plugins/jvm-rich-text-icons/\">JVM Gutenberg Rich Text Icons</a> plugin over the weekend. The goal was simple: allow users to insert icons nearly anywhere in the block editor at the click of a button.</p>\n\n\n\n<p>The plugin uses version 4.7 of the Font Awesome library out of the box. However, developers can modify this to include custom icon sets.</p>\n\n\n\n<p>Like many of the most useful plugins, it stays in its lane, performing a simple task and doing it well. The plugin presents users with a &ldquo;flag&rdquo; button in the editor toolbar whenever they edit a Rich Text field.</p>\n\n\n\n<img />Inserting an icon into a Heading block.\n\n\n\n<p>Rich Text is a block editor component for entering text. Anywhere users can type in the editor canvas is fair game for inserting an icon. This includes paragraphs, headings, image captions, and more. It also extends to blocks from other plugin developers. If they employ a Rich Text field anywhere, the &ldquo;flag&rdquo; button will appear, and users can plop an icon in it.</p>\n\n\n\n<p>Icons inserted through the plugin automatically inherit the surrounding text size. If you stick it in a Heading block, it will grow larger. If you stick it in a Button block, it will match up with the Button text. The same is true for the colors too.</p>\n\n\n\n<img />Inserting icons in various blocks at different sizes and colors.\n\n\n\n<p>Because it is impossible to match each theme&rsquo;s design perfectly, some minor spacing or alignment adjustments may be needed. For the most part, the icons looked good when I tested them with various themes. However, there were a couple of one-pixel-off issues and minor alignment miscues with some blocks. On the whole, I did not run into any design-breaking issues. The plugin displayed its icons as it should.</p>\n\n\n\n<p>One usability issue I encountered was being unable to delete an icon via the <code>Backspace</code> or <code>Delete</code> keys on my keyboard in use with the Buttons block. It worked well with other blocks. The solution for this was to click on the inserted icon. Then, select the &ldquo;flag&rdquo; icon in the toolbar to reopen the inserter. After choosing no replacement, the old one disappeared.</p>\n\n\n\n<p>The plugin developer provided filter hooks for third-party developers to implement icon sets other than Font Awesome via a custom JSON file. Instructions are outlined in the plugin&rsquo;s readme. There are also hooks for uploading or overwriting the stylesheet and classes.</p>\n\n\n\n<p>While I like the plugin&rsquo;s execution, I dislike that it loads its own Font Awesome stylesheet. If using another plugin or theme that does the same, its inclusion increases the page load size for end-users by loading multiple copies of the same code. This is not the fault of the plugin developer. It is a limitation created by WordPress&rsquo;s lack of a dependency system. However, users who give the plugin a try should be mindful of this potential issue.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Mar 2021 23:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Chrome 90 to Use HTTPS by Default in the Address Bar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114269\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/chrome-90-to-use-https-by-default-in-the-address-bar?utm_source=rss&utm_medium=rss&utm_campaign=chrome-90-to-use-https-by-default-in-the-address-bar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2895:\"<p>Chrome&rsquo;s upcoming <a href=\"https://blog.chromium.org/2021/03/a-safer-default-for-navigation-https.html\">version 90</a> will use&nbsp;<em>https://</em>&nbsp;by default in the address bar, bringing a significant improvement to security and loading speed. HTTPS adoption has shot up significantly over the past six years after Google&nbsp;<a href=\"https://webmasters.googleblog.com/2014/08/https-as-ranking-signal.html\">announced</a>&nbsp;in 2014 that HTTPS would be used as a ranking signal in search results. </p>\n\n\n\n<p>In February 2021, W3Techs found that <a href=\"https://w3techs.com/blog/entry/fact_20210202\">82.2% of websites use a valid SSL certificate</a>. Today, more than <a href=\"https://transparencyreport.google.com/https/overview?hl=en\">98% of pages loaded in Chrome</a> use HTTPS as the default protocol, making this change to using HTTPS as the default for navigations long overdue. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Firefox Telemetry charts HTTPS adoption at <a href=\"https://letsencrypt.org/stats/#percent-pageloads\">more than 84%</a> of web pages for all users and 92% for traffic originating in the USA.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Currently, anytime a user puts a site into the address bar without specifying the protocol, such as &ldquo;example.com,&rdquo; Chrome uses HTTP by default and then has to retry for HTTPS. </p>\n\n\n\n<p>The update in Chrome 90 is good news for Chrome users, because it improves the loading speed for sites that support HTTPS by cutting out the redirection loop after the initial load. A gif on the Chromium blog illustrates this in a nice way: </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Those who are using Chrome Canary can access experiments to try it out ahead of the version 90 release. Navigate to the following URL to mark the experimental feature as enabled:</p>\n\n\n\n<p><strong><em>chrome://flags/#omnibox-default-typed-navigations-to-https</em></strong></p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>WordPress site owners will want to make sure their sites are using HTTPS in order to take advantage of the speed boost this change introduces. Fortunately, for those who haven&rsquo;t migrated over yet, the latest <a href=\"https://wptavern.com/wordpress-5-7-will-make-it-easier-to-migrate-from-http-to-https\">5.7 release makes it easy to update with the click of a button</a>. WordPress can detect if the site&rsquo;s hosting environment supports HTTPS and then offers a one-click update process via the Site Health screen. It even handles mixed content rewrites where possible, so site owners will not have to worry about having a bunch of broken links after migrating. </p>\n\n\n\n<p>Chrome 90 went into beta in mid-March. The stable release is <a href=\"https://www.chromestatus.com/features/schedule\">scheduled</a> for 20 days following beta on April 13, 2021.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Mar 2021 17:28:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"HeroPress: My Journey From Freelancer To Product Maker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3513\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:160:\"https://heropress.com/essays/my-journey-from-freelancer-to-product-maker/#utm_source=rss&utm_medium=rss&utm_campaign=my-journey-from-freelancer-to-product-maker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9826:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/03/032321-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The WordPress community is integral for its success and I can\'t thank it enough.\" /><p>Like many others in our industry, my WordPress journey started a while ago.</p>\n<p>I built my first website using GeoCities when I was 14 years old, 21 years ago (boy am I getting old). At the time I was obsessed with skateboarding, the website was for friends I used to hang out and ride around with from school. I remember how excited I felt when I could see that my website was online and I would literally show it to everyone I could, even though looking back at it now it was extremely brightly coloured and scrappy!</p>\n<p>Back then, with my family&#8217;s 56k connection, whenever I connected to the internet it would take over the landline, so I was only allowed to go online for an hour per day. So I spent the days fiddling with Front Page, just waiting for my 1 hour to upload the code and share the updates with my MIRC friends (kinda like a Stone Age version of Slack).</p>\n<p>Thatâ€™s about the time I also picked up a guitar for the first time&#8230;.</p>\n<h3>Music, business and websites</h3>\n<p>To start I borrowed a super cheap electric guitar from a friend to learn how to play, and impress a girl I liked. After playing all evening, I felt so inspired that the guitar ended up next to me while I slept in bed. It was love at first chord.</p>\n<p>Because I was so obsessed, I couldnâ€™t stop practicing and quickly I became pretty good (for a kid). So much so that I formed a band with some friends and started performing wherever we could. For the next decade, I focused on becoming the best rock musician I could.</p>\n<p>I didnâ€™t want to just play the guitar in a band that was performing at local events and school, I wanted us to go places and started treating it as a business. I began studying business by reading every book I could, which led me to take courses and become a certified business and digital consultant.</p>\n<p>During my studies, I learned WordPress and the entire Adobe suite. This was my first introduction to WordPress and it made me love designing and developing websites even more than I already did.</p>\n<p>I had fun during this time, but they were some tough years and despite all of my efforts, my band wasnâ€™t doing very well.</p>\n<blockquote><p>After everything I had put into it, I thought Iâ€™d have my own episode on MTV Cribs already!</p></blockquote>\n<p>We decided the band needed a change.</p>\n<p>We rebranded, wrote new stuff, this time in English to maximise our reach, and did an online launch using everything I learned.</p>\n<p>Within a month of the launch, my local band from a small town in Israel was signed to release an album worldwide through a British label.</p>\n<p>We were stoked!</p>\n<p>We decided to drop everything, come to the UK and start touring Europe. And so we did!</p>\n<p>Starting from scratch, we began building our audience at small venues and pubs, while really pumping things up online, using WordPress to build our website and promote!</p>\n<p>We went from playing to sometimes less than 10 people to hundreds, then thousands. Playing with some of the artists we grew up listening to.</p>\n<p>It was pretty amazing, but I was still broke surprisingly!</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2021/03/image1.jpg\"><img /></a></p>\n<p>Luckily though, from my efforts in promoting the band using our website and designs on social media, my work began to get noticed and I started to attract clients.</p>\n<p>With little to no money in my bank account, I started freelancing out the back of our tour van and built clients websites while touring Europe. Free McDonalds WiFi became my best friend and no matter where we went, there was always one nearby.</p>\n<p>While I drew in more clients and started generating revenue for myself, unfortunately my band ended up splitting up. It was unavoidable and in the end, it was the best thing that could have happened to me (even though it was devastating at the time).</p>\n<p>I then thought, â€œyou know what, Iâ€™m going to start taking this freelancing thing seriously.â€</p>\n<blockquote><p>I started building my own business, using my rediscovered passion for the web and WordPress in particular.</p></blockquote>\n<p>As I got deeper into building websites, I began to insert myself more into the WordPress community, which filled the void of being â€œthe band guyâ€. As my time now wasnâ€™t being taken up by touring, I employed my first designer and this is where my agency took off.</p>\n<p>We managed to pull in 6 figures within the first year, and we kept growing!</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2021/03/image2.jpg\"><img /></a></p>\n<p>Within a few years, my agency grew to 12 employees. As I acquired more clients, I realized there was something holding me back.</p>\n<h3>From Agency To Product Maker</h3>\n<p>As we began dealing with more and more clients day-to-day, it became blindingly apparent that we simply did not have the correct tools to deal with the volume efficiently.</p>\n<p>So, I went on the hunt for a platform or tool that could help organize and deal with client requests quickly and easily. We already had a ticketing system in place, while using emails, phone calls and face to face meetings, but it was just all a mess.</p>\n<p>There are solutions to the problems of project management BUT I struggled to find a purely dedicated platform that was for a web design agency.</p>\n<blockquote><p>I arranged a meeting with my team and we decided, letâ€™s just build our own solution.</p></blockquote>\n<p>We had the designers and developers to make it happen, so&#8230;we did! We developed a simple WordPress plugin that we could use to take requests from our clients across all of their websites, and after it was implemented, it worked like a dream.</p>\n<p>Being the person I am though, I didnâ€™t stop there. I thought, â€œother people should be using thisâ€ and thatâ€™s where my product, Atarim, was born. I reached out to the WordPress community wherever I could and got a bunch of beta testers to try it out with their own clients.</p>\n<p>The feedback was so positive that we developed the plugin even further and started charging monthly and annual plans for other agencies and freelancers to start using it. We are now a fully fledged agency management platform serving thousands of freelancers and agencies and helped deliver tens of thousands of website projects. In just short of two years.</p>\n<p>Now we only deal with a couple of legacy clients who have been with us for a while, and we use our own platform to manage them.</p>\n<h3>The WP Community</h3>\n<p>Iâ€™ve been part of the WordPress community for a long time now, and Iâ€™m humbled and honored to say that without it, my product would not be where it is today.</p>\n<p>Before COVID, I was a regular at every event I could get to, whether it was in London (where I live) or another country.</p>\n<blockquote><p>Iâ€™ve made some lifelong friends within the community and it has made working day-to-day an absolute blast</p></blockquote>\n<p>â€¦(obviously with some major stresses in between, but hey you arenâ€™t doing it right if you arenâ€™t stressed most of the time!).</p>\n<p>Because of COVID though, I was driven to creating our own event online. Last year we had our first and we are currently gearing up for the second one to go live very soon!</p>\n<p>The Atarim Web Agency Summit was born out of love for the WordPress Community. An online event that spans 4 days where we can all come together and listen to some of the greatest minds in our industry talk about their craft and how we can improve our agencies and freelance businesses.</p>\n<p>We managed to develop the summit into the biggest online event in the WordPress space and it was incredibly humbling to partner with some of the largest companies and famous speakers. Companies that have products I myself have been using for years, and speakers that I used to watch on YouTube!</p>\n<p>Also, the feedback we received from our initial beta test and the feedback we continue to get from our current users, helps shape the product every single day. The WordPress community is integral for itâ€™s success and I canâ€™t thank it enough.</p>\n<p>I love that our platform is helping agencies and freelancers that are experiencing the exact same stresses and problems I was facing when growing my agency. This is what drives my team and I to continue working and evolving Atarim, until it is the only way to manage website projects.</p>\n<h3>Whatâ€™s Next?</h3>\n<p>Next, I want to make our platform accessible on any type of website, whether itâ€™s WordPress, Drupal, Shopify or built purely from custom HTML &amp; CSS. I want Atarim to be accessible to any type of agency owner and freelancer so they can implement our platform and reap the benefits.</p>\n<p>Iâ€™m continuing to build the team as our product gets more and more users, so we can up development on a weekly basis and release updates that enhance the experience for our current and bring in new users.</p>\n<p>As for me personally, Iâ€™m learning new and exciting things every day, attending courses and webinars where I can to ensure that Iâ€™m doing the best I can to steer Atarim in the right direction. Iâ€™ve been at this for nearly 2 years now, the plan is to go for another 8 years and re-evaluate from there.</p>\n<p>Iâ€™m excited for the future!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/my-journey-from-freelancer-to-product-maker/\">My Journey From Freelancer To Product Maker</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Mar 2021 08:01:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Vito Peleg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Eksell Portfolio Theme Now Available in WordPress Themes Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114120\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:197:\"https://wptavern.com/eksell-portfolio-theme-now-available-in-wordpress-themes-directory?utm_source=rss&utm_medium=rss&utm_campaign=eksell-portfolio-theme-now-available-in-wordpress-themes-directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2805:\"<p>Anders Nor&eacute;n&rsquo;s new <a href=\"https://wordpress.org/themes/eksell/\">Eksell theme</a> is now available for download from the WordPress Themes directory. Eksell was inspired by Swedish graphic designer <a href=\"http://olleeksell.se/\">Olle Eksell</a>. It arrives a year and a half after Nor&eacute;n&rsquo;s popular Chaplin theme was released.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Last week Justin Tadlock published a <a href=\"https://wptavern.com/compatibility-is-not-enough-the-eksell-wordpress-theme-creates-art-with-blocks\">preview</a> of the theme while it was still making its way through the review system. Since that time, Nor&eacute;n has added to the five block patterns he originally submitted with the theme. There are now 12 block patterns that help users create stacked galleries, calls to action, multiple columns with pullquotes, and more. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Eksell also includes a unique &ldquo;<a href=\"https://andersnoren.se/themes/eksell/blank-canvas/\">Blank Canvas</a>&rdquo; page template that only displays content added in the block editor, which Nor&eacute;n said offers a preview of what users will be able to do once Full Site Editing (FSE) is merged into core.</p>\n\n\n\n<p>The <a href=\"https://www.andersnoren.se/introducing-eksell/\">Eksell announcement post</a> is a sobering reminder of the uncertainty facing even the most experienced theme developers with changes coming later this year. Nor&eacute;n said he is not planning to update his existing 20 themes to support FSE:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>My current belief is that I won&rsquo;t update my existing themes to take advantage of Full Site Editing. Not because I don&rsquo;t buy into the vision of Full Site Editing, but because I don&rsquo;t think anyone would be well-served by six year old themes (like Hoffman) very much not built for FSE being updated to sorta-kinda support it. I would rather spend that time on themes built from the ground up to take advantage of the new tools Full Site Editing gives us.</p></blockquote>\n\n\n\n<p>Once FSE is released, Nor&eacute;n said themes not updated to support it will immediately feel outdated &ldquo;much like Classic Editor themes felt in the spring of 2019.&rdquo; Theme developers don&rsquo;t yet know what shape themes will take or how difficult it may be to update them once FSE is in core. </p>\n\n\n\n<p>Nor&eacute;n is considering updating Eksell to bridge the gap between the world before FSE and whatever themes look like after it lands in core, but reserved the right to leave it behind with the others. For the time being, it is one of the best themes around for the block editor, but it may be the last of the truly classic themes before the dawn of a new era in theming.  </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Mar 2021 01:28:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Refactoring Gutenbergâ€™s Gallery Block To Support Nested Images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114179\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:187:\"https://wptavern.com/refactoring-gutenbergs-gallery-block-to-support-nested-images?utm_source=rss&utm_medium=rss&utm_campaign=refactoring-gutenbergs-gallery-block-to-support-nested-images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4957:\"<p class=\"has-drop-cap\">Like many others, I often have pinned tabs of all sorts of things in my browser. Some of them linger there for months. Others for years, I shamefully admit. Of the handful of Gutenberg-related browser tabs I have had <a href=\"https://github.com/WordPress/gutenberg/pull/25940\">pinned since late 2020</a>, one of them finally had the sort of movement I have been waiting on. The Gallery block was finally getting the <a href=\"https://make.wordpress.org/core/2021/03/23/gallery-block-update-call-for-testing/\">much-needed refactor</a> it needed.</p>\n\n\n\n<p>A gallery is essentially a container with nested images. The concept of nested blocks has existed and has been in use for a long while now. However, the core Gallery block does not make use of this capability. This means that users have no access to existing Image block features.</p>\n\n\n\n<p><em>Want to customize the link for individual images?</em> No can do with the Gallery block. Instead, users must use Columns and drop Image blocks in. It is such a fundamentally broken part of the user experience there is little wonder that users have looked outside of core WordPress for alternative solutions. And it has been a problem since the introduction of galleries via the shortcode system in WordPress 2.5.</p>\n\n\n\n<p><em>Want to alternate styles for each image in the gallery?</em> That has traditionally been impossible too. However, when each image is an Image block, users can alternate between square and round styles, for example.</p>\n\n\n\n<img />Alternating Image block styles in a Gallery.\n\n\n\n<p>Users can even use a plugin like Editor Plus with its extended Image block styles to create a Gallery of &ldquo;image blobs&rdquo; or animate them individually.</p>\n\n\n\n<img />Individual images with &ldquo;blob&rdquo; shapes via Editor Plus.\n\n\n\n<p>This change could open some layout possibilities where users control the positioning of each item in the grid. And, why stop with images? There is no reason that core could not open the block up to other types of nesting in the future, such as videos, quotes, and more.</p>\n\n\n\n<img />Gallery of images with a quote.\n\n\n\n<p>The downside to this new feature is that it could require more work from developers who have already built on top of the Gallery block. That is why it is fundamental that they test this change now.</p>\n\n\n\n<p>Testers can see the change by switching to the <a href=\"https://github.com/WordPress/gutenberg/pull/25940\">gallery refactor branch</a> via GitHub or grab a <a href=\"https://glendaviesnz.files.wordpress.com/2021/03/gutenberg-gallery-refactor-1.zip\">ZIP file</a> of the build. It adds a new &ldquo;Gallery Refactor&rdquo; option to Gutenberg&rsquo;s Experimental setting screen, which must be enabled.</p>\n\n\n\n<p>Only newly-added Gallery blocks will use the new format. Nothing changed about it at first glance. However, by selecting an individual image, users can use the typical Image block settings. The two exceptions are the align and resize options, removed because they would break the layout. New galleries also do not work in the site editor yet.</p>\n\n\n\n<p>&ldquo;While the expectation is nothing changes in terms of output, this is a pretty major change on a technical level for a very popular block, so it&rsquo;d be a huge help to gather as much testing feedback as possible,&rdquo; wrote Glen Davies in the announcement post.</p>\n\n\n\n<p>This statement could be misleading. There are fundamental, backward-incompatible changes to the markup output with the new implementation.</p>\n\n\n\n<p>In previous iterations of the gallery, it had a wrapper container (<code>&lt;div&gt;</code>) and an unordered list (<code>&lt;ul&gt;</code>) of images. The proposed change would remove the list entirely, dropping the Image blocks as direct children of the containing element. This will break custom theme styles and potentially plugin integration.</p>\n\n\n\n<p>On a technical level, I do not see the need to change the outer markup galleries. It is only the image part of the equation that needs to change. If this is because of limitations with the <code>InnerBlocks</code> system (nested blocks feature), perhaps it is not robust enough to meet developers&rsquo; needs.</p>\n\n\n\n<p>With continual breaking changes to markup and CSS in the core block system, coding the entirety of a site&rsquo;s CSS from scratch is probably a thing of the past. This is not the first instance of such breakage and will undoubtedly be the last, a rarity in the pre-block era. The best course of action is for theme authors to leave core styles in place and extend them, even if it means some bloat for page loads. It is not a fool-proof plan, but it lightens the burden.</p>\n\n\n\n<p>Overall, I welcome the Gallery block enhancement, even it breaks a few things. It potentially opens a world of possibilities and is necessary if the project ever wants to provide end-users with anything other than super basic functionality.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 Mar 2021 17:39:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WPTavern: Ulysses 22 Adds WordPress Post Updating\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114118\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"https://wptavern.com/ulysses-22-adds-wordpress-post-updating?utm_source=rss&utm_medium=rss&utm_campaign=ulysses-22-adds-wordpress-post-updating\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1429:\"<p><a href=\"https://ulysses.app/\">Ulysses</a>, the writing app for Mac, iPad and iPhone, released <a href=\"https://blog.ulysses.app/ulysses-22/\">version 22</a> this week with support for updating WordPress posts as the headline feature. The app aims to provide a distraction-free writing experience and has offered the ability to export to WordPress for years. </p>\n\n\n\n<p>Ulysses began alpha testing the highly requested WordPress post updating feature in early February. Updating an existing post is as simple as making a change and clicking &lsquo;Publish&rsquo; again. It&rsquo;s important to note that users can only update a post from the same device where it was originally published, due to a technical issue with iCloud syncing. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The Ulysses development team is working on syncing the publishing state across devices and plans to add post updating for other services in the future. Version 22 introduces a new integration with the <a href=\"https://Micro.blog\">Micro.blog</a> service.</p>\n\n\n\n<p>One improvement to document management in the app is the ability to add color to the icons in the document library. Users now have the option to add large headers in the editor. Version 22 also includes a host of UI updates that make navigating panels and sheets easier. Check out the <a href=\"https://blog.ulysses.app/ulysses-22/\">release post</a> for a full rundown.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 Mar 2021 16:36:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: New Private Slack Channel Created for Full-Time Sponsored WordPress Contributors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114088\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:225:\"https://wptavern.com/new-private-slack-channel-created-for-full-time-sponsored-wordpress-contributors?utm_source=rss&utm_medium=rss&utm_campaign=new-private-slack-channel-created-for-full-time-sponsored-wordpress-contributors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5360:\"<p>As part of an experiment designed to improve coordination of contributor teams, WordPress has <a href=\"https://make.wordpress.org/updates/2021/03/19/experiment-coordinating-sponsored-contributor-teams/\">launched</a> a new Slack channel for full-time sponsored contributors. Josepha Haden Chomphosy, the project&rsquo;s executive director, announced the new closed Slack channel on Friday evening in a post that drew critical feedback from contributors who pushed for more clarification.</p>\n\n\n\n<p>&ldquo;2020 was filled with hardships for many of us in the WordPress community, and we saw a predictable downturn in the level of volunteer contributions,&rdquo; Haden Chomphosy said. She noted that during difficult times WordPress relies on these company-sponsored contributors to keep the project going:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In the near future, you will see a few more sponsored contributors around to make sure we are keeping up with the necessary tasks, from marketing professionals to backend developers. To assist in coordinating, I have created an experimental&nbsp;Slack&nbsp;channel for contributors who are sponsored for 32 hours or more.&nbsp;</p></blockquote>\n\n\n\n<p>Haden Chomphosy hints at more sponsored contributors being added to the pipeline but didn&rsquo;t specify where they are coming from. The announcement did not identify a specific reason for the formation of the new channel but briefly outlined its purpose as follows:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>It is primarily an opportunity for those who are contributing full-time to WordPress to gain valuable knowledge of how we lead with a global mindset and how WordPress applies open source methodologies in a broader context than software development.</p></blockquote>\n\n\n\n<p>Since the new channel is limited to full-time sponsored contributors, the enculturation process she described would exclude those who are not fortunate enough to be sponsored by a company. Traditionally, the WordPress community has worked towards transparency in decision-making as much as possible and in all aspects of development. This channel has the potential to create an imbalance between those with full-time status and those who can only volunteer part-time.</p>\n\n\n\n<p>&ldquo;It can be difficult to&nbsp;<strong>not</strong>&nbsp;start making decisions wherever there is a discussion while working on WordPress,&rdquo; WordPress core contributor Jeremy Felt commented on the post. &ldquo;In some ways, every decision made in private can make it harder for future contributors who were not able to see the conversation. We are historically (core&nbsp;team, IMO) not good about documenting the&mdash;high bandwidth, in person&mdash;decisions that happen at WordCamps and other meetups. I think we can sometimes also be not so great at more permanently documenting decisions that are made in public chats.&rdquo;</p>\n\n\n\n<p>Felt suggested WordPress consider making the channel read-only for non-participants or publish the chat log as a way to improve the documentation for private discussions.</p>\n\n\n\n<p>Joost de Valk requested the goal be more specific so participants can understand what falls within the scope of the private channel vs a discussion that should be public.</p>\n\n\n\n<p>&ldquo;I&rsquo;m honestly kind of radical about transparency and think there&rsquo;s too much secrecy already, but I also understand the need to be able to discuss without being interrupted,&rdquo; de Valk said. &ldquo;It&rsquo;s a hard balance. I wish&nbsp;Slack&nbsp;had the equivalent of &lsquo;voice&rsquo; of IRC, so we could make some of these types of channels public but not allow everyone to post in them.&rdquo;</p>\n\n\n\n<p>The most critical feedback on the announcement came from WordPress Community Deputy Timi Wahalahti, who said he doesn&rsquo;t necessarily oppose the experiment but felt strongly that it was &ldquo;a bad call to start the experiment with just notification without any prior public discussion about it.&rdquo; He also said the explanation in the announcement doesn&rsquo;t adequately justify the need for the channel.</p>\n\n\n\n<p>&ldquo;Where was this proposed and discussed?&rdquo; Wahalahti said. &ldquo;To my knowledge, WordPress as a project lives from proposals, discussions and transparency. I&rsquo;m quite sure it&rsquo;s not the intention, but the project executive director making this kind of big decision that potentially impacts the transparency without transparent proposal and discussion looks like disparaging the project principles.&rdquo; </p>\n\n\n\n<p>Wahalahti asked what kind of discussion Haden Chomphosy envisions for the channel. He suggested that since these contributors already belong to multiple teams in the project, it might be &ldquo;more important to improve the conversational connection between sponsored and volunteer contributors,&rdquo; instead of focusing on strengthening the bond between full-time sponsored contributors.</p>\n\n\n\n<p>The matter of hosting the experiment seems to be settled already but Haden Chomphosy is open to circling back to review the channel&rsquo;s efficacy after the next major release of WordPress.</p>\n\n\n\n<p>&ldquo;I will revisit the implementation post-WP5.8 to make sure it&rsquo;s useful, focused, avoiding black box decisions, and committing to transparency,&rdquo; Haden Chomphosy.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Mar 2021 19:48:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: WebARX Rebrands To Patchstack, Combines Services To Focus on WordPress Plugin and Theme Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113659\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:255:\"https://wptavern.com/webarx-rebrands-to-patchstack-combines-services-to-focus-on-wordpress-plugin-and-theme-security?utm_source=rss&utm_medium=rss&utm_campaign=webarx-rebrands-to-patchstack-combines-services-to-focus-on-wordpress-plugin-and-theme-security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5680:\"<p class=\"has-drop-cap\">In 2018, WebARX launched the first version of its security platform and grew to 3,000 users. Earlier this month, the company decided to <a href=\"https://patchstack.com/why-did-we-rebrand-from-webarx-to-patchstack/\">rebrand to Patchstack</a>. Outside of customers getting the name wrong, the company had grown beyond its original SaaS product, providing other services like PlugBounty, an open-source bug-hunting platform. Earlier this year, they also acquired ThreatPress, a WordPress security service provider. Combining the three created an opportunity to relaunch the brand.</p>\n\n\n\n<p><a href=\"https://patchstack.com/\">Patchstack</a> is a website security company. Instead of focusing directly on the core WordPress software, it dives into the world of third-party extensions. For WordPress, that means monitoring and patching vulnerabilities in plugins, themes, and any other components users might install. The service&rsquo;s primary audience includes developers and digital agencies. It helps them to identify issues and provides almost real-time patching to eliminate threats.</p>\n\n\n\n<p>Oliver Sild, Patchstack founder and CEO, already had the PlugBounty idea back in 2018. &ldquo;I realized it&rsquo;s impossible to tackle the security issues in the WordPress ecosystem if we don&rsquo;t have a big and strong community behind security as there is behind plugin/theme developers. I created a platform where security researchers can quickly put together a detailed security report for any WordPress plugin and which then will be delivered to the plugin developer.&rdquo;</p>\n\n\n\n<p>The new <a href=\"https://patchstack.com/red-team/\">Patchstack Red Team</a> was what was previously the PlugBounty project. His company and other WordPress ecosystem members contribute to the &ldquo;prizepool,&rdquo; cash paid out monthly to the top security researchers based on scores from their contributions. All findings are also made publicly available for free through the <a href=\"https://patchstack.com/database/\">Patchstack Database</a>.</p>\n\n\n\n<p>&ldquo;We manage the triage process by following a strict responsive disclosure policy and make sure the information reaches the right person and that the vulnerability will get properly fixed,&rdquo; said Sild.</p>\n\n\n\n<p>Patchstack had already kept an internal database to compare customer software versions. After adding PlugBounty to the mix, it needed a public database to give credit to the community of security researchers.</p>\n\n\n\n<p>&ldquo;We had discussions with different database vendors in the ecosystem, but the vision really clicked with ThreatPress,&rdquo; said Sild. &ldquo;The founder of ThreatPress also joined our team and is now running the Patchstack Database and Patchstack Red Team operations. Patchstack Database will be providing information about security vulnerabilities in the WordPress ecosystem and will remain free to use for the public. We also have API which hosting companies can use to notify their customers about vulnerabilities within the websites.&rdquo;</p>\n\n\n\n<p>Sild said that approximately 95% of security vulnerabilities in the WordPress ecosystem are from third-party code. &ldquo;The best thing you could do is making sure you have your websites updated,&rdquo; he said when asked about the low-hanging fruit that any site owner could take care of.</p>\n\n\n\n<img />Oliver Sild, Patchstack founder and CEO.\n\n\n\n<p>&ldquo;The second big issue is the pirated and nulled plugins &mdash; keep in mind that if you found a premium plugin/theme for free, then there is a reason behind this,&rdquo; he said. &ldquo;It&rsquo;s a trap many people fall into, and without their knowledge, they infect their own website with malware and backdoors. And how can I not mention passwords? Please use password management tools such as LastPass, KeePass, and try to enable two-factor authentication on all your accounts.&rdquo;</p>\n\n\n\n<p>Free versions of commercial plugins and themes that are secure and up to date are possible to find. However, the average end-user would have no way of knowing if that was the case.</p>\n\n\n\n<p>Patchstack is a SaaS product. Once users create an account through its system, it will guide them to connect their website with the Patchstack WordPress plugin.</p>\n\n\n\n<p>&ldquo;Once the website is connected, it sends environment details (plugin, theme, core, PHP, etc. versions) to Patchstack,&rdquo; said Sild. &ldquo;Patchstack then compares all the versions with known security issues and notifies the user if outdated/vulnerable code is detected.&rdquo;</p>\n\n\n\n<p>Patchstack has different security modules, which can be enabled or disabled from the settings screen. One that is on by default is WordPress Virtual Patches. This feature detects if a vulnerable plugin is in use on the site and sends virtual patches immediately.</p>\n\n\n\n<p>The service has a cloud-based dashboard, allowing users to access details for all of their sites in one place.</p>\n\n\n\n<img />Patchstack dashboard.\n\n\n\n<p>&ldquo;Patchstack allows you to create custom security alerts and send them on emails and Slack channels when vulnerable or outdated plugins are detected,&rdquo; said Sild. &ldquo;It provides a central overview on all the different security issues across an unlimited number of sites, and you can export a monthly PDF report for each website if needed. Additionally, to how many vulnerabilities and security issues you have on your websites &mdash; the Patchstack dashboard is also telling you when any of the vulnerable plugins/themes on your websites have been attacked, and you&rsquo;ll have granular details about each threat that has been blocked.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Mar 2021 18:36:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Gutenberg Times: Building Forms with Blocks, Work w/ Blocks via GraphQL API,  and more â€“ Weekend Edition #163\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17282\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://gutenbergtimes.com/weekend-edition-163/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16804:\"<p>Howdy, </p>\n\n\n\n<p>It&#8217;s another month, until we know if the Full-site editing experience is good enough for the merge into core. It still has many moving parts that need to fit neatly together to make it a good user experience and allow site owners to design their site within the boundaries of their block-based theme. </p>\n\n\n\n\n\n<p>Discover two plugins to build forms with the editor and read two articles  on how to work with blocks in decoupled (also called headless) WordPress via GraphQL. Some developers might find it as exciting as I do. </p>\n\n\n\n<p>Enjoy the plugins shared and check out the upcoming WordPress events. </p>\n\n\n\n<p>Yours ðŸ’•<br />Birgit </p>\n\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<p><strong>Gutenberg team released version 10.2 of the plugin. </strong><br /><a href=\"https://make.wordpress.org/core/2021/03/17/whats-new-in-gutenberg-10-2-17-march/\">Release notes by Bernhard Reiter</a><br />WPTavern post: <a href=\"https://wptavern.com/gutenberg-10-2-adds-spacers-to-navigation-lists-lets-users-categorize-template-parts-and-introduces-scoped-patterns\">Gutenberg 10.2 Adds Spacers To Navigation Lists, Lets Users Categorize Template Parts, and Introduces Scoped Patterns</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> shared <a href=\"https://make.wordpress.org/core/2021/03/16/high-level-feedback-from-the-fse-program-march/\"><strong>high level feedback from the FSE Program.</strong></a></p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/test/2021/03/09/fse-program-testing-call-3-create-a-fun-custom-404-page/\">3rd Call for Testing</a> is only open until March 23, 2021. If you have about 20 minutes, <a href=\"https://make.wordpress.org/test/2021/03/09/fse-program-testing-call-3-create-a-fun-custom-404-page/\"><strong>build a fun 404 page</strong> via the new Site Editor</a> in WordPress. <strong>Anne McCarthy</strong> has some very details instructions. Please share your experience as a comment on the post. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Monday started with <a href=\"https://news.wpbuilds.com/issues/154/\"><strong>This Week in WordPress live show #154</strong></a>, a podcast by <strong><a href=\"https://twitter.com/wpbuilds\">Nathan Wrigley</a></strong> and <strong><a href=\"https://twitter.com/wp_paullacey\">Paul Lacey</a></strong>. This week <strong>Anne McCarthy</strong> and <a href=\"https://twitter.com/jcasabona\"><strong>Joe Casabona</strong> </a>were on the show as guests, and they covered the new features in WordPress 5.7 and more Full-Site Editing. <a href=\"https://www.youtube.com/watch?v=GUrJHhv1InQ\">Head on over to YouTube</a>!</p>\n\n\n\n\n<p> <a href=\"https://gutenbergtimes.com/podcast/changelog-40-full-site-editing-rollout-gutenberg-10-2-farewell-to-mark-uraine/\"><strong>Episode #40</strong> is now available</a>!</p>\n\n\n\n<p> <strong>Subscribe to theÂ <a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>Â podcast </strong><br />ðŸŽ™ï¸Â <a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>Â |Â <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>Â |Â <a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>Â |Â <a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>Â |Â <a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>Â |<br />ðŸŽ™ï¸Â <a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>Â |Â <a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>Â |Â <a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>Â |Â <a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>Â </p>\n\n\n\n<img />Review by <a href=\"https://twitter.com/Peter_Ingersoll\"><strong>Peter Ingersoll</strong></a> on <a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>\n\n\n\n\n<h2>Plugins for the Block Editor</h2>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/formality/\"><strong>Formality</strong></a> is an all-in-one WordPress form plugin for the block editor. <a href=\"https://twitter.com/michelegiorgi\"><strong>Michele Giorgi</strong></a>, who built it for fun and <em>&#8220;because he hates the gym.&#8221;</em> I definitely can relate to the sentiment, although, I get cranky when I skip our lunch runs for too many days. The plugin comes with 12 blocks that include usual form elements, multi-steps layout, and ratings. You&#8217;ll also find 24 templates with backgrounds from Unsplash and corresponding color palettes. For developers, there are hooks and filter to extend it for your needs. <strong><a href=\"https://twitter.com/benswrite\">Ben Townsend</a></strong> of LayerWP reviewed it on<a href=\"https://www.youtube.com/watch?v=NjnDb_4bXeM\"> YouTube.</a></p>\n\n\n\n<p class=\"has-small-font-size\">ðŸŒ <a href=\"https://formality.dev/\">Website</a> | <a href=\"https://github.com/michelegiorgi/formality\">GitHub</a> | <a href=\"https://gist.github.com/michelegiorgi/56fe4489b922cf2af4704b79d4f56bb6\">Gist</a> | <a href=\"https://wordpress.org/plugins/formality/\">WPRepo</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><a href=\"https://wordpress.org/plugins/forms-gutenberg/\"><strong>Gutenberg Forms</strong></a> is another block editor only plugin to create forms for your page and post. The author, <strong><a href=\"https://twitter.com/m_munirkamal\">Munir Kamal</a></strong>, also created add-ons for <a href=\"https://wordpress.org/plugins/guten-forms-mailchimp/\">Mailchimp</a>, <a href=\"https://wordpress.org/plugins/guten-forms-mailpoet/\">Mailpoet</a> and <a href=\"https://wordpress.org/plugins/guten-forms-akismet/\">Akismet</a>. All his code it open-source, and maybe he inspires you to create your special integration as well. You can also read <a href=\"https://wptavern.com/build-forms-via-the-block-editor-with-gutenberg-forms\">Justin Tadlock&#8217;s review</a> from last summer</p>\n\n\n\n<p class=\"has-small-font-size\">ðŸŒ  <a href=\"https://docs.gutenbergforms.com\">Docs</a> | <a href=\"https://wordpress.org/plugins/forms-gutenberg/\">WPRepo</a> | <a href=\"https://gutenbergforms.com/\">Website</a> | <a href=\"https://github.com/gutenberghub/gutenberg-forms\">GitHub</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The plugin <a href=\"https://wordpress.org/plugins/full-screen-galleries/\"><strong>Full Screen Galleries</strong></a> by <a href=\"https://twitter.com/NickHalsey_\"><strong>Nick Halsey</strong></a> creates an automatic full-screen slideshow mode for images on your page or post. It works on both, block editor and classic editor. It&#8217;s designed to work with any theme out of the box. See the plugin page for code snippets to add custom styling and a launch button. It&#8217;s a focused way to showcase travel photos or art work. This week, <strong><a href=\"https://twitter.com/justintadlock\">Justin Tadlock</a></strong> of WPTavern published <a href=\"https://wptavern.com/automatically-create-image-slideshows-with-the-full-screen-galleries-plugin\">a review</a>.</p>\n\n\n\n<p class=\"has-small-font-size\">ðŸŒ <a href=\"https://wordpress.org/plugins/full-screen-galleries/\">WPRepo</a> | <a href=\"https://celloexpressions.com/photography/2020/02/raindance-ranch-winter-2020/\">Demo</a> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://wordpress.org/plugins/k2-blocks/\">K2 Blocks </a></strong>is one of the Block collections extending the core block editor with additional blocks. The most interesting to me would be the Counter and Time blocks as well as the  Magic Image block. The <a href=\"https://twitter.com/PookiDevsTech\"><strong>PookiDevs</strong></a> team from Islamabad <a href=\"https://pookidevs.com/2021/02/23/using-k2-blocks-to-make-gutenberg-blocks/\">posted screenshots and more details.</a></p>\n\n\n\n<p class=\"has-small-font-size\">ðŸŒ <a href=\"https://wordpress.org/plugins/k2-blocks/\">WPRepo</a> | <a href=\"https://k2plugins.com/\">Website</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2>Gutenberg for Developers</h2>\n\n\n\n<p><a href=\"https://twitter.com/rmccue\"><strong>Ryan McCue</strong></a>, director of product at the agency HumanMade, shared some experimentation with the navigation components in Gutenberg and created a new WP-Admin navigation bar outside the editor. He &#8220;<em>based this stand-along plugin on existing work in WooCommerce.&#8221;</em> You can <a href=\"https://twitter.com/rmccue/status/1369312175513296908\">follow the discussion on Twitter</a>.. The <a href=\"https://github.com/rmccue/experimental-navigation\">code is available on GitHub</a> for your perusal.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/JustinFerriman\">Justin Ferriman</a></strong> of LearnDash shared how they leveraged Gutenberg to make a <a href=\"https://www.learndash.com/certificate-builder-has-arrived/\">Certificate Builder in LearnDash</a>. You can see short demos on how it works. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>As an alternative to <strong><a href=\"https://twitter.com/jasonbahl\">Jason Bahl</a>&#8216;s</strong> work with <a href=\"https://www.wpgraphql.com/2021/03/09/gutenberg-and-decoupled-applications/\">Gutenberg and WordPress decoupled</a> sites a couple of weeks ago, <a href=\"https://twitter.com/losoviz\">Leo Losoviz</a> published <a href=\"https://graphql-api.com/blog/proposing-a-new-approach-for-gutenberg-and-decoupled-applications/\">his proposal on how to handle blocks with a decoupled WordPress</a> and GraphQL site. The two different approaches are a deep dive into both plugins that provide GraphQL APIs for WordPress. </p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/wp-graphql/\">WPGraphQL</a>  and <a href=\"https://github.com/GraphQLAPI/graphql-api-for-wp\">GraphQL API for WordPress</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Speaking of Headless or Decoupled: <strong><a href=\"https://twitter.com/3binco\">Michal Trykoszko</a></strong> started a three-part series of blog posts: <strong>Headless WordPress Gutenberg &amp; NextJS </strong>with <a href=\"https://trykoszkom.medium.com/headless-wordpress-gutenberg-next-js-part-1-3-creating-a-block-with-react-e8d69e8460d4\">Creating a block with React</a>.</p>\n\n\n\n<h2>WordPress Events</h2>\n\n\n\n<p><strong>March 23 &#8211; 26th, 2021</strong><br /><a href=\"https://atarim.io/summit/\"><strong>Atarim Web Agency Summit</strong></a></p>\n\n\n\n<p><strong>March 24, 2021 &#8211; 10 AM EDT / 14:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/learn-wordpress-discussions/events/276945655/\">Intro to Publishing with the Block Editor</a></strong> (<strong><a href=\"https://www.meetup.com/learn-wordpress-discussions/events/276945655/\">Demo + Discussion group</a></strong>) with contributors of Learn. WordPress program</p>\n\n\n\n<p><strong>March 26, 2021 &#8211; 10 AM EDT / 15:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/learn-wordpress-discussions/events/277036759/\">Creating and Registering Block Patterns (Demo + Discussion group)</a></strong> with Daisy Olsen from via Learn WordPress program<br />If you want to come prepared with questions, watch the workshops <a href=\"https://learn.wordpress.org/workshop/intro-to-block-patterns/\">Intro to Block Patterns</a> and <a href=\"https://learn.wordpress.org/workshop/registering-block-patterns/\">Registering Block Patterns</a></p>\n\n\n\n<p><strong>April 6, 2021 9 am EDT / 14:00 UTC</strong><br /><a href=\"https://www.youtube.com/watch?v=jAIlY3lTAos\"><strong>WPCafe: Building the Twenty Twenty-One</strong> </a>with Caroline Nymark and Mel Dwan-Choyce, live on YouTube</p>\n\n\n\n<p><strong>April 15, 2021 6:30 pm EDT / 23:30 UTC</strong><br /><strong><a href=\"https://www.meetup.com/SF-WordPress-Users/events/277019024/\">South Florida Mega Meetup</a></strong> &#8220;New Site Builder Edition&#8221;</p>\n\n\n\n<p><strong>April 15 &#8211; 17, 2021</strong><br /><a href=\"https://centroamerica.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp CentroamÃ©rica 2021</a></p>\n\n\n\n<p><strong>April 27 and 28th</strong><br /><a href=\"https://www.godaddy.com/pro/expand\"><strong>Expand 2021</strong></a> &#8211;&nbsp;a virtual event hosted by GoDaddy that brings the web design and developer community together to share ideas and experiences, make connections and support each other.</p>\n\n\n\n<p><strong>May 24 &#8211; 27. 2021</strong><br /><strong><a href=\"https://wordsesh.com/\" target=\"_blank\" rel=\"noreferrer noopener\">WordSesh 2021</a> </strong><br /><a href=\"https://wordsesh.com/speak/\">Speaker submissions are </a>due on March 29! </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On the<a href=\"https://wpcalendar.io/online/\">&nbsp;<strong>Calendar for WordPress Online Events</strong></a> you&#8217;ll find a list of the upcoming WordPress Meetups, around the world, including WooCommerce, Elementor, Divi Builder and Beaver Builder meetups.</p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p></p>\n\n\n\n<p><em>Featured image: Photo by&nbsp;<a href=\"https://unsplash.com/@glencarrie?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Glen Carrie</a>&nbsp;on&nbsp;<a href=\"https://unsplash.com/s/photos/lego-blocks?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Unsplash</a></em></p>\n\n\n\n<p></p>\n\n\n\n\n<h3>Thank you to our in-kind Sponsors!</h3>\n\n\n<div id=\"wp-sponsors\" class=\"clearfix grid\"><div class=\"sponsor-item default current-sponsors\"><a href=\"https://pantheon.io/?utm_medium=OnlineAdvertising&utm_source=GutenbergTimes&utm_content=Homepage&utm_campaign=Home\" target=\"_blank\" rel=\"nofollow\"><img width=\"300\" height=\"111\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2018/03/Sponsored-by-Pantheon.png?fit=300%2C111&ssl=1\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Sponsored by Pantheon\" /></a></div><div class=\"sponsor-item default current-sponsors\"><a href=\"https://www.paulisystems.net/wordpress-consulting\" rel=\"nofollow\"><img width=\"300\" height=\"77\" src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2018/07/cropped-paulisystems-trademark-no-tagline.gif?fit=300%2C77&ssl=1\" class=\"attachment-medium size-medium wp-post-image\" alt=\"Pauli Systems\" /></a></div><div class=\"sponsor-item default current-sponsors\"><a href=\"https://brand24.com/\" target=\"_blank\" rel=\"nofollow\"><img width=\"300\" height=\"64\" src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/02/logo_brand24_black_small.png?fit=300%2C64&ssl=1\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" /></a></div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 20 Mar 2021 18:18:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Upcoming Changes and Steps for an Overhauled WordPress Theme Review System\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=112892\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/upcoming-changes-and-steps-for-an-overhauled-wordpress-theme-review-system?utm_source=rss&utm_medium=rss&utm_campaign=upcoming-changes-and-steps-for-an-overhauled-wordpress-theme-review-system\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6299:\"<p class=\"has-drop-cap\">On Wednesday, WordPress executive director Josepha Haden Chomphosy posted <a href=\"https://make.wordpress.org/themes/2021/03/17/next-steps-on-themes-and-reviews/\">the next steps forward</a> for themes and reviews for the official theme directory. In the post, she describes the tools and types of access the Themes Team needs. She also laid out some other goals for the system. The timeline is to have much of this in place by early 2022.</p>\n\n\n\n<p>Two months ago, <a href=\"https://wptavern.com/upsells-barriers-and-the-end-beginning-of-the-quality-free-themes-era\">things were coming to a head</a>. Project lead Matt Mullenweg saw much of what we have all been seeing. Creative contributions to the free directory were few and far between, many of the submissions merely being stripped-down &ldquo;lite&rdquo; themes with commercial interests.</p>\n\n\n\n<p>There was some disagreement on <em>why</em> the directory was not producing the high-quality projects users should expect from an official source. Mullenweg cited the rules and update mechanism as problem areas.</p>\n\n\n\n<p>However, others like Joost de Valk, the CPO of Yoast, said the reality of the situation is that money is now a part of the equation. Producing high-quality products, maintaining them, and supporting them is not sustainable without the financial resources in place. Because WordPress.org provides no path for developers to make money directly, upsell-motived themes are the result. Eric Karkovack expanded upon this in his piece for Speckyboy, <a href=\"https://speckyboy.com/are-high-quality-free-wordpress-themes-a-thing-of-the-past/\">Are High-Quality Free WordPress Themes a Thing of the Past?</a></p>\n\n\n\n<p>Some of the Themes Team members disagreed that the rules were the problem. At the heart of the team&rsquo;s handbook is the idea that themes should be GPL-compatible, secure, and not break things.</p>\n\n\n\n<p>The problem is not necessarily specific guidelines but the process. Mullenweg wanted to switch to a post-commit strategy that would see themes move into the directory more quickly. The goal is to be a little more like the plugin directory and let users guide others through the star-rating review system.</p>\n\n\n\n<p>However, themes and plugins are different beasts. Themes must follow some standard patterns and do some specific things to actually work. The best way to make that happen is with automated tools performing the grunt work that humans have been doing for the past decade. Many guidelines could become a line of code in a script. Each new line would lighten the burden on volunteers.</p>\n\n\n\n<p>The Themes Team agreed with his assessment of the theme quality. However, some did feel like the theme system was the oft-forgotten stepchild who received all the hand-me-downs from its preferred sibling, the plugin directory. They needed resources from the community to drive any sort of change. Team members had little power outside of their gatekeeping responsibilities and were short on volunteers.</p>\n\n\n\n<h2>Changing Hearts and Minds</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">Haden Chomphosy <a href=\"https://make.wordpress.org/themes/2021/02/24/meeting-notes-matt-josepha-and-theme-review-team/\">published notes on the meeting</a> in February. The post detailed the ideas and what took place. However, much of it seemed vague in terms of actionable items. It was the groundwork phase.</p>\n\n\n\n<p>In a private discussion with one of the Themes Team reps, they said the meeting was productive not because of action taking place but through the changing of outlooks. More of the team reps warmed to the idea of reducing the requirements and moving forward with a change. The meeting was more about winning hearts and minds, which was a necessary first step.</p>\n\n\n\n<p>This changed outlook did not mean throwing caution to the wind and flipping the switch overnight. The team wanted to set some guardrails in place, particularly surrounding high-priority issues like proper licensing.</p>\n\n\n\n<p>&ldquo;In the meeting, we discussed the need to change the review process,&rdquo; said team rep Ari Stathopoulos. &ldquo;All guidelines have a reason they exist. They were all added after some things got abused. But the process followed had an unfortunate side-effect; the rules that were added to avoid abuse by a few bad apples are the same rules that hinder innovation and deter people from submitting a theme in the repository.&rdquo;</p>\n\n\n\n<p>He brought up the universal rules of not doing evil things, disrespecting others, or abusing the system. Citing them as the foundation of what the guidelines should be. &ldquo;But then, of course, everyone has a different definition of evil, disrespect, and abuse, so something a bit more verbose may be needed but obviously not as verbose as the dozens upon dozens of guidelines we currently have.&rdquo;</p>\n\n\n\n<h2>The Next Steps: Tools and a User-First Strategy</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">The first goal is to have access to a functional meta environment for testing. One of the team reps currently has this. However, others would need access in the long term. Moderator tools are also on the list for reviewers, likely similar to what the Plugin Review Team has.</p>\n\n\n\n<p>Those are some of the baseline things. The next item will be more automation. Dion Hulse is currently working on automated security checks, which should help with a consistent problem area. Steve Dufresne is working on an automated code-scanning solution.</p>\n\n\n\n<p>One idea for a post-commit strategy is flagging themes with &ldquo;quality tags.&rdquo; These include items like Gutenberg-ready, security, last updated, translation-ready, and accessibility. It is not clear how this system would work, but it could be a way to surface themes in the directory that meet standards. <em>Perhaps a new featured-theme algorithm should be in the works?</em></p>\n\n\n\n<p>The last piece of the proposal introduces the concept of a yes/no voting mechanism for end-users. These would be &ldquo;trust tags&rdquo; that allowed users to mark themes as updated, visually broken, and more. The goal is to hand over much of the gatekeeping responsibility to users, putting them in the driver&rsquo;s seat of what they want out of the theme directory.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Mar 2021 16:16:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"WPTavern: Gutenberg 10.2 Adds Spacers To Navigation Lists, Lets Users Categorize Template Parts, and Introduces Scoped Patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113984\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:295:\"https://wptavern.com/gutenberg-10-2-adds-spacers-to-navigation-lists-lets-users-categorize-template-parts-and-introduces-scoped-patterns?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-10-2-adds-spacers-to-navigation-lists-lets-users-categorize-template-parts-and-introduces-scoped-patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6487:\"<p class=\"has-drop-cap\">Yesterday, version 10.2 of the <a href=\"https://make.wordpress.org/core/2021/03/17/whats-new-in-gutenberg-10-2-17-march/\">Gutenberg WordPress plugin landed</a>. Users can now add a Spacer block between Navigation items, categorize custom template parts, and pick between patterns when inserting the Query block.</p>\n\n\n\n<p>The user experience continues to improve in some areas. The Media &amp; Text block, one of the few holdouts, can now be <a href=\"https://github.com/WordPress/gutenberg/pull/29415\">transformed into Columns</a>. The transformation results in two columns with the media and the text separated. This is a one-way transform, however. It is a necessary enhancement for users who write out their text column to realize they can only add uploaded media instead of something like a YouTube embed to the Media &amp; Text block. Making a quick switch over to Columns solves the issue.</p>\n\n\n\n<p>The &ldquo;Start writing or type / to choose a block&rdquo; prompt only <a href=\"https://github.com/WordPress/gutenberg/pull/28275\">appears for the first empty paragraph</a> when there are subsequent paragraphs. It is a trivial change, but it removed a minor annoyance.</p>\n\n\n\n<p>The development team squashed 30 bugs for Gutenberg 10.2. They also continued work toward improving experimental features such as the site editor, global styles, and block-based nav menus. Full Site Editing is shaping up, but it will still be a while before we know whether it will be ready for inclusion in WordPress 5.8.</p>\n\n\n\n<p>As I write this post, I am also doing so in a broken editor.  Gutenberg 10.2, yet again, changed either its markup or CSS, which means I will have to do some digging to find out why all of our paragraphs are misaligned in the editor.  But, that is a job for tomorrow.  This should be a theme-specific fix and an isolated issue.</p>\n\n\n\n<h2>Nesting Spacer Blocks Within Navigation Lists</h2>\n\n\n\n<img />Inserting a Spacer into a Navigation list.\n\n\n\n<p class=\"has-drop-cap\">In one of the worst ideas the Gutenberg project has brought us, users can now <a href=\"https://github.com/WordPress/gutenberg/pull/29133\">insert spacer blocks</a> between horizontal Navigation block items. And they can increase or decrease the space in pixels. The idea of spacing is not in and of itself bad, but the solution used is.</p>\n\n\n\n<p>As far as I know, the <code>&lt;div&gt;</code> tag is not allowed as a direct child of <code>&lt;ul&gt;</code>. That is where <code>&lt;li&gt;</code> elements go. Maybe it is my old-school HTML upbringing, but it does not feel right to throw other things in the mix. List items are the children of lists.</p>\n\n\n\n<p>Fortunately, there are solutions for this sort of horizontal spacing that have been available to web designers for decades: margin and padding.</p>\n\n\n\n<p>The Spacer block has never felt right since it was introduced into Gutenberg. I always assumed it was an unfortunate stopgap solution for vertical spacing until we got proper margin and padding block options. I never imagined we would find new and inventive ways to use it for defiling a site&rsquo;s markup.</p>\n\n\n\n<h2>Template Part Categories</h2>\n\n\n\n<img />Selecting an area for a template part.\n\n\n\n<p class=\"has-drop-cap\">Users can now <a href=\"https://github.com/WordPress/gutenberg/pull/29159\">save template parts to a specific category</a> or &ldquo;area,&rdquo; as they are called in the site editor UI. In <a href=\"https://wptavern.com/gutenberg-10-1-enhances-reusable-blocks-updates-social-icons-spacing-options-and-normalizes-image-block-toolbar\">Gutenberg 10.1</a>, the development team introduced a new categorization system for theme authors that would automatically place template parts into the Header, Footer, Sidebar, or General categories. The same system is now open for user-created template parts.</p>\n\n\n\n<p>When saving a template part via the site editor, users must open the &ldquo;Advanced&rdquo; block tab. There is a new &ldquo;Area&rdquo; option. The Sidebar category is missing in this release. Nevertheless, it is a welcome step toward template-part management.</p>\n\n\n\n<h2>Query Block Patterns</h2>\n\n\n\n<img />Pattern selections for the Query block in its initial state.\n\n\n\n<p class=\"has-drop-cap\">The Query block is at the heart of Full Site Editing. It will eventually be one of the primary components both developers and users interact with as they build sites.</p>\n\n\n\n<p>The development team introduced a new concept for end-users when first inserting the Query block. In the past, users saw several block variations. Now, they can <a href=\"https://github.com/WordPress/gutenberg/pull/28891\">choose between patterns</a> that are specific to the block.</p>\n\n\n\n<p>Out of the box, there are Large, Medium, and Small patterns. Users can also opt to start from a blank slate.</p>\n\n\n\n<p>For developers, this change introduces scoped patterns. It is a new layer to the Block Patterns API that should offer a ton of flexibility in the long run. While the feature only works with the Query block right now, theme and plugin authors could create predefined layouts for blocks that users can choose from in the future.</p>\n\n\n\n<p>Imagine having several different styles of post loops that you want to offer to your users. With a few lines of code, you could register each of these as selectable Query patterns.</p>\n\n\n\n<p>The new part of the API adds a <code>scope</code> argument that looks like:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>\'scope\' =&gt; [\n        \'inserter\' =&gt; false, // Whether to show in the main block inserter.\n        \'block\'    =&gt; [ \'core/query\' ] // The container block for the pattern.\n]</code></pre>\n\n\n\n<p>This is still in the experimental stage, so things could change as the feature is further developed.</p>\n\n\n\n<p>Following the core example, I created a quick Query pattern with the following code:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>add_action( \'init\', function() {\n\n	register_block_pattern(\n		\'tavern-query\',\n		[\n			\'title\'  =&gt; \'Tavern Query\',\n			\'scope\'  =&gt; [\n				\'inserter\' =&gt; false,\n				\'block\'    =&gt; [ \'core/query\' ],\n			],\n			\'content\' =&gt;\n                \'&lt;!-- wp:post-title {\"isLink\":true} /--&gt;\n				&lt;!-- wp:post-featured-image {\"isLink\":true,\"align\":\"wide\"} /--&gt;\n				&lt;!-- wp:post-excerpt /--&gt;\n				&lt;!-- wp:separator --&gt;\n				&lt;hr class=\"wp-block-separator\"/&gt;\n				&lt;!-- /wp:separator --&gt;\n				&lt;!-- wp:post-date /--&gt;\'\n		]\n	);\n} );</code></pre>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Mar 2021 22:45:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Elementor Patches XSS Vulnerabilities Affecting 7 Million WordPress Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/elementor-patches-xss-vulnerabilities-affecting-7-million-wordpress-sites?utm_source=rss&utm_medium=rss&utm_campaign=elementor-patches-xss-vulnerabilities-affecting-7-million-wordpress-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3889:\"<p>Elementor users who haven&rsquo;t updated recently will want to get on the latest version 3.1.4 as soon as possible. Researchers at Wordfence disclosed&nbsp;a set of stored Cross-Site Scripting (XSS) vulnerabilities in the plugin to its authors in February, which was partially patched at that time and additional fixes were released the second week of March. </p>\n\n\n\n<p>Wordfence summarized the vulnerabilities in a <a href=\"https://www.wordfence.com/blog/2021/03/cross-site-scripting-vulnerabilities-in-elementor-impact-over-7-million-sites/\">post</a> published yesterday, accompanied by a detailed walkthrough of how an attacker might compromise sites using Elementor:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>These vulnerabilities allowed any user able to access the Elementor editor, including contributors, to add JavaScript to posts. This JavaScript would be executed if the post was viewed, edited, or previewed by any other site user, and could be used to take over a site if the victim was an administrator.</p></blockquote>\n\n\n\n<p>Many of the plugin&rsquo;s &ldquo;elements,&rdquo; or components, accept an <code>html_tag</code>&nbsp;parameter, which was output without escaping and could be set to execute a script. A few of the vulnerable elements include the column, accordion, heading, divider, icon box, and image box.</p>\n\n\n\n<p>At the time of publishing, less than half of all Elementor installs are running on version 3.1.x, leaving millions of sites still vulnerable. Wordfence confirmed this morning that they are not currently seeing active exploits against these vulnerabilities.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>&ldquo;Due to the privileges required, we expect it to be used primarily in targeted attacks rather than widespread attempts,&rdquo; Wordfence security researcher Ram Gall said.&nbsp;&ldquo;That is, it is likely to be used for privilege escalation once an attacker has been able to get a foot in the door, rather than a complete start-to-finish exploit chain. This is going to be more of a concern for sites that have many contributor or author users, as this means a wider attack surface. The main reason this is a concern is the sheer number of installations.&rdquo;</p>\n\n\n\n<p>Gall, who discovered the vulnerabilities, described a scenario in which they are most easily exploited. A contributor on the site re-uses a password that has been in a data breach. The attacker finds that password, logs in, and adds a post with malicious code. The administrator sees the post from the contributor in the admin. Visiting that post will run the malicious JavaScript in the browser, which Gall said could infect the site with new rogue admin accounts or code to take over the site.</p>\n\n\n\n<p>Apart from a brief mention in the changelog, Elementor did not alert its users to the security issues on the product&rsquo;s blog or social media accounts: </p>\n\n\n\n<ul><li>Fix: Hardened allowed options in the editor to enforce better security policies</li><li>Fix: Removed&nbsp;<code>html</code>&nbsp;option in Lightbox module to prevent security issues</li></ul>\n\n\n\n<p>&ldquo;Elementor was very responsive initially, though they didn&rsquo;t keep us updated about the patches after the initial report,&rdquo; Wordfence representative Kathy Zant said. &ldquo;They do have a security contact listed on their site, which is always helpful. Often, security researchers have a difficult time identifying and contacting the right person with whom to share vulnerability proof-of-concepts, so we&rsquo;re always grateful when we&rsquo;re able to easily start those discussions.&rdquo;</p>\n\n\n\n<p>The latest version 3.1.4 contains the patches for these vulnerabilities, along with fixes for other less severe bugs in the plugin. Elementor users are advised to update as soon as possible to avoid the vulnerabilities being used for site takeover.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Mar 2021 17:41:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Work on the Twenty Twenty-Two Default WordPress Theme Should Already Be Underway\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113906\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:225:\"https://wptavern.com/work-on-the-twenty-twenty-two-default-wordpress-theme-should-already-be-underway?utm_source=rss&utm_medium=rss&utm_campaign=work-on-the-twenty-twenty-two-default-wordpress-theme-should-already-be-underway\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5806:\"<blockquote class=\"wp-block-quote\"><p>[The Eksell theme] does such a great job of selling a block editor-driven WordPress. It was a missed opportunity to not pair something of this quality with the block editor when WordPress 5.0 was released.</p><p>It&rsquo;s responsive! I&rsquo;m amazed this stands out as a highlight for me, but, as the official theme, Twenty Twenty-One breaks in pretty basic ways in multiple places for different screen widths. I think this visual approach is also probably more approachable as &ldquo;good design&rdquo; for the average person than Twenty Twenty-One&rsquo;s attempt at a more typographical approach&hellip;</p><cite>Daniel</cite></blockquote>\n\n\n\n<p class=\"has-drop-cap\">In hindsight, it is easy to look back at past default themes and find fault. There is always something better around the corner. However, Daniel makes some good points <a href=\"https://wptavern.com/compatibility-is-not-enough-the-eksell-wordpress-theme-creates-art-with-blocks#comment-369254\">in his comment </a>on our recent <a href=\"https://wptavern.com/compatibility-is-not-enough-the-eksell-wordpress-theme-creates-art-with-blocks\">review of the Eksell theme</a>. The theme does sell the idea of blocks to the user far more so than many others.</p>\n\n\n\n<p>It would be hard to convince me that launching a great block-ready theme with 5.0 would have been feasible, given that so much about the new block editor was changing at a lightning-quick pace. <em>But, a year or two later?</em> Probably.</p>\n\n\n\n<p>Twenty Nineteen, which launched with WordPress 5.0 and its block editor, is the worst-rated (3.5 stars) default theme in history. Twenty Twenty was a decent block-ready outing. It also happened to be forked from Chaplin, a theme built by Eksell&rsquo;s designer, Anders Nor&eacute;n. While I still believe that Twenty Twenty-One was a refreshing shift and a fun experiment at the time, my fondness for it has waned in the last few months.</p>\n\n\n\n<p>None make a convincing case for the block editor. If we are being honest, there are not that many third-party themes in the official directory making it either.</p>\n\n\n\n<p>I may have already said it thousand times, so once more will not hurt. Themes are the face of WordPress. They are often a new user&rsquo;s first introduction to our beloved platform and blogging in general. And, the default themes are the first they see.</p>\n\n\n\n<p>The defaults also have another role they need to play today. They need to showcase blocks to all the old-timers among us who have clung to the classic editor and page builders we have used over the years.</p>\n\n\n\n<p>It is no doubt a tough job working on a default theme. We have world-class developers and designers putting in the hours to create something that needs to work on millions of websites. However, part of the toughness of the job is in the process.</p>\n\n\n\n<p>Each of the last three default themes was announced in September or October of the year before a November &ndash; December release. While I am not privy to any private discussions or work that went on beforehand, the bulk of the theme-building and testing process has happened in a small window. WordPress has also forked at least the last two themes from existing projects, presumably because of the time constraints.</p>\n\n\n\n<p>In 2021, the community should expect its fourth default theme, Twenty Twenty-Two, in the block era. It is time we begin thinking about what that should be instead of waiting until the 11th hour.</p>\n\n\n\n<p>We are in mid-March. WordPress 5.9 is currently scheduled for December 2021, which should coincide with the Twenty Twenty-Two theme launch.</p>\n\n\n\n<p>By starting the research phase now, it gives us the head-start we lacked in years past. The development team would also not need to fork an existing theme. Forks are not necessarily bad, but starting early means the team can go down the from-scratch route if preferred. It is an opportunity to rethink the approach to default themes and do more community outreach before laying down the first code.</p>\n\n\n\n<p>What are the trending features this year?</p>\n\n\n\n<p>Which types of themes are most popular?</p>\n\n\n\n<p>What has the community been asking for that we have yet to deliver?</p>\n\n\n\n<p>Will this be the first block-based default theme to showcase Full Site Editing?</p>\n\n\n\n<p>There are tons of questions we should be asking, and more-seasoned designers are better suited to the task than I am.</p>\n\n\n\n<p>Like Daniel said in the comments, we are not asking for Eksell to be ported to default-theme status. However, something with that design-quality level is what the community should expect. Make us believe; make us passionate; make us want to build our sites with it.</p>\n\n\n\n<p>High-quality themes meant for public release are not built overnight. Except in the rarest cases, they are not created in a month. Client projects can often move faster because they are typically under controlled settings with fewer edge cases. Publicly-released themes do not have the same benefit because they need to handle everything users will throw at it and work alongside untold numbers of plugins. While all designers and developers have different processes and work at different paces, three months is easily the minimum amount of time to code and test a well-rounded theme for modern sites. Some of the best theme authors I know spend upwards to half a year fine-tuning their creations.</p>\n\n\n\n<p>We need research, followed by a decision about what type of theme we are building. We need an outline of the goals it should achieve and its primary audience. Rounds of mockups before the code hits a repository. A real community effort.</p>\n\n\n\n<p>Three months ago was the best time to begin planning for Twenty Twenty-Two. The second best time is today.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Mar 2021 22:20:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Post Status: Chris Hardie on WP Lookout, WordPress updates and information flows\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=81771\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://poststatus.com/chris-hardie-on-wp-lookout-wordpress-updates-and-information-flows/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2819:\"<p>Chris Hardie has been a web developer since the late 1990s. In this episode of the Post Status Draft podcast, Chris talks with Brian Krogsgard about his career as a deep generalist. Chris has worked as a writer, journalist, political candidate, and consultant, as well as a technologist and web developer. </p>\n\n\n\n<p>This conversation touches on the challenges of winding down an agency and handling clients. Chris also talks about his experiences with the Special Projects team at Automattic, running for local office, being a journalist, and now launching WP Lookout to help site owners and developers safely update WordPress websites.  </p>\n\n\n\n<h2 id=\"h-safe-wordpress-updates\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/261d.png\" alt=\"â˜\" class=\"wp-smiley\" /> Safe WordPress Updates</h2>\n\n\n\n<p>Automatic updates are great, but what if you could get critical information about potentially breaking changes to WordPress core? What if you could get notified about changes to the plugins and themes you and your clients rely on? </p>\n\n\n\n<p>WP Lookout is a new service that monitors WordPress core, plugin, and theme updates so you can apply them safely. You can subscribe to get notices about potentially breaking changes to the software you and your business depend on.&nbsp;</p>\n\n\n\n\n\n\n\n<h3 id=\"h-topics-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f517.png\" alt=\"ðŸ”—\" class=\"wp-smiley\" /> Topics mentioned in the show</h3>\n\n\n\n<ul><li><a href=\"https://chrishardie.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Chris Hardie</a> (<a href=\"https://twitter.com/chrishardie\" target=\"_blank\" rel=\"noreferrer noopener\">@chrishardie</a>)</li><li><a href=\"https://wplookout.com/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Lookout</a> (<a href=\"https://twitter.com/lookoutwp\" target=\"_blank\" rel=\"noreferrer noopener\">@LookoutWP</a>)</li><li><a href=\"https://wpspecialprojects.wordpress.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Automattic Special Projects</a></li></ul>\n\n\n\n<h3><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f44d.png\" alt=\"ðŸ‘\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/bluehost\" rel=\"sponsored nofollow\">Bluehost</a></h3>\n\n\n\n<p>Everything your website needs â€” from start-up to success story â€” is at <a href=\"https://poststat.us/bluehost\" rel=\"sponsored nofollow\">Bluehost</a>.&nbsp;Whether you\'re looking to create a website, blog, or online store, <a href=\"https://poststat.us/bluehost\" rel=\"sponsored nofollow\">Bluehost</a> will get you started with an all-in-one website platform tailored to your specific needs. Get a free domain name in your first year, free 24/7 lifetime support, and total design freedom with WordPress at <a href=\"https://poststat.us/bluehost\" rel=\"sponsored nofollow\">Bluehost</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Mar 2021 20:54:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WooCommerce Live Africa to Host First Online Meetup Event, March 18, 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113837\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"https://wptavern.com/woocommerce-live-africa-to-host-first-online-meetup-event-march-18-2021?utm_source=rss&utm_medium=rss&utm_campaign=woocommerce-live-africa-to-host-first-online-meetup-event-march-18-2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2421:\"<p><a href=\"https://www.meetup.com/woocommerce-live-africa/\">WooCommerce Live Africa</a> is hosting its first online meetup on Thursday, March 18, 2021, from 5:30 PM&nbsp;to&nbsp;7:00 PM GMT+1. The new regional group is part of the <a href=\"https://www.meetup.com/pro/woocommerce/\">WooCommerce network</a> of more than 100 meetups with nearly 30,000 members across 40 countries. Events will be focused on topics pertinent to store owners and entrepreneurs with a focus on making it easy for anyone to get started with e-commerce.</p>\n\n\n\n<p>Mary Job and Sunday Ukafia will be hosting the first event, titled &ldquo;<a href=\"https://www.meetup.com/woocommerce-live-africa/events/276460743/\">Getting Started in eCommerce</a>&rdquo; that will guide new store owners from idea to first customer. No technical knowledge is required to join the session, since it&rsquo;s aimed at absolute beginners. Topics include basic business concepts:</p>\n\n\n\n<p>1. Choosing an audience<br />2. Finding a problem to solve<br />3. Selling your product before you make it<br />4. Creating the product<br />5. Choosing an operating system<br />6. Delivering the product to your customer<br />7. Creating happy customers</p>\n\n\n\n<p>&ldquo;What inspired the new group is the zeal to help every individual succeed in their eCommerce venture, connect with Woo individuals and businesses to learn more about how they use Woo and how we can all help each other overcome challenges and succeed,&rdquo; Mary Job said.</p>\n\n\n\n<p>In Nigeria, where Job is located, many store owners are using WooCommerce but most tend to focus on selling more via social media channels. Job said she hopes the group can help merchants be as successful with their WooCommerce stores as they already are with Whatsapp, Telegram, and social media.</p>\n\n\n\n<p>&ldquo;The local entrepreneur community is pretty optimistic, despite the environmental challenges that comes with doing business in our country,&rdquo;  Job said. &ldquo;Add to that the irregular and inconsistent government policies (speaking for Nigeria alone here), can&rsquo;t speak precisely for other African nations.&rdquo;</p>\n\n\n\n<p>The organizing team plans to focus future sessions on a range of skill levels from beginner to advanced. <a href=\"https://www.meetup.com/woocommerce-live-africa/events/276460743/\">Registration</a> is free and the link to the online event will be visible after you sign up.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Mar 2021 17:39:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"HeroPress: Empowered To Make A Change\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3502\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://heropress.com/essays/empowered-to-make-a-change/#utm_source=rss&utm_medium=rss&utm_campaign=empowered-to-make-a-change\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9237:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/03/031621-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress made this world smaller, and empowered me to make a change.\" /><p>The good part; When writing this, I am working with the top companies in the WooCommerce ecosystem, partnering with creative minds, making things happen that can make a massive difference to many users, or even an essential lifeline to their business survival due to a lockdown. As a partnership manager at YITH, I also had* the privilege of traveling worldwide and attended various WordCamps and WordPress events. Iâ€™ve co-organized WordCamps, Meetups, and with 28 WooCommerce London Meetups in 2020 alone.<br />\n<small>* We are still in a local lock down due to covid at the time of writing this.</small></p>\n<p>The rubbish part; Okay, nine years ago, life was not great, my daughter passed away, and I was stuck as a restaurant owner, working hard and not making much money, plus soon after, I started a court case against my landlord. Maybe this was the year I lost most of my hair, and it also caused my flare-up of UCâ€¦ so hopefully, you get it, it was not a good time of my life, and I probably had every reason to find â€˜the bottleâ€™ more attractive.</p>\n<h3>From The Rubbish To The Good Part</h3>\n<p>When bad things happen to people, some will hide and go downhill, whereas others use this negative energy into something positive. I canâ€™t say, I fall in either camp, but having been influenced by the right people around me, decisions I made, and by chance, I was being drawn towards the latter one.</p>\n<p>Soon after our daughter died, my wife, Nihan enrolled in the open university to finish her Computer Science degree. I have massive admiration for Nihanâ€™s strong determination, and I wholeheartedly supported her in this decision. We managed to finance this with an adult learning grant and working as a chef in various local pubs.</p>\n<p>My wifeâ€™s coursework interested me a lot, and very soon, we started following the lectures together, plus extra course work I was practicing myself too.</p>\n<p>Then came the idea of affiliate commission earnings through blogging, which I started out using Joomla as a CMS platform. Creating websites was slowly becoming a passion for me, and in these first few years, I enjoyed every part of the steep learning curb tackling the basics to more advanced coding and designs.</p>\n<h3>Diving Into The Web</h3>\n<p>After reducing hours as a chef, I followed various online courses in coding and e-commerce, SEO, and online marketing. One of the training courses I signed up for was a lifetime deal for OSTraining. The lessons came in particularly useful when I applied for a job as a WordPress designer. Please note that at this time, I had heard of WordPress and used it as a blogging platform but not played with it as a designer. One of the tutors on OSTraining became my absolute savior in the next two weeks before my interview for a new WordPress job. His name is Topher, also well-known for being the founder of HeroPress.</p>\n<p>Having binge-watched various WP development topics and getting familiar with the structures, I was rather lucky to have been given the job. Still, this was only the beginning of my journey into the world of WordPress.</p>\n<p>A year later, my boss asked me whether I would consider taking over the business and clients. Together with my wife, we started a new brand and company that we then build up over the years. This path naturally leads us into a niche of working with WooCommerce in combination with Online marketing.</p>\n<blockquote><p>As I often say to people, WordPress is just one of the tools in my box, just like a carpenter canâ€™t do without a hammer.</p></blockquote>\n<p>The skill in using it efficiently comes over time and even then, there are different techniques. We all look back at projects and think: â€œouch, why did I do it that way?â€ I often hear the term â€˜imposter syndrome.â€™ I donâ€™t believe in this, as I think whoever progresses and explores is eager to learn and wants to improve. It is frankly in human nature to drive ourselves forward. WordPress has evolved in so many branches that require different skills, and thank goodness for that, or weâ€™d all be in competition. Instead, there are 100â€™s of areas of expertise, roles, and jobs that complement WordPress to make it what it is. A big part of that is each personâ€™s personal background complements their skillsets. Think about it, who you are and what you do is influenced by what you have done and learned. Cherishing this, adding your culture, language, and experience and you suddenly find yourself more than qualified. And often these are not skills or certificates you list on a CV as they might be good and also bad experiences.</p>\n<h3>Joining A Business</h3>\n<p>The next part of this chapter was my dealings with YITH. As a long-term customer and having met some of the team at WordCamp London, I got into discussions to represent them at events held in the UK. This soon went global with me attending WordCamps in 3 other countriesâ€¦ and this was the moment I realized I could do much more with my connections and create meaningful partnerships. Within a few weeks, I crafted my dream job and sent a proposal to Nando, the CEO of YITH.</p>\n<blockquote><p>It is not easy to pitch yourself with an idea hoping that someone, I never met or spoken, understands this vision.</p></blockquote>\n<p>The doubts went through my head; â€œdo I give up my business and work for the benefit of another company? What if I donâ€™t get on? After all, I met 2 out of a team of 40 only three years agoâ€¦ What do I do with my customers? Thinking of which, they have been demanding and not paying us on time. Plus, they annoy me when I want to be on holiday, not just that, they cause arguments between my wife and me. Because what is more important, family time or a site down and a business that is not earning enough money? Okay, this could work out, and I will try it for a year; if not, I can pick up my business again while my wife continues running it.â€ That was my thought process every day for monthsâ€¦</p>\n<p>Then we agreed, and I was not sure if I should be happy or not. A year later, I can only say that working for Nando at YITH has been the best choice. He has been my mentor, supporter, devilâ€™s advocate, and friend, but not a â€˜boss.â€™ He has never told me what to do, but instead, asked questions to make me realize what is achievable, or even better, simply suggests me to read a book and come to my conclusions. YITH is an organization without hierarchy based on a holacratic structure.</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2021/03/DSC5927-scaled.jpg\"><img /></a>The Yith Team\n<h3>Looking Back</h3>\n<p>I often think back to the moment my daughter passed away. She only lived for a few days, but ask any bereaved parent; it is often the thought of: â€˜what could have been.â€™ It will have been nine years, and every day, I wonder how events would have unfolded if she had survived. So, maybe her memory lives on in every decision I make and the paths I decide to take. But did I make the right decisions? I would have said yes, though only last week, my wife suggested she never really processed the events nine years ago. The path ahead will not always be straight, but whatever the next turning is, I hope I can nudge it in the right direction. After all, I have big and exciting plans ahead!</p>\n<p>Is this story helpful to someone? Maybe it is for one of two reasons.</p>\n<blockquote><p>If you struggle to change your career, you can do this, though it might take a couple of years of a transitional period.</p></blockquote>\n<p>Only looking back do I realize that each small step slowly made a difference in my life. I am no guru or dare-devil entrepreneur that will tell you how to do things. No, I am an ordinary person with dreams and aspirations, just like there are so many in the world. But as I write this, it was WordPress that made this world smaller and empowered me to make a change. Learning from someone on the other side of the world and even getting work and customers from companies and people I never met before. Feeling welcomed into the WordPress community through Meetups and WordCamps added this human dimension and confidence that I can do â€˜thisâ€™ too.</p>\n<p>For those who had a personal tragedy, I hope that I can give you hope and strength to try and put your energy into something else that can lead to more significant changes in your life. Our minds are mighty and the tiny small decisions of: â€˜if I do this then that, and if this then thatâ€™ &#8211; you see life is like a game of chess and you can influence the outcome a lotâ€¦ I accept, not always, but take it as one positive decision at a time.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2021/03/PXL_20200912_144823691.MP_-scaled.jpg\"><img /></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/empowered-to-make-a-change/\">Empowered To Make A Change</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Mar 2021 08:13:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ronald Gijsel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Automatically Create Image Slideshows With the Full Screen Galleries Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113770\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"https://wptavern.com/automatically-create-image-slideshows-with-the-full-screen-galleries-plugin?utm_source=rss&utm_medium=rss&utm_campaign=automatically-create-image-slideshows-with-the-full-screen-galleries-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2946:\"<p class=\"has-drop-cap\">Earlier today, core WordPress contributor Nick Halsey released <a href=\"https://wordpress.org/plugins/full-screen-galleries/\">Full Screen Galleries</a>, a plugin that automatically creates a full-screen slideshow when site visitors click on an image. The plugin works with all images, regardless of whether they are in a gallery block. It also supports both the classic and block editors.</p>\n\n\n\n<p>Lightbox-type plugins are a dime a dozen. It is tough to wade through them to find the perfect solution. However, sometimes the simplest solution is the way to go. Halsey&rsquo;s plugin has no settings screen, post metadata, or block options. It is plug-and-play.  The only configuration is in activating the plugin itself.</p>\n\n\n\n<p>Full Screen Galleries creates a slideshow-style overlay for all images located on a post or page. When a visitor clicks on one, the full-screen slideshow takes over the page.</p>\n\n\n\n<img />Slideshow overlay from Full Screen Galleries.\n\n\n\n<p>Halsey has a <a href=\"https://celloexpressions.com/photography/2020/02/raindance-ranch-winter-2020/\">demo page on his site</a> where potential users can see the plugin in action.</p>\n\n\n\n<p>There are more advanced options out there. Some show EXIF data, create transition effects and other types of animation, and offer a boatload of customizable settings. However, I prefer the simplicity of something that I can activate and forget. Over the years, I have come to appreciate these types of plugins more and more. They let me get back to focusing on the parts of my sites that I care about.</p>\n\n\n\n<p>Full Screen Galleries also figures out the full-sized image URL automatically. If a gallery uses thumbnail-sized images and links to the attachment page, the slideshow will still display it in full.</p>\n\n\n\n<p>Each slide outputs forward and back arrows to scroll between the images. In the top left corner is an exit button. In the top right, the plugin outputs a northeast arrow button that links to the original image. It also displays the image caption if it is available.</p>\n\n\n\n<p>For many users, this is all they need. I am particularly interested in it because it works well with classic content. Many of the sites I am involved with have years of galleries from the pre-block era.</p>\n\n\n\n<p>One of the downsides is that the plugin relies on jQuery. The plugin&rsquo;s code has a small footprint, but jQuery has grown into a bit of a beast over the years and is becoming less and less relevant with more recent features of modern JavaScript. For many WordPress sites, this may be a non-issue because their theme or some other plugin is already loading the jQuery library. This plugin will be a lightweight addition. For others who are keeping it lean, they might want to seek out alternative solutions.</p>\n\n\n\n<p>Regardless, this plugin is going into my toolbox, ready to pull out when I need it. Overall, it is a dependable version 1.0.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Mar 2021 22:41:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"BuddyPress: BuddyPress 7.2.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=317662\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://buddypress.org/2021/03/buddypress-7-2-1-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2581:\"<p><a href=\"https://downloads.wordpress.org/plugin/buddypress.7.2.1.zip\">BuddyPress 7.2.1</a>Â is now available. This is a security release. All BuddyPress installations are strongly encouraged to upgrade as soon as possible.</p>\n\n\n\n<p>The 7.2.1 release addresses 5 security issues which were reported privately to the BuddyPress team by <a href=\"https://profiles.wordpress.org/hoangkien1020/\">Kien Hoang</a>, in accordance with&nbsp;<a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">WordPressâ€™s security policies</a>:</p>\n\n\n\n<ul><li>A vulnerability was fixed that could allow a privilege escalation from a regular user to Administrator, using the BuddyPress REST API <code>buddypress/v1/members/me</code> endpoint.</li><li>A vulnerability was fixed that could allow a member to force a friendship on behalf of another member, using the BuddyPress REST API <code>buddypress/v1/friends</code> endpoint.</li><li>A vulnerability was fixed that could allow a member to read private messages in a thread they were not invited to, using the BuddyPress REST API <code>buddypress/v1/messages</code> endpoint.</li><li>A vulnerability was fixed that could allow a member to invite another member to join a group without being friends when that group restricted invites to friends only, using BuddyPress Nouveau and the BuddyPress REST API <code>buddypress/v1/groups/invites</code> endpoint.</li><li>A vulnerability was fixed that could allow a user that has just been demoted from an Administrator role to a Subscriber to add/edit/delete BuddyPress Member Types from the Administration screens introduced in the 7.0.0 release.</li></ul>\n\n\n\n<p>The BuddyPress Team also conducted a comprehensive security audit on all BuddyPress REST API endpoints, which led to:</p>\n\n\n\n<ul><li>Improving all permission methods to use a WP_Error object as the default return value.</li><li>Fixing unintended behavior allowing any member to edit their own Member Type.</li><li>Fixing unintended behavior that allowed any logged in member to list the members of a private group. </li></ul>\n\n\n\n<p>For an even deeper dive, visit theÂ <a href=\"https://codex.buddypress.org/releases/version-7-2-1/\">7.2.1 changelog</a>.</p>\n\n\n\n<p>Our deepest gratitude goes out to Kien for practicing coordinated disclosure and being extremely patient while we worked through these issues.</p>\n\n\n\n<p>Update to BuddyPress 7.2.1 today in your WordPress Dashboard, or by&nbsp;<a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the WordPress.org plugin repository</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Mar 2021 20:45:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: Attackers Continue to Exploit Vulnerabilities in The Plus Addons for Elementor Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113763\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"https://wptavern.com/attackers-continue-to-exploit-vulnerabilities-in-the-plus-addons-for-elementor-plugin?utm_source=rss&utm_medium=rss&utm_campaign=attackers-continue-to-exploit-vulnerabilities-in-the-plus-addons-for-elementor-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2911:\"<p>Last week, security researchers at Seravo and WP Charged <a href=\"https://wpscan.com/vulnerability/c311feef-7041-4c21-9525-132b9bd32f89\">reported</a> a critical zero-day vulnerability in The Plus Addons for Elementor on March 8, 2021. WPScan categorized it as an authentication bypass vulnerability:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The plugin is being actively exploited to by malicious actors to bypass authentication, allowing unauthenticated users to log in as any user (including admin) by just providing the related username, as well as create accounts with arbitrary roles, such as admin. These issues can be exploited even if registration is disabled, and the Login widget is not active.</p></blockquote>\n\n\n\n<p>It&rsquo;s important to note that this particular vulnerability affects users of the commercial version of The Plus Addons for Elementor, not the free version, and not core Elementor. </p>\n\n\n\n<p>The plugin&rsquo;s authors pushed out a partially patched version 4.1.6 after disclosure and then a second version 4.1.7 to more fully address the issue. </p>\n\n\n\n<p>Wordfence is reporting that they are still blocking attempts on sites that are using unpatched. They have blocked 1900 site takeover attempts from a specific username, blocked 1170 attempts from a specific email, and blocked 4,000 attempts over the past week. Attackers are still targeting sites that have not updated to the patched version.</p>\n\n\n\n<p>&ldquo;Evidence suggests it had been actively exploited for ~5 days before that,&rdquo;  Wordfence threat analyst Chloe Chamberland said on the <a href=\"https://www.youtube.com/watch?v=LYfg7iLbSlE\">Wordfence Live</a> show today. &ldquo;Our earliest date of compromise was March 5th that we know of so far. There was a vulnerability for a few days that nobody really knew about except for this attacker who was going out and exploiting it.&rdquo;</p>\n\n\n\n<p>Those whose sites have been exploited have seen malicious admin accounts created.  Others have experienced every URL on their sites redirecting, making it very difficult to clean. Attackers have also been installing malicious plugins called &ldquo;WP Strongs&rdquo; and &ldquo;WP Staff.&rdquo; Those who cannot access the admin dashboard will have a more difficult time removing these plugins. </p>\n\n\n\n<p>Elementor users who have the Plus Addons plugin installed are advised to update to the latest version and check for malicious plugins and files. Ideally, site owners who were subject to exploits would have a backup to restore.  Chamberland concluded the Wordfence Live broadcast today by walking users through manually cleaning up exploited sites, including replacing the wp-includes and wp-admin folders, along with standard files outside those directories. The <a href=\"https://www.youtube.com/watch?v=LYfg7iLbSlE\">recording</a> might be helpful for those who are struggling to clean up the damage.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Mar 2021 19:26:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Google Accuses Microsoft of â€œBreaking the Open Webâ€\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113773\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:163:\"https://wptavern.com/google-accuses-microsoft-of-breaking-the-open-web?utm_source=rss&utm_medium=rss&utm_campaign=google-accuses-microsoft-of-breaking-the-open-web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4506:\"<p>Just before the weekend, Google published a caustic <a href=\"https://blog.google/products/news/google-commitment-supporting-journalism/\">statement</a> on Microsoft&rsquo;s public support of Australia&rsquo;s new law that forces Google and Facebook to pay publishers for their content. The law requires the companies to negotiate licensing agreements with publishers in order to include news articles in both search and news feeds, including snippets.</p>\n\n\n\n<p>Last month, Microsoft published its <a href=\"https://blogs.microsoft.com/on-the-issues/2021/02/11/endorsement-australias-proposal-technology-news/\">endorsement</a> of the Australian proposal and stated intentions for its Bing search engine to comply. </p>\n\n\n\n<p>&ldquo;In the hunt for better ideas, Google&rsquo;s threat to boycott an entire country got our attention,&rdquo; Microsoft President Brad Smith said.</p>\n\n\n\n<p>&ldquo;Satya Nadella and I reached out to Prime Minister Morrison. It was an opportunity to combine good business with a good cause and, as we explained, even if Google wanted to leave Australia, we would stay.&rdquo;</p>\n\n\n\n<p>After negotiations, Facebook decided to simply block Australian publishers from posting and block users from sharing any news originating from the country. In a full reversal, the company <a href=\"https://www.reuters.com/article/us-news-corp-facebook/news-corp-reaches-deal-with-facebook-in-australia-idUSKBN2B72Q9\">inked a three-year agreement with News Corp</a> today, which covers The Australian national newspaper and several metropolitan papers. </p>\n\n\n\n<p>Similarly, Google did not make good on its threat to remove its search engine from Australia, reluctantly making deals with Australian publishers and News Corp a few weeks ago. The company&rsquo;s <a href=\"https://blog.google/products/news/google-commitment-supporting-journalism/\">statement</a> on Friday characterizes Microsoft&rsquo;s position and its overt contrasting with Google, as &ldquo;naked corporate opportunism&rdquo; and an attack:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We also believe that this important debate should be about the substance of the issue, and not derailed by naked corporate opportunism &hellip; which brings us to Microsoft&rsquo;s sudden interest in this discussion. We respect Microsoft&rsquo;s success and we compete hard with them in cloud computing, search,&nbsp;productivity apps, video conferencing, email and many other areas. Unfortunately, as competition in these areas intensifies, they are reverting to their familiar playbook of attacking rivals and lobbying for regulations that benefit their own interests. They are now making self-serving claims and are even willing to break the way the open web works in an effort to undercut a rival. And their claims about our business and&nbsp;<a href=\"https://blog.google/supportingnews#facts\">how we work with news publishers</a>&nbsp;are just plain wrong.</p></blockquote>\n\n\n\n<p>The historic rivalry has been reignited, as Google fired back at Microsoft&rsquo;s insinuation that the company doesn&rsquo;t support journalism and is unwilling to collaborate with publishers.</p>\n\n\n\n<p>&ldquo;Proposals that would disrupt access to the open web (such as requiring payment for just showing links to websites) would hurt consumers, small businesses, and publishers,&rdquo; Google&rsquo;s SVP of Global Affairs Kent Walker said. &ldquo;That&rsquo;s why we&rsquo;ve engaged constructively with publishers around the world on better solutions and will continue to do so.&rdquo;</p>\n\n\n\n<p>Microsoft supports Australia&rsquo;s new law as a means to rectify &ldquo;competitive imbalance between the tech sector and an independent press.&rdquo; It also gives the company a high perch from which to call out Google and Facebook as &ldquo;profitable tech gatekeepers on which businesses must advertise to reach consumers.&rdquo; Microsoft believes its endorsement spurred Google to reverse its decision in order to remain in competition for the Australian search market.</p>\n\n\n\n<p>&ldquo;Unlike Google, if we can grow, we are prepared to sign up for the new law&rsquo;s obligations, including sharing revenue as proposed with news organizations,&rdquo; Brad Smith said. &ldquo;The key would be to create a more competitive market, something the government can facilitate. But, as we made clear, we are comfortable running a high-quality search service at lower economic margins than Google and with more economic returns for the press.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Mar 2021 03:13:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: Compatibility Is Not Enough: The Eksell WordPress Theme Creates Art With Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113779\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:221:\"https://wptavern.com/compatibility-is-not-enough-the-eksell-wordpress-theme-creates-art-with-blocks?utm_source=rss&utm_medium=rss&utm_campaign=compatibility-is-not-enough-the-eksell-wordpress-theme-creates-art-with-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6218:\"<img />\n\n\n\n<p class=\"has-drop-cap\">It is easy to become jaded after reading the same old keyword-stuffed theme descriptions. After viewing the same hero-plus-three-boxes theme designs. After seeing another theme with &ldquo;block editor styles&rdquo; that utterly fails to deliver on its promise.</p>\n\n\n\n<p>As I peruse <a href=\"https://andersnoren.se/themes/eksell/\">the demo</a> of Anders Nor&eacute;n&rsquo;s latest WordPress theme, <a href=\"https://www.andersnoren.se/teman/eksell-wordpress-theme/\">Eksell</a>, I am reminded that artists still exist in the WordPress theming realm. For those familiar with his past theming work, this is not revelatory. Most of his 20+ free themes have 1,000s of active installations &mdash; <a href=\"https://wptavern.com/first-look-at-twenty-twenty-new-wordpress-default-theme-based-on-chaplain\">Chaplin even became the base of the Twenty Twenty</a> default theme.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Single post view.</div>\n\n\n\n<p>Awaiting a theme from Nor&eacute;n is almost like counting down the days until your favorite director&rsquo;s film hits the theater. You know you are going to like it before you see it. Even the worse outing is better than everything else spilling through the pipeline. Every now and then, you are greeted with something special.</p>\n\n\n\n<p>I could not wait this time. Nor&eacute;n&rsquo;s latest project is at a pitstop in the review system, so it is not <em>officially</em> available in the WordPress theme directory yet. In the meantime, anyone can still grab a ZIP file from its <a href=\"https://themes.trac.wordpress.org/ticket/96348\">Trac ticket</a> and upload it the old-fashioned way.</p>\n\n\n\n<p>Eksell is a love letter to the block editor.</p>\n\n\n\n<p>It is more than just making a few style adjustments to work around any quirks of the default block styles. It is an extension of those styles to create something unique. It is more than running a theme through a few tests and calling it <em>compatible</em>. It is looking at common problems and making sure they are styled correctly on the front end. And it is more than slapping a few blocks together and calling them a pattern. It is about providing users with a one-click solution for custom-designed or tough-to-build elements.</p>\n\n\n\n<p>Building WordPress themes means being able to wrangle tons of elements that users can rearrange on a whim. The block editor has increased those pieces at least tenfold. It is rare to see a theme that manages to handle every edge case, and I am sure there are some that Eksell misses. However, the whole of the work is one of &mdash; if not the best &mdash; block-ready themes available today.</p>\n\n\n\n<p>If there is one area in which Eksell did not go far enough, it is with block patterns. The theme registers five of them:</p>\n\n\n\n<ul><li>Cover Header</li><li>Featured Items</li><li>Call to Action</li><li>Contact Details</li><li>Stacked Full Groups</li></ul>\n\n\n\n<img />Cover Header block pattern.\n\n\n\n<p>Each of these is in the demo. However, there are some missed opportunities, such as the following three-column &ldquo;pattern&rdquo;:</p>\n\n\n\n<img />Three columns with images on the outside and text on the inside.\n\n\n\n<p>Pros at building layouts with blocks could recreate that in minutes. A one-click option for inserting it into a post might save a headache or two for average users.</p>\n\n\n\n<p>This is not the only example. Eksell&rsquo;s demo is full of experimental groupings that showcase the flexibility of the block system. As bold as it is, the theme is a bit timid with its patterns. There is no need to be. They are already there. They simply need to be registered in the system.</p>\n\n\n\n<p>Users can stack individual Image and Gallery blocks, making them appear as part of the same gallery. The theme automatically adjusts the margins between the blocks, bringing them together.</p>\n\n\n\n<img />Gallery + Image + Gallery block stacked.\n\n\n\n<p><em>Another candidate for a block pattern.</em></p>\n\n\n\n<p>And, here&rsquo;s the thing. I firmly believe the traditional theming paradigm held back this theme. Its uniqueness is in its handling of blocks, which are still limited to the content area in WordPress. When the site editor and global styles land in WordPress later this year, a theme like this would already be miles ahead of others in integrating with Full Site Editing.</p>\n\n\n\n<p>Eksell is more than just a theme that <em>does cool stuff with the block editor</em>. It is a genuinely useful portfolio theme. Instead of marketing it as yet another <s>multipurpose</s> general-purpose project, it has a target audience. Despite that, it is well-rounded enough to handle a variety of situations. Nor&eacute;n made sure the theme would work for blogging with on-point typography.</p>\n\n\n\n<p>By default, the theme displays blog posts in a grid-style portfolio. However, Jetpack users can opt to use the plugin&rsquo;s portfolio project post type to keep their portfolio separate from their blog.</p>\n\n\n\n<p>One feature that might go overlooked is that Eksell provides an option to upload a fallback featured image. Far too often, portfolio-style themes with post-image grids fail to load a default image. The expectation is that the user will have featured images for every post, which is not always the case. When a theme is built around this idea, it needs to cover all of its bases, covering edge cases where things might fall apart. Eksell handles this, but Nor&eacute;n is an old pro at this point. He doubtless knows these common pitfalls.</p>\n\n\n\n<p>The theme does not overwhelm users with options. It provides enough flexibility to personalize the theme&rsquo;s color scheme and make a few layout-related decisions.</p>\n\n\n\n<p>Old-school theme options will be a thing from a past era in the coming years. It is best to focus on the elements users will be working with for the long term. The customization power is with what users decide to do with blocks, and Eksell is ready for whatever users might throw at it.</p>\n\n\n\n<p>Every WordPress theme author should dive into the Eksell theme. Consider it a free masterclass in building on top of the block editor. It is the standard by which we should be judging all other offerings.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Mar 2021 22:54:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Gutenberg Times: Gutenberg, Block Editor and WordPress Roadmap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://gutenbergtimes.com/?p=6188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://gutenbergtimes.com/mullenweg-on-gutenberg-roll-out-plan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51059:\"<p><em>Last updated March 14, 2021</em></p>\n\n\n\n<h2>Full-Site Editing Go/NoGo decision for 5.8</h2>\n\n\n\n<p>Now that <a href=\"https://wordpress.org/news/2021/03/esperanza/\">WordPress 5.7 is released since  March 9th, 2021</a>, the core team is planning 5.8 and putting the next release team together. </p>\n\n\n\n<p><em>Josepha Haden Chomphosy</em> published two posts with additional information.  </p>\n\n\n\n<ul><li><strong><a href=\"https://make.wordpress.org/updates/2021/03/12/full-site-editing-pre-merge-overview/\">Full-site editing pre-merge overview</a>&nbsp;</strong>an updated time line of decision-making on the prototype/MVP and communication roll-out for the merge of Full-Site Editing (FSE) into the core software. </li><li>In a follow-up post<strong>,&nbsp;</strong>Josepha shared the core teamâ€™s&nbsp;<a href=\"https://make.wordpress.org/core/2021/03/12/early-thoughts-on-wp5-8-planning/\"><strong>early thoughts on 5.8 Planning</strong></a>&nbsp;and elaborated on the changes, depending on if FSE will be merged or not in assembling the release team.</li></ul>\n\n\n\n<p class=\"has-text-color has-background has-large-font-size\">The team will decide on April 13 or 27, if a successful merge can be achieved for the 5.8 release in July (Yes, it was moved a month) or if it will be pushed to 5.9 in December 2021.</p>\n\n\n\n<h2 id=\"2021goals\"><strong><a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/\">Big Picture Goals 2021</a></strong></h2>\n\n\n\n<p>Josepha Haden set the goal posts for the WordPress projects for 2021</p>\n\n\n\n<ul><li>Timeline for <strong>Full Site Editing: </strong><ul><li>MVP&nbsp;in the plugin by April 2021</li><li>v1 in Core by WordPress 5.8.</li></ul></li><li><strong>Learn.WordPress </strong><ul><li>regularly publish new workshops and lesson plans, </li><li>maintain a high pass rate on workshop quizzes to establish learner success and comprehension.</li><li><a href=\"https://gutenbergtimes.com/block-editor-workshops-wordpress/\">Block Editor related Workshops </a></li></ul></li><li><strong>Contributor tools</strong> decrease the manual overhead of maintenance work for teams through better tooling.&nbsp;</li></ul>\n\n\n\n<p><a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/\">Read the full post here</a></p>\n\n\n\n<h2>Follow along with these resources:</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/5-7/\">WordPress 5.7 Development Cycle</a><br />WordPress 5.7 Beta 1 is scheduled for February 2nd, 2021.</li><li><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\">Keeping up with Gutenberg Index</a><br />if you missed a week or month with updates from team you can always go back </li><li><a href=\"https://gutenbergtimes.com/category/weekend-edition/\">Weekend Edition of the Gutenberg Times Archive</a>  </li><li><a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog Podcast</a>, every other week. <br /></li></ul>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-landscape\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\">The Weekend Edition via Email</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<h2>State of the Word 2020</h2>\n\n\n\n<p>December 17, 2020, Matt Mullenweg gave his State of the Word talk with an extensive Q &amp; A afterwards with him and other team members. </p>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2020/12/17/matt-mullenweg-2020-state-of-the-word/\">26 minutes keynote</a></li><li><a href=\"https://wordpress.tv/2020/12/17/matt-mullenweg-2020-state-of-the-word-qa/\">Questions and Answer session</a></li><li><a href=\"https://gutenbergtimes.com/site-editor-demo-sotw/\">Site Editor coming to WordPress</a></li></ul>\n\n\n\n<h2>WordPress 5.7 &#8211; March 2021</h2>\n\n\n\n<p><strong>WordPress 5.7</strong> planning has already begun. </p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/5-7/\">WordPress 5.7 Development Cycle</a></li><li>Francesca Marano posted <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-5-7-whats-on-your-wishlist/\">WordPress 5.7: Whatâ€™s on your wishlist?</a> to collect input from the WordPress Community. </li><li>JB Audras posted a <a href=\"https://make.wordpress.org/core/2020/12/11/call-for-volunteers-early-bug-scrubs-for-wordpress-5-7/\">Call for Volunteers â€“ Early bug scrubs for WordPress 5.7</a></li></ul>\n\n\n\n<h3>Block Editor in 2021 &#8211; Full-Site Editing and Global Styles</h3>\n\n\n\n<p><strong>Matias Ventura</strong> posted a <strong><a href=\"https://make.wordpress.org/core/2020/12/10/status-check-site-editing-and-customization/\">Status Check: Site Editing and Customization</a></strong>. In this post, Ventura summarizes  the current status of Gutenbergâ€™s Phase 2 Projects:  Site Editor, Block-based Themes, Navigation Block, Query Block, and Global Styles. </p>\n\n\n\n<p>He ends with: &#8220;In terms of timelines, all of these are in advanced stages and can be used in the Gutenberg plugin already. The main hurdle to include the work in major WordPress releases are the various dependencies between each project when it comes to ensuring a great user experience. The immediate focus is then on completing the milestones, stabilizing the work, and doing as much testing with different kinds of users as possible. For that last purpose, there will be some calls for testing announced soon as part of the&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">Site Editing Outreach Program</a>.&#8221;</p>\n\n\n\n<p><strong>ðŸ”–</strong>&nbsp;<strong>Bookmark&nbsp;<a href=\"https://gutenbergtimes.us1.list-manage.com/track/click?u=e3062ef0fb204dbbc2135b555&id=71d0f52b69&e=3e58a13321\" target=\"_blank\" rel=\"noreferrer noopener\">â€œKeeping up with Gutenberg â€“ Indexâ€</a>&nbsp;</strong><br />The WordPress Make Blog posts from various teams involved in Gutenberg development Phase 2 are listed on one page: Design, Theme Review Team, Core Editor, Core JS, Core CSS from June to December 2020</p>\n\n\n\n<h2>WordPress 5.6  &#8211; December 2020</h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/news/2020/12/simone/\">WordPress 5.6 â€œSimoneâ€</a></blockquote>\n</div>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2020/12/03/wordpress-5-6-core-editor-overview/\">WordPress 5.6: Core Editor Overview</a></li><li><a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">WordPress 5.6 Field Guide</a></li></ul>\n\n\n\n<p><strong>Update May 13, 2020: </strong>Josepha Haden posted </p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2020/03/06/update-progress-on-goals/\">Update: Progress on Goals</a></li><li><a href=\"https://make.wordpress.org/core/2020/05/13/wordpress-5-5-planning-roundup/\">WordPress 5.5 Planning Roundup</a></li></ul>\n\n\n\n<h2>WP5.5 â€“ August Release</h2>\n\n\n\n<ul><li><strong>Feature Plugin</strong>: Automatic updates functionality for major WordPress Core releases (opt-in).</li><li><strong>Complete</strong>:&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/13204\">Convert the widgets-editing areas complete</a>.</li><li><strong>Complete</strong>:&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/13489\">Functionality for full site editing complete</a>&nbsp;behind experimental flag in the plugin.</li><li><strong>Complete</strong>: Global styles behind experimental flag in the plugin.</li><li><strong>Ship</strong>: Update WordPress Core to include current releases of the Gutenberg plugin.</li><li><strong>Ship</strong>: Navigation menus block in Core.</li><li><strong>Ship</strong>: Automatic updates for plugins and themes in Core.</li><li><strong>Ship</strong>: Block directory in Core.</li><li><strong>Ship</strong>:&nbsp;<a href=\"https://make.wordpress.org/core/2020/01/27/feature-plugin-xml-sitemaps/\">XML Sitemaps</a>&nbsp;</li><li><strong>Ship</strong>:&nbsp;<a href=\"https://make.wordpress.org/core/2020/01/29/lazy-loading-images-in-wordpress-core/\">Lazy Loading</a>&nbsp;</li></ul>\n\n\n\n<p class=\"has-small-font-size\">Quoted from Josepha&#8217;s post, these are <em>planned</em> items. </p>\n\n\n\n<p class=\"has-small-font-size\">&#8220;Current release of Gutenberg plugin&#8221;, means the current version at time of 5.5 Beta 1, which is <a href=\"https://make.wordpress.org/core/2020/05/13/wordpress-5-5-planning-roundup/\">planned for July 7, 2020</a>. It probably will be Gutenberg 8.5 or 8.6. Final release of 5.5 is scheduled for August 11, 2020. </p>\n\n\n\n<h3>Design &amp; Dev Updates in May 2020</h3>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2020/05/06/whats-next-in-gutenberg-may/\">Whatâ€™s next in Gutenberg? (May)</a> by Riad Benguella</li><li><a href=\"https://make.wordpress.org/design/2020/05/08/gutenberg-phase-2-friday-design-update-52/\">Gutenberg Phase 2 Friday Design Update #52</a></li><li><a href=\"https://make.wordpress.org/design/2020/05/02/gutenberg-phase-2-friday-design-update-51/\">Gutenberg Phase 2 Friday Design Update #51</a></li></ul>\n\n\n\n<h3>Matt Mullenweg at WPBlockTalk</h3>\n\n\n\n<p>Matt Mullenweg open the <strong>April 2, 2020, </strong>WPBlockTalk conference with an updated Gutenberg Roadmap and what&#8217;s next in Gutenberg and Matias showed off the Full-site Editing experience. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<h3>Design updates Gutenberg Phase 2 <br />Jan &#8211; April 2020</h3>\n\n\n\n<div class=\"wp-block-group has-background\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<p>April 2020</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2020/04/24/gutenberg-phase-2-friday-design-update-50/\">Update #50</a></li><li><a href=\"https://make.wordpress.org/design/2020/04/17/gutenberg-phase-2-friday-design-update-49/\">Update #49</a></li><li><a href=\"https://make.wordpress.org/design/2020/04/10/gutenberg-phase-2-friday-design-update-48/\">Update #48</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p>March 2020</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2020/03/28/gutenberg-phase-2-friday-design-update-47/\">Update #47</a></li><li><a href=\"https://make.wordpress.org/design/2020/03/20/gutenberg-phase-2-friday-design-update-46/\">Update #46</a></li><li><a href=\"https://make.wordpress.org/design/2020/03/13/gutenberg-phase-2-friday-design-update-45-2/\">Update #45</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p>Jan / February 2020</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2020/02/21/gutenberg-phase-2-friday-design-update-45/\">Update #45</a></li><li><a href=\"https://make.wordpress.org/design/2020/01/31/gutenberg-phase-2-friday-design-update-44/\">Update #44</a></li><li><a href=\"https://make.wordpress.org/design/2020/01/24/gutenberg-phase-2-friday-design-update-43/\">Update #43</a></li></ul>\n</div>\n</div>\n</div></div>\n\n\n\n<h2>Update on nine focus projects</h2>\n\n\n\n<p>In <strong>December 2019</strong>, Josepha Haden, executive direct of the open-source projects published a<a href=\"https://make.wordpress.org/core/2019/12/06/update-9-projects-for-2019/\">n update on the nine focus projects</a>. </p>\n\n\n\n<p>The migration of the widgets to blocks and the merge of the Site Health project into core were shipped in 5.3.</p>\n\n\n\n<p>For the work in progress, Josepha also added the targeted versions, when we can expect them in core. </p>\n\n\n\n<ul><li><strong>Navigation Block </strong>to build menus (5.5)</li><li><strong>Block Directory</strong> for discovery and installation single block plugins from the Block Inserter (5.5)</li><li><strong>Automating update</strong> opt-in for plugins and themes (5.5)</li><li><strong>Themes registering content areas</strong> for block editor (5.6)</li><li><strong>Widget areas and Customizer</strong> are able to use blocks (5.6)</li><li><strong>Automatic update</strong> of major core releases (5.6) </li></ul>\n\n\n\n<p>The <a href=\"https://wordpress.org/about/roadmap/\">WordPress Core Roadmap page</a> shows the target dates for the next releases.  WordPress 5.5 is planned for August 2020 (Call for tickets has already been published) and WordPress 5.6 is slated to be released in December 2020. </p>\n\n\n\n<h3><strong>Gutenberg Phase 2 Updates<br />September &#8211; December 2019</strong></h3>\n\n\n\n<div class=\"wp-block-group has-background\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<p>Nov / December 2019</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2019/12/20/gutenberg-phase-2-friday-design-update-42/\">Update #42</a></li><li><a href=\"https://make.wordpress.org/design/2019/12/07/gutenberg-phase-2-friday-design-update-41/\">Update #41</a></li><li><a href=\"https://make.wordpress.org/design/2019/11/22/gutenberg-phase-2-friday-design-update-40/\">Update #40</a></li><li><a href=\"https://make.wordpress.org/design/2019/11/08/gutenberg-phase-2-friday-design-update-39/\">Update #39</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p>October 2019</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2019/10/25/gutenberg-phase-2-friday-design-update-38/\">Update #38</a></li><li><a href=\"https://make.wordpress.org/design/2019/10/18/gutenberg-phase-2-friday-design-update-37/\">Update #37</a></li><li><a href=\"https://make.wordpress.org/design/2019/10/11/gutenberg-phase-2-friday-design-update-36/\">Update #36</a></li><li><a href=\"https://make.wordpress.org/design/2019/10/04/gutenberg-phase-2-friday-design-update-35/\">Update #35</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p>September 2019</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2019/10/11/gutenberg-phase-2-friday-design-update-36/\">Update #34</a></li><li><a href=\"https://make.wordpress.org/design/2019/09/06/gutenberg-phase-2-friday-design-update-33/\">Update #33</a></li></ul>\n</div>\n</div>\n</div></div>\n\n\n\n<h2>State of the Word 2019 &#8211; Matt Mullenweg </h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<p>During his State of the Word 2019 in St. Louis in October 2019, Matt Mullenweg talked a lot about the first full year of Gutenberg. </p>\n\n\n\n<h3>The Four Phases of Gutenberg. </h3>\n\n\n\n<ol><li>Easier Editing &#8211; already in Core, refinement is ongoing</li><li>Customization &#8211; Full Site editing, Block Patterns, Block Directory, Block based themes</li><li>Collaboration &#8211; A more Google Doc co-authoring </li><li>Multi-lingual &#8211; Core implementation for Multi-lingual sites. </li></ol>\n\n\n\n<p>Currently, it&#8217;s all about Phase 2,  and not only to make the post / page content editable via the block editor but add site-building capabilities to the block editor. The goal is to provide a single interface for all site customizations. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-group has-background\"><div class=\"wp-block-group__inner-container\">\n<h3>Gutenb<strong>erg Phase 2 Updates</strong><br /><strong>June &#8211; August 2019</strong></h3>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<p><strong>August 2019</strong></p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2019/08/30/gutenberg-phase-2-friday-design-update-32/\">Update #32</a></li><li><a href=\"https://make.wordpress.org/design/2019/08/23/gutenberg-phase-2-friday-design-update-31/\">Update #31</a></li><li><a href=\"https://make.wordpress.org/design/2019/08/16/gutenberg-phase-2-friday-design-update-30/\">Update #30</a></li><li><a href=\"https://make.wordpress.org/design/2019/08/09/gutenberg-phase-2-friday-design-update-29/\">Update #29</a></li><li><a href=\"https://make.wordpress.org/design/2019/08/02/gutenberg-phase-2-friday-design-update-28/\">Update #28</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><strong>July 2019</strong></p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2019/07/19/gutenberg-phase-2-friday-design-update-27/\">Update #27</a></li><li><a href=\"https://make.wordpress.org/design/2019/07/12/gutenberg-phase-2-friday-design-update-26/\">Update #26</a></li><li>*</li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><strong>June 2019</strong></p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2019/06/28/gutenberg-phase-2-friday-design-update-24/\">Update #24</a></li><li><a href=\"https://make.wordpress.org/design/2019/06/21/gutenberg-phase-2-friday-design-update-23/\">Update #23</a></li><li><a href=\"https://make.wordpress.org/design/2019/06/14/gutenberg-phase-2-friday-design-update-22/\">Update #22</a></li><li><a href=\"https://make.wordpress.org/design/2019/06/07/gutenberg-phase-2-friday-design-update-21/\">Update #21</a></li></ul>\n</div>\n</div>\n\n\n\n<p class=\"has-text-align-right\">*There is no Update #25</p>\n</div></div>\n\n\n\n<p><em>Updated July 4th, 2019 with Mullenweg&#8217;s Summer update. </em></p>\n\n\n\n<h2>WordCamp Europe 2019</h2>\n\n\n\n<p>At WordCamp Europe, Matt Mullenweg gave his Summer Update. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://gutenbergtimes.com/on-gutenberg-resources-matt-mullenwegs-summer-update-at-wordcamp-europe/\">On Gutenberg (Resources) &#8211; Matt Mullenweg&#8217;s Summer Update at WordCamp Europe</a></blockquote>\n</div>\n\n\n\n<h3><strong>Weekly Gutenberg Phase 2 Updates </strong><br /><strong>March &#8211; May 2019</strong></h3>\n\n\n\n<div class=\"wp-block-group phase2 has-background\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<p class=\"has-text-align-left\"><strong>May 2019</strong></p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2019/05/31/gutenberg-phase-2-friday-design-update-20/\">Update #20</a></li><li><a href=\"https://make.wordpress.org/design/2019/05/24/gutenberg-phase-2-friday-design-update-19/\">Update #19</a>  </li><li><a href=\"https://make.wordpress.org/design/2019/05/17/gutenberg-phase-2-friday-design-update-18/\">Update #18</a> </li><li><a href=\"https://make.wordpress.org/design/2019/05/10/gutenberg-phase-2-friday-design-update-17/\">Update #17</a> </li><li><a href=\"https://make.wordpress.org/design/2019/04/26/gutenberg-phase-2-friday-design-update-16/\">Update #16</a> </li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p class=\"has-text-align-left\"><strong>April 2019</strong></p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2019/04/19/gutenberg-phase-2-friday-design-update-15/\">Update #15</a> </li><li><a href=\"https://make.wordpress.org/design/2019/04/12/gutenberg-phase-2-friday-design-update-14/\">Update #14</a> </li><li><a href=\"https://make.wordpress.org/design/2019/04/05/gutenberg-phase-2-friday-design-update-13/\">Update #13</a> </li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p class=\"has-text-align-left has-normal-font-size\"><strong>March 2019</strong></p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2019/03/29/gutenberg-phase-2-friday-design-update-12/\">Update #12</a> </li><li><a href=\"https://make.wordpress.org/design/2019/03/22/gutenberg-phase-2-friday-design-update-11/\">Update #11</a> </li><li><a href=\"https://make.wordpress.org/design/2019/03/15/gutenberg-phase-2-friday-design-update-10/\">Update #10</a> </li><li><a href=\"https://make.wordpress.org/design/2019/03/08/gutenberg-phase-2-friday-design-update-9/\">Update #9</a></li><li><a href=\"https://make.wordpress.org/design/2019/03/01/gutenberg-phase-2-friday-design-update-8/\">Update #8</a></li></ul>\n</div>\n</div>\n</div></div>\n\n\n\n<h2>Progress on <a href=\"https://gutenbergtimes.com/feed/#9projects\">Nine Projects</a>. </h2>\n\n\n\n<p><em>February 11, 2019.</em>  </p>\n\n\n\n<ul><li>#1 Navigation Menu is still in discussion on GitHub. (<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/issues/13690\" target=\"_blank\">#13690</a>)</li><li>#2 has been moved forward already for quite a bit. The latest Gutenberg release(5.0), incorporated the RSS widget. Mel Choyce publishes regular <a href=\"https://make.wordpress.org/core/2019/02/05/porting-widgets-to-blocks-feb-4-2019/\">updates on this particular project</a></li><li>#3 is coupled with #2</li><li>#4 hasn&#8217;t started yet </li><li>#5 Partial integration in core is scheduled for the WordPress 5.1 release</li><li>#6 &amp; #7 haven&#8217;t started yet</li><li>#8 hastn&#8217;t started yet. It is the one that&#8217;s most exciting to me, as the proliferation of blocks are getting a bit overwhelming. </li><li>#9 The Core is still discussing best methodology and taxonomy for ticket gardening. Jon Desrosiers <a href=\"https://make.wordpress.org/core/2019/01/04/short-term-trac-milestone-ticket-triage-proposal/\">published a proposal</a> on how to handle punted tickets in the short term and also how to manage the other open tickets.  </li></ul>\n\n\n\n<h3>Design Updates for Gutenberg Phase 2</h3>\n\n\n\n<p>Every Friday, Mark Uraine publishes Updates for Gutenberg Phase 2 on the make/design blog. Here is the list: </p>\n\n\n\n<div class=\"wp-block-group has-background\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<p>February 2019</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2019/02/22/gutenberg-phase-2-friday-design-update-7/\">Update #7</a> (Feb 22, 2019)</li><li><a href=\"https://make.wordpress.org/design/2019/02/15/gutenberg-phase-2-friday-design-update-6/\">Update #6</a> (Feb 15, 2019)</li><li><a href=\"https://make.wordpress.org/design/2019/02/08/gutenberg-phase-2-friday-design-update-5/\">Update #5&nbsp;(Feb&nbsp;8,&nbsp;2019)</a></li><li><a href=\"https://make.wordpress.org/design/2019/02/01/gutenberg-phase-2-friday-design-update-4/\">Update #4&nbsp;(Feb&nbsp;1,&nbsp;2019)</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p>January 2019</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/2019/01/25/gutenberg-phase-2-friday-design-update-3/\">Update #3&nbsp;(Jan&nbsp;25,&nbsp;2019</a><a href=\"https://make.wordpress.org/design/2019/01/18/gutenberg-phase-2-friday-design-update-2/\">Update #2&nbsp;(Jan&nbsp;18,&nbsp;2019)</a><a href=\"https://make.wordpress.org/design/2019/01/11/gutenberg-phase-2-friday-design-update/\"> Update&nbsp;#1&nbsp;(Jan&nbsp;11,&nbsp;2019</a></p>\n</div>\n</div>\n</div></div>\n\n\n\n<h2 id=\"9projects\">Nine Projects for 2019 </h2>\n\n\n\n<p><em>Dec 8th, 2019. </em>A couple days after the WordPress 5.0 release, <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">Matt Mullenweg posted</a> on the make/core blog the 9 projects for 2019, highlighting what he outlined in his <a href=\"https://wordpress.tv/2018/12/27/state-of-the-word-2018/\">State of the Word at WordCamp US 2018</a></p>\n\n\n\n<ol><li>Creating a block for navigation menus.</li><li>Porting all existing widgets to blocks.</li><li>Upgrading the widgets-editing&nbsp;areas in&nbsp;<code>wp-admin/widgets.php</code>&nbsp;and the Customizer to support blocks.</li><li>Providing a way for themes to visually register content areas, and&nbsp;exposing that in Gutenberg.</li><li>Merging&nbsp;<a href=\"https://wordpress.org/plugins/health-check/\">the site health check plugin</a>&nbsp;into Core, to assist with debugging and encouraging good software hygiene.</li><li>Providing a way for users to opt-in to automatic plugin and theme updates.</li><li>Providing a way for users to opt-in to automatic updates of major Core releases.</li><li>Building a WordPress.org directory for discovering blocks, and a way to seamlessly install them.</li><li>Forming a Triage team to tackle our&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=accepted&status=assigned&status=new&status=reopened&status=reviewing&order=priority\">6,500 open issues on Trac</a>.</li></ol>\n\n\n\n<h2><em>WordPress 5.0 &#8220;Bebo&#8221; released on December 6th, 2018</em></h2>\n\n\n\n<p><em>December 6th, 2018. </em>Today around 1:30pm ET, the core team released the WordPress 5.0 and with it the new block editor&nbsp; as default editor for content creators.&nbsp; </p>\n\n\n\n<a href=\"https://wordpress.org/news/2018/12/bebo/\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a>Putting the final touches on the WordPress 5.0 release:  Tammie Lister, Gary Pendergast, Jonathan Desrosiers and William Earnhardt at WordCamp US  2018\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/news/2018/12/bebo/\">WordPress 5.0 â€œBeboâ€</a></blockquote>\n</div>\n\n\n<ul class=\"wp-block-latest-posts__list is-grid columns-3 wp-block-latest-posts\"><li><a href=\"https://gutenbergtimes.com/gallery-block-convert-blocks-business-weekend-edition-164/\">New Gallery Block, Convert Blocks, Business News and more  Weekend Edition #164</a></li>\n<li><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\">Full-site Editing MVP: Can I Build a Landing Page?</a></li>\n<li><a href=\"https://gutenbergtimes.com/full-site-editing/\">Full-Site-Editing &#8211; the Ultimate Resource List</a></li>\n</ul>\n\n\n<hr class=\"wp-block-separator gt-sep-navy\" />\n\n\n\n<p><em>December 3rd, 2018.&nbsp;</em> <a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/\">Matt Mullenweg posted</a> the new target date for the WordPress 5.0: December 6th, 2018, <a href=\"http://php.net/archive/2018.php#id2018-11-22-1\">the same day PHP 7.3 will be released</a>. WordPress 5.0 includes not only the new Block editor but also compatibility fixes for the new PHP version. <br /></p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Based on the stability, testing, and reports on the release candidates for WordPress 5.0 so far, we are now targeting Thursday&nbsp;<strong>December 6th</strong> for public release and announcement. 5.0.1 will open for commits soon, and will be an area people can choose to focus on at the contributor day at WordCamp US in Nashville this Sunday.<br />As before, if new information arises that indicates the software is not stable, we will adjust or remove the target date.</p></blockquote>\n\n\n\n<p>Below Questions and Answers are taken from <a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\">Matt Mullenweg&#8217;s&nbsp; Gutenberg FAQs&nbsp;</a> as well as from his <a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/\">post about the new target date.</a><br /></p>\n\n\n\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1543929591132\"><strong class=\"schema-faq-question\">Do I have to switch to Gutenberg when WordPress 5.0 is released? <br /></strong> <p class=\"schema-faq-answer\">Not at all. When itâ€™s released, you get to choose what happens. You can install the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor plugin</a> today and when 5.0 is released, nothing will change. Weâ€™ve commited to supporting and updating Classic Editor until 2022. If youâ€™d like to <a href=\"https://wordpress.org/plugins/gutenberg/\">install Gutenberg early</a>, you can do that now too. The Classic Editor plugin has been available for 13 months now, and Gutenberg has been available for 18 months. Both have been heavily promoted since August 2018, and more than 1.3 million .org sites have opted-in already to either experience, so nothing will change for them when they update to 5.0.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1543929747530\"><strong class=\"schema-faq-question\">Is it terrible to do a release in December?</strong> <p class=\"schema-faq-answer\">Some people think so, some donâ€™t. There have been <a href=\"https://wordpress.org/about/roadmap/\">9 major WordPress releases</a> in previous Decembers. December releases actually comprise 34% of our major releases in the past decade.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1543932662856\"><strong class=\"schema-faq-question\">What if I donâ€™t want to update on that date, or Iâ€™m not ready?</strong> <p class=\"schema-faq-answer\">Thatâ€™s totally okay, thereâ€™s nothing that says you must update the moment thereâ€™s a new version released. You can push the button whenever youâ€™re ready.</p> </div> <div class=\"schema-faq-section\" id=\"faq-question-1543932734088\"><strong class=\"schema-faq-question\">What if I want to upgrade but Iâ€™m not ready for Gutenberg?</strong> <p class=\"schema-faq-answer\">No problem, <a href=\"https://wordpress.org/plugins/classic-editor/\">install the Classic Editor plugin</a> and 5.0 will be indistinguishable from 4.9.8 for your posting and editing experience, and youâ€™ll still get the other improvements and fixes that have gone into 5.0. Classic Editor is supported until 2022, and now allows you to switch between Classic and Gutenberg on a per-user or per-post level.</p> </div> </div>\n\n\n\n<p><em>November 30, 2018. </em><a href=\"https://make.wordpress.org/core/2018/11/29/5-0-gutenberg-status-update-nov-29/\">WordPress 5.0 RC2&nbsp;</a> is scheduled for&nbsp; today. Earlier this morning the team released <a href=\"https://make.wordpress.org/core/2018/11/30/whats-new-in-gutenberg-30th-november/\">Gutenberg 4.6.1.</a>&nbsp; &#8220;This brings plugin up to parity with RC2 packages&#8221;&nbsp; noted Matias Ventura on the #core-editor Slack channel.&nbsp; <br /><a href=\"https://make.wordpress.org/core/2018/11/30/5-0-gutenberg-status-update-nov-30/\">Read also today&#8217;s status update on the Make.Core Blog</a><br /></p>\n\n\n\n<h3>When will 5.0 be released?</h3>\n\n\n\n<p>Read Matt Mullenweg&#8217;s answer in his blog post: &#8220;<a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\">WordPress 5.0: A Gutenberg&nbsp;FAQ</a>&#8220;<br /></p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>We have had a stable RC1, which stands for first release candidate, and about to do our second one. There is only currently one known blocker and itâ€™s cosmetic. The stability and open issues in the release candidates thus far makes me optimistic we can release soon, but as before the primary driver will be the stability and quality of the underlying software. We made the mistake prior of announcing dates when lots of code was still changing, and had to delay because of regressions and bugs. Now that things arenâ€™t changing, weâ€™re approaching a time we can commit to a date soon.</em></p><cite><a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\"></a>Matt Mullenweg answer in <a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\">his blog post&nbsp; Nov 29, 2018</a><br /></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator gt-separator\" />\n\n\n\n<p><em>November 23, 2018</em> WordPress 5.0 RC1 &#8211; the first release candidate was released about 4 days late.&nbsp; On Nov 21, Matias Ventura wrote: &#8220;The date for 5.0 release is under consideration, given itâ€™s not plausible for it to be the on 27th. &#8220;</p>\n\n\n\n<span id=\"more-6188\"></span>\n\n\n\n<p>Gutenberg 4.5.1 was released Nov 20th. This is the last Gutenberg version before the 5.0 Final release. There will be bug fixes in between, but no more changes to API etc. &#8211; or so I hear. It&#8217;s included in the WordPress 5.0 Release candidate 1 version. You can test both via the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta plugin.</a></p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>The WordPress 5.0 release date has shifted from the 27th to give more time for the RC to be fully tested</strong>. A final release date will be announced soon, based on feedback on the RC.<br /></p><cite>Matias Ventura, <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\">on the make.core blog</a><br /></cite></blockquote>\n\n\n\n<p>Unless they are blockers to the 5.0 release, newly found issues will be tagged for Gutenberg 4.6 and 5.0.1. <br /></p>\n\n\n\n<p><em>November 9, 2018.&nbsp; </em>Developer lead for Gutenberg, Matias Ventura <a href=\"https://make.wordpress.org/core/2018/11/09/update-on-5-0-release-schedule/\">announced today the updated schedule</a> for WordPress 5.0 release:&nbsp;</p>\n\n\n\n<ul><li>Final release scheduled for November 27, 2018 </li><li>Beta 4:&nbsp; Monday November 12, 2018 </li><li>Beta 5: Thursday, November 15, 2018<br /></li><li>Release Candidate 1: Monday November 19, 2018</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>After listening to a lot of feedback â€” as well as looking at current issues, ongoing pull requests, and general progress â€” weâ€™re going to take an extra week to make sure everything is fully dialed in (&#8230;)<br /></p><cite>Matias Ventura, <a href=\"https://make.wordpress.org/core/2018/11/09/update-on-5-0-release-schedule/\">on make.blog November 9th, 2018.</a><br /></cite></blockquote>\n\n\n\n\n\n\n\n<p><em>October 31, 2018.</em> After the first beta release date slipped to October 24, Gary Pendergast <a href=\"https://make.wordpress.org/core/2018/10/31/wordpress-5-0-schedule-updates/\">updated the release schedule </a>yesterday. He added a few more Beta release dates, which pushed the RC 1 to November 12th. The final release date of November 19, hasn&#8217;t been moved, though. </p>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2018/10/wordpress-5-0-beta-2/\">Beta 2</a> released Oct 30</li><li><a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-3/\">Beta 3:</a> released Nov 5, 2018</li><li>Beta 4: November 5, 2018&nbsp;</li><li>RC 1: November 12, 2018</li><li>Final release: November 19, 2018</li></ul>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2018/10/31/wordpress-5-0-schedule-updates/\">Details can be viewed in the post on make.wordpress</a></p>\n\n\n\n<p><em>Updated Nov 6, 2018: updated with release dates and post for Betas 2 + 3 bph</em></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/core/2018/10/31/wordpress-5-0-schedule-updates/\">WordPress 5.0 Schedule Updates</a></blockquote>\n</div>\n\n\n\n<p><em>Also updated the photo credit. The feature image was shot by </em><a href=\"http://www.instagram.com/adspedia/\"><em>Val Vesa </em></a><em>and can be found on </em><a href=\"https://www.flickr.com/photos/wceu/41176987410/\"><em>WCEU&#8217;s Flickr account</em></a></p>\n\n\n\n<hr class=\"wp-block-separator gt-sep-navy\" />\n\n\n\n<p><em>On October 3rd, 2018</em>, Matt Mullenweg published <a href=\"https://make.wordpress.org/core/2018/10/03/a-plan-for-5-0/\">&#8220;A Plan for 5.0&#8221; </a>on the WordPress Make Blog with the leadership team that will push Gutenberg over the finish line of becoming the default editor for WordPress.</p>\n\n\n\n<a href=\"https://make.wordpress.org/core/2018/10/03/a-plan-for-5-0/\"><img /></a>\n\n\n\n<p><strong>Gary Pendergast</strong>, WordPress Core Developer, followed suit with his post; <a href=\"https://make.wordpress.org/core/2018/10/03/proposed-wordpress-5-0-scope-and-schedule/\">Proposed WordPress 5.0 Scope and Schedule</a></p>\n\n\n\n<h3>The Scope: </h3>\n\n\n\n<ul><li>Merging the Gutenberg plugin into trunk.</li><li>Updating the default themes to work well with the block editor</li><li>Creating the new Twenty Nineteen theme.</li><li>Creating an upgrade experience to remove the Gutenberg plugin and offer the Classic Editor plugin.</li></ul>\n\n\n\n<h3>The Schedule</h3>\n\n\n\n<ul><li><strong>October 3, 2018 WordPress 5.0 Kickoff meeting&nbsp;</strong><br /></li><li><strong>October 19: Beta 1</strong><br /></li><li><strong>October 30: RC 1</strong><br /></li><li><strong>November 19:&nbsp; Release</strong><br /></li></ul>\n\n\n\n<p><em>&#8220;We know there is a chance that 5.0 will need additional time, so these dates can slip by up to 8 days if needed. If additional time beyond that is required, we will instead aim for the following dates:&#8221; Gary wrote,</em></p>\n\n\n\n<ul><li><strong>Secondary RC 1</strong>: January 8, 2019</li><li><strong>Secondary Release</strong>: January 22, 2019</li></ul>\n\n\n\n<p>The following days, strong voices suggested to make Plan B to Plan A and not release WordPress 5.0 until after the busiest online business time of the year for the United States universe. </p>\n\n\n\n<p>Here an opinion piece on the WPTavern: &#8220;<a href=\"https://wptavern.com/if-deadlines-are-not-arbitrary-why-not-release-wordpress-5-0-in-the-beginning-of-january\">If Deadlines Are Not Arbitrary, Why Not Release WordPress 5.0 in the Beginning of January?</a>&#8220;</p>\n\n\n\n<p>At <a href=\"https://www.paulisystems.net/gutenberg-ready/\">Pauli Systems</a>, we plan to beta-best WordPress 5.0, help surfacing problems and report them either on Trac or on GitHub. The amount of issues and the time it will take to fix them will determine the final release date for WordPress 5.0.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-style-large\"><p>With the track record on estimating release dates this year, there might be a RC (Release Candidate) in November. It seems to be a given that the final release will be pushed into late January 2019.</p><cite><em>Birgit Pauli-Haack,Oct 3rd, 2018 0&nbsp; <a href=\"https://www.paulisystems.net/gutenberg-ready/\">Pauli Systems</a></em></cite></blockquote>\n\n\n\n<h2>WordPress 5.0 Kick-off Meeting </h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/core/2018/10/04/dev-chat-summary-october-3rd-5-0-week-1/\">Dev Chat Summary: October 3rd (5.0 Week 1)</a></blockquote>\n</div>\n\n\n\n<p><em>updated: October 5, 2018 / bph</em></p>\n\n\n\n<hr class=\"wp-block-separator gt-sep-navy\" />\n\n\n\n<p>At WordCamp Europe, co-founder of WordPress and CEO of Automattic, Matt Mullenweg, laid out the Gutenberg roadmap for the next three months.</p>\n\n\n\n<p>For the rest of June, the development team will work on the few issues and features that are identified to land in the first core version. </p>\n\n\n\n<p>In July more users will be able to use Gutenberg on wordpress.com as well as on self-hosted WordPress sites <a href=\"https://gutenbergtimes.com/try-out-gutenberg-call-out-will-be-in-4-9-5-release/\">via a &#8220;Try Gutenberg&#8221; prompt in a future 4.9.x version.</a></p>\n\n\n\n<p>In August, the team will work on bug fixes and the merge proposal to land in WordPress Core. Mullenweg said that after one hundred thousand users and two hundered fifty thousand blog posts, Gutenberg could be ready to be released with WordPress 5.0 as soon as August. He also stress he is not making any promises, though. <br /></p>\n\n\n\n<img />\n\n\n\n<h2>The Gutenberg Roadmap</h2>\n\n\n\n<h3>June 2018<br /></h3>\n\n\n\n<ul><li>Freeze new features into Gutenberg<br /></li><li>Hosts, agencies and teachers invited to opt-in sites they have influence over. </li><li>Opt-in for wp-admin users on WP.com</li><li>Mobile App support in the Aztec editor across iOs and Android.</li></ul>\n\n\n\n<h3>July 2018</h3>\n\n\n\n<ul><li>4.9.x release with a strong invitation to install either Gutenberg or Classic Editor plugin</li><li>Opt-out for wp-admin users on WP.com</li><li>Heavy triage and bug gardening, getting blockers to zero</li><li>Explore expanding Gutenberg beyond the post into site customization. </li></ul>\n\n\n\n<h3>August 2018 and beyond<br /></h3>\n\n\n\n<ul><li>All critical issues resolved</li><li>Integration with Calypso, offering opt-in users.</li><li>100k+ sites having makde 250k+ post using Gutenberg</li><li>Core merge, beginning the 5.0 release cycle.</li><li>5.0 beta releases and translations completed</li><li>Mobile version of Gutenberg by the end of the year.</li></ul>\n\n\n\n<h2>Video: Gutenberg Roadmap section of Matt Mullenweg&#8217;s Keynote</h2>\n\n\n\n<p><em>Find the transcript&nbsp; below.</em></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<p><strong>Update July 6, 2018</strong><br />So far the Gutenberg section of <a href=\"https://wordpress.tv/2018/07/04/matt-mullenweg-a-summertime-update-keynote-and-qa/\">Matt Mullenweg&#8217;s &#8220;Summertime Update&#8221;</a>. Earlier this month, the volunteers of WordCamp Europe uploaded the video of the <a href=\"https://wordpress.tv/2018/07/04/matt-mullenweg-a-summertime-update-keynote-and-qa/\">whole keynote to WordPress TV</a>.</p>\n\n\n\n<a href=\"https://wpbuffs.com/pricing/affilibuff/paulisystems/\"><img src=\"https://i0.wp.com/wpbuffs.com/wp-content/uploads/2017/11/Care-Plan-Wide.jpg?w=640&ssl=1\" alt=\"WP Buffs\" /></a>\n\n\n\n<p><em>Featured Image: </em>Photo by Stephen M. Blythe, <a href=\"https://allmyfriendsarejpegs.com\">allmyfriendsarejpegs.com</a></p>\n\n\n\n<h2>Transcript: Matt Mullenweg&#8217;s Keynote at WordCamp Europe (Excerpt)<br /></h2>\n\n\n\n<p>(&#8230;) The major features that are in effect so far are we have a block based writing experience, with over 20 blocks built in. Gutenberg is fully adaptive, meaning that whether you&#8217;re looking at it on a small screen, a medium screen, a large screen, a huge screen, the design and the functionality adapts to be fluid and easy to use on any of those.</p>\n\n\n\n<p>There is ah, there we go &#8230; Optimized for direct manipulation of content, so we&#8217;re bringing it closer to where what you&#8217;re editing looks a lot more like what you&#8217;re seeing on the front page. They have a block aid [inaudible 00:00:43], support for static and dynamic blocks.</p>\n\n\n\n<h3>Matt&#8217;s Favorite Gutenberg Feature: Copy/Paste API</h3>\n\n\n\n<p>This is one of my favorite, the universal API, which is copy and paste. Who&#8217;s ever tried to copy and paste things into the WordPress editor, or anyplace else, and it just goes kind of sideways?</p>\n\n\n\n<p>Gutenberg already has support for fully supported copy and paste from Google Docs, a Apple&#8217;s Pages, everyone&#8217;s favorite Microsoft Word, Office 365, Evernote, Legacy WordPress, random webpages, and then finally something that I know will be very popular with this audience is Markdown.</p>\n\n\n\n<p>That&#8217;s actually what you are seeing in this little GIF there, is a copy and paste from a Markdown source. That&#8217;s a note editor or for wherever you want. You paste into Gutenberg, it translates it just instantly into Gutenberg blocks. It&#8217;s very, very slick. If you haven&#8217;t tried this yet, I&#8217;d highly recommend trying it. It&#8217;s one of my favorite hidden features alongside &#8230; I&#8217;ll tell you about my other favorite hidden feature. Which is that when you copy and paste the URL onto some text, it auto links it. Saves a ton of time.</p>\n\n\n\n<h3>Templates, Shared Blocks, Nested Blocks and Child Blocks</h3>\n\n\n\n<p>There are templates for predefined blocks. This is starting to go into where you can see hints of where we are going to end up, with full site customization with this. Which basically allows you to create for your users or for yourself kind of pre-built layouts where you can say, &#8220;Okay. A title goes here, an image goes here, some text goes here, a map goes here.&#8221; That can be reused over and over again, or assigned to entire pages. There&#8217;s shared blogs, so if you do want to reuse things across the entire site, that can be a shared unified resource. So when you edit it once, it shows up everywhere.</p>\n\n\n\n<p>And finally, we are very excited about, that we have nested blocks and child blocks. These are blocks within blocks. Like it&#8217;s turtles and blocks all the way down, and child blocks, which only work if the parent block is there. Perhaps like your children. Media drag and drop. Extensions where you can add extra things to the sidebar. Like this beautiful &#8220;Hello Belgrade&#8221; extension here.</p>\n\n\n\n<h2>30 Gutenberg releases, 1,700 issues open , 1,100 closed</h2>\n\n\n\n<p>There have been 30 Gutenberg releases, since we started, and 12 just since WordCamp US in December. As you can see, this is kind of running through all the different releases. There have been over 1,700 issues opened, and 1,100 closed in the Gutenberg Project thus far. From the development point of view, I&#8217;m very proud of it. We have open development, design-led testing in our releases, presentations across pretty much every WordCamp now, including here. It&#8217;s developed a wide awareness. Support and awareness in every single page builder out there. You know the names.</p>\n\n\n\n<p>We already have people who&#8217;ve extended Gutenberg through plugins they are starting to pick up in the directory, and major sites. Agencies and others have been building and launching things with Gutenberg because, to be honest, it works. It&#8217;s not perfect yet. We&#8217;re not ready to release it yet, but for the things it does, it does them well. You can actually start using this in production already.</p>\n\n\n\n<p>There are now 14,000 sites actively using Gutenberg. So this isn&#8217;t just installed it&#8217;s actually active. Just released this week are tools for enterprises. This one called <a href=\"https://vip.wordpress.com/2018/06/13/jumpstart-gutenberg-testing-transition-ramp/\">Gutenberg Ramp</a>, which is a new plugin from VIP which basically allows them to turn Gutenberg on for certain post ID&#8217;s, page ID&#8217;s or content text. So that way you can start to phase in. Say you have a really complex setup of WordPress and maybe certain post types of things, extra customization. You can start to turn Gutenberg on for parts of it, not for others until you get to the point where you have everything on and fully done.</p>\n\n\n\n<p>But the question I&#8217;m going to preempt it, so you don&#8217;t need to ask it is &#8220;What&#8217;s coming next in the world of Gutenbergification?&#8221; Which is just kinda fun to say. It sounds almost like a German word right?</p>\n\n\n\n<h3>Roadmap For Gutenberg Roll-Out</h3>\n\n\n\n<h4>Happening in June</h4>\n\n\n\n<p>Here&#8217;s the roadmap. So these are things happening in June which means they are highly .. [inaudible] . First I&#8217;m going to freeze new features coming in to Gutenberg. We&#8217;ve reached a point where there is a functionality that matches in affect of in the area it exceeds what we accomplished in the editor. We&#8217;re gonna encourage host agencies and teachers to start opting in folks that they have influence over to start using Gutenberg. Now very much &#8230; especially if it&#8217;s someone who you&#8217;re working with close to so that you can start to gather feedback from third party users of it, people who are involved in development everyday and pass that back, of course, to developers. This is to compliment the user testing, since the user testing that we&#8217;ve already been doing.</p>\n\n\n\n<p>One of the hosts that&#8217;s gonna be sort of contributing to this is WordPress.com so there is several hundred thousand, in the high numbers of thousands folks from WordPress.com that actually use wp-admin interface primarily. So we&#8217;re gonna be offering a call to action to opt-in. You can start using it very soon. One of the key measures that we are tracking there are the number of sites and the number of posts that are using this.</p>\n\n\n\n<p>Then finally the mobile apps, which I said are getting more and more popular. Right now, if you move between editing things in the mobile apps, Gutenberg, it breaks in pretty spectacular fashion. So within the next few weeks that will be all fixed up across both IOS and Android. </p>\n\n\n\n<h4>Coming up in July: Thousands more users .org and .com<br /></h4>\n\n\n\n<p>Coming up in July, there is going to be a 4.9 point WordPress release that has a <a href=\"https://gutenbergtimes.com/try-out-gutenberg-call-out-will-be-in-4-9-5-release/\">strong invitation in the dashboard.</a> The first time we&#8217;ve had this, to either install Gutenberg or the Classic Editor Plugin. So basically we will be encouraging people to get on the train early, or if when 5.0 comes out and your site is not gonna be ready for it, <a href=\"https://wordpress.org/plugins/classic-editor/\">install the Classic Editor Plugin</a>. For those who don&#8217;t know, basically locks in your site to use how WordPress WYSIWYG editor&nbsp; works today. So it kinda opts you out of Gutenberg. We&#8217;re, of course, going to be tracking the use of both those.</p>\n\n\n\n<p>We&#8217;re gonna switch to opt-in for their wp-admin on dot com to be opt-out and I&#8217;m tracking who opts out and trying to gather as much data from them as well because there&#8217;s gonna be a lot of information there, especially from people who might be using third party plugins on WordPress.com. Be a heavy, heavy triage on bug gardening, getting all the blockers to zero. Then finally, we&#8217;re gonna actually kick off and maybe even branch off the customization leads to start the work for what we wanna launch hopefully this year. Which is more of the full site editing experience of Gutenberg.</p>\n\n\n\n<h4>In August and Beyond: Merge Proposal<br /></h4>\n\n\n\n<p>So in August and beyond we&#8217;ll have all critical issues resolved. It&#8217;ll be integrated with the Calypso interface on WordPress.com, which is where the majority of people use it. I want to have 100,000 sites, 250,000 posts made, so 100,000 sites active with Gutenberg over 10x, where it is today, about 10x where it is today. A quarter million posts I think we&#8217;ll be able to say that a lot of the bugs will be worked out. We&#8217;re gonna merge with Core beginning the 5.0 release cycle. So beta releases, translations and then finally we are planning &#8230; there&#8217;s work undergoing, it&#8217;s not ready yet, but there will be full mobile versions of Gutenberg at the end of the year in the iOS and Android app.</p>\n\n\n\n<p>By August, they won&#8217;t break when you move between them. Of course, Gutenberg is done in a way that makes the content and the Markup backwards compatible. We&#8217;re actually gonna have the blocks supported in the mobile apps so that as you drag and drop blocks, move them around, have different sort of fun things you can do, that&#8217;ll all be there.</p>\n\n\n\n<p>We could have a 5.0 as soon as August. Some of these things that I put up there, I&#8217;m very, very sure about. The big thing that we&#8217;re not sure about is as we vastly increase the average usage of Gutenberg across hopefully 100,000 sites. &#8220;What&#8217;s gonna come in?&#8221; </p>\n\n\n\n<h4>Not date promised, though. </h4>\n\n\n\n<p>The non-deterministic nature of fixing bugs means that I don&#8217;t know exactly the issues that could raise. Whether they&#8217;re going to be small tweaks or rather they might be sort of huge things that are going to require a few weeks of development. That is why I can&#8217;t promise you a date but we&#8217;ve done a lot of testing this far so the nature of bugs that we find &#8230; there&#8217;s no black swans in there of bugs. I do think that 5.0 is gonna be ready within a relatively short time frame.&nbsp; And that&#8217;s all I got so thank you very much.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 14 Mar 2021 22:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"Gutenberg Times: Full-Site Editing Testing, Merge Timeline, and Plugins for Block Editor Weekend Edition #162\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17216\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/full-site-editing-testing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18059:\"<p>Howdy, </p>\n\n\n\n<p>With the WordPress 5.7 out of the way, the next couple of month are all about Full-site Editing testing and planing for 5.8. </p>\n\n\n\n<p>I love it when a plan comes together! The WordPress team responsible for the release of the 5.7 version delivered on time. <a href=\"https://wordpress.org/news/2021/03/esperanza/\"><strong>Meet â€œEsperanzaâ€, the first WordPress release of 2021</strong></a>. Marvel again at the numbers: Contributors (457), Trac tickets (250) and  Pull Requests on GitHub(950). </p>\n\n\n\n<p> <strong><a href=\"https://twitter.com/AudrasJb\">Jean-Baptist Audras</a></strong>, team rep of the core team, documentation release lead and data wizard compiled additional information about contributors, by country and employers. <a href=\"https://datastudio.google.com/u/0/reporting/a496c333-7e64-412c-9299-9ea2c84e5d2c/page/j595B?s=gxzoCOs8rSk\"><strong>Have a sneak peek on his material</strong></a>, JB will soon share in a blog post. </p>\n\n\n\n<p>If it&#8217;s been a while since you checked on the Gutenberg state of affairs, there are plenty of resources in today&#8217;s edition. Let me get out of your way now.  </p>\n\n\n\n<p>Yours, ðŸ’•<br />Birgit</p>\n\n\n\n<p>PS: ðŸŽ™ï¸ The new episode, number <strong><a href=\"https://gutenbergtimes.com/podcast/changelog-39-gutenberg-site-editor/\">#39 of the Changelog</a> </strong>is now available with show notes and transcript. </p>\n\n\n\n\n\n<h2>Full Site Editing Updates</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/JosephaHaden\">Josepha Haden Chomphosy</a></strong> published in her <strong><a href=\"https://make.wordpress.org/updates/2021/03/12/full-site-editing-pre-merge-overview/\">full-site editing pre-merge overview</a> </strong>an updated time line of decision-making on the prototype/MVP and communication roll-out for the merge of Full-Site Editing (FSE) into the core software. As far as I understood it, the team will decide  on April 13 or 27, if a successful merge can be achieved for the 5.8 release in July (Yes, it was moved a month) or if it will be pushed to 5.9 in December 2021. </p>\n\n\n\n<p>Josepha wrote: <em>&#8220;The following is an outline of the communication work needed in the pre-merge period forÂ Phase 2Â of the Gutenberg project. This will put us in a position to merge Full Site Editing later this year while raising awareness and increasing the skills of our community as we go.&#8221;</em> She lists in bullet points, the who, what, why,  of the various teams to work together on this feature&#8217;s roll-out. </p>\n\n\n\n<p>In a follow-up post<strong>, </strong>Josepha shared the core team&#8217;s <a href=\"https://make.wordpress.org/core/2021/03/12/early-thoughts-on-wp5-8-planning/\"><strong>early thoughts on 5.8 Planning</strong></a> and elaborated on the changes, depending on if FSE will be merged or not in assembling the release team. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/geoffreygraham\">Geoff Graham</a></strong> discussed <a href=\"https://css-tricks.com/the-wordpress-evolution-toward-full-site-editing/\"><strong>The WordPress Evolution Toward Full-Site Editing</strong></a> at CSS-Tricks. He wrote: <em>&#8220;Iâ€™m personally all-in on this direction. Iâ€™d even go so far as to say (peeking over my shoulder at Chris) that CSS-Tricks is all-in on this as well.Â <a href=\"https://css-tricks.com/wordpress-block-transforms/\">We made the switch to blocks</a>Â last year, and it has reinvigorated our love for writing blog posts just like this one.&#8221;</em> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h3>Calls for Testing Full-Site Editing</h3>\n\n\n\n<p>Are you as excited about Full-Site Editing as I am? Well, I can&#8217;t wait to follow <strong>Anne McCarthy&#8217;</strong>s <a href=\"https://make.wordpress.org/test/2021/03/09/fse-program-testing-call-3-create-a-fun-custom-404-page/\"><strong>third call for FSE testing</strong></a>. This time she envisions you to <a href=\"https://make.wordpress.org/test/2021/03/09/fse-program-testing-call-3-create-a-fun-custom-404-page/\">create a fun 404 page</a>, something you normally couldn&#8217;t do without touching a php file and look at code. It&#8217;s called 404 because that&#8217;s the error code from web servers when they receive a browser request for a URL that doesn&#8217;t exist. If you need some inspiration the people at CreativeBloq have a <a href=\"https://www.creativebloq.com/web-design/best-404-pages-812505\">great collection of 404 pages</a>. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> walked the path before you, and shared her experience on the WPTavern, calling it the <strong><a href=\"https://wptavern.com/new-full-site-editing-testing-challenge-create-a-custom-404-page\">Full Site Editing Testing Challenge</a></strong>. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The results of the second testing call are in. <strong>Anne McCarthy</strong> published the summary overall comments:  <strong><a href=\"https://make.wordpress.org/test/2021/03/12/fse-program-build-a-homepage-testing-summary/\">FSE Program Build a Homepage Testing</a></strong>. The team gained invaluable information from those tests reports. 29 GitHub Issues were either confirmed, commented on or newly filed. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2>Block Editor for Content Creators</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/critterverse\">Channing Ritter</a></strong>, a new contributor on the design team she designed a site with large type, Dark Mode detection, and other accessibility-friendly styling such as visible underlines and focus states on links with the block editor. In her article <strong><a href=\"https://automattic.design/2021/03/12/accessibility-in-the-block-editor/\">Accessibility in the BlockÂ Editor</a>: A Beginners Guide.</strong> She wrote about the <em>&#8220;many useful accessibility features available and provide some context about how recent improvements are helping take accessibility and usability to the next level.&#8221;</em>Â She elaborates on recent Keyboard Navigation, Keyboard Shortcuts, and other Usability updates of the block-editor. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>To learn about <strong><a href=\"https://wordpress.org/support/article/block-editor-keyboard-shortcuts/\" rel=\"nofollow\">keyboard shortcuts the block-editor</a></strong> the documentation team  just published a comprehensive list of shortcuts and what they do, for both, Windows and Mac Operating Systems. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Will Morris</strong>, staff writer at <em>WordCandy, </em>published an in-depth article on the <em>Torque Magazine</em>: <strong><a href=\"https://torquemag.io/2021/03/gutenberg-full-site-editing/\">What Is Gutenberg Full-Site Editing (And How to Access It Today)</a></strong>. He wrote: <em>&#8220;The upcoming Full-Site Editing (FSE) feature promises to be the next major step in WordPress design and development. By getting some hands-on experience now, you can ensure your site is prepared for the changes ahead.&#8221;</em> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://www.meetup.com/WordPressNYC/events/276672145/\">Fantastic Blocks and Where To Find Them</a></strong> is the title of <a href=\"https://twitter.com/newyorkerlaura\"><strong>Laura Byrne</strong></a>&#8216;s talk at the <strong>WordPress NYC Meetup</strong> group on Tuesday, March 16th, 2021 at 7:00 pm. She wrote:<em>&#8220;With so many blocks to choose from (both native and 3rd party blocks) and more being added every day, which are the most vital ones to have in your content creation arsenal? Pick up indispensable tips and tricks for yourself and your clients.&#8221;</em> It&#8217;ll be a fast-paced presentation and Laura has a wealth of knowledge. Come for the blocks and stay for the second talk: <strong>The Three Layers of WP Maintenance</strong> with Mervin Hernandez. I definitely try to make it. Will we see you there, too?</p>\n\n\n\n<h2>Block Editor for Themes builders</h2>\n\n\n\n<p>Given the above mentioned timeline for the merge of Full Site Editing, it&#8217;s no surprise that <strong>Hector Pietro</strong> grouped the <a href=\"https://make.wordpress.org/core/2021/03/08/whats-next-in-gutenberg-march-2021/\"><strong>focus projects for March </strong></a>around that feature and the possible adoption path for conventional Themes.  He covers: Widget Screen, Navigation Screen, and Full-Site Editing. You might appreciate the section <strong>&#8220;Areas to be aware of&#8221;</strong> for block and plugin developers, theme builders, contributors and designers. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/jeffikus\">Jeffrey Pears</a> </strong>again keeps everyone updated on the specific discussions and issues around Themes in the <a href=\"https://make.wordpress.org/themes/2021/03/12/gutenberg-themes-week-of-march-11-2021/\">Gutenberg + Themes: Week of March 11, 2021</a> for this week. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In <strong><a href=\"https://wptavern.com/recreating-the-music-artist-wordpress-theme-homepage-with-the-block-editor\">Recreating the Music Artist WordPress Theme Homepage With the Block Editor</a></strong>, <strong><a href=\"https://twitter.com/justintadlock\">Justin Tadlock</a></strong> walks us through his experience to replicate the theme&#8217;s design sections with the block editor and patterns starting with a theme already supporting the block editor.  It&#8217;s a great example, how theme developers and site builders could embrace the Block editor and create new designs fast and support their users. Not all the modifications are yet available in Gutenberg. Justin use the EditorPlus plugin by Munir Kamal to add additional styling. </p>\n\n\n\n<h2>Developers and Block Building</h2>\n\n\n\n<p><strong>Justin Ahinon</strong> updated the WordPress community on the <strong><a href=\"https://make.wordpress.org/core/2021/03/12/block-editor-handbook-restructuring-project-update-march-12/\">block editor handbook restructuring project</a>.</strong> &#8220;<em>The idea is to build technical documentation around four parts:Â <strong>tutorials</strong>,Â <strong>how-to guides</strong>,Â <strong>technical reference</strong>Â andÂ <strong>explanation</strong>.&#8221; he wrote. </em></p>\n\n\n\n<p><strong><a href=\"https://twitter.com/jasonbahl\">Jason Bahl</a></strong>, creator of the WPGraphQL plugin, tackled the topic <strong><a href=\"https://www.wpgraphql.com/2021/03/09/gutenberg-and-decoupled-applications/\">Gutenberg and Decoupled Applications</a>.</strong> He walks you through three different approaches to use Gutenberg in a decouple application environment and lists the trade-offs for each. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Greg Ziolkowski</strong> shared on the core blog what it takes to <a href=\"https://make.wordpress.org/core/2021/03/08/publishing-wordpress-packages-to-npm/\"><strong>Publishing WordPress packages to npm</strong></a>, the NodeJS package manager registry. As of today, there are nearly 80 actively maintained packages under theÂ <a href=\"https://www.npmjs.com/org/wordpress\">WordPress organization</a> available. Greg shared some details about the latest addition to the process and summarize the overall strategy for publishing.</p>\n\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast via your favorite podcast apps!</strong><br />ðŸŽ™ï¸&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />ðŸŽ™ï¸&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<img />\n\n\n\n\n<h2>Plugins for the Block Editor</h2>\n\n\n\n<p>Meet <strong><a href=\"https://twitter.com/olivercampion\">Oliver Campion</a></strong> and his plugin <strong><a href=\"https://wordpress.org/plugins/options-for-twenty-twenty-one/\">Options for Twenty-Twenty One.</a> </strong>This plugin adds a ton, over 70 modification options to the default WordPress theme. James Huff, calls Oliver <em>&#8220;the most active helper in the Twenty-Twenty-one support forum&#8221;</em></p>\n\n\n\n<p>He also created the plugin <strong><a href=\"https://wordpress.org/plugins/display-remote-posts-block/\">Display Remote Posts Block</a></strong>, used to display recent posts from a WordPress or Blogger sites, bringing back the blog roll. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Speaking of Blog roll, <strong><a href=\"https://twitter.com/tw2113\">Michael Beckwith</a></strong> released theÂ <a href=\"https://wordpress.org/plugins/blogroll-block/\"><strong>Blogroll Block</strong></a>Â plugin. <em>Justin Tadlock</em> wrote <a href=\"https://wptavern.com/a-throwback-to-the-past-introducing-the-blogroll-block-wordpress-plugin\">about it for the WPTavern.</a> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The <strong><a href=\"https://twitter.com/NewspackPub\">Newspack </a></strong>team at Automattic published their <a href=\"https://wordpress.org/plugins/newspack-newsletters/\">Newspack-Newsletter</a> plugin in the WordPress repository. Similar to the <a href=\"https://newsletterglue.com/\">Newsletter Glue</a> plugin, that I use here, this plugin also enables you to use the block-editor design your newsletters, store them on your site and send them through Mailchimp or Constant Contact. Besides an account at one of the offered providers you also to apply for a free API key at MJML.org </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>GeneratePress</strong> offers their future <a href=\"https://generatepress.com/introducing-the-gp-theme-builder/\">GP Theme Builder plugin in public beta</a>. It brings you theme building using the core block editor and the GenerateBlocks plugin.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The <strong><a href=\"https://wordpress.org/plugins/block-manager/\">Gutenberg Block Manager</a></strong> PluginÂ by <a href=\"https://twitter.com/KaptonKaos\"><strong>Darren Cooney</strong></a> helps you organize the hundreds of blocks on your site on various screens. It definitely will help you get organized. <em>Sarah Gooding</em><strong> </strong><a href=\"https://wptavern.com/gutenberg-block-manager-plugin-enables-global-block-removal-and-recategorization\">reviewed it for the WPTavern.</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2 id=\"4-word-press-events\">WordPress Events</h2>\n\n\n\n<p><strong>March 16, 2021, 7:00 PMÂ toÂ 9:00 PM EDT</strong><br /><a href=\"https://www.meetup.com/WordPressNYC/\"><strong>WordPress NYC Meetup Group</strong></a><br />Fantastic Blocks and Where To Find Them  with Laura Byrne<br />The Three Layers of WP Maintenance with Mervin Hernandez</p>\n\n\n\n<p><strong>March 18, 2021 6:30 &#8211; 8:30 PM EDT</strong><br /><strong><a href=\"https://www.meetup.com/SF-WordPress-Users/events/276654859/\">Mega-Meetup South Florida</a></strong></p>\n\n\n\n<p><strong>April 15 &#8211; 17, 2021</strong><br /><a href=\"https://centroamerica.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp CentroamÃ©rica 2021</a></p>\n\n\n\n<p><strong>April 16th â€“ 18th, 2021.</strong>&nbsp;<br /><strong><a href=\"https://greece.wordcamp.org/2021/\">WordCamp Greece 2021 Online</a></strong>.<br />The organizer published the&nbsp;<a href=\"https://greece.wordcamp.org/2021/call-for-speakers/\" target=\"_blank\" rel=\"noreferrer noopener\">call for speakers</a>.</p>\n\n\n\n<p><strong>April 16th â€“ 18th, 2021</strong><br /><strong><a href=\"https://neo.wordcamp.org/2021/\">WordCamp Northeast Ohio</a></strong><br /><a href=\"https://neo.wordcamp.org/2021/call-for-sponsors/\">Take a look at the Call for Sponsors</a></p>\n\n\n\n<p><strong>May 24 &#8211; 27. 2021</strong><br /><a href=\"https://wordsesh.com/\" target=\"_blank\" rel=\"noreferrer noopener\">WordSesh 2021</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On the<a href=\"https://wpcalendar.io/online/\">Â <strong>Calendar for WordPress Online Events</strong></a> you&#8217;ll find a list of the upcoming WordPress Meetups, around the world, including WooCommerce, Elementor, Divi Builder and Beaver Builder meetups.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Mar 2021 21:44:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Gutenberg Block Manager Plugin Enables Global Block Removal and Recategorization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:225:\"https://wptavern.com/gutenberg-block-manager-plugin-enables-global-block-removal-and-recategorization?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-block-manager-plugin-enables-global-block-removal-and-recategorization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3249:\"<p>The world of Gutenberg blocks is expanding. WordPress&rsquo; official block directory <a href=\"https://wptavern.com/call-for-block-plugins-the-wordpress-block-directory-is-open-for-business\">launched in June 2020</a> with just 60 single-block plugins. Today, it has grown to more than <a href=\"https://wordpress.org/plugins/browse/blocks/\">480 blocks</a>. As users incorporate more blocks into their websites, the block inserter can become a very long list to scroll when browsing.</p>\n\n\n\n<p>Block management capabilities were added to Gutenberg in <a href=\"https://wptavern.com/gutenberg-5-3-introduces-block-management-adds-nesting-to-the-cover-block\">version 5.3</a>, released in 2019. It allows users to search for a block and turn individual blocks and sections on or off in the block inserter. The feature hasn&rsquo;t changed much over the past two years but will soon be getting a major update that will relocate it to the Preferences modal and redesign it to use panels with support for&nbsp;<a href=\"https://github.com/WordPress/gutenberg/issues/27708\">toggling block variations</a>&nbsp;on and off.</p>\n\n\n\n<p>If you need more fine-grained block management, <a href=\"https://connekthq.com/\">Darren Cooney</a>&lsquo;s <a href=\"https://wordpress.org/plugins/block-manager/\">Gutenberg Block Manager</a> plugin offers an admin interface for removing and recategorizing blocks. It is different from the core capabilities in that site admins can globally manage the enabled/disabled state of each block and changes will be reflected in the block inserter for all users. The plugin provides a full-screen interface for managing blocks on its own settings page outside of the editor.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Each block has a description and a toggle button for disabling it. There is enough space to include the number of instances for each block, and this seems like something useful the plugin could add in the future. Block categories are available as a quick navigation list in the sidebar and entire categories can be turned on or off with one click. </p>\n\n\n\n<p>The latest version of the plugin adds Category Switcher support for all blocks, including core Gutenberg blocks. Changing a block&rsquo;s category will update its location in the block inserter.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>This plugin could be useful for periodically tidying up, improving the organization of&nbsp;blocks&nbsp;within the&nbsp;block&nbsp;inserter. Paring back the list of available blocks could also make it easier for website managers to have access to only the blocks that are necessary for their work. The plugin includes a filter for controlling the status of blocks across multiple WordPress environments.</p>\n\n\n\n<p>After testing the <a href=\"https://wordpress.org/plugins/block-manager/\">Gutenberg Block Manager</a>, my only criticism is that the plugin&rsquo;s name is the same as the core WordPress feature, making it somewhat confusing. It might be more clear to focus on its distinctions and include that in the name, such as &ldquo;Global Block Manager&rdquo; or some variation. Other than that, it functions just as advertised and is available for free in the official plugins directory.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Mar 2021 03:14:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: 2nd Annual Atarim Web Agency Summit Kicks Off March 23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113661\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:173:\"https://wptavern.com/2nd-annual-atarim-web-agency-summit-kicks-off-march-23?utm_source=rss&utm_medium=rss&utm_campaign=2nd-annual-atarim-web-agency-summit-kicks-off-march-23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6118:\"<p class=\"has-drop-cap\">Atarim is launching its 2nd annual <a href=\"https://atarim.io/summit/\">Web Agency Summit</a> in a couple of weeks. The free event will run from March 23 &ndash; 26. The goal of the event is to help agencies and freelancers in the WordPress space grow sustainable businesses.</p>\n\n\n\n<p>Atarim is the company formerly known as WP Feedback. In February, the <a href=\"https://wptavern.com/wp-feedback-rebrands-to-atarim-moves-to-a-full-saas-model\">business rebranded</a> because its primary product had grown beyond a mere feedback plugin into an across-the-board agency solution.</p>\n\n\n\n<p>&ldquo;While I&rsquo;m a big fan of WordCamps and a big believer in the value that events can bring to personal growth, we found that most events in our space focus on the technical aspect of building a website,&rdquo; said Vito Peleg, Atarim&rsquo;s founder. &ldquo;We take a more business-oriented approach. From finding the first clients through building solid recurring revenue and all the way to lessons from some of the biggest agencies in the world at full scale.&rdquo;</p>\n\n\n\n<p>The event has 36 sessions, which are broken down into four categories that focus on:</p>\n\n\n\n<ul><li><strong>Build:</strong> Best practices for performance, SEO, accessibility, and the future of building websites.</li><li><strong>Expand:</strong> Building recurring revenue and maintaining profits.</li><li><strong>Scale:</strong> Project management, completing services, payment, and getting projects unstuck.</li><li><strong>Thrive:</strong> Hiring, community building, profitability at scale, and exit strategies.</li></ul>\n\n\n\n<p>Peleg hopes that attendees can glean some knowledge in the sessions while saving years of trial and error.</p>\n\n\n\n<p>&ldquo;All are delivered through our own summit platform, so attendees don&rsquo;t need to jump around between Zoom calls, YouTube Lives, and Slack channels,&rdquo; he said. &ldquo;We brought it all into our own interactive platform.&rdquo;</p>\n\n\n\n<p>Atarim has made several sessions publicly available from <a href=\"https://wptavern.com/wp-feedback-kicks-off-free-virtual-summit-for-wordpress-professionals-on-april-27\">2020&rsquo;s event</a>. For those on the fence, it should provide insight into the types of talks they can expect.</p>\n\n\n\n<ul><li><strong>Lee Jackson</strong>: <a href=\"https://atarim.io/summit/mastering-content-creation-with-lee-jackson/\">Mastering Content Creation and the New Work Environment</a></li><li><strong>Clifford Almeida:</strong> <a href=\"https://atarim.io/summit/six-figure-recurring-revenue-business-with-clifford-almeida/\">Blueprint To Building a Six-Figure Recurring Revenue Business</a></li><li><strong>Alex Panagis:</strong> <a href=\"https://atarim.io/summit/simple-seo-strategy-with-alex-panagis/\">Developing a Simple and Replicable SEO Strategy for Your Business</a></li><li><strong>Alison Rothwell:</strong> <a href=\"https://atarim.io/summit/profitable-wordpress-care-plans-with-alison-rothwell/\">The Path To Selling Profitable WordPress Care Plans</a></li><li><strong>Kristina Romero:</strong> <a href=\"https://atarim.io/summit/remote-team-management-with-kristina-romero/\">Remotely Managing Projects and Your Team</a></li></ul>\n\n\n\n<p>This year, each session will be running live &mdash; last year&rsquo;s sessions were pre-recorded. This will allow attendees to be involved in real-time. There will also be a designated Q&amp;A time for each session.</p>\n\n\n\n<p>The event is free to attend through the last week of March for anyone. However, the sessions will eventually fall behind a paywall, which helps cover costs.</p>\n\n\n\n<p>&ldquo;We offer an All Access Pass for those that want to watch the replays for $97, which is the investment for those that get it before the event,&rdquo; said Peleg. &ldquo;This also includes 30+ sessions from last year&rsquo;s event for a total of 50+ hours of expert advice, specifically designed to help web freelancers and agencies build a solid business.&rdquo;</p>\n\n\n\n<h2>Success and Lessons Learned From 2020</h2>\n\n\n\n<p class=\"has-drop-cap\">Last year&rsquo;s event kick-started as a response to the changing nature of conferences in the Covid-era. Peleg described the initiative as a way of &ldquo;licking our own wounds&rdquo; after his company had planned to attend, sponsor, and have its own retreat at WordCamp Asia in Thailand, which was <a href=\"https://wptavern.com/wordcamp-asia-2020-canceled-over-covid-19-concerns\">canceled in 2020</a>.</p>\n\n\n\n<p>&ldquo;This drove me into action, wanting to lift some spirits in the community,&rdquo; he said. &ldquo;I didn&rsquo;t know that we would end up with the biggest event in the WordPress space and have such incredible partners that came along for the ride.&rdquo;</p>\n\n\n\n<p>Last year&rsquo;s event had 5,725 attendees from 126 countries. In total, they watched 53,945 hours of videos. They also won 1,000s of prizes at sponsor booths that included iPads, board games, and more.</p>\n\n\n\n<p>&ldquo;This was way more than what we expected, and the summit platform even broke on the first day when we were getting more than 240,000 requests to the server in an hour,&rdquo; said Peleg. &ldquo;Luckily, there isn&rsquo;t a better community for something like this to happen. Very quickly, some of the sponsors joined forces with some of the speakers and our team and got us back on the air for a full week of action. While they were working to get this sorted, I was mostly pacing back and forth in my office like a headless chicken, but this year we&rsquo;ve come prepared, with load balancers, auto-scaling processes, and a much leaner platform to sustain the scale.&rdquo;</p>\n\n\n\n<p>There are no plans to switch to a physical Web Agency Summit in the coming years. For now, the virtual model is working.</p>\n\n\n\n<p>&ldquo;I&rsquo;m very much looking forward to the return of WordCamps as physical events when [Covid-19] blows over, but I believe that virtual events are here to stay, so for the foreseeable future, once a year, we&rsquo;ll bring back our summit as a celebration of the business side of the WordPress industry.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Mar 2021 17:16:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Post Status: Post Status Excerpt (No. 1) â€“ WordPress 5.7 &amp; Plugin Rank\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=81617\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://poststatus.com/post-status-excerpt-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3013:\"<h2 id=\"h-learn-what-s-new-in-wordpress-5-7-this-week\">Learn what\'s new in WordPress 5.7 this week <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f195.png\" alt=\"ðŸ†•\" class=\"wp-smiley\" /></h2>\n\n\n\n<p>With this episode of Post Status Excerpt â€” the first of many to come â€” David Bisset and Cory Miller kick off the new show with a quick chat about the latest WordPress release (5.7 &#8220;Esperanza&#8221;) â€” what it addresses, and maybe a pet peeve or two about the new editor. </p>\n\n\n\n<p><strong>Also covered:</strong> PluginRank.com and the way it might be useful for WordPress entrepreneurs. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f50c.png\" alt=\"ðŸ”Œ\" class=\"wp-smiley\" /></p>\n\n\n\n<p>Every week Post Status Excerpt will brief you on important WordPress news relevant to the Post Status community â€” in about 15 minutes or less! Learn what\'s new in WordPress in a flash.<img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a1.png\" alt=\"âš¡\" class=\"wp-smiley\" /></p>\n\n\n\n\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f517.png\" alt=\"ðŸ”—\" class=\"wp-smiley\" /> Mentioned in the show</h3>\n\n\n\n<ul><li><a href=\"https://twitter.com/dimensionmedia\">David Bisset (Twitter)</a></li><li><a href=\"https://twitter.com/corymiller303\">Cory Miller (Twitter)</a></li><li><a href=\"https://poststatus.com/footnotes/wordpress-5-7-was-released-on-schedule/\">Some 5.7 release highlights</a></li><li><a href=\"https://us.wordcamp.org/2020/\">WordPress 5.7 Field Guide</a></li><li><a href=\"https://www.wpbeginner.com/news/whats-coming-in-wordpress-5-7-features-and-screenshots/\">WPBeginner Guide To WordPress 5.7</a></li><li><a href=\"http://pluginrank.com\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">PluginRank.com</a></li></ul>\n\n\n\n<h3>Sponsor: <a href=\"https://www.godaddy.com/pro/hub-dashboard?utm_source=events_sponsor_page&utm_medium=events&utm_campaign=en-us_events_prd_awa_partners_part_poststatus_2021_001\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">GoDaddy Pro</a></h3>\n\n\n\n<p>Manage your clients, websites, and tasks from a single dashboard with <a href=\"https://www.godaddy.com/pro/hub-dashboard?utm_source=events_sponsor_page&utm_medium=events&utm_campaign=en-us_events_prd_awa_partners_part_poststatus_2021_001\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">GoDaddy Pro</a>. Perform security scans, backups, and remote updates to many sites on any host. Check up on site performance, monitor uptime and analytics â€” and then send reports to your happy clients. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f64c.png\" alt=\"ðŸ™Œ\" class=\"wp-smiley\" /> </p>\n\n\n\n<p><a href=\"https://www.godaddy.com/pro/hub-dashboard?utm_source=events_sponsor_page&utm_medium=events&utm_campaign=en-us_events_prd_awa_partners_part_poststatus_2021_001\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">GoDaddy Pro is free</a> â€” and designed to make your life better. Try it today, for free.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Mar 2021 16:45:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: Publish Text, Image, and Gallery Snippets With the Shortnotes WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113624\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:217:\"https://wptavern.com/publish-text-image-and-gallery-snippets-with-the-shortnotes-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=publish-text-image-and-gallery-snippets-with-the-shortnotes-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4448:\"<p class=\"has-drop-cap\">Yesterday, Happy Prime owner and engineer Jeremy Felt released <a href=\"https://wordpress.org/plugins/shortnotes/\">Shortnotes</a>, a plugin for writing notes from the WordPress editor. The intention is for users to create short pieces of content, such as that found on Twitter, Instagram, and similar social networks. However, it does not come with a front-end posting interface, at least not in version 1.0.</p>\n\n\n\n<p>The plugin works just like the post and page editor. It should be straightforward for most users.</p>\n\n\n\n<p>While the Shortnotes plugin is relatively bare-bones for now, it serves as a foundation of something that could be more. Part of what makes social networks appealing is the ease of publishing quick content. Publishing notes through the plugin requires visiting the WordPress admin, clicking &ldquo;Add New,&rdquo; writing the content, publishing, and clicking a new link to view it on the front end. A quick-publishing interface either through a Dashboard widget or a front-end form would be a useful addition.</p>\n\n\n\n<img />Note post type in the block editor.\n\n\n\n<p>Some new concepts that not all users may be familiar with are the &ldquo;Reply to URL&rdquo; and &ldquo;Reply to name&rdquo; fields. These are semantic fields for creating a note in reply to another post or person on the web. The plugin will automatically output this reply link on the front end.</p>\n\n\n\n<p>The plugin integrates with the <a href=\"https://wordpress.org/plugins/webmention/\">Webmention plugin</a>. A Webmention is a standardized protocol for mentions and conversations across the web. The goal is a decentralized social &ldquo;network&rdquo; of sorts where everyone owns and controls their content. It is an alternative to what <a href=\"https://indieweb.org/\">IndieWeb</a> calls the &ldquo;corporate&rdquo; web in which large tech companies have control.</p>\n\n\n\n<p>When entering a Reply to URL, Shortnotes will automatically send that URL through the Webmentions plugin system. It will also parse URLs in the post content as webmentions if they exist.</p>\n\n\n\n<p>Users may also notice that the note title field is <em>missing</em>. This is intentional. The plugin automatically generates titles. They are needed for the <code>&lt;title&gt;</code> tag, which tools like search engines use.</p>\n\n\n\n<p>The idea is for titles to not appear as part of the theme layout. Because most themes are not coded to check for post-type support before displaying them, there is a high chance that a user&rsquo;s theme will output the auto-generated title on the front end. For now, that means editing a bit of theme code for those who do not want them to appear. Felt has an <a href=\"https://github.com/jeremyfelt/writemore/blob/0b344cc9613b1ed011cba13cb3c09376def596fc/template-parts/content/content-single.php#L16-L36\">example of how he modified this</a> for his site&rsquo;s custom Twenty Twenty-One child theme. In the long run, as more themes begin supporting the upcoming site editor, users will be able to make this customization directly in the WordPress admin.</p>\n\n\n\n<p>With a few tweaks like removing the title and some minor CSS adjustments, I was able to create a clean Notes archive page using the Genesis Block theme:</p>\n\n\n\n<img />Modified notes archive.\n\n\n\n<p>One of my interests in checking this project out was diving into a real-world example of a plugin that limited which blocks could be used with the editor. The notes post type only allows the Paragraph, Image, and Gallery blocks. Again, the idea is to replicate the feel of what you can do on social networks. Overall, this feature worked as it should, limiting the notes to a subset of blocks.</p>\n\n\n\n<p>However, I ran across a bug with the block editor. All block patterns, regardless of what blocks they contained, appeared in the inserter. Clicking on one containing a disallowed block would not insert it into a post. However, the editor did add a pop-up note that it had. There is a <a href=\"https://github.com/WordPress/gutenberg/issues/23275\">GitHub issue for this bug</a> that has seen little movement since it was opened in June 2020.</p>\n\n\n\n<p>Felt created a plugin to solve this called <a href=\"https://wordpress.org/plugins/unregister-broken-patterns/\">Unregister Broken Patterns</a>. It removes any patterns that contain blocks that a post type does not support. At best, it is a temporary measure and needs to be addressed in WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Mar 2021 22:04:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: New Full Site Editing Testing Challenge: Create a Custom 404 Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113522\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/new-full-site-editing-testing-challenge-create-a-custom-404-page?utm_source=rss&utm_medium=rss&utm_campaign=new-full-site-editing-testing-challenge-create-a-custom-404-page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7250:\"<p>The Full Site Editing (FSE) Outreach program has launched its <a href=\"https://make.wordpress.org/test/2021/03/09/fse-program-testing-call-3-create-a-fun-custom-404-page/\">third testing call</a>, continuing the effort to engage users in a structured testing flow focused on specific practical tasks. Previous rounds had testers <a href=\"https://wptavern.com/fse-outreach-round-2-building-a-custom-homepage-with-gutenbergs-site-editor\">building a custom homepage</a> and exploring the distinction between editing modes (template vs page/post).</p>\n\n\n\n<p>The challenge in round #3 is to create a fun, custom 404 page. This page is often an opportunity for brands and individuals to inject a little humor and creativity into their websites, transforming a potentially negative experience into a path back to working links. In the past, site owners not comfortable with code had to rely on plugins in order to design their 404 pages. The new FSE capabilities will open a whole new world of customization. </p>\n\n\n\n<p>Testers who want to jump in on this challenge will need to set up a testing environment that uses WordPress 5.7, the&nbsp;<a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks Theme</a>, and Gutenberg&nbsp;10.1.1 (<a href=\"https://github.com/WordPress/gutenberg/releases/tag/v10.1.1\">latest version</a>). Nothing special is required so it&rsquo;s easy to jump in and start testing right away.</p>\n\n\n\n<p>Anne McCarthy, who is spearheading the FSE Outreach program, has published a detailed testing flow that provides a guided exploration of the 404 template and simple tasks like adding navigation and other blocks. </p>\n\n\n\n<p>This challenge seemed like a good place to dip my toe into FSE testing and check out the progress the team has made in the past few months. Here is what I set out to do: add a funny gif, a search form, and a button to get back home. </p>\n\n\n\n<p>One of the first steps is to open the&nbsp;<a href=\"https://cldup.com/UzP6gqLQYP.png\">Navigation Toggle</a>&nbsp;and head to Templates &gt; 404. The &ldquo;Navigation Toggle&rdquo; refers to the WordPress icon in the top left corner of the page, but as a new user I would expect that to take me back to the dashboard. The naming doesn&rsquo;t seem clear and I had to look up what was meant by Navigation Toggle. </p>\n\n\n\n<p>Following the instructions, I selected the Header template part and removed it from the 404 page, but I don&rsquo;t think it&rsquo;s obvious to users that it&rsquo;s possible to delete the entire template part in one go. Without the instructions, I probably would have started deleting all the blocks within the header template part before trying to figure out how to remove the entire thing.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The testing flow asks users to insert a Template Part Block, select the &ldquo;New Template Part&rdquo; option, and add a custom title like &ldquo;404 Header.&rdquo; While this feature technically works, it seems like power user knowledge and I don&rsquo;t see less technical site owners having any idea that this is possible or understanding its purpose without reading tutorials. </p>\n\n\n\n<p>One aspect of it that could be improved is that new Template Parts don&rsquo;t save until you click &ldquo;Update Design.&rdquo; If you move away from the block and continue other parts of the design, it appears that it hasn&rsquo;t saved and you may be tempted to create it again, as I was. Clicking &ldquo;Update Design&rdquo; will show you all the Template Parts you have created and requires confirmation to save them. This can get confusing if you don&rsquo;t make a point to stop and save periodically.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Once the design is saved, there is no confirmation but the button is no longer operable. The interface could communicate this better. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>I didn&rsquo;t encounter anything that was broken, though several aspects of it could be significantly improved. Everything outlined in the testing flow seems to work as it should, if users can ever find it. It is going to be a real challenge to make the interface spectacularly simple enough for ordinary users to feel comfortable knowing when and how to create their own template parts.</p>\n\n\n\n<p>Adding more blocks was easy enough when I customized the 404 page content. I skipped the part of the testing script that involved creating a menu. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a href=\"https://cloudup.com/cZ2pTjzGoU4\"><img src=\"https://cldup.com/fSlprFinO2.gif\" alt=\"404 preview\" width=\"1072\" height=\"627\" /></a>\n</div>\n\n\n\n<p>Unfortunately, the preview looked nothing like the display on the frontend, but I assume that is still in progress. After trying multiple sources, I found that embeds didn&rsquo;t work and some of the block styles were off. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The testing flow for this challenge focused primarily on creating content within the new Template Part. That aspect of the test seemed to work, but there are a few things that could be significantly improved. The last part of the challenge is to answer the following questions: </p>\n\n\n\n<ul><li><strong>Did the experience crash at any point?</strong>  <em>No</em></li><li><strong>Did the saving experience work properly?</strong>&nbsp;<em>Yes but it was confusing without any confirmation.</em></li><li><strong>Did the saving experience make sense when making changes to the Template Part vs the general content?</strong>&nbsp;<em>It did after taking some time to explore it, but it&rsquo;s not a concept that would be immediately evident to beginners.</em></li><li><strong>What did you find particularly confusing or frustrating about the experience?</strong> <em>Saving template parts was confusing, and the previews are much better than what you get on the frontend.</em></li><li><strong>What did you especially enjoy or appreciate about the experience?</strong>&nbsp;<em>I appreciated the ability to edit templates and template parts without jumping into code.</em></li><li><strong>Did you find that what you created in the Site Editor matched what you saw when you viewed your 404 page?</strong>&nbsp;<em>No, it was far from similar to the preview.</em></li><li><strong>Did it work using Keyboard only?</strong> <em>No</em></li><li><strong>Did it work using a screen reader?</strong> <em>Did not test</em></li></ul>\n\n\n\n<p>My expectation when I began testing the 404 page design editing experience was that it would be a simple and enjoyable customization process with a few bugs. It ended up frustrating in the end because I could not trust the previews at all. </p>\n\n\n\n<p>Is WordPress close to having an MVP of full site editing ready for 5.8? All the bones are in place. It feels like a rough prototype with enough momentum to reach MVP status in a few months. Editing and saving template parts works but the current interface design falls squarely within the realm of power users.</p>\n\n\n\n<p>If you want to join this challenge, <a href=\"https://make.wordpress.org/test/2021/03/09/fse-program-testing-call-3-create-a-fun-custom-404-page/\">follow the testing flow</a> and post your feedback by March 23, 2021.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Mar 2021 16:14:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: A Throwback To the Past: Introducing the Blogroll Block WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113555\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"https://wptavern.com/a-throwback-to-the-past-introducing-the-blogroll-block-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=a-throwback-to-the-past-introducing-the-blogroll-block-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4838:\"<p class=\"has-drop-cap\">It was 2003. I was just getting my first taste of blogging and similar experiments on the world wide web. Seemingly every blog I toured showcased a long list of the owner&rsquo;s friends. These were all the other cool kids jumping onto this blogging bandwagon &mdash; the blogroll was almost a status symbol. You had a sense of belonging with your online clique.</p>\n\n\n\n<p>Let&rsquo;s face it. Many of the people blogging in that era were loners, geeks, nerds, artists, and people who generally did not feel they fit into groups of &ldquo;normal&rdquo; people. Perhaps that is overly stereotypical, but that was the culture I found exploring this new world. It was a breakthrough for me as a person. I could let my <em>geek flag fly</em> in this new group of non-normal-but-so-much-more-interesting people than those I grew up with from my small hometown. Blogs were a home away from home for those who felt like outsiders.</p>\n\n\n\n<p>I could share that I cared more about comic books than football on my little corner of the web. I could link to like-minded people in my blogroll. And they would link back to me.</p>\n\n\n\n<p>It has been eight years since the <a href=\"https://core.trac.wordpress.org/ticket/21307\">death of the link manager</a> in WordPress. The underlying code is still there, only shown for those with existing links or the <a href=\"https://wordpress.org/plugins/link-manager/\">Link Manager plugin</a> installed.</p>\n\n\n\n<p>It was the end of an era. Social media had taken over much of that camaraderie from my early venture into the blogging world, replacing it with a much more toxic version. There are groups and pockets within the social spheres that replicate that feeling, but it is all on a third-party server. The people no longer control their content or their content&rsquo;s fate. Our likes and shares and retweets are lost in the endless void of memes, parodies, and libelous hot-takes. We no longer curate our links, cutting out the cruft to make room for the things representing who we are in the moment.</p>\n\n\n\n<p>One of the early highlights of my development career was building an image gallery using the WordPress links system. I was able to showcase all of my must-read WordPress blogs on one page.</p>\n\n\n\n<img />Link manager used to create image gallery.\n\n\n\n<p>I also used the link manager as a menu-management interface for my theme users long before WordPress adopted its nav menu system. Themes at the time were still using a page-listing function that often required end-users to edit code to manage.</p>\n\n\n\n<p>Not only was the blogroll a vital aspect of my introduction to blogging, but it was also equally as crucial to my evolution as a developer. WordPress&rsquo;s built-in link manager allowed me to step outside the box and innovate.</p>\n\n\n\n<p>Maybe I am a bit nostalgic for blogrolls adorning every blog&rsquo;s sidebar. There was a bit of a trust system built into it. If I liked your blog, there was a good chance that I would find something interesting in the links that you decided to share.</p>\n\n\n\n<p>Sure, there are other ways to achieve the same result today. However, the blogroll was a neon-sign in pitch black that shouted, &ldquo;Hey, check out these cools things!&rdquo;</p>\n\n\n\n<p>That is why I am giddy any time I see something that takes me down the memory lane of nearly two decades ago. It reminds me of how far we have come and how the web has changed over the years. And how much I wish things would sometimes stay the same.</p>\n\n\n\n<p>Michael Beckwith released the <a href=\"https://wordpress.org/plugins/blogroll-block/\">Blogroll Block</a> plugin two weeks ago. While I do not see a blogrolling revolution any time soon, it is nice to see a block-editor option for those of us who are still clinging to our links.</p>\n\n\n\n<p>Blogroll Block requires the Link Manager plugin, which still has 60,000 active installs despite no updates since it was first dropped into the WordPress plugin directory. <em>Maybe there is hope for a comeback.</em></p>\n\n\n\n<p>The block is straightforward. It replicates most of the options for the <code>wp_list_bookmarks()</code> function, which outputs the links. The downside to the plugin is there is no live preview in the editor. It currently outputs a box with a link to the developer reference. I am hoping this is a stopgap measure between version 1.0 and the next iteration.</p>\n\n\n\n<img />Editor view of the Blogroll Block.\n\n\n\n<p>I would also like to see the option to include link images in a grid. That way, I could recreate my &ldquo;bookmarks gallery&rdquo; with the block editor. That would be a fun afternoon project.</p>\n\n\n\n<p>If we had a blogroll on the Tavern, I like to think that we would link to Beckwith&rsquo;s blog. <a href=\"https://trexthepirate.com/wp/\">We are on his</a>. It would only be fair.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Mar 2021 23:45:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:162:\"HeroPress: How WordPress Made Space For Me As A Kid Who Grew Up With MS â€“ Come WordPress Mi Ha Accolta Quando Ero Una Bambina Crescendo Con La Sclerosi Multipla\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3492\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:194:\"https://heropress.com/essays/how-wordpress-made-space-for-me-as-a-kid-who-grew-up-with-ms/#utm_source=rss&utm_medium=rss&utm_campaign=how-wordpress-made-space-for-me-as-a-kid-who-grew-up-with-ms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12228:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/03/030821-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Healthy or not, developer or not, blogger or not - WordPress belong to you too. Italian: Spero che ricorderÃ  a chiunque legga questo articolo che WordPress Ã¨ per tutti. Sano o no, sviluppatore o no, blogger o no, WordPress appartiene anche a te.\" /><p><a href=\"https://heropress.com/feed/#italian\">Questo saggio Ã¨ disponibile anche in italiano.</a></p>\n<p>I was first introduced to WordPress when I was 13 years old. My parents had the idea to give me my very own WordPress website. I was able to use, play, test, and try whatever I wanted with it.</p>\n<h3>My First Encounter With WordPress</h3>\n<p>While the technical aspects of my new WordPress website intrigued me, I was more interested in the space it made for me to write. All throughout my childhood I had struggled with chronic pain, fatigue, and other unexplained symptoms. Having a private world I could call my own, I was able to write my story.</p>\n<p>And there is something truly amazing about having a place to tell your story.</p>\n<p>When doctors, nurses, specialists, and the best hospitals I could go to struggled to find answers for me and my parents, I felt like my life and world were out of control. But logging onto my little website and typing away on the computer keys gave me a sense of control. I couldnâ€™t always do things that other kids had the energy to do. But I could get lost in writing for hours. I couldnâ€™t control my life story, but I could write about it.</p>\n<p>It felt like writing letters to my future self, â€œLook at what you went through, look how strong you were.â€ And even now, when I go on, I feel like Iâ€™m writing letters to my past self, â€œLook at you, look how you made it.â€</p>\n<h3>WordPress In The Real World</h3>\n<p>I swear I thought that when I grew up, that Iâ€™d be healthy. I thought that â€œunhealthinessâ€ was a part of being a kid. Something as terrible as having a bedtime, or having to eat carrots.</p>\n<p>And like most kids, I couldnâ€™t wait to be a grown up so that I could stay up as late as I wanted, never eat carrots again, andâ€” be healthy.</p>\n<p>But growing up didnâ€™t change that. In fact, my condition grew slowly worse as years went by. I was diagnosed with Multiple Sclerosis, a decade later at 18 years old.</p>\n<p>I realized that I couldnâ€™t handle a 9-5 work schedule, I couldnâ€™t drive to a job on some days (shout-out to my mom for driving me) and I knew deep down that I would need to find another way to work.</p>\n<p>I began writing music and book reviews online. I wrote blog posts. They were getting published and I was getting paid too. WordPress felt familiar, typing on the computer keys felt comfortable, and sharing my words with the world felt surreal.</p>\n<p>I think I believed WordPress was mine somehow. I was learning that WordPress is something that belongs to everyone in some way. And I loved it.</p>\n<h3>My WordPress Job at Valet</h3>\n<p>The thing I love about WordPress is that itâ€™s not just for developers or bloggers or SEO experts. I began to meet more people in the community and was delighted to find people like me, who didnâ€™t know the technical stuff, but were a part of WordPress.</p>\n<p>There were social media managers, there were designers, there was a place for everyone. And the community felt as important as the rest of everything that makes WordPress what it is. It felt like it was about people and relationships as well as codes and databases.</p>\n<p>I was hired at Valet in 2020 thanks to my relationships with people, in this case, my very own dad.</p>\n<p>I like being a part of a WordPress company, and I love that I contribute to a team that helps people with their websites. I understand the importance of having a space thatâ€™s yours. Whether itâ€™s a business or personal site, having a website gives you the power of telling your own story.</p>\n<p>I didnâ€™t have to work 9-5 jobs, or have my mom drive me to work, I didnâ€™t have to worry about days when I needed to just stay in sweats. I have a 100% remote job which I can do despite the plot twists in my story, thanks to WordPress and the people in it.</p>\n<h3>Welcomed Into The WordPress Community</h3>\n<p><a href=\"https://heropress.com/essays/you-make-the-difference/\">Kimberly Lipari</a> was the first person to repeatedly tell me that I was really indeed a part of the WordPress community. It felt unreal. I wasnâ€™t a dev, I donâ€™t know how to code, and yet I got to be a part of it all? I felt like I was a fake. But she continues to remind me that Iâ€™m real, I get to be here, I get to stay, I have a place.</p>\n<p>When <a href=\"https://heropress.com/essays/i-found-my-tribe/\">Michelle Frechette</a> told me I could contribute to <a href=\"https://www.bigorangeheart.org/\">Big Orange Heart</a>, I was honored. I was typing my words, pieces of my story, and sharing them with a community of people.</p>\n<p>And when Topher contacted me to write my WordPress Story for HeroPress I could only say yes.</p>\n<p>I could go on and on, this community is not perfect, but everyone here is constantly working to be better and do better.</p>\n<h3>My WordPress Story</h3>\n<p>Iâ€™m proud and grateful to be sharing my story today.</p>\n<p>I hope that maybe it can be a letter to anyone out there thinking, â€œI wonâ€™t make it.â€</p>\n<p>I hope that it will remind anyone reading this that WordPress is a space for everyone. Healthy or not, developer or not, blogger or notâ€” WordPress belongs to you too.</p>\n<p>I hope most of all that my story can somehow remind you that your story is important.</p>\n<hr />\n<h1 id=\"italian\">Come WordPress Mi Ha Accolta Quando Ero Una Bambina Crescendo Con La Sclerosi Multipla</h1>\n<p>Sono stata introdotta a WordPress per la prima volta quando avevo 13 anni. I miei genitori hanno avuto l&#8217;idea di darmi un sito WordPress personale, tutto mio. Cosi potevo usarlo, provare e riprovare, o fare quello che volevo. Nessuno di noi sapeva lâ€™importanza che WordPress avrebbe nel mio futuro.</p>\n<h3>Il mio primo incontro con WordPress</h3>\n<p>Mentre gli aspetti tecnici del mio nuovo sito Web WordPress mi hanno incuriosita, ero piÃ¹ interessata nel fatto che ha creato uno spazio per scrivere.</p>\n<p>Per tutta la mia infanzia soffrivo con dolore cronico, stanchezza e altri sintomi inspiegabili. Avere quel mondo privato che era tutto mio, avevo la possibilitÃ  di scrivere la mia storia. E c&#8217;Ã¨ qualcosa di veramente potente nell&#8217;avere un posto dove raccontare la tua storia.</p>\n<p>Quando i medici ed infermieri, nei migliori ospedali facevano fatica a trovare risposte per me e per i miei genitori, mi sentivo come se la mia vita e il mio mondo fossero fuori controllo. Ma l&#8217;accesso al mio piccolo sito web e la digitazione sui tasti del computer mi dava semrpre un senso di controllo. Non riuscivo a fare tante cose che gli altri ragazzi riuscivano a fare. Ma potevo perdermi nella scrittura per ore ed ore. Non potevo controllare la storia della mia vita, ma la potevo scrivere.</p>\n<p>Era come scrivere lettere al mio sÃ© futuro, &#8220;Guarda cosâ€™hai passato, guarda quanto eri forte&#8221;. E anche ora, quando torno a scrivere lÃ¬, mi sento come se stessi scrivendo lettere alla persona che ero nel passato, &#8220;Guardati, guarda come ce l&#8217;hai fatta&#8221;.</p>\n<h3>WordPress nel mondo reale</h3>\n<p>Giuro che pensavo che una volta cresciuta, sarei stata in buona salute. Ho pensato che la &#8220;malasanitÃ &#8221; fosse una parte dell&#8217;essere una bambina. Qualcosa di fastidioso come andare a dormire ad una certa ora, o dover mangiare le carote. E come la maggior parte dei bambini, non vedevo l&#8217;ora di crescere per poter stare sveglia fino a tardi, non mangiare mai piÃ¹ le carote e poiâ€” essere sana.</p>\n<p>Ma crescere non ha cambiato niente. In effetti, la mia salute continuava a peggiorare lentamente con il passare degli anni. Mi Ã¨ stata finalmente diagnosticata la sclerosi multipla, dieci anni dopo, quando avevo 18 anni.</p>\n<p>Mi sono resa conto che non potevo gestire un orario di lavoro a tempo pieno, non riuscivo nemmeno a guidare certi giorni (ringrazio mia mamma per avermi accompagnata tantissime volte al lavoro), e sapevo in fondo che avrei dovuto trovare un altro modo per lavorare.</p>\n<p>Ho iniziato a scrivere recensioni di libri e musica online. Ho scritto vari post per diversi blog. A volte venivo anche pagata. WordPress per me era familiare, digitare sui tasti del computer era comodo, e condividere le mie parole con il mondo era surreale. Penso che a quel tempo credevo che WordPress fosse solo mio in un certo senso. Ma stavo imparando che WordPress Ã¨ qualcosa che in un modo o lâ€™altro appartiene a tutti. E adoravo questo fatto.</p>\n<h3>Il mio lavoro WordPress presso Valet</h3>\n<p>La cosa che amo di WordPress Ã¨ che non Ã¨ solo per sviluppatori del web, blogger o esperti sul SEO. Ho iniziato a conoscere sempre piÃ¹ persone nella comunitÃ , e sono stata felice di trovare persone come me, che non conoscevano le cose tecniche, ma facevano comunque parte di WordPress.</p>\n<p>C&#8217;erano i social media manager, e anche designer, c&#8217;era un posto per tutti. E la comunitÃ  veniva apprezzata tanto quanto il resto di tutto ciÃ² che rende WordPress quello che Ã¨. Erano importanti le persone e le relazioni, proprio come erano importanti i codici ed i database.</p>\n<p>Sono stata assunta da Valet nel 2020 grazie ai miei rapporti con le persone, in questo caso, mio â€‹â€‹padre. Mi piace far parte di un&#8217;azienda WordPress e mi piace contribuire ad un team che aiuta le persone con i loro siti web. Capisco l&#8217;importanza di avere uno spazio che Ã¨ tutto tuo. Che si tratti di un sito aziendale o personale, avere un sito web ti dÃ  il potere di raccontare la tua storia.</p>\n<p>Non dovevo lavorare a tempo pieno, o farmi accompagnare da mia madre al lavoro, non dovevo preoccuparmi dei giorni in cui riuscivo solo a stare in pigiama a letto. Ho un lavoro remoto al 100% che posso fare nonostante i colpi di scena nella mia storia.</p>\n<h3>Il Benvenuto nella comunitÃ  di WordPress</h3>\n<p><a href=\"https://heropress.com/essays/you-make-the-difference/\">Kimberly Lipari</a> Ã¨ stata la prima persona a dirmi piu volte che facevo davvero parte della comunitÃ  di WordPress. Sembrava irreale. Non ero uno sviluppatore web, non so costruire un sito, eppure posso farne parte? Mi sentivo come se fossi unâ€™intrusa nella comunitÃ . Ma lei continua a ricordarmi che non sono unâ€™intrusa, posso rimanere qui, ho un posto e uno spazio tutto mio qui.</p>\n<p>Quando <a href=\"https://heropress.com/essays/i-found-my-tribe/\">Michelle Frechette</a> mi ha detto che potevo contribuire a <a href=\"https://www.bigorangeheart.org/\">Big Orange Heart</a>, ero cosÃ¬ contenta e sorpresa. Posso scrivevo le mie parole, pezzi della mia storia, e li posso condividere con una comunitÃ  di persone carissime.</p>\n<p>E quando Topher mi ha contattato per scrivere la mia storia di WordPress per HeroPress, potevo solo dire di sÃ¬.</p>\n<p>Potrei andare avanti all&#8217;infinito, questa comunitÃ  non Ã¨ perfetta, ma tutti qui lavorano costantemente per diventare sempre migliori.</p>\n<h3>La mia storia di WordPress</h3>\n<p>Sono grata di condividere la mia storia con voi oggi.</p>\n<p>Spero che forse possa essere una lettera a chiunque pensa come pensavo io, &#8220;Non ce la farÃ²&#8221;.</p>\n<p>Spero che ricorderÃ  a chiunque legga questo articolo che WordPress Ã¨ per tutti. Sano o no, sviluppatore o no, blogger o no, WordPress appartiene anche a te.</p>\n<p>Spero soprattutto che la mia storia possa in qualche modo possa ricordare a tutti che ognuno ha una storia, ed ogni storia ha importanza e valore infinita.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/how-wordpress-made-space-for-me-as-a-kid-who-grew-up-with-ms/\">How WordPress Made Space For Me As A Kid Who Grew Up With MS &#8211; Come WordPress Mi Ha Accolta Quando Ero Una Bambina Crescendo Con La Sclerosi Multipla</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Mar 2021 09:05:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Allie Dye\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: WordPress.com and Jetpack Launch Story Block for Mobile Apps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113427\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:181:\"https://wptavern.com/wordpress-com-and-jetpack-adds-story-block-for-mobile-apps?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-and-jetpack-adds-story-block-for-mobile-apps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5217:\"<p class=\"has-drop-cap\">Automattic-owned WordPress.com <a href=\"https://wordpress.com/blog/2021/03/08/introducing-wordpress-stories-a-new-way-to-engage-your-audience/\">launched its new Story-publishing feature</a> today. Currently, only users with the WordPress for Android or iOS apps can add stories. Self-hosted users with Jetpack-connected sites can publish via the mobile apps too.</p>\n\n\n\n<p>The development team previewed the Story feature in January, <a href=\"https://wptavern.com/wordpress-for-android-previews-new-story-posts-feature-now-in-public-beta\">launching a public beta</a> on the Android app.</p>\n\n\n\n<p>Stories are essentially media and text slideshows. They have become popular on the web via sites like Instagram and Facebook. Solutions for Stories already exist in the WordPress space, such as <a href=\"https://wptavern.com/google-officially-releases-its-web-stories-for-wordpress-plugin\">Google&rsquo;s Web Stories</a> and the <a href=\"https://wptavern.com/makestories-2-0-launches-editor-for-wordpress-rivaling-googles-official-web-stories-plugin\">MakeStories</a> plugins, both of which provide a more robust experience than Automattic&rsquo;s offering at the moment.</p>\n\n\n\n<p>However, more options and tools do not always create a better overall user experience. WordPress.com&rsquo;s Stories feature has a more streamlined process, allowing users to build Story slides without much fuss.</p>\n\n\n\n<p>To create Stories, users must click the &ldquo;New&rdquo; icon from their site&rsquo;s home screen in the mobile app. From there, they should see an option for adding a Story post. First-time users will see a Stories welcome screen.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><a href=\"https://wptavern.com/wp-content/uploads/2021/03/wpcom-site-home-1.jpg\"><img /></a></li><li class=\"blocks-gallery-item\"><a href=\"https://wptavern.com/wp-content/uploads/2021/03/wpcom-story-start-1.jpg\"><img /></a></li><li class=\"blocks-gallery-item\"><a href=\"https://wptavern.com/wp-content/uploads/2021/03/wpcom-story-welcome-1.jpg\"><img /></a></li></ul>\n\n\n\n<p>The user experience in terms of editing slides for a Story was straightforward. I ran into no issues adding images, text, and customizing colors.</p>\n\n\n\n<p>Right now, users cannot do much more. They are prompted to upload media when first creating a story. Each chosen media item automatically becomes a slide &mdash; users can add more later.</p>\n\n\n\n<p>Font customization options are limited to a handful of presets. Text can be aligned or increased in size. Users can also change the color of the text and its background. For WordPress.com users who want more, they will have to wait. For self-hosted WordPress users, they have other plugin options.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><a href=\"https://wptavern.com/wp-content/uploads/2021/03/wpcom-story-slide-text-colors-1.jpg\"><img /></a></li><li class=\"blocks-gallery-item\"><a href=\"https://wptavern.com/wp-content/uploads/2021/03/wpcom-story-slide-text-edit-1.jpg\"><img /></a></li><li class=\"blocks-gallery-item\"><a href=\"https://wptavern.com/wp-content/uploads/2021/03/wpcom-story-publish-1.jpg\"><img /></a></li></ul>\n\n\n\n<p>I prefer the lighter experience. The learning curve is next to nonexistent, and the team can always tack on features later. The kitchen-sink route of launching with hundreds of options is prone to more errors. It also often include features that are not needed by a majority of the user base. I will take a smaller start with focused iteration any day.</p>\n\n\n\n<p>My first attempt at creating Story had its share of issues, introducing speedbumps in the publishing and updating process. Not all of my slides were published. Some of the text I had worked so hard on disappeared. At first, I thought I might have messed something up along the way. It was my first attempt, after all. Following repeated attempts to update, the issues persisted. I re-added the text. Whether it became a part of the published Story was hit or miss. I put new slides in. One randomly duplicated itself, and others disappeared.</p>\n\n\n\n<p>It was an hour-long exercise in frustration to publish a basic recipe. Even now, readers cannot learn how to make my Italian-style steamed Chinese pork buns. On the positive side, I did get four likes on my incomplete post.</p>\n\n\n\n<p>Determined not to be defeated, I attempted a second Story. Publishing went off without a hitch. For good measure, I updated the Story and added a new slide. Once again, no issues.</p>\n\n\n\n<p>I knew the publishing experience could not be that broken after the initial ease of creating the Story slides.</p>\n\n\n\n<p>Maybe the development team fixed a bug between my first and second attempts. Maybe something simply broke down on the technological highway. I will chalk my first attempt up to the internet gods playing a cruel trick on me.</p>\n\n\n\n<p>The Story feature is technically a <a href=\"https://github.com/Automattic/jetpack/tree/master/projects/plugins/jetpack/extensions/blocks/story\">block included with Jetpack</a> that can only be edited in the mobile apps. The version I am waiting on is when it works via the browser-based editor. At that point, we will be able to compare it to existing plugins.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Mar 2021 22:17:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"WPTavern: WordPress 5.7 Introduces Drag-and-Drop for Blocks and Patterns, Streamlined Admin Color Palette, and One-Click Migration from HTTP to HTTPS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"https://wptavern.com/wordpress-5-7-introduces-drag-and-drop-for-blocks-and-patterns-streamlined-admin-color-palette-and-one-click-migration-from-http-to-https?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-7-introduces-drag-and-drop-for-blocks-and-patterns-streamlined-admin-color-palette-and-one-click-migration-from-http-to-https\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5269:\"<p><a href=\"https://wordpress.org/news/2021/03/esperanza/\">WordPress 5.7</a> &ldquo;Esperanza&rdquo; was released today, named for Esperanza Spalding, an American jazz bassist who became an accomplished singer, songwriter, and composer in her early 20&rsquo;s. </p>\n\n\n\n<p>Versions 9.3 &ndash; 9.9 of the Gutenberg plugin are rolled into this update, bringing hundreds of enhancements and bug fixes that make working in the block editor more efficient and enjoyable. </p>\n\n\n\n<p>One of the highlights is the new drag-and-drop capabilities in the block inserter. Users can now drag blocks and block patterns directly into the post content area, making page building even faster. </p>\n\n\n\n\n\n\n\n<p>Many of the user-facing editor enhancements in this release give the user more control when using existing blocks:</p>\n\n\n\n<ul><li><strong>Full height alignment</strong>: Blocks such as the Cover block now can have an option to expand to fill the entire viewport.</li><li><strong>Buttons block</strong>: The Buttons block now supports vertical alignments, and you can set the width of a button to a preset percentage.</li><li><strong>Social Icons block</strong>: You can now change the size of the icons in the Social Icons block.</li><li><strong>Font size in more places</strong>: You can now change the font size in the List and Code blocks</li></ul>\n\n\n\n<p>This release also improves the UI for block variations to include the icon and description for the variation in the block inspector and a new dropdown to allow for switching between variations. Reusable blocks have been updated to be saved at the same time the post is saved. Quite a few more improvements have been added in <a href=\"https://wptavern.com/gutenberg-10-1-enhances-reusable-blocks-updates-social-icons-spacing-options-and-normalizes-image-block-toolbar#comment-368111\">version 10.1</a> of the Gutenberg plugin, which is not yet included core. If you use Reusable blocks frequently, you may want to install the plugin to take advantage of the expanded UI.</p>\n\n\n\n<p>In addition to all the editor improvements, WordPress 5.7 introduces a <a href=\"https://make.wordpress.org/core/2021/02/23/standardization-of-wp-admin-colors-in-wordpress-5-7/\">streamlined color palette for the admin</a>. It standardizes the palette to&nbsp;seven&nbsp;core&nbsp;colors and a range of <a href=\"https://codepen.io/ryelle/full/WNGVEjw\">56 shades</a>. One of the benefits is that all the shades meet the requirements for&nbsp;<a href=\"https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html\">WCAG 2.0 AA recommended contrast ratio</a>&nbsp;against white or black. </p>\n\n\n\n<div class=\"wp-block-image\"><img />New Admin Color Scheme</div>\n\n\n\n<p>Theme and plugin developers who want to better match the admin color scheme can easily reference the new standardized shades to make their products more at home in the WordPress admin. WordPress&rsquo; existing core classes have also been updated with the new color palette so plugin authors can use them to work within the new standardized palette.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>One of the most exciting technical enhancements in 5.7 is a new <a href=\"https://wptavern.com/wordpress-5-7-will-make-it-easier-to-migrate-from-http-to-https\">one-click migration from HTTP to HTTPS</a>. WordPress can now detect if the user&rsquo;s hosting environment has support for HTTPS and update with the click of a button, handling mixed content rewrites where possible. This feature is available on the Site Health recommendations screen.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>WordPress 5.7 continues the <a href=\"https://core.trac.wordpress.org/ticket/51812\">ongoing cleanup after the update to jQuery 3.5.1</a>, which will eventually result in the removal of jQuery Migrate plugin. It fixes numerous jQuery deprecations in external libraries, cleaning up many <code>JQMIGRATE</code>&nbsp;warnings. </p>\n\n\n\n<p>Developers may also be interested in the new filter-based <a href=\"https://core.trac.wordpress.org/changeset/49992\">Robots API</a> included in 5.7. It enables the central management of the content of the&nbsp;<code>robots</code>&nbsp;meta tag injected into the page, and includes a setting to toggle whether search engines are allowed to display large media from the site. By default, a&nbsp;<code>max-image-preview:large</code>&nbsp;robots directive which will be injected into the&nbsp;<code>robots</code>&nbsp;meta tag based on the new setting.</p>\n\n\n\n<p>Version 5.7 also includes native support for <a href=\"https://wptavern.com/native-lazy-loading-support-for-iframes-coming-to-wordpress-5-7\">lazy loading iframes</a>, a follow-up to WordPress&rsquo; support for <a href=\"https://wptavern.com/native-lazy-loading-support-coming-to-wordpress\">lazy loading for images</a> that came in 5.5. This should improve loading for pages that include embeds and other types of iframes. </p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide/\">WordPress 5.7 field guide</a> for technical details on everything new in this release. This update is the result of work from 481 volunteer contributors who collaborated on 250 tickets on Trac and more than 950 pull requests on GitHub.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Mar 2021 21:02:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress.org blog: WordPress 5.7 â€œEsperanzaâ€\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2021/03/esperanza/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39664:\"<div class=\"wp-block-cover\"><img width=\"632\" height=\"327\" class=\"wp-block-cover__image-background wp-image-9932\" alt=\"\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/about-header-brushes.png?resize=632%2C327&ssl=1\" /><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-large-font-size\"><strong>WordPress 5.7</strong> <strong>&#8220;Esperanza&#8221;</strong></p>\n\n\n\n<p class=\"has-text-align-center\">Bringing you fresh colors in the admin, simpler interactions in the editor, and controls right where you need them, WordPress 5.7 lets you focus on the content you create.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Meet â€œEsperanzaâ€, the first WordPress release of 2021. â€œEsperanzaâ€ is named in honor of Esperanza Spalding, a modern musical prodigy. Her path as a musician is varied and inspiringâ€”<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://en.wikipedia.org/wiki/Esperanza_Spalding\">learn more about her</a>&nbsp;and give her music a listen!</p>\n\n\n\n<p>With this new version, WordPress brings you fresh colors. The editor helps you work in a few places you couldnâ€™t before without getting into code or hiring a pro. The controls you use most are right where you need them. Layout changes that should be simple, are even simpler to make.</p>\n\n\n\n<h2>Now the new editor is easier to use</h2>\n\n\n\n<p><strong>Font-size adjustment in more places:</strong>&nbsp;now, font-size controls are right where you need them in the List and Code blocks. No more trekking to another screen to make that single change!</p>\n\n\n\n<p><strong>Reusable blocks:</strong>&nbsp;several enhancements make reusable blocks more stable and easier to use. And now they save automatically with the post when you click the Update button.</p>\n\n\n\n<p><strong>Inserter drag-and-drop:</strong>&nbsp;drag blocks and block patterns from the inserter right into your post.</p>\n\n\n\n\n\n\n\n<h2>You can do more without writing custom code</h2>\n\n\n\n<p><strong>Full-height alignment:</strong>&nbsp;have you ever wanted to make a block, like the Cover block, fill the whole window? Now you can.</p>\n\n\n\n<p><strong>Buttons block:</strong>&nbsp;now you can choose a vertical or a horizontal layout. And you can set the width of a button to a preset percentage.</p>\n\n\n\n<p><strong>Social Icons block:</strong>&nbsp;now you can change the size of the icons.</p>\n\n\n\n<img src=\"https://i0.wp.com/s.w.org/images/core/5.7/about-57-cover.jpg?w=632&ssl=1\" alt=\"\" />\n\n\n\n<h2>A simpler default color palette</h2>\n\n\n\n<p>This new streamlined color palette collapses all the colors that used to be in the WordPress source code down to seven core colors and a range of 56 shades that meet theÂ <a href=\"https://www.w3.org/WAI/WCAG2AA-Conformance\">WCAG 2.0 AA recommended contrast ratio</a>Â against white or black.</p>\n\n\n\n<p>Find the new palette in the default WordPress Dashboard color scheme, and use it when youâ€™re building themes, plugins, or any other components. For all the details,&nbsp;<a href=\"https://make.wordpress.org/core/2021/02/23/standardization-of-wp-admin-colors-in-wordpress-5-7\">check out the Color Palette dev note</a>.</p>\n\n\n\n<h2>From HTTP to HTTPS in a single click</h2>\n\n\n\n<p>Starting now, switching a site from HTTP to HTTPS is a one-click move. WordPress will automatically update database URLs when you make the switch. No more hunting and guessing!</p>\n\n\n\n<h2>New Robots API</h2>\n\n\n\n<p>The new Robots API lets you include the filter directives in the robots meta tag, and the API includes the&nbsp;<code>max-image-preview: large</code>&nbsp;directive by default. That means search engines can show bigger image previews, which can boost your traffic (unless the site is marked&nbsp;<em>not-public</em>).</p>\n\n\n\n<h2>Lazy-load your iFrames</h2>\n\n\n\n<p>Now itâ€™s simple to let iframes lazy-load. By default, WordPress will add a&nbsp;<code>loading=\"lazy\"</code>&nbsp;attribute to iframe tags when both width and height are specified.</p>\n\n\n\n<h2>Ongoing cleanup after update to jQuery 3.5.1</h2>\n\n\n\n<p>For years jQuery helped make things move on the screen in ways the basic tools couldnâ€™tâ€”but that keeps changing, and so does jQuery.</p>\n\n\n\n<p>In 5.7, jQuery gets more focused and less intrusive, with fewer messages in the console.</p>\n\n\n\n<h2>Check the Field Guide for more!</h2>\n\n\n\n<p>Check out the latest version of the WordPress Field Guide. It highlights developer notes for each change you may want to be aware of.&nbsp;<a href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide\">WordPress 5.7 Field Guide.</a></p>\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>The WordPress 5.7 release comes to you from a small and experienced release squad:&nbsp;&nbsp;</p>\n\n\n\n<ul><li><strong>Release Lead:</strong>&nbsp;Matt Mullenweg (<a href=\"https://profiles.wordpress.org/matt/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>matt</a>)</li><li><strong>Triage Lead:</strong>&nbsp;Tonya Mork (<a href=\"https://profiles.wordpress.org/hellofromtonya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hellofromtonya</a>)</li><li><strong>Release Coordinator:</strong>&nbsp;Ebonie Butler (<a href=\"https://profiles.wordpress.org/metalandcoffee/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>metalandcoffee</a>)</li><li><strong>Core Tech Lead:</strong>&nbsp;Sergey Biryukov (<a href=\"https://profiles.wordpress.org/sergeybiryukov/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sergeybiryukov</a>)</li><li><strong>Editor Tech Lead:</strong>&nbsp;Robert Anderson (<a href=\"https://profiles.wordpress.org/noisysocks/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>noisysocks</a>)</li><li><strong>Design Lead:</strong>&nbsp;Tim Hengeveld (<a href=\"https://profiles.wordpress.org/hedgefield/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hedgefield</a>)</li><li><strong>Accessibility Lead:</strong>&nbsp;Sarah Ricker (@sarahricke<strong>r</strong>)</li><li><strong>Documentation Lead:&nbsp;</strong>Jb Audras (<a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a>)</li><li><strong>Test Lead:</strong>&nbsp;Monika Rao (<a href=\"https://profiles.wordpress.org/monikarao/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>monikarao</a>)</li></ul>\n\n\n\n<p>This release is the reflection of the hard work of 481 generous volunteer contributors. Collaboration occurred on nearly 250 tickets on Trac and over 950 pull requests on GitHub.</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/7studio/\">7studio</a>, <a href=\"https://profiles.wordpress.org/aaribaud/\">aaribaud</a>, <a href=\"https://profiles.wordpress.org/technosailor/\">Aaron Brazell</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/abagtcs/\">abagtcs</a>, <a href=\"https://profiles.wordpress.org/acerempel/\">acerempel</a>, <a href=\"https://profiles.wordpress.org/activecoder/\">activecoder</a>, <a href=\"https://profiles.wordpress.org/ad7six/\">ad7six</a>, <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamboro/\">adamboro</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addison Stavlo</a>, <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais/\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a>, <a href=\"https://profiles.wordpress.org/albertomake/\">albertomake</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexwoollam/\">Alex Woollam</a>, <a href=\"https://profiles.wordpress.org/alex27/\">alex27</a>, <a href=\"https://profiles.wordpress.org/chemiker/\">Alexander Lueken</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/almendron/\">almendron</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/ambienthack/\">ambienthack</a>, <a href=\"https://profiles.wordpress.org/amolv/\">Amol Vhankalas</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">AndrÃ© Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/anyssa/\">Anyssa Ferreira</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/artpi/\">Artur Piszek</a>, <a href=\"https://profiles.wordpress.org/maigret/\">Aur&#233;lien Denis</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bartosz777/\">bartosz777</a>, <a href=\"https://profiles.wordpress.org/basscan/\">basscan</a>, <a href=\"https://profiles.wordpress.org/bduclos/\">bduclos</a>, <a href=\"https://profiles.wordpress.org/becdetat/\">becdetat</a>, <a href=\"https://profiles.wordpress.org/pixolin/\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bhanusinghkre/\">bhanusinghkre</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/bonniebeeman/\">bonniebeeman</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/ibdz/\">Boy Witthaya</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brijeshb42/\">brijeshb42</a>, <a href=\"https://profiles.wordpress.org/burnuser/\">burnuser</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/carloscastilloadhoc/\">carloscastilloadhoc</a>, <a href=\"https://profiles.wordpress.org/carlosgprim/\">carlosgprim</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/celendesign/\">celendesign</a>, <a href=\"https://profiles.wordpress.org/cenay/\">Cenay Nailor</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">ceyhun0</a>, <a href=\"https://profiles.wordpress.org/chexwarrior/\">chexwarrior</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger/\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/amethystanswers/\">Christina Workman</a>, <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/clayray/\">clayray</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreyw/\">Corey</a>, <a href=\"https://profiles.wordpress.org/cristinasoponar/\">cristinasoponar</a>, <a href=\"https://profiles.wordpress.org/dam6pl/\">Damian Nowak</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dvankooten/\">Danny van Kooten</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David BiÅˆovec</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davecpage/\">David Page</a>, <a href=\"https://profiles.wordpress.org/dbtedg/\">dbtedg</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/denishua/\">denishua</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">DÃ¡vid SzabÃ³</a>, <a href=\"https://profiles.wordpress.org/e_baker/\">e_baker</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella vanÂ Durpe</a>, <a href=\"https://profiles.wordpress.org/erichmond/\">Elliott Richmond</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej BajgoriÄ‡</a>, <a href=\"https://profiles.wordpress.org/enricocarraro/\">Enrico Carraro</a>, <a href=\"https://profiles.wordpress.org/epicfaace/\">epicfaace</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion/\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ericmann/\">Eric Mann</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Erin \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/eventualo/\">eventualo</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/florianziegler/\">Florian Ziegler</a>, <a href=\"https://profiles.wordpress.org/floriswt/\">floriswt</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekpress/\">GeekPress</a>, <a href=\"https://profiles.wordpress.org/geekzebre/\">geekzebre</a>, <a href=\"https://profiles.wordpress.org/geoffguillain/\">Geoff Guillain</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/gkibria69/\">gKibria</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gmariani405/\">gmariani405</a>, <a href=\"https://profiles.wordpress.org/alinod/\">Gord</a>, <a href=\"https://profiles.wordpress.org/greatsaltlake/\">greatsaltlake</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg ZiÃ³Å‚kowski</a>, <a href=\"https://profiles.wordpress.org/grzim/\">grzim</a>, <a href=\"https://profiles.wordpress.org/gumacahin/\">gumacahin</a>, <a href=\"https://profiles.wordpress.org/gunnard/\">gunnard</a>, <a href=\"https://profiles.wordpress.org/bordoni/\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/hansjovisyoast/\">Hans-Christiaan Braun</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani/\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hauvong/\">hauvong</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/helmutwalker/\">helmutwalker</a>, <a href=\"https://profiles.wordpress.org/tejwanihemant/\">Hemant Tejwani</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/nonverbla/\">hirasso</a>, <a href=\"https://profiles.wordpress.org/hmabpera/\">hmabpera</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hsingyuc7/\">hsingyuc7</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/ibiza69/\">ibiza69</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/ingereck/\">ingereck</a>, <a href=\"https://profiles.wordpress.org/iprg/\">iprg</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi/\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/iviweb/\">iviweb</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jadeddragoon/\">jadeddragoon</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jakeparis/\">jakeparis</a>, <a href=\"https://profiles.wordpress.org/jakubtyrcha/\">jakub.tyrcha</a>, <a href=\"https://profiles.wordpress.org/jamesgol/\">James Golovich</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/viablethought/\">Jason Ryan</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffr0/\">Jeff Chandler</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/jessplease/\">Jessica Duarte</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/joanrho/\">joanrho</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelclimbsthings/\">joelclimbsthings</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/jrchamp/\">Jonathan Champ</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jomisica/\">Jos&#233; Miguel</a>, <a href=\"https://profiles.wordpress.org/jose64/\">Jose Luis</a>, <a href=\"https://profiles.wordpress.org/accessiblejoe/\">Joseph Karr O&#039;Connor</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/tai/\">JOTAKI, Taisuke</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsmoriss/\">JS Morisset</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/justinsainton/\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jtsternberg/\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">kafleg</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/karamcnair/\">kara.mcnair</a>, <a href=\"https://profiles.wordpress.org/vyskoczilova/\">Karolina Vyskocilova</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/tmfespresso/\">kimdcottrell</a>, <a href=\"https://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"https://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/hwk-fr/\">Konrad Chmielewski</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/kurtpayne/\">Kurt Payne</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a>, <a href=\"https://profiles.wordpress.org/litemotiv/\">litemotiv</a>, <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/_luigi/\">Luigi Cavalieri</a>, <a href=\"https://profiles.wordpress.org/lpawlik/\">Lukas Pawlik</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">Luke Walczak</a>, <a href=\"https://profiles.wordpress.org/oellin/\">Magali</a>, <a href=\"https://profiles.wordpress.org/magnuswebdesign/\">magnuswebdesign</a>, <a href=\"https://profiles.wordpress.org/mahfuz01/\">Mahafuz</a>, <a href=\"https://profiles.wordpress.org/akramipro/\">Mahdi Akrami</a>, <a href=\"https://profiles.wordpress.org/malinajirka/\">malinajirka</a>, <a href=\"https://profiles.wordpress.org/mallorydxw/\">mallorydxw</a>, <a href=\"https://profiles.wordpress.org/tomdxw/\">mallorydxw-old</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a>, <a href=\"https://profiles.wordpress.org/marcelo2605/\">marcelo2605</a>, <a href=\"https://profiles.wordpress.org/marcio-zebedeu/\">Marcio Zebedeu</a>, <a href=\"https://profiles.wordpress.org/netweblogic/\">Marcus</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/marijnkoopman/\">Marijn Koopman</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/mdwolinski/\">Mark D Wolinski</a>, <a href=\"https://profiles.wordpress.org/markhowellsmead/\">Mark Howells-Mead</a>, <a href=\"https://profiles.wordpress.org/markscottrobson/\">Mark Robson</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/vindl/\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/mberard/\">Mathieu Berard Smartfire</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"https://profiles.wordpress.org/mdrockwell/\">mdrockwell</a>, <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"https://profiles.wordpress.org/megabyterose/\">Megan</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/mehrshaddarzi/\">Mehrshad Darzi</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mendezcode/\">mendezcode</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/miinasikk/\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan DiniÄ‡</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">mirka</a>, <a href=\"https://profiles.wordpress.org/daddou/\">Mohamed El Amine DADDOU</a>, <a href=\"https://profiles.wordpress.org/monika/\">Monika</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/morenaf/\">morenaf</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/mzorz/\">mzorz</a>, <a href=\"https://profiles.wordpress.org/naveen17797/\">Naveen</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/nre/\">nicky</a>, <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a>, <a href=\"https://profiles.wordpress.org/nico_martin/\">Nico Martin</a>, <a href=\"https://profiles.wordpress.org/nicolalaserra/\">Nicola Laserra</a>, <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/nwjames/\">nwjames</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a>, <a href=\"https://profiles.wordpress.org/oxyc/\">oxyc</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patopaiar/\">patopaiar</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/pawki07/\">pawki07</a>, <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/gungeekatx/\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pinkalbeladiya/\">Pinkal Devani</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/prettyboymp/\">prettyboymp</a>, <a href=\"https://profiles.wordpress.org/princeahmed/\">Prince</a>, <a href=\"https://profiles.wordpress.org/pypwalters/\">pypwalters</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rafaelgalani/\">Rafael Galani</a>, <a href=\"https://profiles.wordpress.org/rafhun/\">rafhun</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ratneshk/\">ratneshk</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/reardestani/\">Reza Ardestani</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly/\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/roger995/\">roger995</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/romain-d/\">Romain</a>, <a href=\"https://profiles.wordpress.org/burtrw/\">Ronnie Burt</a>, <a href=\"https://profiles.wordpress.org/magicroundabout/\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a>, <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Sa&#353;a</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">Sarah Ricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/shahinsid07/\">Shahin Sid</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/souri_wpaustria/\">souri_wpaustria</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a>, <a href=\"https://profiles.wordpress.org/t-p/\">t-p</a>, <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a>, <a href=\"https://profiles.wordpress.org/voboghure/\">Tapan</a>, <a href=\"https://profiles.wordpress.org/teamdnk/\">TeamDNK</a>, <a href=\"https://profiles.wordpress.org/utz119/\">TeBenachi</a>, <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a>, <a href=\"https://profiles.wordpress.org/thorlentz/\">thorlentz</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tinodidriksen/\">tinodidriksen</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/arcangelini/\">Tony A</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/tonysandwich/\">tonysandwich</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/transl8or/\">transl8or</a>, <a href=\"https://profiles.wordpress.org/tylertork/\">Tyler Tork</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/umangvaghela123/\">Umang Vaghela</a>, <a href=\"https://profiles.wordpress.org/vandestouwe/\">vandestouwe</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">vcanales</a>, <a href=\"https://profiles.wordpress.org/vipulc2/\">Vipul Chandel</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T.</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/wendyjchen/\">Wendy Chen</a>, <a href=\"https://profiles.wordpress.org/wesselvandenberg/\">wesselvandenberg</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wallstead/\">Willis Allstead</a>, <a href=\"https://profiles.wordpress.org/worldedu/\">worldedu</a>, <a href=\"https://profiles.wordpress.org/wponlinesupport/\">WP OnlineSupport</a>, <a href=\"https://profiles.wordpress.org/tikifez/\">Xristopher Anderton</a>, <a href=\"https://profiles.wordpress.org/yannkozon/\">Yann Kozon</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yscik/\">yscik</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yuliyan/\">yuliyan</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.\n\n\n\n<p></p>\n\n\n\n<div class=\"wp-block-group has-background\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-white-color has-text-color has-large-font-size\"><strong>Code is poetry.</strong></p>\n</div></div>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Mar 2021 20:52:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WordPress Considers Dropping Support for IE 11 After Usage Falls Below 1%\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=113384\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:209:\"https://wptavern.com/wordpress-considers-dropping-support-for-ie-11-after-usage-falls-below-1?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-considers-dropping-support-for-ie-11-after-usage-falls-below-1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5345:\"<p>A new proposal on WordPress.org explores the ramifications of <a href=\"https://make.wordpress.org/core/2021/03/04/discussion-dropping-support-for-ie11/\">dropping support for Internet Explorer 11 (IE11</a>). H&eacute;ctor Prieto summarized the current state of IE usage among WordPress users, citing three metrics that demonstrate declining usage that is now cumulatively below ~1%: </p>\n\n\n\n<ul><li>0.71% from&nbsp;<a href=\"https://gs.statcounter.com/browser-version-partially-combined-market-share#monthly-202001-202101\">StatCounter&rsquo;s GlobalStats</a></li><li>1.2% from&nbsp;<a href=\"https://www.w3counter.com/trends\">W3 Counter</a></li><li>0.46% from&nbsp;WordPress.com</li></ul>\n\n\n\n<p>StatCounter&rsquo;s GlobalStats record IE11 having dipped below 1.0% for the first time in August 2020, and it has continued declining steadily since then. </p>\n\n\n\n<p>The numbers cited in the proposal are similar to those contributors used when WordPress 4.8 officially <a href=\"https://wptavern.com/wordpress-4-8-will-end-support-for-internet-explorer-versions-8-9-and-10\">dropped support for IE versions 8, 9, and 10</a> in 2017. These types of browser support decisions are always carefully considered, as they affect more users than one might guess, given the scale of a software project with more than <a href=\"https://wptavern.com/wordpress-passes-40-market-share-of-alexa-top-10-million-websites\">40% market share of all websites</a>. </p>\n\n\n\n<p>&ldquo;It&rsquo;s important to keep in mind that when viewing these statistics in the context of WordPress, these percentages represent tens (if not hundreds) of thousands of users that could potentially be left behind if support for IE11 is dropped,&rdquo; Prieto said. </p>\n\n\n\n<p>Most of the people still using IE11 are doing so because of forces outside their control. They may not have the ability to simply download an alternative browser. This is more common for users working inside major institutions like banking, government, and education.</p>\n\n\n\n<p>At this point in WordPress&rsquo; history, the benefits for the web seem to heavily outweigh the negative impacts on a small percentage of users who might be affected by lack of IE11 support. Improving the performance of the editor is one driving factor in this decision. Prieto shared stats from <a href=\"https://github.com/WordPress/gutenberg/pull/27685\">an exploration by Gutenberg developer Riad Benguella</a>, where he measured the impact of dropping IE11 support, demonstrating an 84.9 kB (7%)&nbsp;reduction in Gutenberg JavaScript build files.</p>\n\n\n\n<p>&ldquo;Dropping support would result in smaller scripts, lower maintenance burden, and decrease build times,&rdquo; Prieto said. </p>\n\n\n\n<p>&ldquo;The smaller downloads would positively impact all users, especially those on slower networks, or computing devices. We expect a result of dropping IE11 support to improve performance for the vast majority of users.&rdquo;</p>\n\n\n\n<p>Most of those participating in the discussion on WordPress.org are strongly in favor of dropping support for IE11, but a few cautioned that it must be done in a controlled way, with an EOL date announced months in advance. There are some institutions that selected WordPress for their projects based solely on the fact that it offers IE11 support, and they need time to plan a transition.</p>\n\n\n\n<p>&ldquo;I can see the crowd cheering for finally getting rid of IE and trust me I&rsquo;ll be the first to pop champagne when that day has finally come,&rdquo; WordPress developer Thomas Kr&auml;ftner said. &ldquo;Still I believe we need to make sure this is done in a slow, controlled and careful way so the effort saved for not supporting IE doesn&rsquo;t backfire with extra, even more hellish work for those that don&rsquo;t yet have the choice to drop IE.&rdquo; </p>\n\n\n\n<p>Approximately 16 months ago, Riad Benguella <a href=\"https://meta.trac.wordpress.org/ticket/4863\">proposed</a> WordPress add a notice to discourage Internet Explorer usage. Shortly thereafter, the Browse Happy API was updating to consider all versions of Internet Explorer as insecure. In the most recent conversation on WordPress.org, contributors suggested taking it a step further and change the notice to state that IE11 support will be dropped in WP-Admin&nbsp;by the end of year. Many shared additional benefits not outlined in the proposal.</p>\n\n\n\n<p>&ldquo;There&rsquo;s lots of things we can&rsquo;t use right now because of the IE11 constraint:&nbsp;CSS&nbsp;Variables, CSS grid, Modern&nbsp;JS&nbsp;are just the 1st things that come to mind,&rdquo; Ari Stathopoulos commented. &ldquo;We would be able to ship smaller files to 40% of the web, so the environmental impact of this change would be quite big, a huge win for our sustainability efforts! 99% of WP&rsquo;s userbase has suffered enough already because of the IE limitation, and removing support for it can really make a dent and urge the few remaining IE users to use a better/newer browser.&rdquo;</p>\n\n\n\n<p>Prieto said the initial <a href=\"https://make.wordpress.org/core/2021/03/04/discussion-dropping-support-for-ie11/\">proposal</a> was just to get the conversation started and was not meant to go into technical implementation details. WordPress contributors are invited to offer feedback about the proposal in the comments before March 18.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Mar 2021 05:34:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WordPress.org blog: People of WordPress: Olga Gleckler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/03/people-of-wordpress-olga-gleckler/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16620:\"<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed peopleâ€™s lives for the better. In this monthly series, we share some of the amazing stories that are lesser-known.</em></p>\n\n\n\n<p><strong>From a natural interest in computers and fixing things as a young woman, Olga Gleckler from St Petersburg, Russia, found WordPress took her on a journey to becoming a successful female tech entrepreneur. On International Womenâ€™s Day, we share her story.&nbsp;&nbsp;</strong></p>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=580%2C768&ssl=1\" alt=\"Olga with a WordCamp Vienna t-shirt\" class=\"wp-image-9878\" width=\"580\" height=\"768\" />\n\n\n\n<h2><strong>Finding your path can take longer than you expect</strong></h2>\n\n\n\n<p>From the age of 15, Olga found herself under pressure to find a free place for her professional studies. She said: â€œI didnâ€™t know how high or low my chances were even if I had very good marks. I could have been just the biggest fish in a small pond. But anyway, I made up my mind to go to technical school.â€</p>\n\n\n\n<p>On leaving school in St Petersburg with her certificate, Olga felt her knowledge of opportunities was very narrow. She had pictured being an ecologist or guide translator based on the subjects she had been taught at school. There was also an advertising boom in Russia and she began to explore this as a career avenue. She had developed her computer skills and found opportunities to practise by helping her teachers with administrative work.</p>\n\n\n\n<p>Though she did not have access to any formal career advice, her journey led her into programming. She said: â€œThe range of technical schools was not wide. I spent four years studying transistor markings, soldering and drawing PCB layouts. Programming courses using Pascal didn&#8217;t do anything useful with it.â€</p>\n\n\n\n<p>A lack of suitable access to English-language courses made things harder for Olga. She was determined that she would master the language later in her life. In the meantime, she left technical school with an honors degree and improved typing skills.</p>\n\n\n\n<p>â€œI faced it was a wild, unfriendly market. I didnâ€™t know how to recognize a genuine job offer or how to avoid the bad ones. It was difficult and I donâ€™t know how long I wouldâ€™ve looked for work without help.â€</p>\n\n\n\n<h2><strong>Think differently to find where you belong</strong></h2>\n\n\n\n<p>Olga&#8217;s father worked in an IT company and was able to give her some advice and help with potential introductions. When she was still studying, he suggested her strong technical skills might be useful as a substitute typist. When she finished her studies, he helped her apply for a job updating a legal system on clientsâ€™ computers.<br /><br />Six months later, she got a full-time job in the same service department. She liked her position and her clients. However, she was given friendly advice that without a university degree she would not be able to have any further promotions.</p>\n\n\n\n<p>At this time, Olga was trying to study PHP from a book. She found it very exciting at first, but a lot of their functions did not give her explanations on how to build something useful. She found when she tried to build practical items from book reading, it did not always make sense and the solutions would often fail.&nbsp;</p>\n\n\n\n<p>She said: â€œIt was hard to admit a failure even to myself and it was nagging me for a long time. I had to choose something I could handle, that I was interested in and could afford. It turned out to be advertising.â€</p>\n\n\n\n<p>She spent most of the familyâ€™s holidays on learning sessions during the next six years. Olga recalled: â€œIt was tricky for my husband to make me leave a computer, once I was glued to it, so he bought me my first laptop. English was still hard for me, I got high marks through just memorizing all the words in a textbook and how they should sound.â€</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Doubting your professional skills can happen when you are at home isolated looking after children. Keeping up your interests is important.</strong></p></blockquote>\n\n\n\n<p>Olgaâ€™s life took a change after having a new baby and she spent three years doubting her professional skills and her chances of getting a good job. She tried to get back into other interests through studying, baking and drawing, but found â€˜the pram was pulling me backâ€™. She found she became very isolated and felt less able to contribute as the family was relying on her husbandâ€™s income as she tried to focus on looking forward.</p>\n\n\n\n<p>She said: â€œI was convinced (and saw) that not too many companies wanted a woman in the office, who with a small baby might need lots of leave.â€</p>\n\n\n\n<p>She finished her education when she returned to work after three years caring for her son. She secured a promotion but with changes in the companyâ€™s staffing, things were tense. She found the difficulties there had become more heightened and felt that young female colleagues were treated as â€˜pieces of furnitureâ€™ by one manager. She did not want to stay in this environment and in a few months time decided to leave.</p>\n\n\n\n<h2><strong>Your next chapter may be nearby</strong></h2>\n\n\n\n<p>Determined to not repeat this type of experience, Olga looked at the brighter side. She said: â€œI wanted to be a marketer. Knowing how tricky it is to sell intangibles, I wanted a solid product to work with.â€&nbsp;</p>\n\n\n\n<p>It turned out to be more difficult to find a job outside traditional IT as a young mother. Some human resource officers advised her to remain within the technology arena.</p>\n\n\n\n<p>Olga remained hopeful and continued to study hard. She had many learning experiences along the way, which she hopes others can learn from too. One was setting a low bar to employers. She said: â€œCompanies I worked in wanted to get all publicity and sales increases achieved through deductions from my salary.â€ This happened once and the next time she was in this situation she asked specifically about the budget before signing up. &#8220;I was assured this would not be the case, but again I found the budget for publicity came out of my wages. It was a tough period of disappointments. So when I was offered a part-time administrative job with basic sick leave, I took it gladly as a reprieve.â€</p>\n\n\n\n<p>The job was far from home and involved a lot of travelling. Olga spent two to three hours a day on buses with Harry Potter audio books for company. â€œIn these traffic jams, I started to feel English at last and loved it. It gave me a freedom no money can buy. Life was getting better.â€ </p>\n\n\n\n<p>Though the job did not pay highly, it gave her something valuable &#8211; a working website. After her boss and the developer parted company, she was asked to maintain the site. Through some studying and reverse engineering, she discovered how it worked and it gave her an insight into how to write simple websites from scratch.</p>\n\n\n\n<p>Olgaâ€™s first encounter with JavaScript wasnâ€™t easy: â€œMy first JavaScript calculator almost made me crazy, but I pursued it.â€</p>\n\n\n\n<p>Quickly she started to get small tasks from friends and relatives, usually to solve some urgent problems and started to meet popular content management systems. One of the first she met with was WordPress. There was an issue in a website theme used by a website which had been changed and not maintained. It took a whole weekend to solve, but she was determined to work it out. Back then, WordPress was â€˜just a systemâ€™. She didnâ€™t know then how much it was to become part of her life.</p>\n\n\n\n<p>Olga spent the next two years in this role. As time went on, she started to feel worried and less satisfied with the work. The last straw for her was a negative statement from her boss, who was not a programmer and who hadnâ€™t seen any of the work done on the website. She felt the approach was unfair as she had done extensive work on the site. She recalls: â€œI became angry, but it was exactly what I needed to move jobs.â€</p>\n\n\n\n<p>When Olga was job hunting, she didn&#8217;t feel she had the courage to apply for a developerâ€™s role, despite the learning and work she had already done. So instead she started working on projects where she felt she was more like a â€˜seller of box-ready websitesâ€™. It was another tough half a year for her with a lot of work, low payment and plans not turning out as she had hoped. On top of long hours, she ended up with pneumonia. She said: â€œI see now that I was doing a disservice to customers, websites are not a microwave meal &#8211; quick, cheap and dummy. There was no life in the sites without a lot of work which no one was willing to buy. Most of the sites I sold back then died after the first year and they never were truly alive and useful.â€</p>\n\n\n\n<h2><strong>You need to be brave and have courage</strong></h2>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=632%2C422&ssl=1\" alt=\"Olga in Berlin wearing the WordPress Code is Poetry lanyard and a WordCamp t-shirt\" class=\"wp-image-9879\" width=\"632\" height=\"422\" />\n\n\n\n<p>Olga really wanted a developer job but seeking jobs of this type was very frustrating. From the job adverts she found, it felt like most IT companies were asking for geniuses who already knew a lot of technologies and frameworks. She found this very demotivating.</p>\n\n\n\n<p>She then found a job offer on a website outside the most popular job portals  and it seemed like a perfect fit. They wanted someone with experience to write from scratch, understand someone elseâ€™s code and maintain it, with an ability to translate technical documentation and articles, and make simple designs for printing products. After completing a trial task, she was taken on, and enjoyed a better salary, in a calm environment with good colleagues and without the requirement for a lot of extra hours.&nbsp;</p>\n\n\n\n<p>The advert turned out to be a direct ad from one of the sales departments in a technology company. By succeeding in the  task set, Olga had bypassed the Human Resources team which she felt&nbsp;would not normally have considered her.&nbsp;</p>\n\n\n\n<p>Her boss agreed to her working remotely most of the time. It solved any potential leave problems which Olga had thought may be an obstacle.&nbsp;</p>\n\n\n\n<p>For Olga it had been 14 years since the original decision to become a programmer and it was only the beginning.&nbsp;</p>\n\n\n\n<p>After a few years at what she describes as an â€˜amazing experienceâ€™ in this workplace, Olga felt able to move on to her next challenge as a developer.</p>\n\n\n\n<h2><strong>Decision-making can benefit from wider knowledge</strong></h2>\n\n\n\n<p>After working with different systems Olga became sure that WordPress is the best CMS for developers and clients. But she was disappointed to find that the ease of use meant that good code was not always a priority for some of the sites she looked at.&nbsp;</p>\n\n\n\n<p>â€œThe biggest flaw of WordPress &#8211; itâ€™s so easy to make things work that some may feel they donâ€™t need to bother to do things right, but this becomes a problem later.â€</p>\n\n\n\n<p>In custom themes for a site, she also saw sites being made and clients left without any further support, or items hard coded when clients actually needed more control to change regularly.</p>\n\n\n\n<p>Olga used to rely on examples she could easily find, documentation and search engines to improve her understanding in using WordPress. She discovered that just by searching for a specific feature or a solution, you can miss the whole picture.&nbsp;</p>\n\n\n\n<p>She turned to online courses to get more comprehensive knowledge and then started to attend WordPress events, firstly online and then by foot, trains and planes! She discovered a worldwide community that was very much alive. She didnâ€™t know when she started studying online materials and attending discussions that she would end up contributing herself to the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform a few years later.</p>\n\n\n\n<p>WordCamps and contributor days became a big part of her life. From her early days attending events and starting out contributing to WordPress, she is an active member of the WordPress.org Global Marketing and Polyglots Teams, and supported the recent WordPress release. She is just beginning her first WordCamp organiser experience, joining WordCamp Europe 2021 on the Contribute Team. </p>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=632%2C602&ssl=1\" alt=\"Olga next to a banner of WordCamp St Petersburg 2018\" class=\"wp-image-9883\" width=\"632\" height=\"602\" />\n\n\n\n<p>Olga said: â€œThrough the wider WordPress community, I knew not only where to look but also whom to ask. Most importantly, I found allies who donâ€™t think Iâ€™m going crazy by speaking with delight about work, and with whom I share a passion and fondness for WordPress. This is what matters.</p>\n\n\n\n<p>â€œNow, after more than seven years of full time development, I am still enjoying endless learning, frequent discoveries, mistakes and an impassioned wish to do better.â€</p>\n\n\n\n<p>This and a desire to help others use WordPress.org is part of Olgaâ€™s continued contribution to its Support and Marketing Teams, and led her to be involved in the Release Marketing questions and answers in 2020.</p>\n\n\n\n<h2><strong>There is no chequered flag on the way</strong></h2>\n\n\n\n<img width=\"632\" height=\"946\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=632%2C946&ssl=1\" alt=\"Olga at WordCamp Europe in Berlin in 2019\" class=\"wp-image-9881\" />\n\n\n\n<p>The road to freedom and becoming her own boss has not been easy for Olga. It is the path that got her where she is today, and she continues to find joy in it. She retains the lessons sheâ€™s learned and is always hungry to learn more.</p>\n\n\n\n<p>&nbsp;â€œI travelled through a very uneven path, with a lot of obstacles and noise, but for me itâ€™s like a kaleidoscope where a little turn presents a new picture, a new â€œah-haâ€ moment, new excitement after seemingly pointless efforts.â€&nbsp;</p>\n\n\n\n<p>She added: â€œWhen in doubt I remind myself about David Ogilvy (generally considered the Founding Father of the modern advertising industry) who tried a lot of things before he struck gold with advertising, and maybe thatâ€™s why he did.â€</p>\n\n\n\n<p>Finally, she learned not only to keep a good spirit and try different things, but also to dare as you move forward.</p>\n\n\n\n<h2><strong>Contributors</strong></h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>nalininonstopnewsuk</a>), Larissa Murillo (<a href=\"https://profiles.wordpress.org/lmurillom/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>lmurillom</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), ChloÃ© Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>). Thank you to Olga Gleckler (<a href=\"https://profiles.wordpress.org/oglekler/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>oglekler</a>) for sharing her #ContributorStory.</p>\n\n\n\n<img src=\"https://lh3.googleusercontent.com/Y3odYTyvSfJbVxUxUWEgKxOprox2zxVwhk7_vdW-AIs4IlE-jK0Zt1itCj867x0dIAbIiK-VeuTLMZr6BjNEY0fkTf--4dT1hkLbnGtsPFNfyrVBYIN59IirTkNnqiQgqxk6E1MI\" alt=\"HeroPress logo\" />\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by </em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members in our <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a> series.</em></p>\n\n\n\n<p><em>#ContributorStory #HeroPress</em></p>\n\n\n\n<p></p>\n\n\n\n<p><em>Photo credits: 2nd and 4th Pablo Gigena, Berlin, 2019</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Mar 2021 22:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 31 Mar 2021 14:13:46 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Wed, 31 Mar 2021 14:00:14 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20201017025008\";}','no'),
(1823,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1617243225','no'),
(1824,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1617200025','no'),
(1825,'_transient_timeout_feed_e0061ca2fa5b884e483872aa34d3e7eb','1617243225','no'),
(1826,'_transient_feed_e0061ca2fa5b884e483872aa34d3e7eb','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://updraftplus.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress\'s leading backup plugin - backup, restore and clone WordPress sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Mar 2021 13:25:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=5.5.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:79:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Celebrate World Backup Day with UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/vU4m2ms_3YM/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://updraftplus.com/celebrate-world-backup-day-with-updraftplus/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Mar 2021 13:25:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:20:\"Other WordPress news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:16:\"world backup day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1083848\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:735:\"<p>World Backup Day carries a lot of importance for UpdraftPlus. As a WordPress plugin that helps millions of users around the world backup their websites and data daily, we cannot stress the importance of backing up your website and files &#8230; <a href=\"https://updraftplus.com/celebrate-world-backup-day-with-updraftplus/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/celebrate-world-backup-day-with-updraftplus/\">Celebrate World Backup Day with UpdraftPlus</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4348:\"<p><span style=\"font-weight: 400;\">World Backup Day carries a lot of importance for UpdraftPlus. As a WordPress plugin that helps millions of users around the world backup their websites and data daily, we cannot stress the importance of backing up your website and files strongly enough.</span></p>\n<p><span style=\"font-weight: 400;\"><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/world-backup-day-logo-2701a36cb253413f83311c212531ae4f.png\"><img loading=\"lazy\" class=\"alignnone  wp-image-1083849\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/world-backup-day-logo-2701a36cb253413f83311c212531ae4f.png\" alt=\"\" width=\"474\" height=\"316\" /></a></span></p>\n<p><span style=\"font-weight: 400;\">Even though the reliability of hard drives, online servers and virus protection has improved greatly in the last few years, many people reading this blog will almost certainly have memories of losing files, Word documents, photos, websites or videos during the early digital age &#8211; before reliable, affordable cloud storage and backups were commonplace. While every day is World Backup Day for UpdraftPlus, March 31st serves as a reminder every year that we no longer have to take the very real risk of losing all these important files anymore. A simple backup with UpdraftPlus that takes just a few seconds, can keep your site and files safe for as long as you want them.Â </span></p>\n<p><span style=\"font-weight: 400;\">As anyone who has ever used a computer, programme or online service for any period of time will know &#8211; crashes, failures, conflicts and viruses are a part of life. It usually isnâ€™t a case of â€˜will I encounter a problem?â€™, rather than â€˜when will I encounter a problem?â€™</span></p>\n<p><span style=\"font-weight: 400;\">As you can imagine, as an organisation that devotes so much time and effort to backups, we have heard countless stories down the years from people all over the world who have lost years of hugely important data and information that they have spent a lot of time and money developing. Thankfully, with UpdraftPlus installed, they were able to restore their site to a previous version and regain access to all their lost content. UpdraftPlus &#8211; the worldâ€™s leading WordPress backup plugin &#8211; can help you make sure that you never have to join the ranks of those unfortunate people who realised all too late, the importance of backing up your website.Â </span></p>\n<p><a href=\"http://www.worldbackupday.com/\"><span style=\"font-weight: 400;\">World Backup Day</span></a><span style=\"font-weight: 400;\"> was started in 2001 by digital consultant, Ismail Jadun. This particular day was selected as it is the day before April Foolâ€™s day. Ismail felt that people would associate the connection with April Fools Day, as it was hoped that potentially losing all your files and work would feel like being victim of a particularly bad prank.</span></p>\n<p><span style=\"font-weight: 400;\">On March 31st, it is encouraged that people all over the world share the backup pledge: </span><i><span style=\"font-weight: 400;\">&#8220;I solemnly swear to backup my important documents and precious memories on World Backup Day, March 31st.&#8221;</span></i></p>\n<p><span style=\"font-weight: 400;\">UpdraftPlus has a range of backup packages to suit all of your backup needs. Installed by over 3 million users all over the world, our easy-to-use interface allows you to backup and restore your website with a single click. You can also set the schedule to backup automatically as often as you like, so you donâ€™t have to worry about forgetting to backup your site manually and will always have a recent upload of your site ready to go &#8211; should the worst happen.Â </span></p>\n<p><span style=\"font-weight: 400;\">Download </span><a href=\"https://updraftplus.com/\"><span style=\"font-weight: 400;\">UpdraftPlus</span></a><span style=\"font-weight: 400;\"> today for the most secure, reliable and highly rated WordPress backup plugin. </span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/celebrate-world-backup-day-with-updraftplus/\">Celebrate World Backup Day with UpdraftPlus</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://updraftplus.com/celebrate-world-backup-day-with-updraftplus/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://updraftplus.com/celebrate-world-backup-day-with-updraftplus/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:94:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"How to fix UpdraftPlus failed backups\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/aw5mbIfQ90Q/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://updraftplus.com/how-to-fix-updraftplus-failed-backups/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Mar 2021 15:01:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:15:\"Tips and tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"broken\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"failing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"fix\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:6:\"issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:14:\"not backing up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:14:\"not completing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1081727\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:738:\"<p>UpdraftPlus is the worldâ€™s leading and most popular WordPress backup plugin, with over 3 million active installs. Users all over the world are using UpdraftPlus to safely and securely backup their WordPress sites, files and databases should they ever need &#8230; <a href=\"https://updraftplus.com/how-to-fix-updraftplus-failed-backups/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-fix-updraftplus-failed-backups/\">How to fix UpdraftPlus failed backups</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14357:\"<p><iframe title=\"How to fix UpdraftPlus failed backups\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/ihtnOCpC7MA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p><span style=\"font-weight: 400;\">UpdraftPlus is the worldâ€™s leading and most popular WordPress backup plugin, with over 3 million active installs. Users all over the world are using UpdraftPlus to safely and securely backup their WordPress sites, files and databases should they ever need to restore their site if the worst happens. </span><span style=\"font-weight: 400;\">As with any plugin, programme or piece of software, issues can arise when trying to carry out a function, such as when creating a backup. In this blog we will go through the most common reasons that you may be causing failed backups and how to fix them.Â </span><br />\n<b></b></p>\n<ul>\n<li aria-level=\"1\"><b>Update plugin / Plugin conflictÂ </b></li>\n</ul>\n<p><span style=\"font-weight: 400;\">Probably the most common issue a user of UpdraftPlus would run into is not having an up to date version of UpdraftPlus. While older versions will still work, problems and conflicts can be caused by not keeping your plugins up to date. If you are having a problem with the backup of your site not completing, always check to make sure you have the latest version of UpdraftPlus installed first.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T141521.022.jpg\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1081735\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T141521.022.jpg\" alt=\"\" width=\"886\" height=\"182\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T141521.022.jpg 886w, https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T141521.022-480x99.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 886px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">Another issue you could potentially face is if a new plugin you recently installed is causing a conflict with UpdraftPlus. Deactivate any new plugins and try backing up again. Common causes of conflicts are plugins loading their own versions of JavaScript libraries or cloud storage APIs on the UpdraftPlus page. These can prevent UpdraftPlus from starting a backup or uploading the backup files to remote storage.</span></p>\n<ul>\n<li aria-level=\"1\"><b>Not connected to remote storage location / Remote storage full</b></li>\n</ul>\n<p>An update to your remote storage location, such as a change of password or folder structure, could potentially be the cause of any issues you may be having, when trying to back up to remote storage.<b></b></p>\n<p><span style=\"font-weight: 400;\">To check if this could be the problem, try verifying and resaving your remote storage settings. For cloud storage services which use OAuth verification (such as Dropbox, OneDrive and Google Drive), you may need to re-authenticate with your storage account</span></p>\n<p><span style=\"font-weight: 400;\">To reconnect to your remote storage location, go through the full â€˜add remote storageâ€™ option again at UpdraftPlus &gt; Settings. Here you can re-authenticate to your remote storage account of choice.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T144144.439.jpg\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1081733\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T144144.439.jpg\" alt=\"\" width=\"1108\" height=\"391\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T144144.439.jpg 1108w, https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T144144.439-980x346.jpg 980w, https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T144144.439-480x169.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1108px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">Remember to click the â€˜Save changesâ€™ button and then attempt another backup.</span></p>\n<p><span style=\"font-weight: 400;\">As with any remote storage location, there is a finite amount of space. The reason that your backup is failing to complete could be that there is not enough space for UpdraftPlus to save the files to. Check your remote storage space and delete files or purchase extra space if necessary.</span><b></b></p>\n<ul>\n<li aria-level=\"1\"><b>Backup files too big &#8211; Reduce the backup archive split size to 100Mb or lower</b></li>\n</ul>\n<p><span style=\"font-weight: 400;\">Aside from the above issues users of UpdraftPlus may encounter, such as not having the remote storage location properly setup, the most common technical reasons for a backup failing to complete is that you are trying to backup a file that is too large to upload or the file on the server is too large to process.Â </span></p>\n<p><span style=\"font-weight: 400;\">In the situation where the file is too large to upload, this can be caused by some plugins creating databases or files that are many hundreds of MB large. These large files can cause UpdraftPlus to time out and not complete the backup. You should always aim to reduce the backup archive split size to 100MG or lower if possible.Â </span></p>\n<p><span style=\"font-weight: 400;\">To reduce the archive split size, open the â€˜Expert settingsâ€™ section of the UpdraftPlus Settings tab.</span></p>\n<p><b><img loading=\"lazy\" class=\"alignnone size-full wp-image-1081732\" style=\"font-weight: 500;\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T145321.440.jpg\" alt=\"\" width=\"1108\" height=\"391\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T145321.440.jpg 1108w, https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T145321.440-980x346.jpg 980w, https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-25T145321.440-480x169.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1108px, 100vw\" /></b></p>\n<p><span style=\"font-weight: 400;\">In the â€˜Split backups everyâ€™ option, set it to 100Mb. Remember to press the â€œSave changesâ€ button at the bottom of the page and then run a test backup.Â </span></p>\n<p><span style=\"font-weight: 400;\">If you have a large file on your site that cannot be split up as it is a single file (such as a large video file), it is recommended increasing the PHP time limit (and possibly memory limit)</span></p>\n<p><span style=\"font-weight: 400;\">To increase the PHP time limit, you need to edit the â€˜wp-config.phpâ€™ file on your WordPress site. This file is located in your WordPress siteâ€™s root folder, which can be accessed via an FTP client or file manager in your web hosting control panel.</span></p>\n<p><span style=\"font-weight: 400;\">Open this file in a text editor, paste below code in the â€˜wp-config.phpâ€™ file just before the line says â€˜Thatâ€™s all, stop editing! Happy blogging.â€™</span></p>\n<p><i><span style=\"font-weight: 400;\">set_time_limit(300);</span></i></p>\n<p><span style=\"font-weight: 400;\">Remember to save your changes and upload the wp-config.php file back to your server. This new code will tell your server to increase the PHP time limit to 300 seconds.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-29T105914.344.jpg\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1081740\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-29T105914.344.jpg\" alt=\"\" width=\"694\" height=\"445\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-29T105914.344.jpg 694w, https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-29T105914.344-480x308.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 694px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">Refresh your site and attempt another backup. You can increase the time limit again if needed.</span></p>\n<p><span style=\"font-weight: 400;\">Additionally, you can also try increasing the memory limit. The process is very similar to the time limit and requires youÂ  to edit the wp-config.php file on your WordPress site. This file is located in your WordPress siteâ€™s root folder, which can be accessed via an FTP client or file manager in your web hosting control panel.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/wp-config-file.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1081741\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/wp-config-file.png\" alt=\"\" width=\"630\" height=\"530\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/wp-config-file.png 630w, https://updraftplus.com/wp-content/uploads/2021/03/wp-config-file-480x404.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 630px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">Paste the following code in the â€˜wp-config.phpâ€™ file just before the line that says â€˜Thatâ€™s all, stop editing! Happy blogging.â€™</span></p>\n<p><i><span style=\"font-weight: 400;\">define( &#8216;WP_MEMORY_LIMIT&#8217;, &#8216;256M&#8217; );</span></i></p>\n<p><span style=\"font-weight: 400;\">This new code will increase the PHP memory limit to 256MB for your WordPress site. Once done, remember to save your changes. Open your WordPress site again after making the changes and hopefully, you will now be able to complete your backup.</span></p>\n<p><span style=\"font-weight: 400;\">If the file is just too large and keeps causing problems, you can also exclude this particular file from the backup process. We also recommend using a WordPress cleaning plugin to help reduce the size of any large databases or files you may be trying to backup. </span><a href=\"https://wordpress.org/plugins/wp-optimize/\"><span style=\"font-weight: 400;\">WP Optimize</span></a><span style=\"font-weight: 400;\"> is a free and highly rated plugin from UpdraftPlus that can be used to clean up your database.</span></p>\n<ul>\n<li aria-level=\"1\"><b>Hosts/server issues</b></li>\n</ul>\n<p>If the issue of large files was the cause of the backups failing, it could point towards a problem with your backup server, such as very low server resources available from your web-hosting platform. Selecting a higher level hosting platform could help your website backup easier and quicker, as it will be dedicating more resources to your website.<b></b></p>\n<p><span style=\"font-weight: 400;\">If there are still issues with your backup not completing, there could be other issues with your host/server. In order to ascertain what these may be, we would recommend that you ask the UpdraftPlus support team to investigate your PHP error logs. These logs will hopefully contain more information on the exact issues that are causing the non-completion of backup problems.Â </span></p>\n<p><span style=\"font-weight: 400;\">To find the file, you will need FTP access to the server for a PHP log (also applied to remote storage). For the WP Debug log, which will contain the error information, it can be found at the following location</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/image-5.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1081742\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/image-5.png\" alt=\"\" width=\"692\" height=\"528\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/image-5.png 692w, https://updraftplus.com/wp-content/uploads/2021/03/image-5-480x366.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 692px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">The following plugin: </span><a href=\"https://en-gb.wordpress.org/plugins/wp-file-manager/\"><span style=\"font-weight: 400;\">WP-File Manager</span></a><span style=\"font-weight: 400;\"> will help you find the files with the extra information you require.Â </span></p>\n<ul>\n<li aria-level=\"1\"><b>Broken schedulerÂ </b></li>\n</ul>\n<p>If scheduled backups are failing to start or backups freeze partway, it could indicate there is an issue with the scheduler within your WordPress installation. â€œBackup Nowâ€ starts the backup without the scheduler, but uses the scheduler to schedule a resumption of the job in case it needs more than the amount of time that the webserver allows in one go. Problems with the scheduler will affect any scheduled backup plugin that you try â€“ as well as various other tasks that WordPress and other plugins schedule internally.<b></b></p>\n<p><span style=\"font-weight: 400;\">For a full and extensive list of what broken scheduler issues can entail and how to fix them, please view </span><a href=\"https://updraftplus.com/faqs/my-scheduled-backups-do-nothing-backup-now-stops-midway/\"><span style=\"font-weight: 400;\">this link</span></a><span style=\"font-weight: 400;\">. This page goes into detail on how to fix the following:</span></p>\n<ol>\n<li><span style=\"font-weight: 400;\"> Maintenance mode</span></li>\n<li><span style=\"font-weight: 400;\"> No visitors</span></li>\n<li><span style=\"font-weight: 400;\"> Disabled schedulers</span></li>\n<li><span style=\"font-weight: 400;\"> Loopback connections are not working</span></li>\n<li><span style=\"font-weight: 400;\"> External cron jobs</span></li>\n<li><span style=\"font-weight: 400;\"> Password protected websites</span></li>\n</ol>\n<p><span style=\"font-weight: 400;\">If you are still having issues after having tried all the above fixes, please contact us via our </span><a href=\"https://updraftplus.com/paid-support-requests/\"><span style=\"font-weight: 400;\">customer support form</span></a><span style=\"font-weight: 400;\"> and we will do our best to help you resolve the problem.</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-fix-updraftplus-failed-backups/\">How to fix UpdraftPlus failed backups</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://updraftplus.com/how-to-fix-updraftplus-failed-backups/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://updraftplus.com/how-to-fix-updraftplus-failed-backups/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:88:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"How to reset an UpdraftPlus licence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/LFz-gPWVtdg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://updraftplus.com/how-to-reset-an-updraftplus-licence/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Mar 2021 11:22:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:18:\"Training materials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"How to\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:12:\"instructions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"licence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:5:\"reset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1072908\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:721:\"<p>How to reset an UpdraftPlus licence. When choosing which UpdraftPlus Premium package is right for you, one of the primary decisions when making your choice is the amount of licenses you will require. We have structured the UpdraftPlus packages to &#8230; <a href=\"https://updraftplus.com/how-to-reset-an-updraftplus-licence/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-reset-an-updraftplus-licence/\">How to reset an UpdraftPlus licence</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5417:\"<p>How to reset an UpdraftPlus licence. <span style=\"font-weight: 400;\">When choosing which UpdraftPlus Premium package is right for you, one of the primary decisions when making your choice is the amount of licenses you will require. </span></p>\n<p><iframe title=\"How to reset an UpdraftPlus licence\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/BsK2evuzbBw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p><span style=\"font-weight: 400;\">We have structured the UpdraftPlus packages to best suit the needs of the various different types of users who require a Premium WordPress backup service. As such, there are 4 different packages you can purchase, depending on how many different sites you would like to install UpdraftPlus Premium onto:</span></p>\n<ul>\n<li><span style=\"font-weight: 400;\">Personal &#8211; 2 sites</span></li>\n<li><span style=\"font-weight: 400;\">Business &#8211; 10 sites</span></li>\n<li><span style=\"font-weight: 400;\">Agency &#8211; 35 sites</span></li>\n<li><span style=\"font-weight: 400;\">Enterprise &#8211; Unlimited</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">Up until recently, UpdraftPlus licences have been permanently assigned to the site that you activate them on. However we understand that there are many situations in which a licence may have only been used; temporarily on a test site or clone for example. If you purchased the Personal package, it could be possible to use both licences on testing sites for just a few hours and have no licences left when you are ready to install UpdraftPlus Premium on your main site.</span></p>\n<p><span style=\"font-weight: 400;\">We want to ensure that UpdraftPlus customers have the best experience possible when using our product. As such we now allow users to reset their license, so that they can be used on other websites and are not â€˜lockedâ€™ to the first site it is used on.</span></p>\n<p><b>How to rest your licence</b></p>\n<p><span style=\"font-weight: 400;\">There are 2 methods you can use if you wish to reset and reuse one of your UpdraftPlus licences.</span></p>\n<p><b>Method 1 &#8211; Self reset</b></p>\n<p><span style=\"font-weight: 400;\">Self-service licence resets are now available from your account page. To reset your UpdraftPlus licence yourself, please follow these instructions.</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">User deactivates UpdraftPlus plugin on the site</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Wait 30 days</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Go to My Account &gt; Licences and find the licence</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">There will be a reset link to reset the licence so you can use it on another site.</span></li>\n</ul>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/licence-release-1024x447-2.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1072918\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/licence-release-1024x447-2.png\" alt=\"\" width=\"1024\" height=\"447\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/licence-release-1024x447-2.png 1024w, https://updraftplus.com/wp-content/uploads/2021/03/licence-release-1024x447-2-980x428.png 980w, https://updraftplus.com/wp-content/uploads/2021/03/licence-release-1024x447-2-480x210.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw\" /></a></p>\n<p><b>Method 2 &#8211; Support team reset</b></p>\n<p><span style=\"font-weight: 400;\">Our support team can reset the licence for you if you wish. Just contact us via the support form: </span><a href=\"https://updraftplus.com/paid-support-requests/\"><span style=\"font-weight: 400;\">https://updraftplus.com/paid-support-requests/</span></a> <span style=\"font-weight: 400;\">with all the necessary details and weâ€™ll reset the licence for you, so it can be used again.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-12T103035.380-1.jpg\"><img loading=\"lazy\" class=\"alignnone wp-image-1072919\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-12T103035.380-1.jpg\" alt=\"\" width=\"1009\" height=\"584\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-12T103035.380-1.jpg 1009w, https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-12T103035.380-1-980x567.jpg 980w, https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-03-12T103035.380-1-480x278.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1009px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">Both of these methods will reset a licence and help you make the most of your UpdraftPlus Premium package. </span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-reset-an-updraftplus-licence/\">How to reset an UpdraftPlus licence</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://updraftplus.com/how-to-reset-an-updraftplus-licence/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://updraftplus.com/how-to-reset-an-updraftplus-licence/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:82:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Updraft adds ability to perform atomic restore database restoration (UpdraftPlus 1.16.48)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/R8gg1yFZD2A/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://updraftplus.com/updraft-adds-ability-to-perform-atomic-restore-database-restoration-updraftplus-1-16-48/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Mar 2021 12:07:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:28:\"UpdraftPlus development news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:11:\"new release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1053131\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:880:\"<p>The latest updates for UpdraftPlus 1.16.48 have now been released. This latest release of UpdraftPlus includes a number of features and tweaks to improve your backup and restore experience Following lots of work and effort, one of the new features &#8230; <a href=\"https://updraftplus.com/updraft-adds-ability-to-perform-atomic-restore-database-restoration-updraftplus-1-16-48/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraft-adds-ability-to-perform-atomic-restore-database-restoration-updraftplus-1-16-48/\">Updraft adds ability to perform atomic restore database restoration (UpdraftPlus 1.16.48)</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6580:\"<p><span style=\"font-weight: 400;\">The latest updates for UpdraftPlus 1.16.48 have now been released. This latest release of UpdraftPlus includes a number of features and tweaks to improve your backup and restore experience</span></p>\n<p><span style=\"font-weight: 400;\">Following lots of work and effort, one of the new features we have included is the ability to perform â€˜atomic restoresâ€™. With this latest update, UpdraftPlus will now detect if your server has the required permissions and if available, will perform an atomic restore.</span></p>\n<p><span style=\"font-weight: 400;\">An atomic restore will restore your backup alongside your existing database before replacing the original. This means that should your site die during a restore of the database, you will no longer risk losing any tables, while still keeping your site up and running. You can then use UpdraftPlus resume restore feature to carry on with the restore process until it completes.</span></p>\n<p><span style=\"font-weight: 400;\">In a previous UpdraftPlus release we added a </span><a href=\"https://updraftplus.com/updraftplus-1-16-42-update-released/\"><span style=\"font-weight: 400;\">manual authentication</span></a><span style=\"font-weight: 400;\"> feature to Dropbox. This allowed users to manually complete authentication if they were getting blocked by a security plugin or module on their server. UpdraftPlus have now extended this feature to include Google Drive and OneDrive, making it easier for users to connect to these services.</span></p>\n<p><span style=\"font-weight: 400;\">There are also a good number of tweaks and fixes included in this latest release to improve the overall performance of UpdraftPlus, such as faster deletes from BackBlaze, faster uploads to Google Drive and Google Cloud, more PHP 8 compatibility tweaks and many more.</span></p>\n<p><span style=\"font-weight: 400;\">The full changelog can be found below:</span></p>\n<ul>\n<li><span style=\"font-weight: 400;\">FEATURE: If needed database permissions are available then perform an atomic restore to improve chances of successfully restoring the database</span></li>\n<li><span style=\"font-weight: 400;\">FEATURE: Added the ability to manually complete authentication with Google Drive (Avoids issues where security modules/plugins break the authentication flow)</span></li>\n<li><span style=\"font-weight: 400;\">FEATURE: Added the ability to manually complete authentication with OneDrive (Avoids issues where security modules/plugins break the authentication flow)</span></li>\n<li><span style=\"font-weight: 400;\">FEATURE: Google Drive and Google Cloud now allow boosting chunk size for faster transfers</span></li>\n<li><span style=\"font-weight: 400;\">FIX: Files/Directories Exclusion not saving correctly when adding numeric directory/file names into the exclusion list</span></li>\n<li><span style=\"font-weight: 400;\">FIX: Different PHP versions generate different suffixes length in the temporary ZIP filename resulting in a chance of overlapping runs</span></li>\n<li><span style=\"font-weight: 400;\">FIX: an issue with mysqldump password character escaping</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Avoid unnecessary database writes caused by redundant jobdata updating during backup of files</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Add &#8220;anywhere in their names&#8221; syntax option to the exclusion UI</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Bump the requirement for the S3 enhanced module, and for using the official AWS SDK, up to PHP 5.5 (in preparation for updating the SDK version later)</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Fix a bug of report emails for incremental backups displaying incorrectly in many email apps</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Update Select2 library to version 4.1.0-rc.0 to work around deprecated jQuery isFunction</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Update jQuery-serializeJSON library to version 3.2.0 to work around deprecated jQuery isArray</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Handle hosts that have disabled some of the PHP functions thus causing a fatal error on PHP 8</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Correct under-calculation of used memory in verify_free_memory()</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Fix (inconsequential to this point) double-use of identifier for SQL statement type</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Remove some compatibility code in Dropbox downloading pertaining to a folder selection bug eliminated ~8 years ago.</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Remove unneeded sub-site tables when performing a restoration/migration (Multisite)</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Improve the exclusion UI by adding new &#8220;wildcards&#8221; option thus allowing the user to add a set of patterns for excluding files/directories</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Integration of the new files that were previously added for abstracting UpdraftCentral&#8217;s client code</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Excluded items (Files or Folders) that are not readable should not trigger a warning about being unreadable</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Fix some RTL CSS issues</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: OneDrive 4xx error reporting</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Update the Dropbox SDK to use refresh tokens (long lived token support ends September 2021)</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: implement a multi-delete capability when deleting from Backblaze</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: On UpdraftClone display the image ID in the advanced tools tab for easier debugging</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Make it more clear in the restore log that we are starting an AJAX restore</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: The download backup HTML so that there is only one download button per archive type</span></li>\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraft-adds-ability-to-perform-atomic-restore-database-restoration-updraftplus-1-16-48/\">Updraft adds ability to perform atomic restore database restoration (UpdraftPlus 1.16.48)</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://updraftplus.com/updraft-adds-ability-to-perform-atomic-restore-database-restoration-updraftplus-1-16-48/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://updraftplus.com/updraft-adds-ability-to-perform-atomic-restore-database-restoration-updraftplus-1-16-48/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:82:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"New UpdraftPlus translations added\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/Iata0N32bD8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://updraftplus.com/new-updraftplus-translations-added/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Mar 2021 15:17:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:28:\"UpdraftPlus development news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:12:\"translations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1045447\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:744:\"<p>We at UpdraftPlus have recently transferred a large number of translation sets from our dedicated translation project to the public project at translate.wordpress.org. Once these translations are approved and released, this update will go a long way to helping UpdraftPlus &#8230; <a href=\"https://updraftplus.com/new-updraftplus-translations-added/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/new-updraftplus-translations-added/\">New UpdraftPlus translations added</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Dee Nutbourne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1829:\"<p>We at UpdraftPlus have recently transferred a large number of translation sets from our dedicated translation project to the public project at <a href=\"https://translate.wordpress.org\">translate.wordpress.org</a>.</p>\n<p>Once these translations are approved and released, this update will go a long way to helping UpdraftPlus become fully translated into over 50 different languages; with 25 languages already over 90% complete!</p>\n<p>Of particular interest are these language sets, which have received a large number of new translations:</p>\n<ul>\n<li>Bulgarian (1300+ new strings translated!)</li>\n<li>Spanish (Mexico)</li>\n<li>Turkish</li>\n<li>Japanese</li>\n<li>Danish</li>\n<li>Portuguese (Brazil)</li>\n<li>Indonesian</li>\n<li>Chinese (China)</li>\n<li>Chinese (Taiwan)</li>\n<li>Greek</li>\n<li>German</li>\n<li>Russian</li>\n<li>Polish</li>\n<li>Dutch</li>\n</ul>\n<p>If you are interested in completing these translation sets, you can submit your own translations here &#8211; <a href=\"https://translate.wordpress.org/projects/wp-plugins/updraftplus/\">https://translate.wordpress.org/projects/wp-plugins/updraftplus/</a></p>\n<p>Additionally, if you are interested in contributing to our own project (which includes translations for Premium features), you can find more information here &#8211; <a href=\"https://updraftplus.com/translate/\">https://updraftplus.com/translate/</a></p>\n<p>Many thanks to all our translators, both on translate.wordpress.org and our dedicated translation project team.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/new-updraftplus-translations-added/\">New UpdraftPlus translations added</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://updraftplus.com/new-updraftplus-translations-added/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://updraftplus.com/new-updraftplus-translations-added/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:97:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"How to add DreamHost to your UpdraftPlus account settings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/VjEOyZHLT8w/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://updraftplus.com/how-to-add-dreamhost-to-your-updraftplus-account-settings/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Mar 2021 13:47:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:9:{i:0;a:5:{s:4:\"data\";s:15:\"Tips and tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"calibrate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"connect\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"dream host\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:13:\"dream objects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:9:\"DreamHost\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:12:\"dreamobjects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:6:\"How to\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1042287\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:799:\"<p>When backing up your WordPress website with UpdraftPlus, we have given users multiple options to backup your site using many of the top remote storage options, including Google Drive, Amazon S3 and DropBox.Â  One of the additional storage options UpdraftPlus &#8230; <a href=\"https://updraftplus.com/how-to-add-dreamhost-to-your-updraftplus-account-settings/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-add-dreamhost-to-your-updraftplus-account-settings/\">How to add DreamHost to your UpdraftPlus account settings</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6376:\"<p><iframe title=\"How to add DreamHost to your UpdraftPlus account settings\" src=\"https://player.vimeo.com/video/509781339?dnt=1&amp;app_id=122963\" width=\"1080\" height=\"608\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe></p>\n<p><span style=\"font-weight: 400;\">When backing up your WordPress website with UpdraftPlus, we have given users multiple options to backup your site using many of the top remote storage options, including </span><a href=\"https://updraftplus.com/how-to-add-google-drive-to-your-updraftplus-account-settings/\"><span style=\"font-weight: 400;\">Google Drive</span></a><span style=\"font-weight: 400;\">, </span><a href=\"https://updraftplus.com/faqs/how-to-add-amazon-s3-to-your-updraftplus-account-settings/\"><span style=\"font-weight: 400;\">Amazon S3</span></a><span style=\"font-weight: 400;\"> and </span><a href=\"https://updraftplus.com/faqs/how-do-i-add-dropbox-to-my-updraftplus-account-settings/\"><span style=\"font-weight: 400;\">DropBox</span></a><span style=\"font-weight: 400;\">.Â </span></p>\n<p><span style=\"font-weight: 400;\">One of the additional storage options UpdraftPlus offers is </span><a href=\"https://www.dreamhost.com/cloud/storage/\"><span style=\"font-weight: 400;\">DreamHost</span></a><span style=\"font-weight: 400;\"> &#8211; the popular cloud service platform from DreamObjects. DreamHost offers a 30 day free trial account for users who want to experiment with the platform before purchasing. After this trial period, DreamHost offers the following competitive pre-paid pricing plan.Â <a href=\"https://updraftplus.com/wp-content/uploads/2021/03/pasted-image-0.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1042305\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/pasted-image-0.png\" alt=\"\" width=\"786\" height=\"361\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/pasted-image-0.png 786w, https://updraftplus.com/wp-content/uploads/2021/03/pasted-image-0-480x220.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 786px, 100vw\" /></a></span></p>\n<p><span style=\"font-weight: 400;\">Some users have chosen to use DreamHost as their cloud storage option over other services, such as Google or Amazon, due to DreamHostâ€™s following features.</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Infinitely scalable</span></li>\n<li><span style=\"font-weight: 400;\">Allows you to start small and grow</span></li>\n<li><span style=\"font-weight: 400;\">Customizable metadata</span></li>\n<li><span style=\"font-weight: 400;\">Inexpensive option</span></li>\n</ul>\n<p>To find out how to add DreamHost to your UpdraftPlus backup settings, just follow the video above or written guide for step-by-step instructions.</p>\n<h2><b>Configuring the UpdraftPlus plugin</b></h2>\n<p><span style=\"font-weight: 400;\">1. In the UpdraftPlus plugin of your WordPress site, select the DreamObjects remote storage option, scroll down to the bottom of the page and select the â€˜Saveâ€™ button.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-08T150813.192.jpg\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1042304\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-08T150813.192.jpg\" alt=\"\" width=\"945\" height=\"634\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-08T150813.192.jpg 945w, https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-08T150813.192-480x322.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 945px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">2. In the DreamObjects information section, you will need to enter an access key, secret key and the path of your DreamObjects location.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-09T095140.531.jpg\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1042303\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-09T095140.531.jpg\" alt=\"\" width=\"915\" height=\"460\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-09T095140.531.jpg 915w, https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-09T095140.531-480x241.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 915px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">3. In your DreamObjects account, generate the required information and copy and paste it to the relevant UpdraftPlus DreamObjects settings. Next, press the â€˜Test DreamObjects Settingsâ€™ button in the UpdraftPlus plugin.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-09T095327.823.jpg\"><img loading=\"lazy\" class=\"alignnone  wp-image-1042301\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-09T095327.823.jpg\" alt=\"\" width=\"912\" height=\"361\" /></a></p>\n<p><span style=\"font-weight: 400;\">4. Once you have received a â€˜test was successfulâ€™ message at the top of the screen, you are now ready to create a backup. This backup will now store the information for your website in your DreamObjects cloud storage account &#8211; should you ever need to restore your site using UpdraftPlus.</span></p>\n<p><span style=\"font-weight: 400;\"> <a href=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-09T095742.869.jpg\"><img loading=\"lazy\" class=\"alignnone  wp-image-1042300\" src=\"https://updraftplus.com/wp-content/uploads/2021/03/New-Project-2021-02-09T095742.869.jpg\" alt=\"\" width=\"914\" height=\"507\" /></a></span></p>\n<p><span style=\"font-weight: 400;\">DreamHost by DreamObjects is relatively simple, quick and easy to set-up, providing a secure and cost effective method to store your websiteâ€™s backups should you ever need them. If you have any questions or comments, be sure to let us know in the comments section below. </span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-add-dreamhost-to-your-updraftplus-account-settings/\">How to add DreamHost to your UpdraftPlus account settings</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://updraftplus.com/how-to-add-dreamhost-to-your-updraftplus-account-settings/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://updraftplus.com/how-to-add-dreamhost-to-your-updraftplus-account-settings/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:94:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"How to increase eCommerce traffic and sales with WordPress content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/k5VzKNX8g54/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://updraftplus.com/increase-traffic-and-sales-wordpress/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Feb 2021 10:57:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:20:\"Other WordPress news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:6:\"How to\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"increase\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:5:\"sales\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:7:\"traffic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1032303\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:747:\"<p>WordPress content If you run an eCommerce operation that falls short of dominating its niche, youâ€™re always going to be looking for new ways increase traffic and sales via your WordPress site. But before your eCommerce site can make more &#8230; <a href=\"https://updraftplus.com/increase-traffic-and-sales-wordpress/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/increase-traffic-and-sales-wordpress/\">How to increase eCommerce traffic and sales with WordPress content</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Rodney Laws\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10050:\"<h1><span style=\"font-weight: 400;\">WordPress content</span></h1>\n<p><span style=\"font-weight: 400;\">If you run an eCommerce operation that falls short of dominating its niche, youâ€™re always going to be looking for new ways increase traffic and sales via your WordPress site. B</span><span style=\"font-weight: 400;\">ut before your eCommerce site can make more sales, youâ€™re going to need more traffic. There are of course existing marketing channels you can explore to sell to existing customers, such as targeted email campaigns and tempting personalized offers. But they can only bring in so much growth.</span></p>\n<p><span style=\"font-weight: 400;\">The key to taking things to the next level typically lies in reaching new audiences: Specifically locating those people who stand to benefit from your product, and figuring out how you can sell it to them. This concept of course, is much easier said than done â€” and there are many actions you can</span> <span style=\"font-weight: 400;\">take that might help you achieve your goals.</span></p>\n<p><span style=\"font-weight: 400;\">In this blog, weâ€™re going to focus on one method in particular: creating rich content through your WordPress blog that will grab potential customers attention, boost your product views and earn you more conversions. Regardless of the nature of your store, this is can be a viable approach that has shown success, regardless of what you may sell.</span></p>\n<h2><span style=\"font-weight: 400;\">Create slick product pages featuring rich media</span></h2>\n<p><span style=\"font-weight: 400;\">WordPress may have been originally developed to serve as a blogging platform, but itâ€™s become so much more than that over the years due to its modular nature and immense popularity (it currently powers </span><a href=\"https://www.techradar.com/uk/news/wordpress-now-powers-40-of-the-worlds-websites\"><span style=\"font-weight: 400;\">over 40%</span></a><span style=\"font-weight: 400;\"> of the worldâ€™s top websites). No matter what type of site you want to create, you can create it and manage it through the right combination of plugins and development, with eCommerce WordPress sites certainly no exception.</span></p>\n<p><span style=\"font-weight: 400;\">Eager to take advantage of its accessibility and convenience, many sellers install great retail plugins (</span><a href=\"https://ecommerceplatforms.io/woocommerce-review/\"><span style=\"font-weight: 400;\">WooCommerce being the best reviewed</span></a><span style=\"font-weight: 400;\">) to turn their WordPress sites into fully-functioning sales platforms. As noted above, this means that WordPress eCommerce content isnâ€™t solely about supporting the site itself and helping improve SEO. The content can be directly for</span> <span style=\"font-weight: 400;\">eCommerce and help drive traffic and sales.Â </span></p>\n<p><span style=\"font-weight: 400;\">When youâ€™re working on the content for your WordPress-based store, your primary focus should be on your product pages. The better your product pages are, the more likely theyâ€™ll be to convert visitors to customers, which is the ultimate goal for any online store. It can be extremely hard to earn hyper-relevant visits of potential buyers looking to buy your specific product, so failing to take advantage of them is a huge waste of time and effort.</span></p>\n<p><span style=\"font-weight: 400;\">A great product page should have a slick design, with content set out in a fully mobile-responsive layout with a logical structure (the most important aspects of the product covered first, with other details placed in expandable sections for those who want them). It should ideally also feature varied forms of media arranged in appealing ways, such as </span><a href=\"https://www.metaslider.com/carousel/\"><span style=\"font-weight: 400;\">adding images or videos in a carousel</span></a><span style=\"font-weight: 400;\">.</span></p>\n<div id=\"attachment_1032309\" style=\"width: 847px\" class=\"wp-caption alignnone\"><a href=\"https://updraftplus.com/wp-content/uploads/2021/02/New-Project-2021-02-26T103913.650.jpg\"><img aria-describedby=\"caption-attachment-1032309\" loading=\"lazy\" class=\"wp-image-1032309\" src=\"https://updraftplus.com/wp-content/uploads/2021/02/New-Project-2021-02-26T103913.650.jpg\" alt=\"bad product photo example\" width=\"837\" height=\"628\" /></a><p id=\"caption-attachment-1032309\" class=\"wp-caption-text\">An example of poor and good product image examples.</p></div>\n<p><span style=\"font-weight: 400;\">Product photos in particular can help increase your eCommerce sales. As buying online prevents customers from physically inspecting something before buying it, the product image could potentially make or break the sale of an item in your store. You should always aim to create your own product photos whenever possible. This is something that can be easily achieved, as even entry level smartphones now have excellent cameras that will allow you to take unique and high quality images that can help set your store apart from those of your competitors.</span></p>\n<h2><span style=\"font-weight: 400;\">Write posts covering frequently-asked questions</span></h2>\n<p><span style=\"font-weight: 400;\">SEO, or search engine optimization, is a key part of making sure your potential customers can find you online. Many retail journeys start with Google searches for particular products and if your store doesnâ€™t rank well for relevant terms, how will potential customers even find it and make a purchase? One part of ranking well is picking up high-quality back-links (your website address linked from high value websites). Another method you can explore to get your site to rank highly is to upload content that covers and includes the top keywords for your store/product.</span></p>\n<p><span style=\"font-weight: 400;\">When youâ€™re trying to rank for terms relevant to your products, donâ€™t obsess over reaching the first page for high-volume keywords: theyâ€™ll no doubt be incredibly competitive and challenging. Instead, look for </span><a href=\"https://www.wordstream.com/long-tail-keywords\"><span style=\"font-weight: 400;\">long-tail keywords</span></a><span style=\"font-weight: 400;\"> that havenâ€™t been suitably addressed elsewhere, paying particular attention to long-form queries that keep being asked. For example, if you run a shoe website, you may find that you can generate valuable traffic by focusing on a long-tail keyword term such as â€˜what are the best walking boots for snowy conditionsâ€™. This can generate valuable traffic for your site, instead of trying to rank highly for a popular and hard to rank search term such as â€˜walking boots&#8217;.Â </span></p>\n<p><span style=\"font-weight: 400;\">Sites like </span><a href=\"https://answerthepublic.com/\"><span style=\"font-weight: 400;\">AnswerThePublic</span></a><span style=\"font-weight: 400;\"> can be extremely useful for identifying these questions. Once youâ€™ve made a list of keywords and whittled it down, you can now create content accordingly. For example, you could make one large FAQ post covering them all, or make various individual pieces answering specific queries in greater detail related to the long-tail keyword. Nail the copy and the metadata, and youâ€™ll have a great chance of picking up some actionable visits from searchers.</span></p>\n<h2><span style=\"font-weight: 400;\">Provide details on new and upcoming releases</span></h2>\n<p><span style=\"font-weight: 400;\">Not all your content should be re-actively based on what people are searching for. Sometimes you need to take charge of providing information that your audience will want before they know they want it. Thatâ€™s where a new product release becomes invaluable. On occasion, youâ€™ll update your stock inventory with new items, so remember to generate some content specifically for them.</span></p>\n<p><span style=\"font-weight: 400;\">The goal in doing this should be twofold: to demonstrate to your customers how exciting and changeable your store inventory is (incentivizing people to return), and to show your unique point of view and insight into what makes a new product so interesting. Just as a successful blogger establishes the value of their unique perspective over time, so too should you use the steady release of product updates to make people eager to pay attention.</span></p>\n<p><span style=\"font-weight: 400;\">Remember that thereâ€™s nothing wrong with including some of your own personal and store brand personality. Companies like RedBull and Apple have built a massive following that goes far beyond their products by having a vibrant and engaging </span><a href=\"https://blog.hurree.co/blog/5-companies-who-nailed-their-brand-personality\"><span style=\"font-weight: 400;\">company personality</span></a><span style=\"font-weight: 400;\">. You donâ€™t need to dryly recite talking points about your products and should always try to describe them in your own words, getting creative as you do so. If youâ€™re excited about a product or feature, remember to explain why. Make the reader </span><i><span style=\"font-weight: 400;\">feel </span></i><span style=\"font-weight: 400;\">your excitement. The more emotion you can convey, the more trustworthy youâ€™ll seem, and the more potent your posts will become.</span></p>\n<p><b>Ultimately the production of outstanding WordPress content can work wonders for the popularity of your eCommerce brand and the conversion rates you achieve. If you can prioritize the optimization of your product pages, create SEO-polished content and build a notable brand personality through commentary and insight, it can help you get ahead of the pack and build a successful online store.</b></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/increase-traffic-and-sales-wordpress/\">How to increase eCommerce traffic and sales with WordPress content</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://updraftplus.com/increase-traffic-and-sales-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://updraftplus.com/increase-traffic-and-sales-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:91:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Post and page module added to UpdraftCentral\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/mgZybj0C8Ss/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://updraftplus.com/post-and-page-module-added-to-updraftcentral/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Feb 2021 11:34:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:14:\"UpdraftCentral\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:11:\"page module\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:21:\"post and page modules\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:12:\"post feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:6:\"update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:14:\"updraftcentral\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1021218\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:727:\"<p>You can now manage all of your posts, from all of your sites, from a single location in Updraft Centralâ€™s dashboard posts feature.Â  By going to the â€œPostsâ€ tab in your Updraft Central dashboard, you can now edit all of &#8230; <a href=\"https://updraftplus.com/post-and-page-module-added-to-updraftcentral/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/post-and-page-module-added-to-updraftcentral/\">Post and page module added to UpdraftCentral</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7721:\"<p><iframe title=\"UpdraftCentral Post Feature\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/EQywuHGyxx4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p><span style=\"font-weight: 400;\">You can now manage all of your posts, from all of your sites, from a single location in Updraft Centralâ€™s dashboard posts feature.Â </span></p>\n<p><span style=\"font-weight: 400;\">By going to the â€œPostsâ€ tab in your Updraft Central dashboard, you can now edit all of your posts, without having to go to each individual site.Â </span></p>\n<p><b>Post and Page Modules feature details:</b></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Edit page details and post content, such as article&#8217;s title, body, permalinks, etc. As you normally do within the WordPress panel, but with some limitations (see limitations section below)</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Add/remove categories or create a new ones</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Create or assign new categories and tags to your post</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Upload featured image or change existing images to your content</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Change publishing details</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Change post owner/author</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Preview changes</span></li>\n</ul>\n<div id=\"attachment_1021220\" style=\"width: 1034px\" class=\"wp-caption alignnone\"><a href=\"https://updraftplus.com/wp-content/uploads/2021/02/quick-edit.png\"><img aria-describedby=\"caption-attachment-1021220\" loading=\"lazy\" class=\"wp-image-1021220 size-large\" src=\"https://updraftplus.com/wp-content/uploads/2021/02/quick-edit-1024x576.png\" alt=\"\" width=\"1024\" height=\"576\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/02/quick-edit-980x551.png 980w, https://updraftplus.com/wp-content/uploads/2021/02/quick-edit-480x270.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw\" /></a><p id=\"caption-attachment-1021220\" class=\"wp-caption-text\">Perform quick edits on your posts for even greater time savings</p></div>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Set parent pages and templates for your page content.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Edit your pages and posts content either using the classic editor or block editor (previously known as Gutenberg).</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Quickly manage your pages and posts information through the quick edit feature.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Choose/edit publishing dates.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Schedule your posts or pages.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Password protect your content.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Easily set your content status or make it private while you are still editing.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Easily move around posts and pages by setting their status to a different state.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Pages and posts search is supported with date and category filters.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Bulk actions for pages and posts are supported.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Easily switch editing between the classic or block editor. Just close the editor and switch to the other editor when required.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Edited remote content and its details/properties are automatically reflected among the quick edit, classic and block editors. No re-loading needed.</span></li>\n</ul>\n<p><b>Limitations:</b></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Currently, both editors (classic and block) do not support custom metaboxes.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Block editing is only supported when WordPress version 5.0 and higher is installed on the remote sites.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">For block editing, custom blocks that were installed on the remote sites must also be installed on the WordPress install where UpdraftCentral is installed/hosted if you wish to use them.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Revisions viewing and auto-saving are currently disabled as not to interfere with editing/handling of remote page and post contents.</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">While the new post module feature currently only works on your UpdraftCentral dashboard WordPress install, we aim to have it also support remote blocks in your block editor in the near future. There is currently a workaround that you can employ in the meantime. To use this workaround, just make sure that your UpdraftCentral dashboard WordPress install is in sync with your controlled sites that are registered with UpdraftCentral.Â </span></p>\n<p><b>Block Editor</b></p>\n<p><span style=\"font-weight: 400;\">If you wish to use a specific or custom block that you have created or installed on your controlled site/sites, then you must first copy or install them to your UpdraftCentral dashboard WordPress install also.Â </span></p>\n<p><b>Classic Editor</b></p>\n<p><span style=\"font-weight: 400;\">The post module does not currently support any third party options. Editing is limited to the following options/sections &#8220;Publish&#8221;, &#8220;Categories&#8221;, &#8220;Tags&#8221; and &#8220;Featured Image&#8221; only.</span></p>\n<p><b>Both Classic and Block Editors</b></p>\n<p><span style=\"font-weight: 400;\">Currently the post module does not support viewing or browsing of revisions of the current post and moving of the current post to trash directly from the editor. If you want to move the current post to trash or delete it, then it is recommended to do it outside the editor via the &#8220;Post&#8221; table interface in which the list of remote posts are displayed.</span></p>\n<p><b>Summary</b></p>\n<p><span style=\"font-weight: 400;\">The new UpdraftCentral Post module gives an extra level of control to users that have multiple sites with lots of posts. The convenience and time saving aspects of this new release further improve the overall features and usability of UpdraftCentral, making it a must have for anyone looking to update their posts with minimal fuss.</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/post-and-page-module-added-to-updraftcentral/\">Post and page module added to UpdraftCentral</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://updraftplus.com/post-and-page-module-added-to-updraftcentral/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://updraftplus.com/post-and-page-module-added-to-updraftcentral/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:94:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WP-Optimize preload key request feature details\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/gXxOQL8-Weo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://updraftplus.com/wp-optimize-preload-key-request-feature-details/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Feb 2021 14:22:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:11:\"WP Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"faster\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:11:\"key request\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"preload\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:11:\"WP-Optimise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:11:\"WP-Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1020425\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:761:\"<p>The latest updates for WP-Optimize 3.1.7 have now been released &#8211; including the preload key request feature. We have taken a lot of time and effort to launch these new improvements and hope that they further help improve users&#8217; experience &#8230; <a href=\"https://updraftplus.com/wp-optimize-preload-key-request-feature-details/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-preload-key-request-feature-details/\">WP-Optimize preload key request feature details</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7398:\"<p><span style=\"font-weight: 400;\">The latest updates for WP-Optimize 3.1.7 have now been released &#8211; including the preload key request feature. We have taken a lot of time and effort to launch these new improvements and hope that they further help improve users&#8217; experience of WP-Optimize.Â </span></p>\n<p><span style=\"font-weight: 400;\">When aiming to improve the speed of your WordPress site using WP-Optimize, one of the new features we have released with this update is the ability to preload key requests. Preload key works by using an audit to identify which resources to preload on your WordPress site. The browser will then preload resources so they are available immediately when needed, preventing eventual waiting time later on, making your site load faster. Googleâ€™s pagespeed insights will often suggest preloading the requests to font files and other assets as a speed improvement:</span></p>\n<p><span style=\"font-weight: 400;\">With the latest </span><a href=\"https://getwpo.com/buy/\"><span style=\"font-weight: 400;\">WP-Optimize Premium</span></a><span style=\"font-weight: 400;\"> release, you now have the ability to manually add any resource you want to be preloaded:</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/02/image.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1020432\" src=\"https://updraftplus.com/wp-content/uploads/2021/02/image.png\" alt=\"\" width=\"1044\" height=\"301\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/02/image.png 1044w, https://updraftplus.com/wp-content/uploads/2021/02/image-980x283.png 980w, https://updraftplus.com/wp-content/uploads/2021/02/image-480x138.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1044px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">As can be seen in the Google PageSpeed insight test, preloading key requests can result in massive time savings when visitors are loading your site.<a href=\"https://updraftplus.com/wp-content/uploads/2021/02/image-1.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1020431\" src=\"https://updraftplus.com/wp-content/uploads/2021/02/image-1.png\" alt=\"\" width=\"967\" height=\"390\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/02/image-1.png 967w, https://updraftplus.com/wp-content/uploads/2021/02/image-1-480x194.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 967px, 100vw\" /></a></span></p>\n<p><span style=\"font-weight: 400;\">In order to get the URL to add to WP-Optimize, just right click on the resource and copy the URL:</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/02/image-2.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1020430\" src=\"https://updraftplus.com/wp-content/uploads/2021/02/image-2.png\" alt=\"\" width=\"532\" height=\"323\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/02/image-2.png 532w, https://updraftplus.com/wp-content/uploads/2021/02/image-2-480x291.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 532px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">Next, past the URL in the â€˜New Assetâ€™ box of the â€˜Preload key requests / assetsâ€™ section of WP-Optimize and press â€˜Addâ€™.Â </span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/02/image.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1020432\" src=\"https://updraftplus.com/wp-content/uploads/2021/02/image.png\" alt=\"\" width=\"1044\" height=\"301\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/02/image.png 1044w, https://updraftplus.com/wp-content/uploads/2021/02/image-980x283.png 980w, https://updraftplus.com/wp-content/uploads/2021/02/image-480x138.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1044px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">The URL you added you will be added to your preload key requests.</span></p>\n<p><span style=\"font-weight: 400;\">The updates to WP-Optimize 3.1.7 also includes the following:</span></p>\n<p><b>WP-Optimize: 3.1.7</b></p>\n<ul>\n<li><span style=\"font-weight: 400;\">FEATURE: Premium &#8211; Preload key requests (Preload fonts and other assets)</span></li>\n<li><span style=\"font-weight: 400;\">FIX: Detecting Brotli compression issue</span></li>\n<li><span style=\"font-weight: 400;\">FIX: Cache &#8211; PHP Warning in URLs to exclude from caching</span></li>\n<li><span style=\"font-weight: 400;\">FIX: Premium &#8211; Unused images &#8211; Unused Images Tool not recognising Greek characters</span></li>\n<li><span style=\"font-weight: 400;\">FIX: Button for disabling Gzip doesn&#8217;t showing</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Database optimization &#8211; Prevent fatal error due to files missing</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Skip minify when SCRIPT_DEBUG is set to true</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Fixed Font-awesome settings</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Add support for different spellings of &#8220;Font-awesome&#8221;</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Update the feature comparison table</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Added the option to not show the warning before deleting a table</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Wipe all options upon plugin de-installation</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Premium &#8211; Lazy-load &#8211; Lazy load support for background images</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Minify &#8211; Add file size in the minify cache summary</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Detect conflicting plugins for GZIP issue</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Database optimization &#8211; Include all tables if database prefix is not set on WP install</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Premium &#8211; Unused images &#8211; added &#8220;X of X images loaded&#8221; for unused trash images</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Don&#8217;t allow to remove actionscheduler_ tables</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Premium &#8211; Unused images &#8211; Show a progression screen when doing any action with unused images</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Cache &#8211; Enable cache for the old default permalink structure </span><a href=\"http://domain.com/index.php/a-post-name\"><span style=\"font-weight: 400;\">domain.com/index.php/a-post-name</span></a><span style=\"font-weight: 400;\"> by creating a folder without the extension</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Show previous action as message on Trackbacks or Comments enable or disable.</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Prevent deprecation notice on PHP 8.0</span></li>\n<li><span style=\"font-weight: 400;\">TWEAK: Update notices</span></li>\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-preload-key-request-feature-details/\">WP-Optimize preload key request feature details</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://updraftplus.com/wp-optimize-preload-key-request-feature-details/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://updraftplus.com/wp-optimize-preload-key-request-feature-details/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:97:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"How to delete unused images in WordPress using WP-Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/uMublJoeKuM/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://updraftplus.com/how-to-delete-unused-images-in-wordpress-using-wp-optimize/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 29 Jan 2021 12:03:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:9:{i:0;a:5:{s:4:\"data\";s:15:\"Tips and tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"WP Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"delete\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:6:\"How to\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:6:\"Images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:6:\"unused\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:4:\"WP-O\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:11:\"WP-Optimise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:11:\"WP-Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://updraftplus.com/?p=961513\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:777:\"<p>How it works WordPress stores images in two parts: The image files are stored on the server, typically in the â€˜wp-content/uploadsâ€™ directory of the site. A record of the image is then stored in the database, in the Media Library. &#8230; <a href=\"https://updraftplus.com/how-to-delete-unused-images-in-wordpress-using-wp-optimize/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-delete-unused-images-in-wordpress-using-wp-optimize/\">How to delete unused images in WordPress using WP-Optimize</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6550:\"<p><iframe title=\"How to delete unused images using WP-Optimize\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/y2UQdrhxN2w?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p><b><br />\nHow it works</b></p>\n<p><span style=\"font-weight: 400;\">WordPress stores images in two parts:</span></p>\n<ul>\n<li><span style=\"font-weight: 400;\">The image files are stored on the server, typically in the â€˜wp-content/uploadsâ€™ directory of the site.</span></li>\n<li><span style=\"font-weight: 400;\">A record of the image is then stored in the database, in the Media Library. This record also includes other data related to the image, such as the image tile, description or alt-text.</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">When removing an image, both the image files and Media Library record will be deleted.</span></p>\n<p><b>Removing Unused Images</b></p>\n<p><span style=\"font-weight: 400;\">Open the â€˜Imagesâ€™ tab in the <a href=\"https://getwpo.com/\">WP-Optimize</a> Premium admin page and press the â€œUnused images and sizesâ€ tab. </span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/01/pasted-image-0-2.png\"><img loading=\"lazy\" class=\"alignnone wp-image-961516\" src=\"https://updraftplus.com/wp-content/uploads/2021/01/pasted-image-0-2.png\" alt=\"\" width=\"901\" height=\"481\" /></a></p>\n<p><span style=\"font-weight: 400;\">To scan your website for unused images, press the â€œScan website for unused imagesâ€ button. WP-Optimize will now scan for unused image files, found both in the Media Library and the â€˜wp-content/uploadsâ€™ directory, that are not attached or embedded in any posts or pages.</span></p>\n<p><span style=\"font-weight: 400;\">You will now be presented with all the unused images that are on your site. To delete these images, either individually select the images by clicking on the images to highlight them, or press the â€œSelect allâ€ button to delete all unused images.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/01/New-Project-2021-01-27T101746.226-1.jpg\"><img loading=\"lazy\" class=\"alignnone wp-image-961519\" src=\"https://updraftplus.com/wp-content/uploads/2021/01/New-Project-2021-01-27T101746.226-1.jpg\" alt=\"\" width=\"901\" height=\"409\" /></a></p>\n<p><span style=\"font-weight: 400;\">Once you have selected all the unused images you want to delete from your site, scroll down and either choose â€œMove selected images to trashâ€ or â€œDelete the selection permanentlyâ€. WP-Optimise will then delete all copies of the selected image file plus any record in the Media Library.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/01/New-Project-2021-01-27T101609.210-1.jpg\"><img loading=\"lazy\" class=\"alignnone wp-image-961520\" src=\"https://updraftplus.com/wp-content/uploads/2021/01/New-Project-2021-01-27T101609.210-1.jpg\" alt=\"\" width=\"902\" height=\"615\" /></a></p>\n<p><span style=\"font-weight: 400;\">You will receive a notification that your images have now been deleted.</span></p>\n<p><b>Removing Images by size</b></p>\n<p><span style=\"font-weight: 400;\">You can also choose to remove unused images by size, but please note that removing registered image sizes is for experienced users, and care should be taken that the image size in question is not used on the site.</span></p>\n<p><span style=\"font-weight: 400;\">This tool shows both all registered image sizes, and image sizes that are currently not in use.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/01/New-Project-2021-01-27T100048.791-1.jpg\"><img loading=\"lazy\" class=\"alignnone wp-image-961524\" src=\"https://updraftplus.com/wp-content/uploads/2021/01/New-Project-2021-01-27T100048.791-1.jpg\" alt=\"\" width=\"903\" height=\"389\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/01/New-Project-2021-01-27T100048.791-1.jpg 903w, https://updraftplus.com/wp-content/uploads/2021/01/New-Project-2021-01-27T100048.791-1-480x207.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 903px, 100vw\" /></a></p>\n<p><span style=\"font-weight: 400;\">The â€˜Unused image sizesâ€™ section shows a list of all image sizes that are present on the site. This includes sizes for images that are in use. Deleting a registered image size will remove all images of that size from the uploads folder, including any that are in use.</span></p>\n<p><span style=\"font-weight: 400;\">In this case, the Media Library record will only be deleted if all copies of an image have been removed.</span></p>\n<p><span style=\"font-weight: 400;\">The â€˜Unused image sizesâ€™ section shows any image sizes that are currently not used by any images on the site.</span></p>\n<p><span style=\"font-weight: 400;\">Select any image size (from either section) that you wish to remove, and press â€˜Remove selected sizesâ€™.</span></p>\n<p><b>Restoring images that were moved to trash</b></p>\n<p><span style=\"font-weight: 400;\">If you are not sure if you might still need the image, you can send it to trash, instead of deleting it permanently. You can view and restore these images by pressing the â€œview trashâ€ button.Â </span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/01/New-Project-2021-01-28T141214.987-1.jpg\"><img loading=\"lazy\" class=\"alignnone wp-image-961526\" src=\"https://updraftplus.com/wp-content/uploads/2021/01/New-Project-2021-01-28T141214.987-1.jpg\" alt=\"\" width=\"900\" height=\"430\" /></a></p>\n<p><span style=\"font-weight: 400;\">Here you can restore any trashed images you want to keep by highlighting them and pressing the â€œRestore the selectionâ€ button. These images will now be sent back to your image library.Â </span></p>\n<p><span style=\"font-weight: 400;\">We recommend taking a backup of the site before performing any optimisation with <a href=\"https://getwpo.com/\">WP-Optimize Premium</a>. WP-Optimize integrates with our backup plugin, <a href=\"http://Updraftplus.com\">UpdraftPlus</a>. If UpdraftPlus is active on the site, the option to take an automatic backup before images are removed will be displayed in the tab.</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-delete-unused-images-in-wordpress-using-wp-optimize/\">How to delete unused images in WordPress using WP-Optimize</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://updraftplus.com/how-to-delete-unused-images-in-wordpress-using-wp-optimize/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://updraftplus.com/how-to-delete-unused-images-in-wordpress-using-wp-optimize/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";s:4:\"href\";s:39:\"http://feeds.feedburner.com/UpdraftPlus\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"rel\";s:3:\"hub\";s:4:\"href\";s:32:\"http://pubsubhubbub.appspot.com/\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:4:\"info\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"uri\";s:11:\"updraftplus\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"etag\";s:27:\"1B1qfQ75uXBl3zPD86S2DsNOGS8\";s:13:\"last-modified\";s:29:\"Wed, 31 Mar 2021 13:51:42 GMT\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"date\";s:29:\"Wed, 31 Mar 2021 14:13:46 GMT\";s:7:\"expires\";s:29:\"Wed, 31 Mar 2021 14:13:46 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";s:7:\"alt-svc\";s:167:\"h3-29=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"\";}}s:5:\"build\";s:14:\"20201017025008\";}','no'),
(1827,'_transient_timeout_feed_mod_e0061ca2fa5b884e483872aa34d3e7eb','1617243225','no'),
(1828,'_transient_feed_mod_e0061ca2fa5b884e483872aa34d3e7eb','1617200025','no'),
(1829,'_transient_timeout_updraftplus_dashboard_news','1617243225','no'),
(1830,'_transient_updraftplus_dashboard_news','<div class=\"rss-widget\"><ul><li class=\"updraftplus_dashboard_news_item\"><a href=\"http://choiceresources.co.uk/wp-admin/\" class=\"dashicons dashicons-no-alt\" title=\"Dismiss all UpdraftPlus news\" onClick=\"updraftplus_dismiss_dashboard_news(); return false;\" style=\"float: right; box-shadow: none; margin-left: 5px;\"></a><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/UpdraftPlus/~3/vU4m2ms_3YM/\'>UpdraftPlus: Celebrate World Backup Day with UpdraftPlus</a></li><li class=\"updraftplus_dashboard_news_item\"><a href=\"http://choiceresources.co.uk/wp-admin/\" class=\"dashicons dashicons-no-alt\" title=\"Dismiss all UpdraftPlus news\" onClick=\"updraftplus_dismiss_dashboard_news(); return false;\" style=\"float: right; box-shadow: none; margin-left: 5px;\"></a><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/UpdraftPlus/~3/aw5mbIfQ90Q/\'>UpdraftPlus: How to fix UpdraftPlus failed backups</a></li></ul></div>','no'),
(1831,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1617243225','no'),
(1832,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\'>So you want to make block patterns?</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/03/talking-full-site-editing-with-matias-ventura/\'>WP Briefing: Talking Full Site Editing with MatÃ­as Ventura</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/godaddy-pro-will-kick-off-2-day-expand-event-on-april-27?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=godaddy-pro-will-kick-off-2-day-expand-event-on-april-27\'>WPTavern: GoDaddy Pro Will Kick off 2-Day Expand Event on April 27</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\'>WordPress.org blog: So you want to make block patterns?</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/open-collective-launches-funds-to-help-companies-streamline-donations-to-multiple-open-source-projects?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=open-collective-launches-funds-to-help-companies-streamline-donations-to-multiple-open-source-projects\'>WPTavern: Open Collective Launches Funds to Help Companies Streamline Donations to Multiple Open Source Projects</a></li></ul></div>','no'),
(1835,'_elementor_settings_update_time','1617200111','yes'),
(1836,'elementor_cpt_support','a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:14:\"e-landing-page\";i:3;s:7:\"product\";}','yes'),
(1837,'elementor_disable_color_schemes','','yes'),
(1838,'elementor_disable_typography_schemes','','yes'),
(1839,'elementor_notice','','yes'),
(1840,'elementor_pro_recaptcha_site_key','','yes'),
(1841,'elementor_pro_recaptcha_secret_key','','yes'),
(1842,'elementor_pro_recaptcha_v3_site_key','','yes'),
(1843,'elementor_pro_recaptcha_v3_secret_key','','yes'),
(1844,'elementor_pro_recaptcha_v3_threshold','0.5','yes'),
(1845,'elementor_pro_facebook_app_id','','yes'),
(1846,'elementor_pro_mailchimp_api_key','','yes'),
(1847,'elementor_validate_api_data','','yes'),
(1848,'elementor_pro_drip_api_token','','yes'),
(1849,'elementor_pro_activecampaign_api_key','','yes'),
(1850,'elementor_pro_activecampaign_api_url','','yes'),
(1851,'elementor_pro_getresponse_api_key','','yes'),
(1852,'elementor_pro_convertkit_api_key','','yes'),
(1853,'elementor_pro_mailerlite_api_key','','yes'),
(1854,'elementor_typekit-kit-id','','yes'),
(1855,'elementor_font_awesome_pro_kit_id','','yes'),
(1856,'elementor_css_print_method','external','yes'),
(1857,'elementor_editor_break_lines','','yes'),
(1858,'elementor_unfiltered_files_upload','','yes'),
(1859,'elementor_load_fa4_shim','','yes'),
(1860,'elementor_experiment-e_dom_optimization','default','yes'),
(1861,'elementor_experiment-e_optimized_assets_loading','default','yes'),
(1862,'elementor_experiment-a11y_improvements','default','yes'),
(1863,'elementor_experiment-landing-pages','default','yes'),
(1864,'elementor_experiment-form-submissions','default','yes'),
(1865,'_transient_timeout_settings_errors','1617200141','no'),
(1866,'_transient_settings_errors','a:1:{i:0;a:4:{s:7:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"message\";s:15:\"Settings saved.\";s:4:\"type\";s:7:\"success\";}}','no'),
(1878,'category_children','a:0:{}','yes'),
(2011,'_elementor_global_css','a:6:{s:4:\"time\";i:1617207414;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),
(2158,'updraft_remotesites','','yes'),
(2159,'updraft_migrator_localkeys','','yes'),
(2160,'updraft_central_localkeys','','yes'),
(2164,'updraft_lock_f7b4ffea3122','1617230526','no'),
(2179,'_transient_shipping-transient-version','1617231070','yes'),
(2180,'_transient_timeout_wc_shipping_method_count_legacy','1619823070','no'),
(2181,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1617231070\";s:5:\"value\";i:0;}','no'),
(2220,'_site_transient_timeout_theme_roots','1617234806','no'),
(2221,'_site_transient_theme_roots','a:4:{s:10:\"storefront\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),
(2235,'_transient_is_multi_author','0','yes'),
(2237,'_site_transient_timeout_available_translations','1617244560','no'),
(2238,'_site_transient_available_translations','a:126:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-02-23 11:41:38\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-18 17:28:01\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"Ø§Ù„Ø¹Ø±Ø¨ÙŠØ©\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Ø§Ù„Ù…ØªØ§Ø¨Ø¹Ø©\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.15\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"Ø§Ù„Ø¹Ø±Ø¨ÙŠØ© Ø§Ù„Ù…ØºØ±Ø¨ÙŠØ©\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.15/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Ø§Ù„Ù…ØªØ§Ø¨Ø¹Ø©\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-25 05:49:11\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"à¦…à¦¸à¦®à§€à¦¯à¦¼à¦¾\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"AzÉ™rbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"Ú¯Ø¤Ù†Ø¦ÛŒ Ø¢Ø°Ø±Ø¨Ø§ÛŒØ¬Ø§Ù†\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.16\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Ð‘ÐµÐ»Ð°Ñ€ÑƒÑÐºÐ°Ñ Ð¼Ð¾Ð²Ð°\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.16/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"ÐŸÑ€Ð°Ñ†ÑÐ³Ð½ÑƒÑ†ÑŒ\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"5.4.4\";s:7:\"updated\";s:19:\"2020-07-01 06:36:01\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Ð‘ÑŠÐ»Ð³Ð°Ñ€ÑÐºÐ¸\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.4/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"ÐŸÑ€Ð¾Ð´ÑŠÐ»Ð¶ÐµÐ½Ð¸Ðµ\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"5.4.4\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"à¦¬à¦¾à¦‚à¦²à¦¾\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.4/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"à¦à¦—à¦¿à§Ÿà§‡ à¦šà¦².\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"à½–à½¼à½‘à¼‹à½¡à½²à½‚\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"à½˜à½´à¼‹à½˜à½à½´à½‘à¼\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-17 22:25:51\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-08 23:10:51\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"CatalÃ \";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-30 05:11:19\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"ÄŒeÅ¡tina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"PokraÄovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-24 14:40:54\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-27 08:02:18\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-10 19:15:18\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Ã–sterreich)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-14 20:06:23\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-14 20:06:52\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.7/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-30 12:57:49\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.7/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-30 12:56:11\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 13:55:07\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"DolnoserbÅ¡Ä‡ina\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.7/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"à½¢à¾«à½¼à½„à¼‹à½\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-29 03:44:37\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Î•Î»Î»Î·Î½Î¹ÎºÎ¬\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Î£Ï…Î½Î­Ï‡ÎµÎ¹Î±\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-08 05:45:50\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-08 05:55:53\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 12:20:18\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 13:26:56\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-07 04:06:50\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-27 16:08:13\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"DaÅ­rigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 12:24:41\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"EspaÃ±ol de Venezuela\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-11 17:28:23\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"EspaÃ±ol de Colombia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-17 08:03:15\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"EspaÃ±ol\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-10 15:04:44\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"EspaÃ±ol de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"EspaÃ±ol de Uruguay\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-26 21:05:59\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"EspaÃ±ol de Argentina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.6.2\";s:7:\"updated\";s:19:\"2020-12-11 02:12:59\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"EspaÃ±ol de PerÃº\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.6.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:5:\"5.4.4\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"EspaÃ±ol de Puerto Rico\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.4/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"5.2.9\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"EspaÃ±ol de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.9/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 12:24:19\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"EspaÃ±ol de Ecuador\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 14:13:12\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"EspaÃ±ol de MÃ©xico\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-03 15:32:45\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"EspaÃ±ol de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"JÃ¤tka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-30 16:20:48\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-31 18:14:01\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"ÙØ§Ø±Ø³ÛŒ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Ø§Ø¯Ø§Ù…Ù‡\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-02 13:52:39\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(ÙØ§Ø±Ø³ÛŒ (Ø§ÙØºØ§Ù†Ø³ØªØ§Ù†\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Ø§Ø¯Ø§Ù…Ù‡\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-16 17:24:47\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"FranÃ§ais de Belgique\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-19 23:51:11\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"FranÃ§ais\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-24 19:13:29\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"FranÃ§ais du Canada\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.15\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.15/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"GÃ idhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 17:02:42\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:6:\"4.9.16\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"àª—à«àªœàª°àª¾àª¤à«€\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.16/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"àªšàª¾àª²à« àª°àª¾àª–àªµà«àª‚\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.24\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"Ù‡Ø²Ø§Ø±Ù‡ Ú¯ÛŒ\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.24/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Ø§Ø¯Ø§Ù…Ù‡\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-02-27 16:06:05\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"×¢Ö´×‘Ö°×¨Ö´×™×ª\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"×œ×”×ž×©×™×š\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.4.4\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"à¤¹à¤¿à¤¨à¥à¤¦à¥€\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.4/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"à¤œà¤¾à¤°à¥€\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-13 15:38:05\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-05 13:52:56\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"HornjoserbÅ¡Ä‡ina\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.7/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-22 14:59:40\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"TovÃ¡bb\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Õ€Õ¡ÕµÕ¥Ö€Õ¥Õ¶\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Õ‡Õ¡Ö€Õ¸Ö‚Õ¶Õ¡Õ¯Õ¥Õ¬\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-31 01:08:49\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.16\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Ãslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.16/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Ãfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-10 07:40:23\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-16 12:44:38\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"æ—¥æœ¬èªž\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ç¶šã‘ã‚‹\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.16\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.16/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nutugne\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-29 10:00:46\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"áƒ¥áƒáƒ áƒ—áƒ£áƒšáƒ˜\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"áƒ’áƒáƒ’áƒ áƒ«áƒ”áƒšáƒ”áƒ‘áƒ\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-11 22:04:53\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.7/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.16\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"ÒšÐ°Ð·Ð°Ò› Ñ‚Ñ–Ð»Ñ–\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.16/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Ð–Ð°Ð»Ò“Ð°ÑÑ‚Ñ‹Ñ€Ñƒ\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"5.2.9\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"áž—áž¶ážŸáž¶ážáŸ’áž˜áŸ‚ážš\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.9/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"áž”áž“áŸ’áž\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:6:\"4.9.16\";s:7:\"updated\";s:19:\"2020-09-30 14:08:59\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"à²•à²¨à³à²¨à²¡\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.16/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"à²®à³à²‚à²¦à³à²µà²°à³†à²¸à²¿\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-30 12:15:43\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"í•œêµ­ì–´\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ê³„ì†\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-02-28 14:29:24\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"ÙƒÙˆØ±Ø¯ÛŒâ€Ž\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.7/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"Ø¨Ù‡â€ŒØ±Ø¯Ù‡â€ŒÙˆØ§Ù… Ø¨Ù‡â€Œ\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"àºžàº²àºªàº²àº¥àº²àº§\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"àº•à»à»ˆ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-23 12:35:40\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"LietuviÅ³ kalba\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"TÄ™sti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-23 12:42:48\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"LatvieÅ¡u valoda\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"TurpinÄt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"5.4.4\";s:7:\"updated\";s:19:\"2020-07-01 09:16:57\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"ÐœÐ°ÐºÐµÐ´Ð¾Ð½ÑÐºÐ¸ Ñ˜Ð°Ð·Ð¸Ðº\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.4/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"ÐŸÑ€Ð¾Ð´Ð¾Ð»Ð¶Ð¸\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"à´®à´²à´¯à´¾à´³à´‚\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"à´¤àµà´Ÿà´°àµà´•\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"ÐœÐ¾Ð½Ð³Ð¾Ð»\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Ò®Ñ€Ð³ÑÐ»Ð¶Ð»Ò¯Ò¯Ð»ÑÑ…\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.16\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"à¤®à¤°à¤¾à¤ à¥€\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.16/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"à¤¸à¥à¤°à¥ à¤ à¥‡à¤µà¤¾\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"4.9.16\";s:7:\"updated\";s:19:\"2018-08-31 11:57:07\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.16/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.29\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"á€—á€™á€¬á€…á€¬\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.29/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"á€†á€€á€ºá€œá€€á€ºá€œá€¯á€•á€ºá€±á€†á€¬á€„á€ºá€•á€«á‹\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-19 09:53:09\";s:12:\"english_name\";s:19:\"Norwegian (BokmÃ¥l)\";s:11:\"native_name\";s:13:\"Norsk bokmÃ¥l\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"5.2.9\";s:7:\"updated\";s:19:\"2020-05-31 16:07:59\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"à¤¨à¥‡à¤ªà¤¾à¤²à¥€\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.9/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"à¤œà¤¾à¤°à¥€à¤°à¤¾à¤–à¥à¤¨à¥ \";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-12 11:48:35\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.7/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-11 19:27:48\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-26 07:50:37\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (BelgiÃ«)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.15\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.15/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"à¨ªà©°à¨œà¨¾à¨¬à©€\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"à¨œà¨¾à¨°à©€ à¨°à©±à¨–à©‹\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-18 09:04:34\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.25\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"Ù¾ÚšØªÙˆ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.25/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Ø¯ÙˆØ§Ù…\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-19 15:11:25\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"PortuguÃªs do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2020-12-08 14:21:04\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"PortuguÃªs de Angola\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-27 16:47:08\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"PortuguÃªs\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2020-12-07 22:41:07\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"PortuguÃªs (AO90)\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.7/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"RuÃ¡inga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-10 20:00:24\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"RomÃ¢nÄƒ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ContinuÄƒ\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-06 19:27:20\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Ð ÑƒÑÑÐºÐ¸Ð¹\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"ÐŸÑ€Ð¾Ð´Ð¾Ð»Ð¶Ð¸Ñ‚ÑŒ\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Ð¡Ð°Ñ…Ð°Ð»Ñ‹Ñ‹\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Ð¡Ð°Ð»Ò•Ð°Ð°\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:5:\"5.4.4\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"Ø³Ù†ÚŒÙŠ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.4/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Ø§Ú³ØªÙŠ Ù‡Ù„Ùˆ\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"à·ƒà·’à¶‚à·„à¶½\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"à¶¯à·’à¶œà¶§à¶¸ à¶šà¶»à¶œà·™à¶± à¶ºà¶±à·Šà¶±\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-17 18:59:02\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"SlovenÄina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"PokraÄovaÅ¥\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2020-09-13 06:50:55\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"Ø³Ø±Ø§Ø¦ÛŒÚ©ÛŒ\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/5.7/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"Ø¬Ø§Ø±ÛŒ Ø±Ú©Ú¾Ùˆ\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"5.1.8\";s:7:\"updated\";s:19:\"2019-04-30 13:03:56\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"SlovenÅ¡Äina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.1.8/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-17 16:48:34\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-16 15:55:30\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Ð¡Ñ€Ð¿ÑÐºÐ¸ Ñ˜ÐµÐ·Ð¸Ðº\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"ÐÐ°ÑÑ‚Ð°Ð²Ð¸\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-24 02:07:36\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"FortsÃ¤tt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"5.3.6\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.3.6/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"ÅšlÅnskÅ gÅdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"KÅntynuowaÄ‡\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"à®¤à®®à®¿à®´à¯\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"à®¤à¯Šà®Ÿà®°à®µà¯à®®à¯\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.29\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"à®¤à®®à®¿à®´à¯\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.29/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"à®¤à¯Šà®Ÿà®°à¯à®•\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"à°¤à±†à°²à±à°—à±\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"à°•à±Šà°¨à°¸à°¾à°—à°¿à°‚à°šà±\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.5.3\";s:7:\"updated\";s:19:\"2021-02-24 06:46:42\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"à¹„à¸—à¸¢\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.5.3/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"à¸•à¹ˆà¸­à¹„à¸›\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.15\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.15/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-07 22:10:38\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"TÃ¼rkÃ§e\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Ð¢Ð°Ñ‚Ð°Ñ€ Ñ‚ÐµÐ»Ðµ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"Ð´Ó™Ð²Ð°Ð¼ Ð¸Ñ‚Ò¯\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.16\";s:7:\"updated\";s:19:\"2018-05-16 07:36:13\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"Ø¦Û‡ÙŠØºÛ‡Ø±Ú†Û•\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.16/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"Ø¯Ø§Û‹Ø§Ù…Ù„Ø§Ø´ØªÛ‡Ø±Û‡Ø´\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-30 16:14:09\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Ð£ÐºÑ€Ð°Ñ—Ð½ÑÑŒÐºÐ°\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"ÐŸÑ€Ð¾Ð´Ð¾Ð²Ð¶Ð¸Ñ‚Ð¸\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"5.4.4\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"Ø§Ø±Ø¯Ùˆ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.4.4/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"Ø¬Ø§Ø±ÛŒ Ø±Ú©Ú¾ÛŒÚº\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"Oâ€˜zbekcha\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"ÐŸÑ€Ð¾Ð´Ð¾Ð»Ð¶Ð¸Ñ‚ÑŒ\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-10 06:03:58\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiáº¿ng Viá»‡t\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.7/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiáº¿p tá»¥c\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-28 05:50:49\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"ç®€ä½“ä¸­æ–‡\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ç»§ç»­\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-29 06:48:23\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"é¦™æ¸¯ä¸­æ–‡ç‰ˆ	\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ç¹¼çºŒ\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:3:\"5.7\";s:7:\"updated\";s:19:\"2021-03-25 06:31:33\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"ç¹é«”ä¸­æ–‡\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.7/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ç¹¼çºŒ\";}}}','no');
/*!40000 ALTER TABLE `wpcx_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_postmeta`
--

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

--
-- Dumping data for table `wpcx_postmeta`
--

LOCK TABLES `wpcx_postmeta` WRITE;
/*!40000 ALTER TABLE `wpcx_postmeta` DISABLE KEYS */;
INSERT INTO `wpcx_postmeta` VALUES
(1,2,'_wp_page_template','default'),
(2,3,'_wp_page_template','default'),
(5,6,'_edit_lock','1617074283:1'),
(7,7,'_customize_changeset_uuid','33f78bf8-2ccd-4b8c-8bcd-d8139a2ae6b0'),
(9,8,'_customize_changeset_uuid','33f78bf8-2ccd-4b8c-8bcd-d8139a2ae6b0'),
(11,9,'_customize_changeset_uuid','33f78bf8-2ccd-4b8c-8bcd-d8139a2ae6b0'),
(13,10,'_customize_changeset_uuid','33f78bf8-2ccd-4b8c-8bcd-d8139a2ae6b0'),
(14,12,'_elementor_edit_mode','builder'),
(15,12,'_elementor_template_type','kit'),
(16,12,'_elementor_version','3.1.4'),
(17,12,'_elementor_pro_version','3.2.1'),
(18,11,'_edit_lock','1617074690:1'),
(19,17,'_menu_item_type','custom'),
(20,17,'_menu_item_menu_item_parent','0'),
(21,17,'_menu_item_object_id','17'),
(22,17,'_menu_item_object','custom'),
(23,17,'_menu_item_target',''),
(24,17,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(25,17,'_menu_item_xfn',''),
(26,17,'_menu_item_url','http://choiceresources.co.uk/'),
(27,18,'_menu_item_type','post_type'),
(28,18,'_menu_item_menu_item_parent','0'),
(29,18,'_menu_item_object_id','8'),
(30,18,'_menu_item_object','page'),
(31,18,'_menu_item_target',''),
(32,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(33,18,'_menu_item_xfn',''),
(34,18,'_menu_item_url',''),
(35,19,'_menu_item_type','post_type'),
(36,19,'_menu_item_menu_item_parent','0'),
(37,19,'_menu_item_object_id','10'),
(38,19,'_menu_item_object','page'),
(39,19,'_menu_item_target',''),
(40,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(41,19,'_menu_item_xfn',''),
(42,19,'_menu_item_url',''),
(43,20,'_menu_item_type','post_type'),
(44,20,'_menu_item_menu_item_parent','0'),
(45,20,'_menu_item_object_id','9'),
(46,20,'_menu_item_object','page'),
(47,20,'_menu_item_target',''),
(48,20,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(49,20,'_menu_item_xfn',''),
(50,20,'_menu_item_url',''),
(83,11,'_wp_trash_meta_status','publish'),
(84,11,'_wp_trash_meta_time','1617074727'),
(85,25,'_wp_attached_file','woocommerce-placeholder.png'),
(86,25,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(87,30,'_edit_last','1'),
(88,30,'_edit_lock','1617075697:1'),
(89,31,'_wp_attached_file','2021/03/PE-Tracker.jpg'),
(90,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2021/03/PE-Tracker.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"PE-Tracker-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"PE-Tracker-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"PE-Tracker-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"PE-Tracker-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"PE-Tracker-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"PE-Tracker-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"PE-Tracker-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"PE-Tracker-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(91,32,'_wp_attached_file','woocommerce_uploads/2021/03/PE-Tracker-5lizl4.jpg'),
(92,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:800;s:4:\"file\";s:49:\"woocommerce_uploads/2021/03/PE-Tracker-5lizl4.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"PE-Tracker-5lizl4-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"PE-Tracker-5lizl4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"PE-Tracker-5lizl4-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"PE-Tracker-5lizl4-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"PE-Tracker-5lizl4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"PE-Tracker-5lizl4-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"PE-Tracker-5lizl4-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"PE-Tracker-5lizl4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(93,33,'_wp_attached_file','2021/03/Music-Tracker-.jpg'),
(94,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2021/03/Music-Tracker-.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Music-Tracker--192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Music-Tracker--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Music-Tracker--324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Music-Tracker--416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Music-Tracker--100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"Music-Tracker--324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Music-Tracker--416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Music-Tracker--100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(95,30,'_thumbnail_id','31'),
(96,30,'_regular_price','5.99'),
(97,30,'total_sales','0'),
(98,30,'_tax_status','taxable'),
(99,30,'_tax_class',''),
(100,30,'_manage_stock','no'),
(101,30,'_backorders','no'),
(102,30,'_sold_individually','no'),
(103,30,'_virtual','yes'),
(104,30,'_downloadable','yes'),
(105,30,'_download_limit','-1'),
(106,30,'_download_expiry','-1'),
(107,30,'_stock',NULL),
(108,30,'_stock_status','instock'),
(109,30,'_wc_average_rating','0'),
(110,30,'_wc_review_count','0'),
(111,30,'_downloadable_files','a:1:{s:36:\"8642b148-17e7-4441-8dc4-518d667ccfba\";a:3:{s:2:\"id\";s:36:\"8642b148-17e7-4441-8dc4-518d667ccfba\";s:4:\"name\";s:0:\"\";s:4:\"file\";s:97:\"http://choiceresources.co.uk/wp-content/uploads/woocommerce_uploads/2021/03/PE-Tracker-5lizl4.jpg\";}}'),
(112,30,'_product_version','5.1.0'),
(113,30,'_price','5.99'),
(114,30,'_product_image_gallery','33'),
(115,34,'_edit_last','1'),
(116,34,'_edit_lock','1617075685:1'),
(117,35,'_wp_attached_file','2021/03/Untitled-design-10.png'),
(118,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1587;s:6:\"height\";i:2245;s:4:\"file\";s:30:\"2021/03/Untitled-design-10.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Untitled-design-10-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Untitled-design-10-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Untitled-design-10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Untitled-design-10-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"Untitled-design-10-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"Untitled-design-10-1448x2048.png\";s:5:\"width\";i:1448;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"Untitled-design-10-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"Untitled-design-10-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"Untitled-design-10-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"Untitled-design-10-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"Untitled-design-10-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Untitled-design-10-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(119,36,'_wp_attached_file','2021/03/Untitled-design-9.png'),
(120,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1587;s:6:\"height\";i:2245;s:4:\"file\";s:29:\"2021/03/Untitled-design-9.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Untitled-design-9-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Untitled-design-9-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Untitled-design-9-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:\"Untitled-design-9-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Untitled-design-9-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"Untitled-design-9-1448x2048.png\";s:5:\"width\";i:1448;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-9-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Untitled-design-9-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Untitled-design-9-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Untitled-design-9-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Untitled-design-9-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Untitled-design-9-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(121,34,'_thumbnail_id','35'),
(122,34,'_regular_price','4'),
(123,34,'total_sales','0'),
(124,34,'_tax_status','taxable'),
(125,34,'_tax_class',''),
(126,34,'_manage_stock','no'),
(127,34,'_backorders','no'),
(128,34,'_sold_individually','no'),
(129,34,'_virtual','yes'),
(130,34,'_downloadable','yes'),
(131,34,'_download_limit','-1'),
(132,34,'_download_expiry','-1'),
(133,34,'_stock',NULL),
(134,34,'_stock_status','instock'),
(135,34,'_wc_average_rating','0'),
(136,34,'_wc_review_count','0'),
(137,34,'_product_version','5.1.0'),
(138,34,'_price','4'),
(139,34,'_product_image_gallery','36'),
(140,37,'_edit_last','1'),
(141,37,'_edit_lock','1617075671:1'),
(142,38,'_wp_attached_file','2021/03/Alphabet-feelings-Flashcards-.jpg'),
(143,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:41:\"2021/03/Alphabet-feelings-Flashcards-.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Alphabet-feelings-Flashcards--300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Alphabet-feelings-Flashcards--1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Alphabet-feelings-Flashcards--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:41:\"Alphabet-feelings-Flashcards--768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"Alphabet-feelings-Flashcards--1536x1086.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"Alphabet-feelings-Flashcards--324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:41:\"Alphabet-feelings-Flashcards--416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"Alphabet-feelings-Flashcards--100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:41:\"Alphabet-feelings-Flashcards--324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:41:\"Alphabet-feelings-Flashcards--416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:41:\"Alphabet-feelings-Flashcards--100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(144,39,'_wp_attached_file','2021/03/Alphabet-feelings-Flashcards-1-1.jpg'),
(145,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:44:\"2021/03/Alphabet-feelings-Flashcards-1-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Alphabet-feelings-Flashcards-1-1-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Alphabet-feelings-Flashcards-1-1-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Alphabet-feelings-Flashcards-1-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:44:\"Alphabet-feelings-Flashcards-1-1-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Alphabet-feelings-Flashcards-1-1-1536x1086.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Alphabet-feelings-Flashcards-1-1-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:44:\"Alphabet-feelings-Flashcards-1-1-416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Alphabet-feelings-Flashcards-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:44:\"Alphabet-feelings-Flashcards-1-1-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:44:\"Alphabet-feelings-Flashcards-1-1-416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Alphabet-feelings-Flashcards-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),
(146,37,'_thumbnail_id','38'),
(147,37,'_regular_price','55'),
(148,37,'total_sales','0'),
(149,37,'_tax_status','taxable'),
(150,37,'_tax_class',''),
(151,37,'_manage_stock','no'),
(152,37,'_backorders','no'),
(153,37,'_sold_individually','no'),
(154,37,'_virtual','yes'),
(155,37,'_downloadable','yes'),
(156,37,'_download_limit','-1'),
(157,37,'_download_expiry','-1'),
(158,37,'_stock',NULL),
(159,37,'_stock_status','instock'),
(160,37,'_wc_average_rating','0'),
(161,37,'_wc_review_count','0'),
(162,37,'_product_version','5.1.0'),
(163,37,'_price','55'),
(164,37,'_product_image_gallery','39'),
(165,40,'_edit_last','1'),
(166,40,'_edit_lock','1617075661:1'),
(167,41,'_wp_attached_file','2021/03/Ready-Steady-Grow.jpg'),
(168,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:29:\"2021/03/Ready-Steady-Grow.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Ready-Steady-Grow-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Ready-Steady-Grow-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Ready-Steady-Grow-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:29:\"Ready-Steady-Grow-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-1536x1086.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Ready-Steady-Grow-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Ready-Steady-Grow-416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Ready-Steady-Grow-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Ready-Steady-Grow-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Ready-Steady-Grow-416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Ready-Steady-Grow-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(169,42,'_wp_attached_file','2021/03/Ready-Steady-Grow-1.jpg'),
(170,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:31:\"2021/03/Ready-Steady-Grow-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-1-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Ready-Steady-Grow-1-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-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:31:\"Ready-Steady-Grow-1-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"Ready-Steady-Grow-1-1536x1086.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Ready-Steady-Grow-1-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-1-416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-1-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-1-416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),
(171,40,'_thumbnail_id','41'),
(172,40,'_regular_price','6.99'),
(173,40,'total_sales','0'),
(174,40,'_tax_status','taxable'),
(175,40,'_tax_class',''),
(176,40,'_manage_stock','no'),
(177,40,'_backorders','no'),
(178,40,'_sold_individually','no'),
(179,40,'_virtual','yes'),
(180,40,'_downloadable','yes'),
(181,40,'_download_limit','-1'),
(182,40,'_download_expiry','-1'),
(183,40,'_stock',NULL),
(184,40,'_stock_status','instock'),
(185,40,'_wc_average_rating','0'),
(186,40,'_wc_review_count','0'),
(187,40,'_product_version','5.1.0'),
(188,40,'_price','6.99'),
(189,40,'_product_image_gallery','42'),
(190,43,'_elementor_edit_mode','builder'),
(191,43,'_elementor_template_type','header'),
(192,44,'_elementor_edit_mode','builder'),
(193,44,'_elementor_template_type','header'),
(194,43,'_elementor_version','3.1.4'),
(195,43,'_elementor_pro_version','3.2.1'),
(197,43,'_edit_lock','1617213641:1'),
(198,45,'_wp_attached_file','2021/03/placeholder.png'),
(199,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2021/03/placeholder.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"placeholder-416x277.png\";s:5:\"width\";i:416;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"placeholder-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"placeholder-416x277.png\";s:5:\"width\";i:416;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(200,45,'_elementor_source_image_hash','e33cb5420415b2c73258c9c1b8bc0ade59e23c3f'),
(201,46,'_wp_attached_file','2021/03/Resturant_Logo.png'),
(202,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:324;s:6:\"height\";i:48;s:4:\"file\";s:26:\"2021/03/Resturant_Logo.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Resturant_Logo-300x44.png\";s:5:\"width\";i:300;s:6:\"height\";i:44;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Resturant_Logo-150x48.png\";s:5:\"width\";i:150;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Resturant_Logo-100x48.png\";s:5:\"width\";i:100;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Resturant_Logo-100x48.png\";s:5:\"width\";i:100;s:6:\"height\";i:48;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:{}}}'),
(203,46,'_elementor_source_image_hash','6456db0ffeca6421926fc976eb208916a3cd9984'),
(204,47,'_wp_attached_file','2021/03/Menu.svg'),
(205,47,'_elementor_source_image_hash','f6839525b41acbdba74782de0387acdf7e934a3d'),
(207,43,'_wp_page_template','default'),
(208,43,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17.586999999999999744204615126363933086395263671875,\"_inline_size_tablet\":30,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9630ca6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_tablet\":\"left\",\"width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":67.89199999999999590727384202182292938232421875,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(210,48,'_elementor_edit_mode','builder'),
(211,48,'_elementor_template_type','header'),
(212,48,'_elementor_version','3.1.4'),
(213,48,'_elementor_pro_version','3.2.1'),
(214,48,'_wp_page_template','default'),
(215,48,'_elementor_data','[{\"id\":\"1124af8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0B0B0B\",\"background_color_stop\":{\"unit\":\"%\",\"size\":\"99\",\"sizes\":[]},\"background_color_b\":\"rgba(255, 255, 255, 0.2)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"99\",\"sizes\":[]},\"background_motion_fx_opacity_effect\":\"yes\",\"background_motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"6\"}},\"background_motion_fx_range\":\"page\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"sticky\":\"top\",\"_title\":\"Header\",\"z_index\":\"99\",\"content_width\":{\"unit\":\"px\",\"size\":\"1600\",\"sizes\":[]},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"19be0b1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"30\",\"_inline_size_mobile\":\"50\"},\"elements\":[{\"id\":\"5bbb85ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Resturant_Logo.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"2f2c772\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"25ae1c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"35\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"56429c6f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Facebook\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d42ef9a\"},{\"text\":\"Instagram\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6d51e72\"}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_color_hover\":\"#CB3522\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Nanum Gothic\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_text_transform\":\"uppercase\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.0299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"\"},{\"id\":\"7ea7d233\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"flex-end\",\"_inline_size_tablet\":\"35\",\"_inline_size_mobile\":\"50\"},\"elements\":[{\"id\":\"24c6c51c\",\"elType\":\"widget\",\"settings\":{\"text\":\"RESERVATIONS\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#CB3522\",\"hover_color\":\"#CB3522\",\"button_background_hover_color\":\"#FFFFFF\",\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-phone\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/japanese-restaurant\\/reservations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_family\":\"Nanum Gothic\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.19\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#CB3522\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"14.5\",\"right\":\"36\",\"bottom\":\"14.5\",\"left\":\"36\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"39b19448\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":47,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Menu.svg\"},\"library\":\"svg\"},\"primary_color\":\"#FFFFFF\",\"hover_primary_color\":\"#CB3522\",\"size\":{\"unit\":\"px\",\"size\":\"32\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"25\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"f1eaeb0\\\" name=\\\"popup\\\" settings=\\\"%7B%22action%22%3A%22toggle%22%2C%22popup%22%3A%2262%22%7D\\\"]\"},\"hover_animation\":\"skew\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3a6054ca\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":150},\"content_position\":\"middle\",\"structure\":\"33\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":24,\"spread\":0,\"color\":\"rgba(0,0,0,0.15)\"},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"43b3eff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":20,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67de4d83\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":45,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"5808083d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"153bb7ae\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#54595f\",\"color_menu_item_hover\":\"#8102ce\",\"pointer_color_menu_item_hover\":\"#8102ce\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#00ce1b\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#000000\",\"toggle_color_hover\":\"#00ce1b\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"menu_space_between\":{\"unit\":\"px\",\"size\":6},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":0},\"menu_typography_font_weight\":\"400\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":36},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":14},\"padding_vertical_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":12},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":20},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"6c6a0841\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"a5ec8cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.399999999999999911182158029987476766109466552734375},\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":27,\"spread\":0,\"color\":\"rgba(0,0,0,0.12)\"},\"align_tablet\":\"right\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),
(218,43,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(220,49,'_elementor_edit_mode','builder'),
(221,49,'_elementor_template_type','footer'),
(222,50,'_elementor_edit_mode','builder'),
(223,50,'_elementor_template_type','footer'),
(224,49,'_elementor_version','3.1.4'),
(225,49,'_elementor_pro_version','3.2.1'),
(226,49,'_edit_lock','1617213524:1'),
(227,49,'_wp_page_template','default'),
(228,49,'_elementor_data','[]'),
(229,51,'_elementor_edit_mode','builder'),
(230,51,'_elementor_template_type','footer'),
(231,51,'_elementor_version','3.1.4'),
(232,51,'_elementor_pro_version','3.2.1'),
(233,51,'_wp_page_template','default'),
(234,51,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#e82a00\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\"},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\"},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\"},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#e82a00\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"50973896\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"rgba(255,255,255,0.39)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(236,49,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(238,52,'_elementor_edit_mode','builder'),
(239,52,'_elementor_template_type','product'),
(240,53,'_elementor_edit_mode','builder'),
(241,53,'_elementor_template_type','product'),
(242,52,'_elementor_version','3.1.4'),
(243,52,'_elementor_pro_version','3.2.1'),
(244,52,'_edit_lock','1617076821:1'),
(251,52,'_wp_trash_meta_status','draft'),
(252,52,'_wp_trash_meta_time','1617076828'),
(253,52,'_wp_desired_post_slug',''),
(254,55,'_elementor_edit_mode','builder'),
(255,55,'_elementor_template_type','product'),
(256,56,'_elementor_edit_mode','builder'),
(257,56,'_elementor_template_type','product'),
(258,55,'_elementor_version','3.1.4'),
(259,55,'_elementor_pro_version','3.2.1'),
(260,55,'_edit_lock','1617077165:1'),
(261,55,'_wp_page_template','default'),
(262,55,'_elementor_data','[{\"id\":\"43c2843c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"vh\",\"size\":90},\"structure\":\"20\",\"gap\":\"wide\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"75b722dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"387d31c1\",\"elType\":\"widget\",\"settings\":{\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#000000\",\"spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"spacing_thumbs\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"woocommerce-product-images\"}],\"isInner\":false},{\"id\":\"6464079f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b3eeac1\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#7a7a7a\",\"link_color\":\"#7a7a7a\",\"text_typography_typography\":\"custom\",\"text_typography_font_family\":\"Merriweather\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"text_typography_font_weight\":\"200\",\"text_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875}},\"elements\":[],\"widgetType\":\"woocommerce-breadcrumb\"},{\"id\":\"10e3856b\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"woocommerce-product-title-tag\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo Narrow\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"woocommerce-product-title\"},{\"id\":\"7ba0ce5e\",\"elType\":\"widget\",\"settings\":{\"text_typography_typography\":\"custom\",\"text_typography_font_family\":\"Merriweather\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"text_typography_font_weight\":\"200\",\"text_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875},\"link_color\":\"#000000\",\"star_size\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875}},\"elements\":[],\"widgetType\":\"woocommerce-product-rating\"},{\"id\":\"472763d6\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"text_typography_typography\":\"custom\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"text_typography_font_weight\":\"200\",\"text_typography_font_family\":\"Merriweather\",\"text_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"woocommerce-product-short-description\"},{\"id\":\"24156796\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"price_color\":\"#7a7a7a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo Narrow\",\"typography_font_weight\":\"100\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_text_transform\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.4000000000000003552713678800500929355621337890625},\"sale_price_spacing\":{\"unit\":\"px\",\"size\":0},\"price_block\":\"yes\",\"sale_price_color\":\"#0c0c0c\",\"sale_price_typography_typography\":\"custom\",\"sale_price_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"sale_price_typography_font_weight\":\"200\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"woocommerce-product-price\"},{\"id\":\"143632f8\",\"elType\":\"widget\",\"settings\":{\"button_align\":\"center\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"035\",\"bottom\":\"14\",\"left\":\"35\",\"isLinked\":false},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_text_color\":\"#ffffff\",\"button_bg_color\":\"#000000\",\"button_border_color\":\"#000000\",\"button_text_color_hover\":\"#000000\",\"button_bg_color_hover\":\"rgba(255,255,255,0.05)\",\"button_border_color_hover\":\"#000000\",\"quantity_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"quantity_text_color\":\"#000000\",\"quantity_bg_color\":\"rgba(255,255,255,0.08)\",\"quantity_border_color\":\"#000000\",\"quantity_text_color_focus\":\"#000000\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Archivo Narrow\"},\"elements\":[],\"widgetType\":\"woocommerce-product-add-to-cart\"},{\"id\":\"b057f37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"woocommerce-product-meta\"},{\"id\":\"8245bb7\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"0fbc576\"},{\"button\":\"twitter\",\"_id\":\"239bdf5\"},{\"button\":\"linkedin\",\"_id\":\"53ea2ef\"},{\"_id\":\"07e6aae\",\"button\":\"whatsapp\"},{\"_id\":\"ca256d3\",\"button\":\"email\"}]},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4556a35c\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"7c3028f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8e97d6\",\"elType\":\"widget\",\"settings\":{\"columns\":2,\"align\":\"left\",\"heading_color\":\"#000000\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Merriweather\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"heading_typography_font_weight\":\"900\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#ffffff\",\"title_color\":\"#000000\",\"price_color\":\"#000000\",\"old_price_color\":\"#898989\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_spacing\":{\"unit\":\"px\",\"size\":25},\"box_border_radius\":{\"unit\":\"px\",\"size\":0},\"heading_typography_text_transform\":\"capitalize\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Merriweather\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Merriweather\",\"button_background_color\":\"rgba(255,255,255,0.06)\",\"button_border_color\":\"#bababa\",\"heading_text_align\":\"left\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Merriweather\"},\"elements\":[],\"widgetType\":\"woocommerce-product-related\"},{\"id\":\"68ec8e15\",\"elType\":\"widget\",\"settings\":{\"columns\":2,\"align\":\"left\",\"heading_color\":\"#000000\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Merriweather\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"heading_typography_font_weight\":\"900\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#ffffff\",\"title_color\":\"#000000\",\"price_color\":\"#000000\",\"old_price_color\":\"#898989\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_spacing\":{\"unit\":\"px\",\"size\":25},\"box_border_radius\":{\"unit\":\"px\",\"size\":0},\"heading_typography_text_transform\":\"capitalize\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Merriweather\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Merriweather\",\"button_background_color\":\"rgba(255,255,255,0.06)\",\"button_border_color\":\"#bababa\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"heading_text_align\":\"left\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Merriweather\"},\"elements\":[],\"widgetType\":\"woocommerce-product-upsell\"}],\"isInner\":false},{\"id\":\"5ada71ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa97710\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59c32fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.30199999999999960209606797434389591217041015625},\"elements\":[{\"id\":\"5ffae7c2\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"woocommerce-product-title-tag\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Merriweather\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"woocommerce-product-title\"}],\"isInner\":true},{\"id\":\"578e53b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.69800000000000039790393202565610408782958984375},\"elements\":[{\"id\":\"587eb050\",\"elType\":\"widget\",\"settings\":{\"text_typography_typography\":\"custom\",\"text_typography_font_family\":\"Merriweather\",\"text_color\":\"#7a7a7a\",\"link_color\":\"#000000\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":12}},\"elements\":[],\"widgetType\":\"woocommerce-product-meta\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7aa6f91b\",\"elType\":\"widget\",\"settings\":{\"heading_color\":\"#7a7a7a\",\"tab_typography_typography\":\"custom\",\"tab_typography_font_family\":\"Merriweather\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Merriweather\",\"active_tab_bg_color\":\"#f2f2f2\",\"tab_border_radius\":{\"unit\":\"px\",\"size\":4},\"content_typography_font_weight\":\"100\",\"content_heading_typography_typography\":\"custom\",\"content_heading_typography_font_family\":\"Merriweather\",\"content_heading_typography_font_weight\":\"100\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625},\"content_heading_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"tab_bg_color\":\"#efefef\"},\"elements\":[],\"widgetType\":\"woocommerce-product-data-tabs\"}],\"isInner\":false}],\"isInner\":false}]'),
(263,57,'_edit_lock','1617232872:1'),
(264,58,'_wp_attached_file','2021/03/home-about-us-shop-cart-2.png'),
(265,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1587;s:6:\"height\";i:2245;s:4:\"file\";s:37:\"2021/03/home-about-us-shop-cart-2.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"home-about-us-shop-cart-2-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"home-about-us-shop-cart-2-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"home-about-us-shop-cart-2-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:38:\"home-about-us-shop-cart-2-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"home-about-us-shop-cart-2-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:39:\"home-about-us-shop-cart-2-1448x2048.png\";s:5:\"width\";i:1448;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"home-about-us-shop-cart-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"home-about-us-shop-cart-2-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"home-about-us-shop-cart-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"home-about-us-shop-cart-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"home-about-us-shop-cart-2-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"home-about-us-shop-cart-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(266,57,'_elementor_edit_mode','builder'),
(267,57,'_elementor_template_type','wp-page'),
(268,57,'_elementor_version','3.1.4'),
(269,57,'_elementor_pro_version','3.2.1'),
(271,57,'_wp_page_template','elementor_header_footer'),
(272,60,'_elementor_edit_mode','builder'),
(273,60,'_elementor_template_type','wp-page'),
(274,60,'_elementor_version','3.1.4'),
(275,60,'_elementor_pro_version','3.2.1'),
(276,60,'_wp_page_template','elementor_header_footer'),
(277,61,'_elementor_edit_mode','builder'),
(278,61,'_elementor_template_type','wp-page'),
(279,61,'_elementor_version','3.1.4'),
(280,61,'_elementor_pro_version','3.2.1'),
(281,61,'_wp_page_template','elementor_header_footer'),
(282,57,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(283,57,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"layout\":\"full_width\",\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e4308ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3cd833e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.4909999999999996589394868351519107818603515625,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"_inline_size_mobile\":100,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2bd8c868\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"image\":{\"id\":402,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder-2.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"},{\"id\":\"3a048fbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"text_color\":\"rgba(84,89,95,0.79)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ad01f4f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"3d4d16f\"},{\"social\":\"fa fa-twitter\",\"_id\":\"12db40b\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"0992f96\"},{\"social\":\"fa fa-snapchat\",\"_id\":\"166d599\"},{\"social\":\"fa fa-instagram\",\"_id\":\"b9433ea\"}],\"shape\":\"square\",\"align\":\"\",\"icon_size\":{\"unit\":\"px\",\"size\":12},\"icon_padding\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"7967343a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30.172999999999998266275724745355546474456787109375,\"_inline_size_tablet\":33,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74feeaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"title_color\":\"#02d3c9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f6aa398\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"485a2812\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"10ed1a11\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6b44671\"},{\"text\":\"Services\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6442eb7\"},{\"text\":\"Pricing\",\"icon\":\"fa fa-caret-right\",\"_id\":\"fc019a2\"},{\"text\":\"Contact\",\"icon\":\"fa fa-caret-right\",\"_id\":\"1fd4f18\"},{\"text\":\"Support\",\"icon\":\"fa fa-caret-right\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":13},\"text_color\":\"rgba(0,0,0,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":9},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"icon_typography_font_weight\":\"normal\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"rgba(0,0,0,0.23)\",\"text_color_hover\":\"#02d3c9\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f8fe4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.99199999999999732835931354202330112457275390625,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"52a7ff6e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Pricing\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6b44671\"},{\"text\":\"Teams\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6442eb7\"},{\"text\":\"Education\",\"icon\":\"fa fa-caret-right\",\"_id\":\"fc019a2\"},{\"text\":\"Refer a friend\",\"icon\":\"fa fa-caret-right\",\"_id\":\"1fd4f18\"},{\"text\":\"Updates\",\"icon\":\"fa fa-caret-right\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":13},\"text_color\":\"rgba(0,0,0,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":9},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"icon_typography_font_weight\":\"normal\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"rgba(0,0,0,0.23)\",\"text_color_hover\":\"#02d3c9\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3da2dba6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65d0a5f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#02d3c9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34f33c4c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Your Name\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"name\",\"previous_button\":\"\",\"next_button\":\"\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"field_border_color\":\"#c9c9c9\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#02d3c9\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.9000000000000003552713678800500929355621337890625},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#1c1c1c\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c0d098e\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":50},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"523540b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"38bb0415\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2018 All rights reserved\\u200b\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#7a7a7a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"711d667e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c09b320\",\"elType\":\"widget\",\"settings\":{\"title\":\"Made with \\u2764 with Elementor\\u200b\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#7a7a7a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),
(284,62,'_elementor_edit_mode','builder'),
(285,62,'_elementor_template_type','wp-page'),
(286,62,'_elementor_version','3.1.4'),
(287,62,'_elementor_pro_version','3.2.1'),
(288,62,'_wp_page_template','elementor_header_footer'),
(289,62,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(290,62,'_elementor_data','[]'),
(291,63,'_wp_attached_file','2021/03/CR-Banner-2-2.jpg'),
(292,63,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2021/03/CR-Banner-2-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"CR-Banner-2-2-300x46.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:46;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"CR-Banner-2-2-1024x158.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-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:25:\"CR-Banner-2-2-768x118.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"CR-Banner-2-2-324x200.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"CR-Banner-2-2-416x64.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:64;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-2-324x200.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"CR-Banner-2-2-416x64.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:64;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(293,12,'_elementor_page_settings','a:19:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:1:{i:0;a:4:{s:3:\"_id\";s:7:\"9aa7437\";s:5:\"title\";s:11:\"New Item #1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Quicksand\";}}s:21:\"default_generic_fonts\";s:10:\"Saserifns-\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:23:\"body_background_color_b\";s:7:\"#F2FF8B\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:7:\"#FFFFA7\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:15:\"activeItemIndex\";i:1;}'),
(295,64,'_wp_attached_file','2021/03/Copy-of-CR-Banner-2-3.png'),
(296,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:33:\"2021/03/Copy-of-CR-Banner-2-3.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Copy-of-CR-Banner-2-3-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Copy-of-CR-Banner-2-3-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Copy-of-CR-Banner-2-3-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:33:\"Copy-of-CR-Banner-2-3-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Copy-of-CR-Banner-2-3-1536x1086.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Copy-of-CR-Banner-2-3-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Copy-of-CR-Banner-2-3-416x294.png\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Copy-of-CR-Banner-2-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"Copy-of-CR-Banner-2-3-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Copy-of-CR-Banner-2-3-416x294.png\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Copy-of-CR-Banner-2-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(297,65,'_wp_attached_file','2021/03/Music-Tracker-1-1.jpg'),
(298,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2021/03/Music-Tracker-1-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-1-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Music-Tracker-1-1-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-1-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-1-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-1-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),
(299,66,'_wp_attached_file','2021/03/A-Day-at-the-Allotment.jpg'),
(300,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:34:\"2021/03/A-Day-at-the-Allotment.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"A-Day-at-the-Allotment-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"A-Day-at-the-Allotment-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"A-Day-at-the-Allotment-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:\"A-Day-at-the-Allotment-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"A-Day-at-the-Allotment-1536x1086.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"A-Day-at-the-Allotment-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"A-Day-at-the-Allotment-416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"A-Day-at-the-Allotment-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"A-Day-at-the-Allotment-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"A-Day-at-the-Allotment-416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"A-Day-at-the-Allotment-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(308,68,'_wp_attached_file','2021/03/Untitled-design-5.png'),
(309,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1587;s:6:\"height\";i:2245;s:4:\"file\";s:29:\"2021/03/Untitled-design-5.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Untitled-design-5-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Untitled-design-5-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Untitled-design-5-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:\"Untitled-design-5-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Untitled-design-5-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"Untitled-design-5-1448x2048.png\";s:5:\"width\";i:1448;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Untitled-design-5-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Untitled-design-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Untitled-design-5-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Untitled-design-5-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Untitled-design-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(310,69,'_wp_attached_file','2021/03/Science-2.png'),
(311,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6841;s:6:\"height\";i:2117;s:4:\"file\";s:21:\"2021/03/Science-2.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Science-2-300x93.png\";s:5:\"width\";i:300;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Science-2-1024x317.png\";s:5:\"width\";i:1024;s:6:\"height\";i:317;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Science-2-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:\"Science-2-768x238.png\";s:5:\"width\";i:768;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"Science-2-1536x475.png\";s:5:\"width\";i:1536;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"Science-2-2048x634.png\";s:5:\"width\";i:2048;s:6:\"height\";i:634;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"Science-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"Science-2-416x129.png\";s:5:\"width\";i:416;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Science-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"Science-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"Science-2-416x129.png\";s:5:\"width\";i:416;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Science-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(312,70,'_wp_attached_file','2021/03/Geography-Tracker.jpg'),
(313,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2021/03/Geography-Tracker.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Geography-Tracker-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Geography-Tracker-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Geography-Tracker-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Geography-Tracker-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Geography-Tracker-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Geography-Tracker-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Geography-Tracker-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Geography-Tracker-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(314,71,'_wp_attached_file','2021/03/Booklet-Art-Tracker-3.png'),
(315,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:33:\"2021/03/Booklet-Art-Tracker-3.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Booklet-Art-Tracker-3-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Booklet-Art-Tracker-3-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Booklet-Art-Tracker-3-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:34:\"Booklet-Art-Tracker-3-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Booklet-Art-Tracker-3-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Booklet-Art-Tracker-3-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Booklet-Art-Tracker-3-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Booklet-Art-Tracker-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"Booklet-Art-Tracker-3-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Booklet-Art-Tracker-3-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Booklet-Art-Tracker-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(316,72,'_wp_attached_file','2021/03/PE-Tracker-1.jpg'),
(317,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2021/03/PE-Tracker-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"PE-Tracker-1-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"PE-Tracker-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"PE-Tracker-1-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"PE-Tracker-1-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"PE-Tracker-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"PE-Tracker-1-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"PE-Tracker-1-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"PE-Tracker-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),
(318,73,'_wp_attached_file','2021/03/Music-Tracker-1-2.jpg'),
(319,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2021/03/Music-Tracker-1-2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-2-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Music-Tracker-1-2-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-2-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-2-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-2-416x650.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Music-Tracker-1-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(320,74,'_wp_attached_file','2021/03/1.png'),
(321,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/03/1.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"1-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"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:14:\"1-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"1-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:13:\"1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:13:\"1-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:13:\"1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"1-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(322,75,'_wp_attached_file','2021/03/2.png'),
(323,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/03/2.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"2-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-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:\"2-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"2-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:13:\"2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:13:\"2-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:13:\"2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"2-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(324,76,'_wp_attached_file','2021/03/3.png'),
(325,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/03/3.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"3-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"3-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-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:\"3-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"3-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:13:\"3-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:13:\"3-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:13:\"3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"3-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"3-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(326,77,'_wp_attached_file','2021/03/4.png'),
(327,77,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/03/4.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"4-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-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:\"4-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"4-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:13:\"4-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:13:\"4-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:13:\"4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"4-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"4-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(328,78,'_wp_attached_file','2021/03/5.png'),
(329,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/03/5.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"5-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"5-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"5-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:\"5-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"5-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:13:\"5-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:13:\"5-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:13:\"5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"5-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"5-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(330,79,'_wp_attached_file','2021/03/6.png'),
(331,79,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/03/6.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"6-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"6-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"6-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:\"6-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"6-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:13:\"6-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:13:\"6-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:13:\"6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"6-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"6-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"6-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(332,80,'_wp_attached_file','2021/03/7.png'),
(333,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/03/7.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"7-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"7-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"7-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:\"7-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"7-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:13:\"7-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:13:\"7-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:13:\"7-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"7-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"7-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"7-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(334,81,'_wp_attached_file','2021/03/8.png'),
(335,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/03/8.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"8-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"8-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"8-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:\"8-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"8-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:13:\"8-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:13:\"8-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:13:\"8-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"8-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"8-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"8-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(336,82,'_wp_attached_file','2021/03/9.png'),
(337,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/03/9.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"9-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"9-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"9-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:\"9-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"9-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:13:\"9-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:13:\"9-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:13:\"9-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"9-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"9-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"9-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(338,83,'_wp_attached_file','2021/03/10.png'),
(339,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:14:\"2021/03/10.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"10-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"10-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"10-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:15:\"10-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"10-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:14:\"10-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:14:\"10-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:14:\"10-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:14:\"10-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:14:\"10-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:14:\"10-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(340,84,'_wp_attached_file','2021/03/11.png'),
(341,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:14:\"2021/03/11.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"11-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"11-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"11-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:15:\"11-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"11-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:14:\"11-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:14:\"11-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:14:\"11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:14:\"11-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:14:\"11-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:14:\"11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(342,85,'_wp_attached_file','2021/03/Ready-Steady-Grow-2.jpg'),
(343,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:31:\"2021/03/Ready-Steady-Grow-2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-2-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Ready-Steady-Grow-2-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-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:31:\"Ready-Steady-Grow-2-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"Ready-Steady-Grow-2-1536x1086.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Ready-Steady-Grow-2-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-2-416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-2-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-2-416x294.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Ready-Steady-Grow-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(344,86,'_elementor_edit_mode','builder'),
(345,86,'_elementor_template_type','wp-page'),
(346,86,'_elementor_version','3.1.4'),
(347,86,'_elementor_pro_version','3.2.1'),
(348,86,'_wp_page_template','elementor_header_footer'),
(349,86,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(350,86,'_elementor_data','[]'),
(351,87,'_elementor_edit_mode','builder'),
(352,87,'_elementor_template_type','wp-page'),
(353,87,'_elementor_version','3.1.4'),
(354,87,'_elementor_pro_version','3.2.1'),
(355,87,'_wp_page_template','elementor_header_footer'),
(356,87,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(357,87,'_elementor_data','[]'),
(358,88,'_elementor_edit_mode','builder'),
(359,88,'_elementor_template_type','wp-page'),
(360,88,'_elementor_version','3.1.4'),
(361,88,'_elementor_pro_version','3.2.1'),
(362,88,'_wp_page_template','elementor_header_footer'),
(363,88,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(364,88,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c382cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0a8a58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0974157\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Choice Resources, the platform <br>for life Resources.\\n\",\"align\":\"center\",\"title_color\":\"#099AD7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3869fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"3476d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"37cea98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feelings Cards\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#404648\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"0d80db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e5cfbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"National Curriculum Trackers\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#262423DE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(80.81159044348676, 255, 228.24063654873385, 0.3)\"},\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_color_b\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7aa0e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8cd0364\",\"elType\":\"widget\",\"settings\":{\"title\":\"Seed Journey\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#343638\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),
(366,89,'_elementor_edit_mode','builder'),
(367,89,'_elementor_template_type','wp-page'),
(368,89,'_elementor_version','3.1.4'),
(369,89,'_elementor_pro_version','3.2.1'),
(370,89,'_wp_page_template','elementor_header_footer'),
(371,89,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(372,89,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c382cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0a8a58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0974157\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Choice Resources, the platform <br>for life Resources.\\n\",\"align\":\"center\",\"title_color\":\"#099AD7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3869fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"3476d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"37cea98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feelings Cards\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#404648\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"0d80db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e5cfbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"National Curriculum Trackers\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#262423DE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(80.81159044348676, 255, 228.24063654873385, 0.3)\"},\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_color_b\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7aa0e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8cd0364\",\"elType\":\"widget\",\"settings\":{\"title\":\"Seed Journey\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#343638\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),
(373,90,'_elementor_edit_mode','builder'),
(374,90,'_elementor_template_type','wp-page'),
(375,90,'_elementor_version','3.1.4'),
(376,90,'_elementor_pro_version','3.2.1'),
(377,90,'_wp_page_template','elementor_header_footer'),
(378,90,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(379,90,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c382cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0a8a58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0974157\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Choice Resources, the platform <br>for life Resources.\\n\",\"align\":\"center\",\"title_color\":\"#099AD7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3869fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"3476d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"37cea98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feelings Cards\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#404648\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"0d80db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e5cfbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"National Curriculum Trackers\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#262423DE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(80.81159044348676, 255, 228.24063654873385, 0.3)\"},\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_color_b\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7aa0e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8cd0364\",\"elType\":\"widget\",\"settings\":{\"title\":\"Seed Journey\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#343638\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),
(380,91,'_elementor_edit_mode','builder'),
(381,91,'_elementor_template_type','wp-page'),
(382,91,'_elementor_version','3.1.4'),
(383,91,'_elementor_pro_version','3.2.1'),
(384,91,'_wp_page_template','elementor_header_footer'),
(385,91,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(386,91,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"0974157\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Choice Resources, the platform <br>for life Resources.\\n\",\"align\":\"center\",\"title_color\":\"#099AD7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3869fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"3476d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"37cea98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feelings Cards\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#404648\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"0d80db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e5cfbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"National Curriculum Trackers\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#262423DE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(80.81159044348676, 255, 228.24063654873385, 0.3)\"},\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_color_b\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7aa0e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8cd0364\",\"elType\":\"widget\",\"settings\":{\"title\":\"Seed Journey\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#343638\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),
(388,92,'_elementor_edit_mode','builder'),
(389,92,'_elementor_template_type','header'),
(390,92,'_elementor_version','3.1.4'),
(391,92,'_elementor_pro_version','3.2.1'),
(392,92,'_wp_page_template','default'),
(393,92,'_elementor_data','[{\"id\":\"1124af8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#009FFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":\"99\",\"sizes\":[]},\"background_color_b\":\"rgba(255, 255, 255, 0.2)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"99\",\"sizes\":[]},\"background_motion_fx_opacity_effect\":\"yes\",\"background_motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"6\"}},\"background_motion_fx_range\":\"page\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"sticky\":\"top\",\"_title\":\"Header\",\"z_index\":\"99\",\"content_width\":{\"unit\":\"px\",\"size\":\"1600\",\"sizes\":[]},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"19be0b1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"30\",\"_inline_size_mobile\":\"50\"},\"elements\":[{\"id\":\"5bbb85ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Resturant_Logo.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"2f2c772\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"25ae1c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"35\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"56429c6f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Facebook\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d42ef9a\"},{\"text\":\"Instagram\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6d51e72\"}],\"space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_color_hover\":\"#CB3522\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Nanum Gothic\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_text_transform\":\"uppercase\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.0299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"\"},{\"id\":\"7ea7d233\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"flex-end\",\"_inline_size_tablet\":\"35\",\"_inline_size_mobile\":\"50\"},\"elements\":[{\"id\":\"24c6c51c\",\"elType\":\"widget\",\"settings\":{\"text\":\"RESERVATIONS\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#CB3522\",\"hover_color\":\"#CB3522\",\"button_background_hover_color\":\"#FFFFFF\",\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-phone\",\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/japanese-restaurant\\/reservations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_family\":\"Nanum Gothic\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.19\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#CB3522\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"14.5\",\"right\":\"36\",\"bottom\":\"14.5\",\"left\":\"36\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"39b19448\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":47,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Menu.svg\"},\"library\":\"svg\"},\"primary_color\":\"#FFFFFF\",\"hover_primary_color\":\"#CB3522\",\"size\":{\"unit\":\"px\",\"size\":\"32\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"25\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"f1eaeb0\\\" name=\\\"popup\\\" settings=\\\"%7B%22action%22%3A%22toggle%22%2C%22popup%22%3A%2262%22%7D\\\"]\"},\"hover_animation\":\"skew\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3a6054ca\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":150},\"content_position\":\"middle\",\"structure\":\"33\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":24,\"spread\":0,\"color\":\"rgba(0,0,0,0.15)\"},\"z_index\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"43b3eff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":20,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67de4d83\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"align_mobile\":\"left\",\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":45,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"5808083d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"153bb7ae\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#54595f\",\"color_menu_item_hover\":\"#8102ce\",\"pointer_color_menu_item_hover\":\"#8102ce\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#00ce1b\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#000000\",\"toggle_color_hover\":\"#00ce1b\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"menu_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"menu_space_between\":{\"unit\":\"px\",\"size\":6},\"menu_space_between_tablet\":{\"unit\":\"px\",\"size\":0},\"menu_typography_font_weight\":\"400\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":36},\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":14},\"padding_vertical_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":12},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":20},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"6c6a0841\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"a5ec8cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Donate Now\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.399999999999999911182158029987476766109466552734375},\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":27,\"spread\":0,\"color\":\"rgba(0,0,0,0.12)\"},\"align_tablet\":\"right\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),
(394,92,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(396,92,'_elementor_screenshot','a:2:{s:2:\"id\";i:54;s:3:\"url\";s:131:\"http://choiceresources.co.uk/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_43_2021-03-30-04-00-21_2040619a.png\";}'),
(397,92,'_elementor_screenshot_failed','2021-03-30 04:00:21'),
(399,93,'_elementor_edit_mode','builder'),
(400,93,'_elementor_template_type','footer'),
(401,93,'_elementor_version','3.1.4'),
(402,93,'_elementor_pro_version','3.2.1'),
(403,93,'_wp_page_template','default'),
(404,93,'_elementor_data','[{\"id\":\"749cc88\",\"elType\":\"section\",\"settings\":{\"shape_divider_top\":\"mountains\",\"shape_divider_top_color\":\"#009FFF\",\"shape_divider_top_flip\":\"yes\"},\"elements\":[{\"id\":\"55c36f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#009FFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#e82a00\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\"},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\"},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\"},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#e82a00\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"50973896\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"rgba(255,255,255,0.39)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(405,93,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(408,94,'_elementor_edit_mode','builder'),
(409,94,'_elementor_template_type','footer'),
(410,94,'_elementor_version','3.1.4'),
(411,94,'_elementor_pro_version','3.2.1'),
(412,94,'_wp_page_template','default'),
(413,94,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#009FFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#e82a00\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"shape_divider_top_color\":\"#009FFF\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\"},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\"},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\"},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#e82a00\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"50973896\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"rgba(255,255,255,0.39)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(414,94,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(428,96,'_elementor_edit_mode','builder'),
(429,96,'_elementor_template_type','wp-page'),
(430,96,'_elementor_version','3.1.4'),
(431,96,'_elementor_pro_version','3.2.1'),
(432,96,'_wp_page_template','elementor_header_footer'),
(433,96,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(434,96,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"0974157\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Choice Resources, the platform <br>for life Resources.\\n\",\"align\":\"center\",\"title_color\":\"#099AD7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3869fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"3476d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"37cea98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feelings Cards\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#404648\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"0d80db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e5cfbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"National Curriculum Trackers\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#262423DE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(80.81159044348676, 255, 228.24063654873385, 0.3)\"},\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_color_b\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7aa0e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8cd0364\",\"elType\":\"widget\",\"settings\":{\"title\":\"Seed Journey\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#343638\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),
(435,97,'_elementor_edit_mode','builder'),
(436,97,'_elementor_template_type','wp-page'),
(437,97,'_elementor_version','3.1.4'),
(438,97,'_elementor_pro_version','3.2.1'),
(439,97,'_wp_page_template','elementor_header_footer'),
(440,97,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(441,97,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"0974157\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Choice Resources, the platform <br>for life Resources.\\n\",\"align\":\"center\",\"title_color\":\"#099AD7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3869fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"3476d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"37cea98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Feelings Cards\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#404648\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"0d80db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e5cfbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"National Curriculum Trackers\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#262423DE\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(80.81159044348676, 255, 228.24063654873385, 0.3)\"},\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_color_b\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7aa0e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8cd0364\",\"elType\":\"widget\",\"settings\":{\"title\":\"Seed Journey\",\"size\":\"large\",\"align\":\"center\",\"title_color\":\"#343638\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),
(442,98,'_elementor_edit_mode','builder'),
(443,98,'_elementor_template_type','wp-page'),
(444,98,'_elementor_version','3.1.4'),
(445,98,'_elementor_pro_version','3.2.1'),
(446,98,'_wp_page_template','elementor_header_footer'),
(447,98,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(448,98,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),
(458,100,'_elementor_edit_mode','builder'),
(459,100,'_elementor_template_type','wp-page'),
(460,100,'_elementor_version','3.1.4'),
(461,100,'_elementor_pro_version','3.2.1'),
(462,100,'_wp_page_template','elementor_header_footer'),
(463,100,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(464,100,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),
(465,101,'_elementor_edit_mode','builder'),
(466,101,'_elementor_template_type','wp-page'),
(467,101,'_elementor_version','3.1.4'),
(468,101,'_elementor_pro_version','3.2.1'),
(469,101,'_wp_page_template','elementor_header_footer'),
(470,101,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(471,101,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false}]'),
(472,102,'_elementor_edit_mode','builder'),
(473,102,'_elementor_template_type','wp-page'),
(474,102,'_elementor_version','3.1.4'),
(475,102,'_elementor_pro_version','3.2.1'),
(476,102,'_wp_page_template','elementor_header_footer'),
(477,102,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(478,102,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1552fb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"c43606c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8f5807d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"ccf0a14\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"}],\"isInner\":false},{\"id\":\"aaf5e4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d7595e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=gfiYd_p4o2o\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(480,57,'_oembed_a389cbbd4bc075b6e575697abcb57ec2','<iframe title=\"Hezekiah Walker - God Favoured Me (Short Version)\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/gfiYd_p4o2o?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(481,57,'_oembed_time_a389cbbd4bc075b6e575697abcb57ec2','1617083522'),
(483,103,'_elementor_edit_mode','builder'),
(484,103,'_elementor_template_type','single-post'),
(485,104,'_elementor_edit_mode','builder'),
(486,104,'_elementor_template_type','single-post'),
(487,103,'_elementor_version','3.1.4'),
(488,103,'_elementor_pro_version','3.2.1'),
(489,103,'_edit_lock','1617083800:1'),
(490,105,'_wp_attached_file','2021/03/placeholder-1.png'),
(491,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2021/03/placeholder-1.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"placeholder-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-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:25:\"placeholder-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"placeholder-1-416x277.png\";s:5:\"width\";i:416;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"placeholder-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"placeholder-1-416x277.png\";s:5:\"width\";i:416;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(492,105,'_elementor_source_image_hash','76e38c7d959bd462a4f35753a82fcb40b9c388d0'),
(493,106,'_wp_attached_file','2021/03/Jack_Grant-Profile.jpg'),
(494,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:71;s:6:\"height\";i:70;s:4:\"file\";s:30:\"2021/03/Jack_Grant-Profile.jpg\";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:{}}}'),
(495,106,'_elementor_source_image_hash','eb5ba3008ab3bb3065cdde4c03d9b9f2a9173fd3'),
(496,103,'_wp_page_template','default'),
(497,103,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFAF5\";}'),
(498,103,'_elementor_data','[{\"id\":\"2b7adbda\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"50\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"bottom\",\"structure\":\"20\",\"_title\":\"Hero\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"498c5b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"70\",\"background_background\":\"classic\",\"background_color\":\"#6C7C69\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"88\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"5\",\"bottom\":\"45\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"5\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"21bd2047\",\"elType\":\"widget\",\"settings\":{\"text\":\"Back to all\",\"button_background_hover_color\":\"rgba(2, 1, 1, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#FFFAF5\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_text_color\":\"#FFFAF5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.45\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_color\":\"rgba(2, 1, 1, 0)\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"57d5c58f\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-2.25\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"3062f8d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"9093a23\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"link\":\"\",\"show_icon\":\"none\"}],\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_text_transform\":\"capitalize\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-info\"}],\"isInner\":\"\"},{\"id\":\"5f7436b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5edf9be5\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"-80\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"image\":{\"id\":105,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"72d729e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"80\",\"sizes\":[]},\"column_position\":\"stretch\",\"_title\":\"Author Section\",\"margin\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"58cb6f33\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"_inline_size\":\"100\",\"background_color\":\"#6C7C69\",\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"158d8652\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"Jack Grant\",\"author_name_tag\":\"h6\",\"author_bio\":\"Founder and Co-owner\",\"link_text\":\"All Posts\",\"image_vertical_align\":\"middle\",\"image_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"name_color\":\"#000000\",\"bio_color\":\"#6C7C69\",\"author_avatar\":{\"id\":106,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Jack_Grant-Profile.jpg\"},\"image_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"image_gap_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Helvetica\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"name_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"name_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"name_typography_font_weight\":\"300\",\"name_typography_text_transform\":\"capitalize\",\"name_typography_line_height\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"bio_typography_typography\":\"custom\",\"bio_typography_font_family\":\"Helvetica\",\"bio_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"bio_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bio_typography_font_weight\":\"300\",\"bio_typography_line_height\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"bio_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"bio_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"author-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"bf3ea4b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"28\",\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"40\",\"_title\":\"The Posts + Side Bar\",\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"c974448\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"3\",\"background_color\":\"#6C7C69\",\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"4\",\"_inline_size_mobile\":\"7\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6b76ff59\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":\"17\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#F2EAE3\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"138\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"20\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"space_mobile\":{\"unit\":\"vh\",\"size\":\"30\",\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_position\":\"absolute\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"19eea30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"96\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_mobile\":\"93\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3a17aa60\",\"elType\":\"widget\",\"settings\":{\"typography_typography\":\"custom\",\"text_color\":\"#000000\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"d04c253\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"4c866e17\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"arrow\":\"fa fa-chevron-left\",\"show_title\":\"\",\"show_borders\":\"\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"label_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"arrow_color\":\"#FE7F4C\",\"arrow_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"arrow_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"arrow_padding\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"show_arrow\":\"\",\"label_hover_color\":\"#3D3D3D\",\"label_typography_font_weight\":\"400\",\"label_typography_text_transform\":\"uppercase\",\"label_typography_text_decoration\":\"underline\",\"label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.45\",\"sizes\":[]},\"label_color\":\"#6C7C69\",\"label_typography_font_family\":\"Helvetica\"},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":\"\"},{\"id\":\"5a761ff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"32\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"95\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"_inline_size_mobile\":\"93\"},\"elements\":[{\"id\":\"7778cd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"You might also enjoy\",\"title_color\":\"#6C7C69\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"32\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"44\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"32\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-1.13\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af7d6cb\",\"elType\":\"widget\",\"settings\":{\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"classic_posts_per_page\":\"3\",\"classic_item_ratio\":{\"unit\":\"px\",\"size\":\"0.65\",\"sizes\":[]},\"classic_title_tag\":\"h5\",\"classic_meta_data\":[],\"classic_image_spacing\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_text_decoration\":\"none\",\"classic_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"classic_thumbnail_hover_filters_css_filter\":\"custom\",\"classic_thumbnail_hover_filters_brightness\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"classic_row_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"classic_read_more_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"classic_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"classic_title_typography_text_transform\":\"none\",\"classic_title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"classic_columns\":\"1\",\"classic_thumbnail\":\"left\",\"classic_image_width\":{\"unit\":\"px\",\"size\":\"145\",\"sizes\":[]},\"posts_exclude\":[\"current_post\"],\"posts_avoid_duplicates\":\"yes\",\"classic_item_ratio_mobile\":{\"unit\":\"px\",\"size\":\"1.2\",\"sizes\":[]},\"classic_image_width_tablet\":{\"unit\":\"px\",\"size\":\"180\",\"sizes\":[]},\"classic_image_width_mobile\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"classic_column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"classic_excerpt_length\":\"10\",\"classic_show_read_more\":\"\",\"classic_title_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"classic_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.68\",\"sizes\":[]},\"classic_excerpt_color\":\"#6C7C69\",\"classic_columns_tablet\":\"1\",\"classic_item_ratio_tablet\":{\"unit\":\"px\",\"size\":\"0.6\",\"sizes\":[]},\"classic_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"classic_title_color\":\"#6C7C69\",\"classic_title_typography_font_family\":\"Playfair Display\",\"classic_title_typography_font_weight\":\"300\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_family\":\"Helvetica\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"classic_excerpt_typography_font_weight\":\"300\",\"classic_excerpt_typography_line_height\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"classic_excerpt_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"classic_excerpt_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":\"\"},{\"id\":\"686c7b9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"5\",\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_mobile\":\"7\"},\"elements\":[{\"id\":\"5bb983fe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":\"20\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#6C7C69\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"138\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_orientation_h\":\"end\",\"_offset_orientation_v\":\"end\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),
(499,103,'_wp_trash_meta_status','draft'),
(500,103,'_wp_trash_meta_time','1617083977'),
(501,103,'_wp_desired_post_slug',''),
(502,107,'_elementor_edit_mode','builder'),
(503,107,'_elementor_template_type','single-post'),
(504,107,'_elementor_version','3.1.4'),
(505,107,'_elementor_pro_version','3.2.1'),
(506,107,'_wp_page_template','default'),
(507,107,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFAF5\";}'),
(508,107,'_elementor_data','[{\"id\":\"2b7adbda\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"50\",\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"bottom\",\"structure\":\"20\",\"_title\":\"Hero\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"498c5b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"70\",\"background_background\":\"classic\",\"background_color\":\"#6C7C69\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"88\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"5\",\"bottom\":\"45\",\"left\":\"10\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"30\",\"right\":\"5\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"21bd2047\",\"elType\":\"widget\",\"settings\":{\"text\":\"Back to all\",\"button_background_hover_color\":\"rgba(2, 1, 1, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#FFFAF5\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_text_color\":\"#FFFAF5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.45\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_color\":\"rgba(2, 1, 1, 0)\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"57d5c58f\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-2.25\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"3062f8d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"9093a23\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"link\":\"\",\"show_icon\":\"none\"}],\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_text_transform\":\"capitalize\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-info\"}],\"isInner\":\"\"},{\"id\":\"5f7436b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5edf9be5\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"-80\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"image\":{\"id\":105,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"72d729e3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"80\",\"sizes\":[]},\"column_position\":\"stretch\",\"_title\":\"Author Section\",\"margin\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"58cb6f33\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"_inline_size\":\"100\",\"background_color\":\"#6C7C69\",\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"158d8652\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"Jack Grant\",\"author_name_tag\":\"h6\",\"author_bio\":\"Founder and Co-owner\",\"link_text\":\"All Posts\",\"image_vertical_align\":\"middle\",\"image_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"name_color\":\"#000000\",\"bio_color\":\"#6C7C69\",\"author_avatar\":{\"id\":106,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Jack_Grant-Profile.jpg\"},\"image_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"image_gap_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Helvetica\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"name_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"name_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"name_typography_font_weight\":\"300\",\"name_typography_text_transform\":\"capitalize\",\"name_typography_line_height\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.5\",\"sizes\":[]},\"bio_typography_typography\":\"custom\",\"bio_typography_font_family\":\"Helvetica\",\"bio_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"bio_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"bio_typography_font_weight\":\"300\",\"bio_typography_line_height\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"bio_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"bio_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"author-box\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"bf3ea4b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"28\",\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"40\",\"_title\":\"The Posts + Side Bar\",\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"c974448\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"3\",\"background_color\":\"#6C7C69\",\"padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"4\",\"_inline_size_mobile\":\"7\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6b76ff59\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":\"17\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#F2EAE3\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"138\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"20\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"space_mobile\":{\"unit\":\"vh\",\"size\":\"30\",\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_position\":\"absolute\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"},{\"id\":\"19eea30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"96\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_mobile\":\"93\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3a17aa60\",\"elType\":\"widget\",\"settings\":{\"typography_typography\":\"custom\",\"text_color\":\"#000000\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"d04c253\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"4c866e17\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"arrow\":\"fa fa-chevron-left\",\"show_title\":\"\",\"show_borders\":\"\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"label_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"arrow_color\":\"#FE7F4C\",\"arrow_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"arrow_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"arrow_padding\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"show_arrow\":\"\",\"label_hover_color\":\"#3D3D3D\",\"label_typography_font_weight\":\"400\",\"label_typography_text_transform\":\"uppercase\",\"label_typography_text_decoration\":\"underline\",\"label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.45\",\"sizes\":[]},\"label_color\":\"#6C7C69\",\"label_typography_font_family\":\"Helvetica\"},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":\"\"},{\"id\":\"5a761ff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"32\",\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_tablet\":\"95\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":\"\"},\"_inline_size_mobile\":\"93\"},\"elements\":[{\"id\":\"7778cd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"You might also enjoy\",\"title_color\":\"#6C7C69\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"32\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"44\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"32\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-1.13\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af7d6cb\",\"elType\":\"widget\",\"settings\":{\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"classic_posts_per_page\":\"3\",\"classic_item_ratio\":{\"unit\":\"px\",\"size\":\"0.65\",\"sizes\":[]},\"classic_title_tag\":\"h5\",\"classic_meta_data\":[],\"classic_image_spacing\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_text_decoration\":\"none\",\"classic_title_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"classic_thumbnail_hover_filters_css_filter\":\"custom\",\"classic_thumbnail_hover_filters_brightness\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"classic_row_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"classic_read_more_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"classic_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"classic_title_typography_text_transform\":\"none\",\"classic_title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"classic_columns\":\"1\",\"classic_thumbnail\":\"left\",\"classic_image_width\":{\"unit\":\"px\",\"size\":\"145\",\"sizes\":[]},\"posts_exclude\":[\"current_post\"],\"posts_avoid_duplicates\":\"yes\",\"classic_item_ratio_mobile\":{\"unit\":\"px\",\"size\":\"1.2\",\"sizes\":[]},\"classic_image_width_tablet\":{\"unit\":\"px\",\"size\":\"180\",\"sizes\":[]},\"classic_image_width_mobile\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"classic_column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"classic_excerpt_length\":\"10\",\"classic_show_read_more\":\"\",\"classic_title_typography_line_height\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"classic_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.68\",\"sizes\":[]},\"classic_excerpt_color\":\"#6C7C69\",\"classic_columns_tablet\":\"1\",\"classic_item_ratio_tablet\":{\"unit\":\"px\",\"size\":\"0.6\",\"sizes\":[]},\"classic_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"classic_title_color\":\"#6C7C69\",\"classic_title_typography_font_family\":\"Playfair Display\",\"classic_title_typography_font_weight\":\"300\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_family\":\"Helvetica\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"classic_excerpt_typography_font_weight\":\"300\",\"classic_excerpt_typography_line_height\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"classic_excerpt_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"classic_excerpt_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":\"\"},{\"id\":\"686c7b9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"5\",\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_inline_size_mobile\":\"7\"},\"elements\":[{\"id\":\"5bb983fe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"vh\",\"size\":\"20\",\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#6C7C69\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"138\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_offset_orientation_h\":\"end\",\"_offset_orientation_v\":\"end\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),
(509,108,'_edit_lock','1617083851:1'),
(510,1,'_edit_lock','1617084477:1'),
(511,110,'_wp_attached_file','2021/03/Orange-Green-Animal-Lion-5W-Graphic-Organizer.png'),
(512,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:57:\"2021/03/Orange-Green-Animal-Lion-5W-Graphic-Organizer.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-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:57:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:59:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-1536x1086.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:57:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:57:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-416x294.png\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:57:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:57:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:57:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-416x294.png\";s:5:\"width\";i:416;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:57:\"Orange-Green-Animal-Lion-5W-Graphic-Organizer-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(513,1,'_elementor_edit_mode','builder'),
(514,1,'_elementor_template_type','wp-post'),
(521,111,'_elementor_edit_mode','builder'),
(522,111,'_elementor_template_type','wp-post'),
(523,112,'_elementor_edit_mode','builder'),
(524,112,'_elementor_template_type','wp-post'),
(525,1,'_wp_page_template','default'),
(526,1,'_elementor_data','[{\"id\":\"529ac10d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"219fb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"490d704\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:paragraph -->\\n<p>So this the post section and it\'s really a demo because I really caan\'t think of anything to write right now. I just wanted to see how a post looks. I think it will look nice. I hope so. It\'s 7 am and I haven\'t slept, so yeah, I need some feel good. :-)<\\/p>\\n<!-- \\/wp:paragraph -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(527,113,'_elementor_edit_mode','builder'),
(528,113,'_elementor_template_type','wp-post'),
(529,113,'_wp_page_template','default'),
(530,113,'_elementor_data','[{\"id\":\"529ac10d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"219fb387\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"490d704\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:paragraph -->\\n<p>So this the post section and it\'s really a demo because I really caan\'t think of anything to write right now. I just wanted to see how a post looks. I think it will look nice. I hope so. It\'s 7 am and I haven\'t slept, so yeah, I need some feel good. :-)<\\/p>\\n<!-- \\/wp:paragraph -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(531,1,'_elementor_version','3.1.4'),
(532,1,'_elementor_pro_version','3.2.1'),
(535,1,'_wp_trash_meta_status','publish'),
(536,1,'_wp_trash_meta_time','1617084620'),
(537,1,'_wp_desired_post_slug','hello-world'),
(538,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),
(539,114,'_elementor_edit_mode','builder'),
(540,114,'_elementor_template_type','single-post'),
(541,115,'_elementor_edit_mode','builder'),
(542,115,'_elementor_template_type','single-post'),
(543,114,'_elementor_version','3.1.4'),
(544,114,'_elementor_pro_version','3.2.1'),
(545,114,'_edit_lock','1617113161:1'),
(546,116,'_wp_attached_file','2021/03/Post-BG.png'),
(547,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2021/03/Post-BG.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Post-BG-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Post-BG-1024x267.png\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Post-BG-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:19:\"Post-BG-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"Post-BG-1536x400.png\";s:5:\"width\";i:1536;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"Post-BG-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"Post-BG-416x108.png\";s:5:\"width\";i:416;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Post-BG-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"Post-BG-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"Post-BG-416x108.png\";s:5:\"width\";i:416;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Post-BG-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(548,116,'_elementor_source_image_hash','5a991b4d81407bb21e6f5eb0f44b28a65593f68d'),
(549,117,'_wp_attached_file','2021/03/placeholder-1-1.png'),
(550,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2021/03/placeholder-1-1.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"placeholder-1-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"placeholder-1-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-1-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:27:\"placeholder-1-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-1-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"placeholder-1-1-416x277.png\";s:5:\"width\";i:416;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"placeholder-1-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"placeholder-1-1-416x277.png\";s:5:\"width\";i:416;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"placeholder-1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(551,117,'_elementor_source_image_hash','044a4bbf076970d89ff97d4d3c7fa6d0f4bf829a'),
(552,118,'_wp_attached_file','2021/03/BG-Post-Sub.png'),
(553,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:304;s:4:\"file\";s:23:\"2021/03/BG-Post-Sub.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"BG-Post-Sub-300x122.png\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"BG-Post-Sub-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"BG-Post-Sub-324x304.png\";s:5:\"width\";i:324;s:6:\"height\";i:304;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"BG-Post-Sub-416x169.png\";s:5:\"width\";i:416;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"BG-Post-Sub-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"BG-Post-Sub-324x304.png\";s:5:\"width\";i:324;s:6:\"height\";i:304;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"BG-Post-Sub-416x169.png\";s:5:\"width\";i:416;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"BG-Post-Sub-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(554,118,'_elementor_source_image_hash','d1d3bd3ba313faf120145aa4fb4636d0504120f1'),
(555,119,'_wp_attached_file','2021/03/CTA-post.png'),
(556,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:539;s:6:\"height\";i:539;s:4:\"file\";s:20:\"2021/03/CTA-post.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"CTA-post-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:20:\"CTA-post-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"CTA-post-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"CTA-post-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"CTA-post-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"CTA-post-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"CTA-post-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"CTA-post-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(557,119,'_elementor_source_image_hash','d236dd7557a57a15afbe1ca5e6bbe9ccd52514bb'),
(558,120,'_wp_attached_file','2021/03/CTA-Shapes.png'),
(559,120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1921;s:6:\"height\";i:519;s:4:\"file\";s:22:\"2021/03/CTA-Shapes.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"CTA-Shapes-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"CTA-Shapes-1024x277.png\";s:5:\"width\";i:1024;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"CTA-Shapes-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:\"CTA-Shapes-768x207.png\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"CTA-Shapes-1536x415.png\";s:5:\"width\";i:1536;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"CTA-Shapes-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"CTA-Shapes-416x112.png\";s:5:\"width\";i:416;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"CTA-Shapes-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"CTA-Shapes-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"CTA-Shapes-416x112.png\";s:5:\"width\";i:416;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"CTA-Shapes-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(560,120,'_elementor_source_image_hash','6d5829e14f6ff9daa72cead695c9ea8ab67588e9'),
(561,114,'_wp_page_template','default'),
(562,114,'_elementor_data','[{\"id\":\"6be00fe1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#0700dd\",\"background_color_b\":\"#00f2ff\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":116,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Post-BG.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"195\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"Hero\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"5fa795d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"7e29e31c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"align_mobile\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"5781251e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"ede85bd\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"show_icon\":\"none\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"ef11192\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"show_icon\":\"none\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"divider_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"text_color\":\"#ffffff\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"75f377b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"capitalize\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#4632da\",\"button_background_hover_color\":\"#00dafc\",\"border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(53,56,240,0.35)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_position\":\"fixed\",\"_offset_x\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_title\":\"Popup Button\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"d3619f5\\\" name=\\\"popup\\\" settings=\\\"%7B%7D\\\"]\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_z_index\":9999},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"27f895c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Post Content\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3f6d80ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6f71cae\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"98181a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"48229a86\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22http%3A%2F%2Fchoiceresources.co.uk%2Fwp-content%2Fuploads%2F2021%2F03%2FUntitled-design-8.png%22%2C%22id%22%3A121%7D%7D\\\"]\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.2)\"},\"align_mobile\":\"center\",\"image\":{\"id\":117,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder-1-1.png\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"3fdd1aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Many people think Elementor is user friendly but I think it is quite confusing.\\u00a0<\\/p><p>Many people think Elementor is user friendly but I think it is quite confusing.\\u00a0<\\/p><p>Many people think Elementor is user friendly but I think it is quite confusing.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"61cb22c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(159,163,173,0.2)\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Share Inner Section\"},\"elements\":[{\"id\":\"482c279e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"6a7b863b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Share This Post\",\"title_color\":\"#4632da\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"1\"},{\"id\":\"46fb5a8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"1ed9f8fa\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"7a6ea4f\"},{\"button\":\"linkedin\",\"_id\":\"709faff\"},{\"button\":\"twitter\",\"_id\":\"c0a1579\"},{\"button\":\"email\",\"_id\":\"f5e66bc\"}],\"view\":\"icon\",\"skin\":\"flat\",\"alignment\":\"right\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"button_size\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"icon_size\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"color_source\":\"custom\",\"primary_color\":\"#ffffff\",\"secondary_color\":\"rgba(47,55,89,0.7)\",\"secondary_color_hover\":\"#4632da\",\"alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"73647036\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"52c9a4b1\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text_color\":\"#3d4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"6dcffa5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"25\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_overlay_position_mobile\":\"initial\",\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":\"-543\",\"sizes\":[]},\"background_overlay_image\":{\"id\":118,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\"},\"_title\":\"Subscribe Inner Section\"},\"elements\":[{\"id\":\"2e5ebc3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2584a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"title_color\":\"#4632da\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bcb2e91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get updates and learn from the best\",\"title_color\":\"#3d4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"header_size\":\"h3\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d2540\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"455cde4b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Enter Your Email\",\"width\":\"75\",\"_id\":\"c1c9241\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"md\",\"button_width\":\"25\",\"button_icon\":\"fa fa-arrow-right\",\"button_icon_align\":\"right\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"field_text_color\":\"#353535\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_border_color\":\"#eaeaea\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_background_color\":\"#00dafc\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Montserrat\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_background_hover_color\":\"#4632da\",\"selected_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_button_icon\":\"1\"},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"770fb05f\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_color\":\"#4632da\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Varela Round\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_color\":\"#3d4459\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"arrow_color\":\"#4632da\",\"arrow_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"arrow_padding\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"sep_color\":\"rgba(159,163,173,0.2)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_color\":\"rgba(159,163,173,0.2)\",\"arrow\":\"fa fa-arrow-left\",\"borders_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"borders_spacing\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"72b1797c\",\"elType\":\"widget\",\"settings\":{\"title\":\"More To Explore\",\"title_color\":\"#4632da\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55209c97\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"2\",\"classic_posts_per_page\":\"2\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"posts_include\":[],\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#000000\",\"pagination_hover_color\":\"#00ce1b\",\"pagination_active_color\":\"#00ce1b\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_skin\":\"cards\",\"cards_columns\":\"2\",\"cards_posts_per_page\":\"2\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"cards_meta_data\":[\"author\",\"date\"],\"cards_show_read_more\":\"\",\"cards_show_avatar\":\"\",\"classic_alignment\":\"center\",\"cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"cards_alignment\":\"center\",\"cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_card_padding\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_badge_position\":\"left\",\"cards_badge_bg_color\":\"#4632da\",\"cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"cards_badge_typography_typography\":\"custom\",\"cards_badge_typography_font_family\":\"Montserrat\",\"cards_badge_typography_text_transform\":\"capitalize\",\"cards_title_color\":\"#4632da\",\"cards_title_typography_typography\":\"custom\",\"cards_title_typography_font_family\":\"Varela Round\",\"cards_title_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_title_typography_text_transform\":\"capitalize\",\"cards_title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"cards_meta_color\":\"rgba(61,68,89,0.5)\",\"cards_meta_separator_color\":\"rgba(61,68,89,0.5)\",\"cards_meta_typography_typography\":\"custom\",\"cards_meta_typography_font_family\":\"Montserrat\",\"cards_meta_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"cards_excerpt_typography_typography\":\"custom\",\"cards_excerpt_typography_font_family\":\"Montserrat\",\"cards_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"full_content_meta_separator\":\"\\/\\/\\/\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2c45b70e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":\"665\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#0700dd\",\"background_color_b\":\"#00f2ff\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":120,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CTA-Shapes.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"center left\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_top\":\"waves\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"230\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"CTA\",\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"60f66543\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Content Column\"},\"elements\":[{\"id\":\"6ec031\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do You Want To Boost Your Business?\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f731ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"drop us a line and keep in touch\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"793bda0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"#about\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"capitalize\",\"button_text_color\":\"#00dafc\",\"background_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#00dafc\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"},{\"id\":\"2282cb95\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Image Column\"},\"elements\":[{\"id\":\"3a4f412\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":121,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-8.png\"},\"image_size\":\"medium\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.12)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"540\",\"sizes\":[]},\"_offset_x\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"0\",\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"right\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),
(563,121,'_wp_attached_file','2021/03/Untitled-design-8.png'),
(564,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1587;s:6:\"height\";i:2245;s:4:\"file\";s:29:\"2021/03/Untitled-design-8.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Untitled-design-8-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Untitled-design-8-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Untitled-design-8-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:\"Untitled-design-8-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Untitled-design-8-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"Untitled-design-8-1448x2048.png\";s:5:\"width\";i:1448;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-8-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Untitled-design-8-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Untitled-design-8-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Untitled-design-8-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Untitled-design-8-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Untitled-design-8-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(566,122,'_elementor_edit_mode','builder'),
(567,122,'_elementor_template_type','single-post'),
(568,122,'_elementor_version','3.1.4'),
(569,122,'_elementor_pro_version','3.2.1'),
(570,122,'_wp_page_template','default'),
(571,122,'_elementor_data','[{\"id\":\"6be00fe1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#0700dd\",\"background_color_b\":\"#00f2ff\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":116,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Post-BG.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"195\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"Hero\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"5fa795d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"7e29e31c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"align_mobile\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"5781251e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"ede85bd\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"show_icon\":\"none\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"ef11192\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"show_icon\":\"none\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"divider_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"text_color\":\"#ffffff\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"75f377b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"capitalize\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#4632da\",\"button_background_hover_color\":\"#00dafc\",\"border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(53,56,240,0.35)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_position\":\"fixed\",\"_offset_x\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_title\":\"Popup Button\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"d3619f5\\\" name=\\\"popup\\\" settings=\\\"%7B%7D\\\"]\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_z_index\":9999},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"27f895c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Post Content\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3f6d80ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"48229a86\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.2)\"},\"align_mobile\":\"center\",\"image\":{\"id\":117,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder-1-1.png\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"35db68f3\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title_color\":\"#3d4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"},{\"id\":\"98181a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"61cb22c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(159,163,173,0.2)\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Share Inner Section\"},\"elements\":[{\"id\":\"482c279e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"6a7b863b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Share This Post\",\"title_color\":\"#4632da\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"1\"},{\"id\":\"46fb5a8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"1ed9f8fa\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"7a6ea4f\"},{\"button\":\"linkedin\",\"_id\":\"709faff\"},{\"button\":\"twitter\",\"_id\":\"c0a1579\"},{\"button\":\"email\",\"_id\":\"f5e66bc\"}],\"view\":\"icon\",\"skin\":\"flat\",\"alignment\":\"right\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"button_size\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"icon_size\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"color_source\":\"custom\",\"primary_color\":\"#ffffff\",\"secondary_color\":\"rgba(47,55,89,0.7)\",\"secondary_color_hover\":\"#4632da\",\"alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"73647036\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"52c9a4b1\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text_color\":\"#3d4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"6dcffa5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"25\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_overlay_position_mobile\":\"initial\",\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":\"-543\",\"sizes\":[]},\"background_overlay_image\":{\"id\":118,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\"},\"_title\":\"Subscribe Inner Section\"},\"elements\":[{\"id\":\"2e5ebc3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2584a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"title_color\":\"#4632da\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bcb2e91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get updates and learn from the best\",\"title_color\":\"#3d4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"header_size\":\"h3\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d2540\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"455cde4b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Enter Your Email\",\"width\":\"75\",\"_id\":\"c1c9241\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"md\",\"button_width\":\"25\",\"button_icon\":\"fa fa-arrow-right\",\"button_icon_align\":\"right\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"field_text_color\":\"#353535\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_border_color\":\"#eaeaea\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_background_color\":\"#00dafc\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Montserrat\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_background_hover_color\":\"#4632da\",\"selected_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_button_icon\":\"1\"},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"770fb05f\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_color\":\"#4632da\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Varela Round\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_color\":\"#3d4459\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"arrow_color\":\"#4632da\",\"arrow_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"arrow_padding\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"sep_color\":\"rgba(159,163,173,0.2)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_color\":\"rgba(159,163,173,0.2)\",\"arrow\":\"fa fa-arrow-left\",\"borders_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"borders_spacing\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"72b1797c\",\"elType\":\"widget\",\"settings\":{\"title\":\"More To Explore\",\"title_color\":\"#4632da\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55209c97\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"2\",\"classic_posts_per_page\":\"2\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"posts_include\":[],\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#000000\",\"pagination_hover_color\":\"#00ce1b\",\"pagination_active_color\":\"#00ce1b\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_skin\":\"cards\",\"cards_columns\":\"2\",\"cards_posts_per_page\":\"2\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"cards_meta_data\":[\"author\",\"date\"],\"cards_show_read_more\":\"\",\"cards_show_avatar\":\"\",\"classic_alignment\":\"center\",\"cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"cards_alignment\":\"center\",\"cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_card_padding\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_badge_position\":\"left\",\"cards_badge_bg_color\":\"#4632da\",\"cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"cards_badge_typography_typography\":\"custom\",\"cards_badge_typography_font_family\":\"Montserrat\",\"cards_badge_typography_text_transform\":\"capitalize\",\"cards_title_color\":\"#4632da\",\"cards_title_typography_typography\":\"custom\",\"cards_title_typography_font_family\":\"Varela Round\",\"cards_title_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_title_typography_text_transform\":\"capitalize\",\"cards_title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"cards_meta_color\":\"rgba(61,68,89,0.5)\",\"cards_meta_separator_color\":\"rgba(61,68,89,0.5)\",\"cards_meta_typography_typography\":\"custom\",\"cards_meta_typography_font_family\":\"Montserrat\",\"cards_meta_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"cards_excerpt_typography_typography\":\"custom\",\"cards_excerpt_typography_font_family\":\"Montserrat\",\"cards_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"full_content_meta_separator\":\"\\/\\/\\/\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2c45b70e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":\"665\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#0700dd\",\"background_color_b\":\"#00f2ff\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":120,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CTA-Shapes.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"center left\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_top\":\"waves\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"230\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"CTA\",\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"60f66543\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Content Column\"},\"elements\":[{\"id\":\"6ec031\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do You Want To Boost Your Business?\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f731ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"drop us a line and keep in touch\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"793bda0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"#about\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"capitalize\",\"button_text_color\":\"#00dafc\",\"background_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#00dafc\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"},{\"id\":\"2282cb95\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Image Column\"},\"elements\":[{\"id\":\"3a4f412\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":119,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CTA-post.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.12)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"540\",\"sizes\":[]},\"_offset_x\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"0\",\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"right\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),
(573,123,'_elementor_edit_mode','builder'),
(574,123,'_elementor_template_type','single-post'),
(575,123,'_elementor_version','3.1.4'),
(576,123,'_elementor_pro_version','3.2.1'),
(577,123,'_wp_page_template','default'),
(578,123,'_elementor_data','[{\"id\":\"6be00fe1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#0700dd\",\"background_color_b\":\"#00f2ff\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":116,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Post-BG.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"195\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"Hero\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"5fa795d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"7e29e31c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"align_mobile\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"5781251e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"ede85bd\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"show_icon\":\"none\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"ef11192\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"show_icon\":\"none\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"divider_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"text_color\":\"#ffffff\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"75f377b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"capitalize\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#4632da\",\"button_background_hover_color\":\"#00dafc\",\"border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(53,56,240,0.35)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_element_width\":\"initial\",\"_position\":\"fixed\",\"_offset_x\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_title\":\"Popup Button\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"d3619f5\\\" name=\\\"popup\\\" settings=\\\"%7B%7D\\\"]\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_z_index\":9999},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"27f895c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Post Content\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3f6d80ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6f71cae\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"98181a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"48229a86\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22http%3A%2F%2Fchoiceresources.co.uk%2Fwp-content%2Fuploads%2F2021%2F03%2FUntitled-design-8.png%22%2C%22id%22%3A121%7D%7D\\\"]\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.2)\"},\"align_mobile\":\"center\",\"image\":{\"id\":117,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder-1-1.png\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"3fdd1aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Many people think Elementor is user friendly but I think it is quite confusing.\\u00a0<\\/p><p>Many people think Elementor is user friendly but I think it is quite confusing.\\u00a0<\\/p><p>Many people think Elementor is user friendly but I think it is quite confusing.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"61cb22c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(159,163,173,0.2)\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Share Inner Section\"},\"elements\":[{\"id\":\"482c279e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"6a7b863b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Share This Post\",\"title_color\":\"#4632da\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"1\"},{\"id\":\"46fb5a8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"1ed9f8fa\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"7a6ea4f\"},{\"button\":\"linkedin\",\"_id\":\"709faff\"},{\"button\":\"twitter\",\"_id\":\"c0a1579\"},{\"button\":\"email\",\"_id\":\"f5e66bc\"}],\"view\":\"icon\",\"skin\":\"flat\",\"alignment\":\"right\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"button_size\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"icon_size\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"color_source\":\"custom\",\"primary_color\":\"#ffffff\",\"secondary_color\":\"rgba(47,55,89,0.7)\",\"secondary_color_hover\":\"#4632da\",\"alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"73647036\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"52c9a4b1\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"text_color\":\"#3d4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"6dcffa5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"25\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":\"1\"},\"background_overlay_position_mobile\":\"initial\",\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":\"-543\",\"sizes\":[]},\"background_overlay_image\":{\"id\":118,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\"},\"_title\":\"Subscribe Inner Section\"},\"elements\":[{\"id\":\"2e5ebc3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"space_between_widgets\":\"10\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2584a0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"title_color\":\"#4632da\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"],\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bcb2e91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get updates and learn from the best\",\"title_color\":\"#3d4459\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"header_size\":\"h3\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d2540\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"455cde4b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Enter Your Email\",\"width\":\"75\",\"_id\":\"c1c9241\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_size\":\"md\",\"button_width\":\"25\",\"button_icon\":\"fa fa-arrow-right\",\"button_icon_align\":\"right\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"field_text_color\":\"#353535\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"field_typography_font_weight\":\"300\",\"field_border_color\":\"#eaeaea\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_background_color\":\"#00dafc\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Montserrat\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"button_typography_font_weight\":\"500\",\"button_typography_text_transform\":\"capitalize\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_background_hover_color\":\"#4632da\",\"selected_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_button_icon\":\"1\"},\"field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"770fb05f\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_color\":\"#4632da\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Varela Round\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_color\":\"#3d4459\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Montserrat\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"arrow_color\":\"#4632da\",\"arrow_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"arrow_padding\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"sep_color\":\"rgba(159,163,173,0.2)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"_border_color\":\"rgba(159,163,173,0.2)\",\"arrow\":\"fa fa-arrow-left\",\"borders_width\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"borders_spacing\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"72b1797c\",\"elType\":\"widget\",\"settings\":{\"title\":\"More To Explore\",\"title_color\":\"#4632da\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}},\"motion_fx_devices\":[\"desktop\",\"mobile\"]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55209c97\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"2\",\"classic_posts_per_page\":\"2\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"posts_include\":[],\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"pagination_color\":\"#000000\",\"pagination_hover_color\":\"#00ce1b\",\"pagination_active_color\":\"#00ce1b\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_skin\":\"cards\",\"cards_columns\":\"2\",\"cards_posts_per_page\":\"2\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":\"0.5\",\"sizes\":[]},\"cards_meta_data\":[\"author\",\"date\"],\"cards_show_read_more\":\"\",\"cards_show_avatar\":\"\",\"classic_alignment\":\"center\",\"cards_row_gap\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"cards_alignment\":\"center\",\"cards_card_border_radius\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_card_padding\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"cards_image_spacing\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"cards_badge_position\":\"left\",\"cards_badge_bg_color\":\"#4632da\",\"cards_badge_radius\":{\"unit\":\"px\",\"size\":\"5\",\"sizes\":[]},\"cards_badge_size\":{\"unit\":\"px\",\"size\":\"11\",\"sizes\":[]},\"cards_badge_margin\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"cards_badge_typography_typography\":\"custom\",\"cards_badge_typography_font_family\":\"Montserrat\",\"cards_badge_typography_text_transform\":\"capitalize\",\"cards_title_color\":\"#4632da\",\"cards_title_typography_typography\":\"custom\",\"cards_title_typography_font_family\":\"Varela Round\",\"cards_title_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_title_typography_text_transform\":\"capitalize\",\"cards_title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"cards_meta_color\":\"rgba(61,68,89,0.5)\",\"cards_meta_separator_color\":\"rgba(61,68,89,0.5)\",\"cards_meta_typography_typography\":\"custom\",\"cards_meta_typography_font_family\":\"Montserrat\",\"cards_meta_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"cards_excerpt_typography_typography\":\"custom\",\"cards_excerpt_typography_font_family\":\"Montserrat\",\"cards_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"cards_excerpt_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"cards_read_more_spacing\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"full_content_meta_separator\":\"\\/\\/\\/\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2c45b70e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1200\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":\"665\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#0700dd\",\"background_color_b\":\"#00f2ff\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"89\",\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":\"130\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":120,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CTA-Shapes.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"center left\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":\"-133\",\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":\"-89\",\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.15\",\"sizes\":[]},\"shape_divider_top\":\"waves\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"230\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"260\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"\"},\"_title\":\"CTA\",\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"60f66543\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Content Column\"},\"elements\":[{\"id\":\"6ec031\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do You Want To Boost Your Business?\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Varela Round\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f731ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"drop us a line and keep in touch\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"793bda0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"#about\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"capitalize\",\"button_text_color\":\"#00dafc\",\"background_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#00dafc\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"},{\"id\":\"2282cb95\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_title\":\"Image Column\"},\"elements\":[{\"id\":\"3a4f412\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":121,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-8.png\"},\"image_size\":\"medium\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"\"},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"30\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.12)\"},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"540\",\"sizes\":[]},\"_offset_x\":{\"size\":\"0\",\"unit\":\"px\"},\"_offset_y\":{\"size\":\"0\",\"unit\":\"px\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"right\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":\"1\",\"sizes\":[]},\"motion_fx_devices\":[\"desktop\",\"tablet\"],\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":\"0\",\"end\":\"50\"}}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),
(581,114,'_elementor_conditions','a:1:{i:0;s:16:\"include/singular\";}'),
(583,12,'_edit_lock','1617207386:1'),
(584,124,'_elementor_edit_mode','builder'),
(585,124,'_elementor_template_type','kit'),
(586,124,'_elementor_version','3.1.4'),
(587,124,'_elementor_pro_version','3.2.1'),
(588,124,'_elementor_page_settings','a:1:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}}'),
(590,12,'_wp_page_template','default'),
(591,12,'_elementor_data','[]'),
(592,125,'_elementor_edit_mode','builder'),
(593,125,'_elementor_template_type','kit'),
(594,125,'_elementor_version','3.1.4'),
(595,125,'_elementor_pro_version','3.2.1'),
(596,125,'_elementor_page_settings','a:10:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:4:\"Shop\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";}'),
(598,125,'_wp_page_template','default'),
(599,125,'_elementor_data','[]'),
(609,127,'_wp_attached_file','2021/03/1-1.png'),
(610,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2021/03/1-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-1-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:15:\"1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"1-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"1-1-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"1-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"1-1-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(616,128,'_elementor_edit_mode','builder'),
(617,128,'_elementor_template_type','kit'),
(618,128,'_elementor_version','3.1.4'),
(619,128,'_elementor_pro_version','3.2.1'),
(620,128,'_elementor_page_settings','a:19:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:4:\"Shop\";s:9:\"site_logo\";a:2:{s:3:\"url\";s:63:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-1.png\";s:2:\"id\";i:127;}s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#2ADCDE\";s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:23:\"body_background_color_b\";s:7:\"#FFFFFF\";s:28:\"body_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:75;s:5:\"sizes\";a:0:{}}s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:9:\"#53E7E9D9\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";}'),
(621,128,'_wp_page_template','default'),
(622,128,'_elementor_data','[]'),
(625,129,'_wp_attached_file','2021/03/CR-Banner-2-2.png'),
(626,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2021/03/CR-Banner-2-2.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"CR-Banner-2-2-300x46.png\";s:5:\"width\";i:300;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"CR-Banner-2-2-1024x158.png\";s:5:\"width\";i:1024;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-2-768x118.png\";s:5:\"width\";i:768;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"CR-Banner-2-2-324x200.png\";s:5:\"width\";i:324;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"CR-Banner-2-2-416x64.png\";s:5:\"width\";i:416;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-2-324x200.png\";s:5:\"width\";i:324;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"CR-Banner-2-2-416x64.png\";s:5:\"width\";i:416;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(635,131,'_elementor_edit_mode','builder'),
(636,131,'_elementor_template_type','wp-page'),
(637,131,'_elementor_version','3.1.4'),
(638,131,'_elementor_pro_version','3.2.1'),
(639,131,'_wp_page_template','elementor_header_footer'),
(640,131,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(641,131,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1552fb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"c43606c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8f5807d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"ccf0a14\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"}],\"isInner\":false},{\"id\":\"aaf5e4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d7595e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=gfiYd_p4o2o\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(642,132,'_elementor_edit_mode','builder'),
(643,132,'_elementor_template_type','wp-page'),
(644,132,'_elementor_version','3.1.4'),
(645,132,'_elementor_pro_version','3.2.1'),
(646,132,'_wp_page_template','elementor_header_footer'),
(647,132,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(648,132,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1552fb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"c43606c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8f5807d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"ccf0a14\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"}],\"isInner\":false},{\"id\":\"aaf5e4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d7595e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=gfiYd_p4o2o\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(649,133,'_elementor_edit_mode','builder'),
(650,133,'_elementor_template_type','wp-page'),
(651,133,'_elementor_version','3.1.4'),
(652,133,'_elementor_pro_version','3.2.1'),
(653,133,'_wp_page_template','elementor_header_footer'),
(654,133,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(655,133,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1552fb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"c43606c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8f5807d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"ccf0a14\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"}],\"isInner\":false},{\"id\":\"aaf5e4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d7595e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=gfiYd_p4o2o\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(667,135,'_wp_attached_file','2021/03/Logo-CR-1.png'),
(668,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2021/03/Logo-CR-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Logo-CR-1-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:\"Logo-CR-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"Logo-CR-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"Logo-CR-1-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Logo-CR-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"Logo-CR-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"Logo-CR-1-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Logo-CR-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(669,136,'_elementor_edit_mode','builder'),
(670,136,'_elementor_template_type','kit'),
(671,136,'_elementor_version','3.1.4'),
(672,136,'_elementor_pro_version','3.2.1'),
(673,136,'_elementor_page_settings','a:19:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:9:\"site_logo\";a:2:{s:3:\"url\";s:63:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-1.png\";s:2:\"id\";i:127;}s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#2ADCDE\";s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:23:\"body_background_color_b\";s:7:\"#FFFFFF\";s:28:\"body_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:75;s:5:\"sizes\";a:0:{}}s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:9:\"#53E7E9D9\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";}'),
(674,136,'_wp_page_template','default'),
(675,136,'_elementor_data','[]'),
(677,137,'_wp_attached_file','2021/03/logo.png'),
(678,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:16:\"2021/03/logo.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"logo-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:16:\"logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"logo-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"logo-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"logo-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(679,138,'_elementor_edit_mode','builder'),
(680,138,'_elementor_template_type','kit'),
(681,138,'_elementor_version','3.1.4'),
(682,138,'_elementor_pro_version','3.2.1'),
(683,138,'_elementor_page_settings','a:19:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:9:\"site_logo\";a:2:{s:3:\"url\";s:69:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Logo-CR-1.png\";s:2:\"id\";i:135;}s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#2ADCDE\";s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:23:\"body_background_color_b\";s:7:\"#FFFFFF\";s:28:\"body_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:75;s:5:\"sizes\";a:0:{}}s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:9:\"#53E7E9D9\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";}'),
(684,138,'_wp_page_template','default'),
(685,138,'_elementor_data','[]'),
(687,139,'_elementor_edit_mode','builder'),
(688,139,'_elementor_template_type','wp-page'),
(689,139,'_elementor_version','3.1.4'),
(690,139,'_elementor_pro_version','3.2.1'),
(691,139,'_wp_page_template','elementor_header_footer'),
(692,139,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(693,139,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1552fb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"c43606c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8f5807d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"ccf0a14\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"}],\"isInner\":false},{\"id\":\"aaf5e4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d7595e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=gfiYd_p4o2o\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(694,140,'_elementor_edit_mode','builder'),
(695,140,'_elementor_template_type','wp-page'),
(696,140,'_elementor_version','3.1.4'),
(697,140,'_elementor_pro_version','3.2.1'),
(698,140,'_wp_page_template','elementor_header_footer'),
(699,140,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(700,140,'_elementor_data','[{\"id\":\"8923f87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4717808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"026cfd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1552fb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"c43606c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8f5807d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"ccf0a14\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"}],\"isInner\":false},{\"id\":\"aaf5e4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d7595e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=gfiYd_p4o2o\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(701,141,'_elementor_edit_mode','builder'),
(702,141,'_elementor_template_type','wp-page'),
(703,141,'_elementor_version','3.1.4'),
(704,141,'_elementor_pro_version','3.2.1'),
(705,141,'_wp_page_template','elementor_header_footer'),
(706,141,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(707,141,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1552fb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"c43606c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8f5807d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"ccf0a14\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"}],\"isInner\":false},{\"id\":\"aaf5e4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d7595e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=gfiYd_p4o2o\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(709,142,'_wp_attached_file','2021/03/Logo-Gym-New.png'),
(710,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:166;s:4:\"file\";s:24:\"2021/03/Logo-Gym-New.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Logo-Gym-New-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Logo-Gym-New-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"Logo-Gym-New-324x166.png\";s:5:\"width\";i:324;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"Logo-Gym-New-416x138.png\";s:5:\"width\";i:416;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Logo-Gym-New-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"Logo-Gym-New-324x166.png\";s:5:\"width\";i:324;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"Logo-Gym-New-416x138.png\";s:5:\"width\";i:416;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Logo-Gym-New-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(711,142,'_elementor_source_image_hash','32365ef4a45e3bdb6cbca7cac5f80d8cfb58e9c3'),
(712,143,'_wp_attached_file','2021/03/LEGIT.png'),
(713,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:222;s:6:\"height\";i:58;s:4:\"file\";s:17:\"2021/03/LEGIT.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"LEGIT-150x58.png\";s:5:\"width\";i:150;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"LEGIT-100x58.png\";s:5:\"width\";i:100;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"LEGIT-100x58.png\";s:5:\"width\";i:100;s:6:\"height\";i:58;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:{}}}'),
(714,143,'_elementor_source_image_hash','6b35c634fd99d3538e0b8632baedc42e60dee8c7'),
(715,144,'_wp_attached_file','2021/03/iTour-Logo.png'),
(716,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:84;s:6:\"height\";i:39;s:4:\"file\";s:22:\"2021/03/iTour-Logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(717,144,'_elementor_source_image_hash','9ebed1cc156df8dc4e28ffdc5cb367cebc649c25'),
(718,145,'_wp_attached_file','2021/03/Menu-1.svg'),
(719,145,'_elementor_source_image_hash','4bd0c6379ed795b1384f256c04c0a1656db01262'),
(721,146,'_elementor_edit_mode','builder'),
(722,146,'_elementor_template_type','header'),
(723,146,'_elementor_version','3.1.4'),
(724,146,'_elementor_pro_version','3.2.1'),
(725,146,'_wp_page_template','default'),
(726,146,'_elementor_data','[]'),
(727,146,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(728,146,'_elementor_screenshot','a:2:{s:2:\"id\";i:54;s:3:\"url\";s:131:\"http://choiceresources.co.uk/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_43_2021-03-30-04-00-21_2040619a.png\";}'),
(729,146,'_elementor_screenshot_failed','2021-03-30 04:00:21'),
(768,151,'_edit_lock','1617089484:1'),
(769,152,'_wp_attached_file','2021/03/Untitled-design-8-edited.png'),
(770,152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1233;s:6:\"height\";i:1744;s:4:\"file\";s:36:\"2021/03/Untitled-design-8-edited.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Untitled-design-8-edited-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Untitled-design-8-edited-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Untitled-design-8-edited-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Untitled-design-8-edited-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"Untitled-design-8-edited-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Untitled-design-8-edited-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"Untitled-design-8-edited-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Untitled-design-8-edited-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"Untitled-design-8-edited-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"Untitled-design-8-edited-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"Untitled-design-8-edited-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:3:\"121\";s:4:\"file\";s:29:\"2021/03/Untitled-design-8.png\";}}'),
(773,154,'_elementor_edit_mode','builder'),
(774,154,'_elementor_template_type','wp-page'),
(775,154,'_elementor_version','3.1.4'),
(776,154,'_elementor_pro_version','3.2.1'),
(777,154,'_wp_page_template','elementor_header_footer'),
(778,154,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(779,154,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1552fb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"c43606c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8f5807d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"ccf0a14\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"}],\"isInner\":false},{\"id\":\"aaf5e4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d7595e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=gfiYd_p4o2o\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(780,155,'_elementor_edit_mode','builder'),
(781,155,'_elementor_template_type','wp-page'),
(782,155,'_elementor_version','3.1.4'),
(783,155,'_elementor_pro_version','3.2.1'),
(784,155,'_wp_page_template','elementor_header_footer'),
(785,155,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(786,155,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1552fb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"c43606c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8f5807d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"ccf0a14\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"}],\"isInner\":false},{\"id\":\"aaf5e4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d7595e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=gfiYd_p4o2o\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(787,156,'_elementor_edit_mode','builder'),
(788,156,'_elementor_template_type','wp-page'),
(789,156,'_elementor_version','3.1.4'),
(790,156,'_elementor_pro_version','3.2.1'),
(791,156,'_wp_page_template','elementor_header_footer'),
(792,156,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(793,156,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9debb3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"208a14b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"content_position\":\"top\"},\"elements\":[{\"id\":\"333a8d25\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.67000000000000003996802888650563545525074005126953125,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=tFoUuFq3vHw&t=32s\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(796,151,'_elementor_template_type','wp-post'),
(797,151,'_elementor_version','3.1.4'),
(798,151,'_elementor_pro_version','3.2.1'),
(804,151,'_thumbnail_id','119'),
(805,157,'_edit_lock','1617213738:1'),
(808,157,'_thumbnail_id','106'),
(809,159,'_edit_lock','1617210616:1'),
(810,160,'_wp_attached_file','2021/03/Copy-of-Homeschool-Essentials-4-7.png'),
(811,160,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1587;s:6:\"height\";i:2245;s:4:\"file\";s:45:\"2021/03/Copy-of-Homeschool-Essentials-4-7.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Copy-of-Homeschool-Essentials-4-7-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Copy-of-Homeschool-Essentials-4-7-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Copy-of-Homeschool-Essentials-4-7-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:46:\"Copy-of-Homeschool-Essentials-4-7-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Copy-of-Homeschool-Essentials-4-7-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Copy-of-Homeschool-Essentials-4-7-1448x2048.png\";s:5:\"width\";i:1448;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"Copy-of-Homeschool-Essentials-4-7-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:45:\"Copy-of-Homeschool-Essentials-4-7-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"Copy-of-Homeschool-Essentials-4-7-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:45:\"Copy-of-Homeschool-Essentials-4-7-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:45:\"Copy-of-Homeschool-Essentials-4-7-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"Copy-of-Homeschool-Essentials-4-7-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(814,159,'_thumbnail_id','428'),
(815,57,'_oembed_0ad7fa37ae9e178699f65e1b119d8606','<iframe title=\"Five Little Ducks | Learn with Little Baby Bum | Nursery Rhymes for Babies | ABCs and 123s\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/tFoUuFq3vHw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(816,57,'_oembed_time_0ad7fa37ae9e178699f65e1b119d8606','1617089844'),
(825,163,'_elementor_edit_mode','builder'),
(826,163,'_elementor_template_type','wp-page'),
(827,163,'_elementor_version','3.1.4'),
(828,163,'_elementor_pro_version','3.2.1'),
(829,163,'_wp_page_template','elementor_header_footer'),
(830,163,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(831,163,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9debb3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"208a14b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"content_position\":\"top\"},\"elements\":[{\"id\":\"333a8d25\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.67000000000000003996802888650563545525074005126953125,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=tFoUuFq3vHw&t=32s\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(832,164,'_elementor_edit_mode','builder'),
(833,164,'_elementor_template_type','wp-page'),
(834,164,'_elementor_version','3.1.4'),
(835,164,'_elementor_pro_version','3.2.1'),
(836,164,'_wp_page_template','elementor_header_footer'),
(837,164,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(838,164,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9debb3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"208a14b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"content_position\":\"top\"},\"elements\":[{\"id\":\"333a8d25\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.67000000000000003996802888650563545525074005126953125,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=tFoUuFq3vHw&t=32s\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(839,165,'_elementor_edit_mode','builder'),
(840,165,'_elementor_template_type','wp-page'),
(841,165,'_elementor_version','3.1.4'),
(842,165,'_elementor_pro_version','3.2.1'),
(843,165,'_wp_page_template','elementor_header_footer'),
(844,165,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(845,165,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(847,166,'_elementor_edit_mode','builder'),
(848,166,'_elementor_template_type','kit'),
(849,166,'_elementor_version','3.1.4'),
(850,166,'_elementor_pro_version','3.2.1'),
(851,166,'_elementor_page_settings','a:19:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:9:\"site_logo\";a:2:{s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo.png\";s:2:\"id\";i:137;}s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#2ADCDE\";s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:23:\"body_background_color_b\";s:7:\"#FFFFFF\";s:28:\"body_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:75;s:5:\"sizes\";a:0:{}}s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:9:\"#53E7E9D9\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";}'),
(852,166,'_wp_page_template','default'),
(853,166,'_elementor_data','[]'),
(855,167,'_elementor_edit_mode','builder'),
(856,167,'_elementor_template_type','wp-page'),
(857,167,'_elementor_version','3.1.4'),
(858,167,'_elementor_pro_version','3.2.1'),
(859,167,'_wp_page_template','elementor_header_footer'),
(860,167,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(861,167,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(862,168,'_elementor_edit_mode','builder'),
(863,168,'_elementor_template_type','wp-page'),
(864,168,'_elementor_version','3.1.4'),
(865,168,'_elementor_pro_version','3.2.1'),
(866,168,'_wp_page_template','elementor_header_footer'),
(867,168,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(868,168,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(869,169,'_elementor_edit_mode','builder'),
(870,169,'_elementor_template_type','wp-page'),
(871,169,'_elementor_version','3.1.4'),
(872,169,'_elementor_pro_version','3.2.1'),
(873,169,'_wp_page_template','elementor_header_footer'),
(874,169,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(875,169,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33d71a0\",\"elType\":\"section\",\"settings\":{\"shape_divider_bottom\":\"clouds\"},\"elements\":[{\"id\":\"ee54777\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(877,170,'_elementor_edit_mode','builder'),
(878,170,'_elementor_template_type','footer'),
(879,170,'_elementor_version','3.1.4'),
(880,170,'_elementor_pro_version','3.2.1'),
(881,170,'_wp_page_template','default'),
(882,170,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#009FFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"shape_divider_top_color\":\"#009FFF\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"shape_divider_top\":\"mountains\"},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\"},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\"},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\"},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"rgba(255,255,255,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#e82a00\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"50973896\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"rgba(255,255,255,0.39)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(883,170,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(885,171,'_elementor_edit_mode','builder'),
(886,171,'_elementor_template_type','kit'),
(887,171,'_elementor_version','3.1.4'),
(888,171,'_elementor_pro_version','3.2.1'),
(889,171,'_elementor_page_settings','a:18:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:23:\"body_background_color_b\";s:7:\"#2BCCE7\";s:28:\"body_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:75;s:5:\"sizes\";a:0:{}}s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:9:\"#17D6D9ED\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";}'),
(890,171,'_wp_page_template','default'),
(891,171,'_elementor_data','[]'),
(902,173,'_elementor_edit_mode','builder'),
(903,173,'_elementor_template_type','footer'),
(904,173,'_elementor_version','3.1.4'),
(905,173,'_elementor_pro_version','3.2.1'),
(906,173,'_wp_page_template','default'),
(907,173,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7DECFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"shape_divider_top_color\":\"#7DECFF\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\",\"id\":118},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\",\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#e82a00\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_bottom\":\"mountains\"},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.981999999999999317878973670303821563720703125,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"50973896\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-107\",\"right\":\"-107\",\"bottom\":\"-107\",\"left\":\"-107\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.018000000000000682121026329696178436279296875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(908,173,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(910,174,'_elementor_edit_mode','builder'),
(911,174,'_elementor_template_type','footer'),
(912,174,'_elementor_version','3.1.4'),
(913,174,'_elementor_pro_version','3.2.1'),
(914,174,'_wp_page_template','default'),
(915,174,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7DECFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"shape_divider_top_color\":\"#7DECFF\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\",\"id\":118},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\",\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#00AFE8\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_bottom\":\"mountains\"},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.981999999999999317878973670303821563720703125,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"50973896\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"align_mobile\":\"center\",\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-107\",\"right\":\"-107\",\"bottom\":\"-107\",\"left\":\"-107\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.018000000000000682121026329696178436279296875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(916,174,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(926,176,'_elementor_edit_mode','builder'),
(927,176,'_elementor_template_type','footer'),
(928,176,'_elementor_version','3.1.4'),
(929,176,'_elementor_pro_version','3.2.1'),
(930,176,'_wp_page_template','default'),
(931,176,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7DECFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"shape_divider_top_color\":\"#7DECFF\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\",\"id\":118},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\",\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#00AFE8\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_bottom\":\"mountains\"},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.981999999999999317878973670303821563720703125,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.018000000000000682121026329696178436279296875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(932,176,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(942,178,'_elementor_edit_mode','builder'),
(943,178,'_elementor_template_type','wp-page'),
(944,178,'_elementor_version','3.1.4'),
(945,178,'_elementor_pro_version','3.2.1'),
(946,178,'_wp_page_template','elementor_header_footer'),
(947,178,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(948,178,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33d71a0\",\"elType\":\"section\",\"settings\":{\"shape_divider_bottom\":\"clouds\"},\"elements\":[{\"id\":\"ee54777\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(949,179,'_elementor_edit_mode','builder'),
(950,179,'_elementor_template_type','wp-page'),
(951,179,'_elementor_version','3.1.4'),
(952,179,'_elementor_pro_version','3.2.1'),
(953,179,'_wp_page_template','elementor_header_footer'),
(954,179,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(955,179,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33d71a0\",\"elType\":\"section\",\"settings\":{\"shape_divider_bottom\":\"clouds\"},\"elements\":[{\"id\":\"ee54777\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(956,180,'_elementor_edit_mode','builder'),
(957,180,'_elementor_template_type','wp-page'),
(958,180,'_elementor_version','3.1.4'),
(959,180,'_elementor_pro_version','3.2.1'),
(960,180,'_wp_page_template','elementor_header_footer'),
(961,180,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(962,180,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(972,182,'_elementor_edit_mode','builder'),
(973,182,'_elementor_template_type','footer'),
(974,182,'_elementor_version','3.1.4'),
(975,182,'_elementor_pro_version','3.2.1'),
(976,182,'_wp_page_template','default'),
(977,182,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7DECFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"shape_divider_top_color\":\"#FF7D7D\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\",\"id\":118},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\",\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#00AFE8\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_bottom\":\"mountains\"},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.981999999999999317878973670303821563720703125,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.018000000000000682121026329696178436279296875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(978,182,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(988,184,'_elementor_edit_mode','builder'),
(989,184,'_elementor_template_type','footer'),
(990,184,'_elementor_version','3.1.4'),
(991,184,'_elementor_pro_version','3.2.1'),
(992,184,'_wp_page_template','default'),
(993,184,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#F0BA04C9\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"shape_divider_top_color\":\"#FF7D7D\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\",\"id\":118},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"shape_divider_top\":\"mountains\"},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\",\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#00AFE8\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.981999999999999317878973670303821563720703125,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.018000000000000682121026329696178436279296875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(994,184,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(1008,186,'_elementor_edit_mode','builder'),
(1009,186,'_elementor_template_type','wp-page'),
(1010,186,'_elementor_version','3.1.4'),
(1011,186,'_elementor_pro_version','3.2.1'),
(1012,186,'_wp_page_template','elementor_header_footer'),
(1013,186,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1014,186,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1015,187,'_elementor_edit_mode','builder'),
(1016,187,'_elementor_template_type','wp-page'),
(1017,187,'_elementor_version','3.1.4'),
(1018,187,'_elementor_pro_version','3.2.1'),
(1019,187,'_wp_page_template','elementor_header_footer'),
(1020,187,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1021,187,'_elementor_data','[{\"id\":\"1bfdae2c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"html_tag\":\"header\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3e25e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":12.8070000000000003836930773104541003704071044921875,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1ff08d18\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6f56b533\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":87.1929999999999978399500832892954349517822265625,\"_inline_size_mobile\":70,\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8963baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.jpg\",\"id\":63}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1022,188,'_elementor_edit_mode','builder'),
(1023,188,'_elementor_template_type','wp-page'),
(1024,188,'_elementor_version','3.1.4'),
(1025,188,'_elementor_pro_version','3.2.1'),
(1026,188,'_wp_page_template','elementor_header_footer'),
(1027,188,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1028,188,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1030,189,'_elementor_edit_mode','builder'),
(1031,189,'_elementor_template_type','wp-page'),
(1032,189,'_elementor_version','3.1.4'),
(1033,189,'_elementor_pro_version','3.2.1'),
(1034,189,'_wp_page_template','elementor_header_footer'),
(1035,189,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1036,189,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1037,190,'_elementor_edit_mode','builder'),
(1038,190,'_elementor_template_type','wp-page'),
(1039,190,'_elementor_version','3.1.4'),
(1040,190,'_elementor_pro_version','3.2.1'),
(1041,190,'_wp_page_template','elementor_header_footer'),
(1042,190,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1043,190,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"This is the heading\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1044,191,'_elementor_edit_mode','builder'),
(1045,191,'_elementor_template_type','wp-page'),
(1046,191,'_elementor_version','3.1.4'),
(1047,191,'_elementor_pro_version','3.2.1'),
(1048,191,'_wp_page_template','elementor_header_footer'),
(1049,191,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1050,191,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1052,192,'_elementor_edit_mode','builder'),
(1053,192,'_elementor_template_type','wp-page'),
(1054,192,'_elementor_version','3.1.4'),
(1055,192,'_elementor_pro_version','3.2.1'),
(1056,192,'_wp_page_template','elementor_header_footer'),
(1057,192,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1058,192,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1059,193,'_elementor_edit_mode','builder'),
(1060,193,'_elementor_template_type','wp-page'),
(1061,193,'_elementor_version','3.1.4'),
(1062,193,'_elementor_pro_version','3.2.1'),
(1063,193,'_wp_page_template','elementor_header_footer'),
(1064,193,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1065,193,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1066,194,'_elementor_edit_mode','builder'),
(1067,194,'_elementor_template_type','wp-page'),
(1068,194,'_elementor_version','3.1.4'),
(1069,194,'_elementor_pro_version','3.2.1'),
(1070,194,'_wp_page_template','elementor_header_footer'),
(1071,194,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1072,194,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1083,196,'_elementor_edit_mode','builder'),
(1084,196,'_elementor_template_type','footer'),
(1085,196,'_elementor_version','3.1.4'),
(1086,196,'_elementor_pro_version','3.2.1'),
(1087,196,'_wp_page_template','default'),
(1088,196,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#F0BA04C9\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"shape_divider_top_color\":\"#FF7D7D\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\",\"id\":118},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]}},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\",\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#00AFE8\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.981999999999999317878973670303821563720703125,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.018000000000000682121026329696178436279296875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(1089,196,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(1099,198,'_elementor_edit_mode','builder'),
(1100,198,'_elementor_template_type','wp-page'),
(1101,198,'_elementor_version','3.1.4'),
(1102,198,'_elementor_pro_version','3.2.1'),
(1103,198,'_wp_page_template','elementor_header_footer'),
(1104,198,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1105,198,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1106,199,'_elementor_edit_mode','builder'),
(1107,199,'_elementor_template_type','wp-page'),
(1108,199,'_elementor_version','3.1.4'),
(1109,199,'_elementor_pro_version','3.2.1'),
(1110,199,'_wp_page_template','elementor_header_footer'),
(1111,199,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1112,199,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50207f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1085745\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db823b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reads of the week.\\nCatch up on all<br> the latest reads this week<br>\",\"align\":\"center\",\"title_color\":\"#0C31C2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":49,\"color\":\"rgba(188.48309644911333, 199.6666717529297, 47.61375508730747, 0.62)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-82\",\"right\":\"-82\",\"bottom\":\"-82\",\"left\":\"-82\",\"isLinked\":true},\"_z_index\":0},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1113,200,'_elementor_edit_mode','builder'),
(1114,200,'_elementor_template_type','wp-page'),
(1115,200,'_elementor_version','3.1.4'),
(1116,200,'_elementor_pro_version','3.2.1'),
(1117,200,'_wp_page_template','elementor_header_footer'),
(1118,200,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1119,200,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1123,57,'_oembed_fd84dc34aa3a066d883157b283570cb2','<iframe title=\"Adam And Eve - The First Sin - Bible For Kids\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/t6S42sz-mHs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(1124,57,'_oembed_time_fd84dc34aa3a066d883157b283570cb2','1617111625'),
(1125,151,'_oembed_fd84dc34aa3a066d883157b283570cb2','<iframe title=\"Adam And Eve - The First Sin - Bible For Kids\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/t6S42sz-mHs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(1126,151,'_oembed_time_fd84dc34aa3a066d883157b283570cb2','1617095633'),
(1127,201,'_menu_item_type','taxonomy'),
(1128,201,'_menu_item_menu_item_parent','0'),
(1129,201,'_menu_item_object_id','1'),
(1130,201,'_menu_item_object','category'),
(1131,201,'_menu_item_target',''),
(1132,201,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1133,201,'_menu_item_xfn',''),
(1134,201,'_menu_item_url',''),
(1135,201,'_menu_item_orphaned','1617096155'),
(1136,202,'_menu_item_type','taxonomy'),
(1137,202,'_menu_item_menu_item_parent','0'),
(1138,202,'_menu_item_object_id','1'),
(1139,202,'_menu_item_object','category'),
(1140,202,'_menu_item_target',''),
(1141,202,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1142,202,'_menu_item_xfn',''),
(1143,202,'_menu_item_url',''),
(1144,202,'_menu_item_orphaned','1617096431'),
(1154,204,'_menu_item_type','taxonomy'),
(1155,204,'_menu_item_menu_item_parent','0'),
(1156,204,'_menu_item_object_id','25'),
(1157,204,'_menu_item_object','product_cat'),
(1158,204,'_menu_item_target',''),
(1159,204,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1160,204,'_menu_item_xfn',''),
(1161,204,'_menu_item_url',''),
(1172,206,'_elementor_edit_mode','builder'),
(1173,206,'_elementor_template_type','wp-page'),
(1174,206,'_elementor_version','3.1.4'),
(1175,206,'_elementor_pro_version','3.2.1'),
(1176,206,'_wp_page_template','elementor_header_footer'),
(1177,206,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1178,206,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1180,207,'_elementor_edit_mode','builder'),
(1181,207,'_elementor_template_type','wp-page'),
(1182,207,'_elementor_version','3.1.4'),
(1183,207,'_elementor_pro_version','3.2.1'),
(1184,207,'_wp_page_template','elementor_header_footer'),
(1185,207,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1186,207,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1188,208,'_elementor_edit_mode','builder'),
(1189,208,'_elementor_template_type','wp-page'),
(1190,208,'_elementor_version','3.1.4'),
(1191,208,'_elementor_pro_version','3.2.1'),
(1192,208,'_wp_page_template','elementor_header_footer'),
(1193,208,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1194,208,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1206,210,'_wp_attached_file','2021/03/logo-1.png'),
(1207,210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2021/03/logo-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"logo-1-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:18:\"logo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"logo-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"logo-1-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"logo-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"logo-1-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1208,211,'_wp_attached_file','2021/03/logo-1-1.png'),
(1209,211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2021/03/logo-1-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo-1-1-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:20:\"logo-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"logo-1-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"logo-1-1-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"logo-1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"logo-1-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"logo-1-1-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"logo-1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1210,212,'_elementor_edit_mode','builder'),
(1211,212,'_elementor_template_type','kit'),
(1212,212,'_elementor_version','3.1.4'),
(1213,212,'_elementor_pro_version','3.2.1'),
(1214,212,'_elementor_page_settings','a:18:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:23:\"body_background_color_b\";s:7:\"#7DECFF\";s:28:\"body_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:75;s:5:\"sizes\";a:0:{}}s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:9:\"#17D6D9ED\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";}'),
(1215,212,'_wp_page_template','default'),
(1216,212,'_elementor_data','[]'),
(1221,213,'_elementor_edit_mode','builder'),
(1222,213,'_elementor_template_type','header'),
(1223,213,'_elementor_version','3.1.4'),
(1224,213,'_elementor_pro_version','3.2.1'),
(1225,213,'_wp_page_template','default'),
(1226,213,'_elementor_data','[{\"id\":\"3e6c0908\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"30\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"e36592b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.04299999999999926103555480949580669403076171875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"755937d4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7889b52c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.45700000000000073896444519050419330596923828125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fec420\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"5bd8e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.5430000000000063664629124104976654052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e63e56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#FF8009\",\"typography_font_family\":\"Quicksand\",\"size\":\"large\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37679c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.86399999999999721467247582040727138519287109375,\"_inline_size_mobile\":20,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f5f1157\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"39bcb816\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.7569999999999996731503415503539144992828369140625,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"37a6c6e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"button_text_color\":\"#2642d3\",\"background_color\":\"rgba(255,255,255,0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(38,66,211,0.34)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":-9,\"color\":\"rgba(0,0,0,0.16)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"12\",\"left\":\"30\",\"isLinked\":false},\"size\":\"md\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),
(1227,213,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(1228,213,'_elementor_screenshot','a:2:{s:2:\"id\";i:54;s:3:\"url\";s:131:\"http://choiceresources.co.uk/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_43_2021-03-30-04-00-21_2040619a.png\";}'),
(1229,213,'_elementor_screenshot_failed','2021-03-30 04:00:21'),
(1232,214,'_elementor_edit_mode','builder'),
(1233,214,'_elementor_template_type','wp-page'),
(1234,214,'_elementor_version','3.1.4'),
(1235,214,'_elementor_pro_version','3.2.1'),
(1236,214,'_wp_page_template','elementor_header_footer'),
(1237,214,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1238,214,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1239,215,'_elementor_edit_mode','builder'),
(1240,215,'_elementor_template_type','wp-page'),
(1241,215,'_elementor_version','3.1.4'),
(1242,215,'_elementor_pro_version','3.2.1'),
(1243,215,'_wp_page_template','elementor_header_footer'),
(1244,215,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1245,215,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1246,216,'_elementor_edit_mode','builder'),
(1247,216,'_elementor_template_type','wp-page'),
(1248,216,'_elementor_version','3.1.4'),
(1249,216,'_elementor_pro_version','3.2.1'),
(1250,216,'_wp_page_template','elementor_header_footer'),
(1251,216,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1252,216,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1262,218,'_elementor_edit_mode','builder'),
(1263,218,'_elementor_template_type','wp-page'),
(1264,218,'_elementor_version','3.1.4'),
(1265,218,'_elementor_pro_version','3.2.1'),
(1266,218,'_wp_page_template','elementor_header_footer'),
(1267,218,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1268,218,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1269,219,'_elementor_edit_mode','builder'),
(1270,219,'_elementor_template_type','wp-page'),
(1271,219,'_elementor_version','3.1.4'),
(1272,219,'_elementor_pro_version','3.2.1'),
(1273,219,'_wp_page_template','elementor_header_footer'),
(1274,219,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1275,219,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1276,220,'_elementor_edit_mode','builder'),
(1277,220,'_elementor_template_type','wp-page'),
(1278,220,'_elementor_version','3.1.4'),
(1279,220,'_elementor_pro_version','3.2.1'),
(1280,220,'_wp_page_template','elementor_header_footer'),
(1281,220,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1282,220,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1293,222,'_elementor_edit_mode','builder'),
(1294,222,'_elementor_template_type','header'),
(1295,222,'_elementor_version','3.1.4'),
(1296,222,'_elementor_pro_version','3.2.1'),
(1297,222,'_wp_page_template','default'),
(1298,222,'_elementor_data','[{\"id\":\"3e6c0908\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"30\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"e36592b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.818000000000001392663762089796364307403564453125,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"755937d4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7889b52c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":14.8300000000000000710542735760100185871124267578125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fec420\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"5bd8e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":85.1700000000000017053025658242404460906982421875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e63e56\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#FF8009\",\"typography_font_family\":\"Quicksand\",\"size\":\"small\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37679c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":65.08899999999999863575794734060764312744140625,\"_inline_size_mobile\":20,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f5f1157\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":18},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"menu_space_between\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"42\",\"bottom\":\"42\",\"left\":\"42\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"39bcb816\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.7569999999999996731503415503539144992828369140625,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"37a6c6e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"button_text_color\":\"#2642d3\",\"background_color\":\"rgba(255,255,255,0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(38,66,211,0.34)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":-9,\"color\":\"rgba(0,0,0,0.16)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"12\",\"left\":\"30\",\"isLinked\":false},\"size\":\"md\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),
(1299,222,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(1312,224,'_elementor_edit_mode','builder'),
(1313,224,'_elementor_template_type','header'),
(1314,224,'_elementor_version','3.1.4'),
(1315,224,'_elementor_pro_version','3.2.1'),
(1316,224,'_wp_page_template','default'),
(1317,224,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"30\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"My  WebSite\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.71399999999999863575794734060764312744140625,\"_inline_size_mobile\":20,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"6a130933\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.9500000000000028421709430404007434844970703125,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"9b2881f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"alignment\":\"right\"},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"},{\"id\":\"41678ec3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"button_text_color\":\"#2642d3\",\"background_color\":\"rgba(255,255,255,0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(38,66,211,0.34)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":-9,\"color\":\"rgba(0,0,0,0.16)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"12\",\"left\":\"30\",\"isLinked\":false},\"size\":\"md\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),
(1318,224,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(1321,225,'_menu_item_type','post_type'),
(1322,225,'_menu_item_menu_item_parent','0'),
(1323,225,'_menu_item_object_id','29'),
(1324,225,'_menu_item_object','page'),
(1325,225,'_menu_item_target',''),
(1326,225,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1327,225,'_menu_item_xfn',''),
(1328,225,'_menu_item_url',''),
(1340,227,'_menu_item_type','post_type'),
(1341,227,'_menu_item_menu_item_parent','0'),
(1342,227,'_menu_item_object_id','27'),
(1343,227,'_menu_item_object','page'),
(1344,227,'_menu_item_target',''),
(1345,227,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1346,227,'_menu_item_xfn',''),
(1347,227,'_menu_item_url',''),
(1348,227,'_menu_item_orphaned','1617100644'),
(1349,228,'_menu_item_type','post_type'),
(1350,228,'_menu_item_menu_item_parent','0'),
(1351,228,'_menu_item_object_id','27'),
(1352,228,'_menu_item_object','page'),
(1353,228,'_menu_item_target',''),
(1354,228,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1355,228,'_menu_item_xfn',''),
(1356,228,'_menu_item_url',''),
(1358,8,'_edit_lock','1617100828:1'),
(1359,9,'_edit_lock','1617100861:1'),
(1360,232,'_elementor_edit_mode','builder'),
(1361,232,'_elementor_template_type','header'),
(1362,232,'_elementor_version','3.1.4'),
(1363,232,'_elementor_pro_version','3.2.1'),
(1364,232,'_wp_page_template','default'),
(1365,232,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"30\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":20,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"8b00900\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8cf8b5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"204a2c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"1180bb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(1366,232,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(1377,234,'_elementor_edit_mode','builder'),
(1378,234,'_elementor_template_type','header'),
(1379,234,'_elementor_version','3.1.4'),
(1380,234,'_elementor_pro_version','3.2.1'),
(1381,234,'_wp_page_template','default'),
(1382,234,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.0270000000000010231815394945442676544189453125,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52.67999999999999971578290569595992565155029296875,\"_inline_size_mobile\":20,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"866f14e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.3100000000000004973799150320701301097869873046875},\"elements\":[{\"id\":\"e42cb0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Now\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cbe8ff1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":8.8539999999999992041921359486877918243408203125},\"elements\":[{\"id\":\"3e1c325\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(1383,234,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(1385,235,'_elementor_edit_mode','builder'),
(1386,235,'_elementor_template_type','wp-page'),
(1387,235,'_elementor_version','3.1.4'),
(1388,235,'_elementor_pro_version','3.2.1'),
(1389,235,'_wp_page_template','elementor_header_footer'),
(1390,235,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1391,235,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1393,236,'_elementor_edit_mode','builder'),
(1394,236,'_elementor_template_type','wp-page'),
(1395,236,'_elementor_version','3.1.4'),
(1396,236,'_elementor_pro_version','3.2.1'),
(1397,236,'_wp_page_template','elementor_header_footer'),
(1398,236,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1399,236,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1401,237,'_elementor_edit_mode','builder'),
(1402,237,'_elementor_template_type','wp-page'),
(1403,237,'_elementor_version','3.1.4'),
(1404,237,'_elementor_pro_version','3.2.1'),
(1405,237,'_wp_page_template','elementor_header_footer'),
(1406,237,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1407,237,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1418,239,'_elementor_edit_mode','builder'),
(1419,239,'_elementor_template_type','wp-page'),
(1420,239,'_elementor_version','3.1.4'),
(1421,239,'_elementor_pro_version','3.2.1'),
(1422,239,'_wp_page_template','elementor_header_footer'),
(1423,239,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1424,239,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1425,240,'_elementor_edit_mode','builder'),
(1426,240,'_elementor_template_type','wp-page'),
(1427,240,'_elementor_version','3.1.4'),
(1428,240,'_elementor_pro_version','3.2.1'),
(1429,240,'_wp_page_template','elementor_header_footer'),
(1430,240,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpcx_postmeta` VALUES
(1431,240,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1432,241,'_elementor_edit_mode','builder'),
(1433,241,'_elementor_template_type','wp-page'),
(1434,241,'_elementor_version','3.1.4'),
(1435,241,'_elementor_pro_version','3.2.1'),
(1436,241,'_wp_page_template','elementor_header_footer'),
(1437,241,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1438,241,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1443,242,'_wp_attached_file','2021/03/CR-Banner-2-3.png'),
(1444,242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2021/03/CR-Banner-2-3.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"CR-Banner-2-3-300x46.png\";s:5:\"width\";i:300;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"CR-Banner-2-3-1024x158.png\";s:5:\"width\";i:1024;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-3-768x118.png\";s:5:\"width\";i:768;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"CR-Banner-2-3-324x200.png\";s:5:\"width\";i:324;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"CR-Banner-2-3-416x64.png\";s:5:\"width\";i:416;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-3-324x200.png\";s:5:\"width\";i:324;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"CR-Banner-2-3-416x64.png\";s:5:\"width\";i:416;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"CR-Banner-2-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1463,245,'_elementor_edit_mode','builder'),
(1464,245,'_elementor_template_type','kit'),
(1465,245,'_elementor_version','3.1.4'),
(1466,245,'_elementor_pro_version','3.2.1'),
(1467,245,'_elementor_page_settings','a:20:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:23:\"body_background_color_b\";s:7:\"#7DECFF\";s:28:\"body_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:75;s:5:\"sizes\";a:0:{}}s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:9:\"#17D6D9ED\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:9:\"site_logo\";a:2:{s:3:\"url\";s:66:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1.png\";s:2:\"id\";i:210;}s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}}'),
(1468,245,'_wp_page_template','default'),
(1469,245,'_elementor_data','[]'),
(1475,246,'_menu_item_type','taxonomy'),
(1476,246,'_menu_item_menu_item_parent','256'),
(1477,246,'_menu_item_object_id','27'),
(1478,246,'_menu_item_object','product_cat'),
(1479,246,'_menu_item_target',''),
(1480,246,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1481,246,'_menu_item_xfn',''),
(1482,246,'_menu_item_url',''),
(1484,247,'_menu_item_type','taxonomy'),
(1485,247,'_menu_item_menu_item_parent','0'),
(1486,247,'_menu_item_object_id','25'),
(1487,247,'_menu_item_object','product_cat'),
(1488,247,'_menu_item_target',''),
(1489,247,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1490,247,'_menu_item_xfn',''),
(1491,247,'_menu_item_url',''),
(1492,247,'_menu_item_orphaned','1617110398'),
(1493,248,'_menu_item_type','taxonomy'),
(1494,248,'_menu_item_menu_item_parent','256'),
(1495,248,'_menu_item_object_id','41'),
(1496,248,'_menu_item_object','product_cat'),
(1497,248,'_menu_item_target',''),
(1498,248,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1499,248,'_menu_item_xfn',''),
(1500,248,'_menu_item_url',''),
(1502,249,'_menu_item_type','taxonomy'),
(1503,249,'_menu_item_menu_item_parent','256'),
(1504,249,'_menu_item_object_id','42'),
(1505,249,'_menu_item_object','product_cat'),
(1506,249,'_menu_item_target',''),
(1507,249,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1508,249,'_menu_item_xfn',''),
(1509,249,'_menu_item_url',''),
(1520,251,'_menu_item_type','taxonomy'),
(1521,251,'_menu_item_menu_item_parent','0'),
(1522,251,'_menu_item_object_id','24'),
(1523,251,'_menu_item_object','product_cat'),
(1524,251,'_menu_item_target',''),
(1525,251,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1526,251,'_menu_item_xfn',''),
(1527,251,'_menu_item_url',''),
(1528,251,'_menu_item_orphaned','1617110398'),
(1529,252,'_menu_item_type','taxonomy'),
(1530,252,'_menu_item_menu_item_parent','256'),
(1531,252,'_menu_item_object_id','43'),
(1532,252,'_menu_item_object','product_cat'),
(1533,252,'_menu_item_target',''),
(1534,252,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1535,252,'_menu_item_xfn',''),
(1536,252,'_menu_item_url',''),
(1538,253,'_menu_item_type','taxonomy'),
(1539,253,'_menu_item_menu_item_parent','0'),
(1540,253,'_menu_item_object_id','26'),
(1541,253,'_menu_item_object','product_cat'),
(1542,253,'_menu_item_target',''),
(1543,253,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1544,253,'_menu_item_xfn',''),
(1545,253,'_menu_item_url',''),
(1547,254,'_menu_item_type','taxonomy'),
(1548,254,'_menu_item_menu_item_parent','0'),
(1549,254,'_menu_item_object_id','44'),
(1550,254,'_menu_item_object','product_cat'),
(1551,254,'_menu_item_target',''),
(1552,254,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1553,254,'_menu_item_xfn',''),
(1554,254,'_menu_item_url',''),
(1556,255,'_menu_item_type','taxonomy'),
(1557,255,'_menu_item_menu_item_parent','0'),
(1558,255,'_menu_item_object_id','46'),
(1559,255,'_menu_item_object','product_cat'),
(1560,255,'_menu_item_target',''),
(1561,255,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1562,255,'_menu_item_xfn',''),
(1563,255,'_menu_item_url',''),
(1565,256,'_menu_item_type','taxonomy'),
(1566,256,'_menu_item_menu_item_parent','0'),
(1567,256,'_menu_item_object_id','47'),
(1568,256,'_menu_item_object','product_cat'),
(1569,256,'_menu_item_target',''),
(1570,256,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1571,256,'_menu_item_xfn',''),
(1572,256,'_menu_item_url',''),
(1574,257,'_menu_item_type','taxonomy'),
(1575,257,'_menu_item_menu_item_parent','0'),
(1576,257,'_menu_item_object_id','24'),
(1577,257,'_menu_item_object','product_cat'),
(1578,257,'_menu_item_target',''),
(1579,257,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1580,257,'_menu_item_xfn',''),
(1581,257,'_menu_item_url',''),
(1583,258,'_menu_item_type','taxonomy'),
(1584,258,'_menu_item_menu_item_parent','257'),
(1585,258,'_menu_item_object_id','56'),
(1586,258,'_menu_item_object','product_cat'),
(1587,258,'_menu_item_target',''),
(1588,258,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1589,258,'_menu_item_xfn',''),
(1590,258,'_menu_item_url',''),
(1592,259,'_menu_item_type','taxonomy'),
(1593,259,'_menu_item_menu_item_parent','257'),
(1594,259,'_menu_item_object_id','53'),
(1595,259,'_menu_item_object','product_cat'),
(1596,259,'_menu_item_target',''),
(1597,259,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1598,259,'_menu_item_xfn',''),
(1599,259,'_menu_item_url',''),
(1601,260,'_menu_item_type','taxonomy'),
(1602,260,'_menu_item_menu_item_parent','257'),
(1603,260,'_menu_item_object_id','54'),
(1604,260,'_menu_item_object','product_cat'),
(1605,260,'_menu_item_target',''),
(1606,260,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1607,260,'_menu_item_xfn',''),
(1608,260,'_menu_item_url',''),
(1610,261,'_menu_item_type','taxonomy'),
(1611,261,'_menu_item_menu_item_parent','257'),
(1612,261,'_menu_item_object_id','55'),
(1613,261,'_menu_item_object','product_cat'),
(1614,261,'_menu_item_target',''),
(1615,261,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1616,261,'_menu_item_xfn',''),
(1617,261,'_menu_item_url',''),
(1619,262,'_menu_item_type','taxonomy'),
(1620,262,'_menu_item_menu_item_parent','204'),
(1621,262,'_menu_item_object_id','56'),
(1622,262,'_menu_item_object','product_cat'),
(1623,262,'_menu_item_target',''),
(1624,262,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1625,262,'_menu_item_xfn',''),
(1626,262,'_menu_item_url',''),
(1628,263,'_menu_item_type','taxonomy'),
(1629,263,'_menu_item_menu_item_parent','204'),
(1630,263,'_menu_item_object_id','53'),
(1631,263,'_menu_item_object','product_cat'),
(1632,263,'_menu_item_target',''),
(1633,263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1634,263,'_menu_item_xfn',''),
(1635,263,'_menu_item_url',''),
(1637,264,'_menu_item_type','taxonomy'),
(1638,264,'_menu_item_menu_item_parent','204'),
(1639,264,'_menu_item_object_id','54'),
(1640,264,'_menu_item_object','product_cat'),
(1641,264,'_menu_item_target',''),
(1642,264,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1643,264,'_menu_item_xfn',''),
(1644,264,'_menu_item_url',''),
(1646,265,'_menu_item_type','taxonomy'),
(1647,265,'_menu_item_menu_item_parent','204'),
(1648,265,'_menu_item_object_id','55'),
(1649,265,'_menu_item_object','product_cat'),
(1650,265,'_menu_item_target',''),
(1651,265,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1652,265,'_menu_item_xfn',''),
(1653,265,'_menu_item_url',''),
(1655,266,'_menu_item_type','taxonomy'),
(1656,266,'_menu_item_menu_item_parent','253'),
(1657,266,'_menu_item_object_id','56'),
(1658,266,'_menu_item_object','product_cat'),
(1659,266,'_menu_item_target',''),
(1660,266,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1661,266,'_menu_item_xfn',''),
(1662,266,'_menu_item_url',''),
(1664,267,'_menu_item_type','taxonomy'),
(1665,267,'_menu_item_menu_item_parent','253'),
(1666,267,'_menu_item_object_id','53'),
(1667,267,'_menu_item_object','product_cat'),
(1668,267,'_menu_item_target',''),
(1669,267,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1670,267,'_menu_item_xfn',''),
(1671,267,'_menu_item_url',''),
(1673,268,'_menu_item_type','taxonomy'),
(1674,268,'_menu_item_menu_item_parent','253'),
(1675,268,'_menu_item_object_id','54'),
(1676,268,'_menu_item_object','product_cat'),
(1677,268,'_menu_item_target',''),
(1678,268,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1679,268,'_menu_item_xfn',''),
(1680,268,'_menu_item_url',''),
(1682,269,'_menu_item_type','taxonomy'),
(1683,269,'_menu_item_menu_item_parent','253'),
(1684,269,'_menu_item_object_id','55'),
(1685,269,'_menu_item_object','product_cat'),
(1686,269,'_menu_item_target',''),
(1687,269,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1688,269,'_menu_item_xfn',''),
(1689,269,'_menu_item_url',''),
(1691,270,'_menu_item_type','taxonomy'),
(1692,270,'_menu_item_menu_item_parent','254'),
(1693,270,'_menu_item_object_id','56'),
(1694,270,'_menu_item_object','product_cat'),
(1695,270,'_menu_item_target',''),
(1696,270,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1697,270,'_menu_item_xfn',''),
(1698,270,'_menu_item_url',''),
(1700,271,'_menu_item_type','taxonomy'),
(1701,271,'_menu_item_menu_item_parent','254'),
(1702,271,'_menu_item_object_id','53'),
(1703,271,'_menu_item_object','product_cat'),
(1704,271,'_menu_item_target',''),
(1705,271,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1706,271,'_menu_item_xfn',''),
(1707,271,'_menu_item_url',''),
(1709,272,'_menu_item_type','taxonomy'),
(1710,272,'_menu_item_menu_item_parent','254'),
(1711,272,'_menu_item_object_id','55'),
(1712,272,'_menu_item_object','product_cat'),
(1713,272,'_menu_item_target',''),
(1714,272,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1715,272,'_menu_item_xfn',''),
(1716,272,'_menu_item_url',''),
(1718,273,'_menu_item_type','taxonomy'),
(1719,273,'_menu_item_menu_item_parent','254'),
(1720,273,'_menu_item_object_id','54'),
(1721,273,'_menu_item_object','product_cat'),
(1722,273,'_menu_item_target',''),
(1723,273,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1724,273,'_menu_item_xfn',''),
(1725,273,'_menu_item_url',''),
(1727,274,'_menu_item_type','taxonomy'),
(1728,274,'_menu_item_menu_item_parent','249'),
(1729,274,'_menu_item_object_id','56'),
(1730,274,'_menu_item_object','product_cat'),
(1731,274,'_menu_item_target',''),
(1732,274,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1733,274,'_menu_item_xfn',''),
(1734,274,'_menu_item_url',''),
(1736,275,'_menu_item_type','taxonomy'),
(1737,275,'_menu_item_menu_item_parent','249'),
(1738,275,'_menu_item_object_id','53'),
(1739,275,'_menu_item_object','product_cat'),
(1740,275,'_menu_item_target',''),
(1741,275,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1742,275,'_menu_item_xfn',''),
(1743,275,'_menu_item_url',''),
(1745,276,'_menu_item_type','taxonomy'),
(1746,276,'_menu_item_menu_item_parent','249'),
(1747,276,'_menu_item_object_id','54'),
(1748,276,'_menu_item_object','product_cat'),
(1749,276,'_menu_item_target',''),
(1750,276,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1751,276,'_menu_item_xfn',''),
(1752,276,'_menu_item_url',''),
(1754,277,'_menu_item_type','taxonomy'),
(1755,277,'_menu_item_menu_item_parent','249'),
(1756,277,'_menu_item_object_id','55'),
(1757,277,'_menu_item_object','product_cat'),
(1758,277,'_menu_item_target',''),
(1759,277,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1760,277,'_menu_item_xfn',''),
(1761,277,'_menu_item_url',''),
(1763,278,'_menu_item_type','taxonomy'),
(1764,278,'_menu_item_menu_item_parent','248'),
(1765,278,'_menu_item_object_id','56'),
(1766,278,'_menu_item_object','product_cat'),
(1767,278,'_menu_item_target',''),
(1768,278,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1769,278,'_menu_item_xfn',''),
(1770,278,'_menu_item_url',''),
(1772,279,'_menu_item_type','taxonomy'),
(1773,279,'_menu_item_menu_item_parent','248'),
(1774,279,'_menu_item_object_id','53'),
(1775,279,'_menu_item_object','product_cat'),
(1776,279,'_menu_item_target',''),
(1777,279,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1778,279,'_menu_item_xfn',''),
(1779,279,'_menu_item_url',''),
(1781,280,'_menu_item_type','taxonomy'),
(1782,280,'_menu_item_menu_item_parent','248'),
(1783,280,'_menu_item_object_id','54'),
(1784,280,'_menu_item_object','product_cat'),
(1785,280,'_menu_item_target',''),
(1786,280,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1787,280,'_menu_item_xfn',''),
(1788,280,'_menu_item_url',''),
(1790,281,'_menu_item_type','taxonomy'),
(1791,281,'_menu_item_menu_item_parent','248'),
(1792,281,'_menu_item_object_id','55'),
(1793,281,'_menu_item_object','product_cat'),
(1794,281,'_menu_item_target',''),
(1795,281,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1796,281,'_menu_item_xfn',''),
(1797,281,'_menu_item_url',''),
(1799,282,'_menu_item_type','taxonomy'),
(1800,282,'_menu_item_menu_item_parent','246'),
(1801,282,'_menu_item_object_id','56'),
(1802,282,'_menu_item_object','product_cat'),
(1803,282,'_menu_item_target',''),
(1804,282,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1805,282,'_menu_item_xfn',''),
(1806,282,'_menu_item_url',''),
(1808,283,'_menu_item_type','taxonomy'),
(1809,283,'_menu_item_menu_item_parent','246'),
(1810,283,'_menu_item_object_id','53'),
(1811,283,'_menu_item_object','product_cat'),
(1812,283,'_menu_item_target',''),
(1813,283,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1814,283,'_menu_item_xfn',''),
(1815,283,'_menu_item_url',''),
(1817,284,'_menu_item_type','taxonomy'),
(1818,284,'_menu_item_menu_item_parent','246'),
(1819,284,'_menu_item_object_id','54'),
(1820,284,'_menu_item_object','product_cat'),
(1821,284,'_menu_item_target',''),
(1822,284,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1823,284,'_menu_item_xfn',''),
(1824,284,'_menu_item_url',''),
(1826,285,'_menu_item_type','taxonomy'),
(1827,285,'_menu_item_menu_item_parent','246'),
(1828,285,'_menu_item_object_id','55'),
(1829,285,'_menu_item_object','product_cat'),
(1830,285,'_menu_item_target',''),
(1831,285,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1832,285,'_menu_item_xfn',''),
(1833,285,'_menu_item_url',''),
(1835,286,'_menu_item_type','taxonomy'),
(1836,286,'_menu_item_menu_item_parent','252'),
(1837,286,'_menu_item_object_id','56'),
(1838,286,'_menu_item_object','product_cat'),
(1839,286,'_menu_item_target',''),
(1840,286,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1841,286,'_menu_item_xfn',''),
(1842,286,'_menu_item_url',''),
(1844,287,'_menu_item_type','taxonomy'),
(1845,287,'_menu_item_menu_item_parent','252'),
(1846,287,'_menu_item_object_id','53'),
(1847,287,'_menu_item_object','product_cat'),
(1848,287,'_menu_item_target',''),
(1849,287,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1850,287,'_menu_item_xfn',''),
(1851,287,'_menu_item_url',''),
(1853,288,'_menu_item_type','taxonomy'),
(1854,288,'_menu_item_menu_item_parent','252'),
(1855,288,'_menu_item_object_id','54'),
(1856,288,'_menu_item_object','product_cat'),
(1857,288,'_menu_item_target',''),
(1858,288,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1859,288,'_menu_item_xfn',''),
(1860,288,'_menu_item_url',''),
(1862,289,'_menu_item_type','taxonomy'),
(1863,289,'_menu_item_menu_item_parent','252'),
(1864,289,'_menu_item_object_id','55'),
(1865,289,'_menu_item_object','product_cat'),
(1866,289,'_menu_item_target',''),
(1867,289,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1868,289,'_menu_item_xfn',''),
(1869,289,'_menu_item_url',''),
(1871,290,'_menu_item_type','taxonomy'),
(1872,290,'_menu_item_menu_item_parent','255'),
(1873,290,'_menu_item_object_id','56'),
(1874,290,'_menu_item_object','product_cat'),
(1875,290,'_menu_item_target',''),
(1876,290,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1877,290,'_menu_item_xfn',''),
(1878,290,'_menu_item_url',''),
(1880,291,'_menu_item_type','taxonomy'),
(1881,291,'_menu_item_menu_item_parent','255'),
(1882,291,'_menu_item_object_id','53'),
(1883,291,'_menu_item_object','product_cat'),
(1884,291,'_menu_item_target',''),
(1885,291,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1886,291,'_menu_item_xfn',''),
(1887,291,'_menu_item_url',''),
(1889,292,'_menu_item_type','taxonomy'),
(1890,292,'_menu_item_menu_item_parent','255'),
(1891,292,'_menu_item_object_id','54'),
(1892,292,'_menu_item_object','product_cat'),
(1893,292,'_menu_item_target',''),
(1894,292,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1895,292,'_menu_item_xfn',''),
(1896,292,'_menu_item_url',''),
(1898,293,'_menu_item_type','taxonomy'),
(1899,293,'_menu_item_menu_item_parent','255'),
(1900,293,'_menu_item_object_id','55'),
(1901,293,'_menu_item_object','product_cat'),
(1902,293,'_menu_item_target',''),
(1903,293,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1904,293,'_menu_item_xfn',''),
(1905,293,'_menu_item_url',''),
(1907,294,'_elementor_edit_mode','builder'),
(1908,294,'_elementor_template_type','wp-page'),
(1909,294,'_elementor_version','3.1.4'),
(1910,294,'_elementor_pro_version','3.2.1'),
(1911,294,'_wp_page_template','elementor_header_footer'),
(1912,294,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1913,294,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1915,295,'_elementor_edit_mode','builder'),
(1916,295,'_elementor_template_type','wp-page'),
(1917,295,'_elementor_version','3.1.4'),
(1918,295,'_elementor_pro_version','3.2.1'),
(1919,295,'_wp_page_template','elementor_header_footer'),
(1920,295,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1921,295,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-2.png\",\"id\":129},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1923,296,'_elementor_edit_mode','builder'),
(1924,296,'_elementor_template_type','wp-page'),
(1925,296,'_elementor_version','3.1.4'),
(1926,296,'_elementor_pro_version','3.2.1'),
(1927,296,'_wp_page_template','elementor_header_footer'),
(1928,296,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1929,296,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1932,297,'_edit_lock','1617112702:1'),
(1933,297,'_elementor_edit_mode','builder'),
(1934,297,'_elementor_template_type','wp-page'),
(1935,297,'_elementor_version','3.1.4'),
(1936,297,'_elementor_pro_version','3.2.1'),
(1937,299,'_elementor_edit_mode','builder'),
(1938,299,'_elementor_template_type','single-post'),
(1939,299,'_elementor_version','3.1.4'),
(1940,299,'_elementor_pro_version','3.2.1'),
(1941,299,'_wp_page_template','default'),
(1942,299,'_elementor_data','[{\"id\":\"27f895c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"750\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Post Content\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"762e9a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6b8f9f7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a7f060\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(1943,299,'_elementor_controls_usage','a:15:{s:16:\"theme-post-title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:9:\"post-info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:5:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;s:7:\"divider\";i:1;s:14:\"divider_height\";i:1;s:13:\"divider_color\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:1;s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:2;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;s:10:\"icon_align\";i:2;s:4:\"link\";i:2;s:11:\"icon_indent\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:13:\"border_radius\";i:2;s:33:\"button_box_shadow_box_shadow_type\";i:2;s:28:\"button_box_shadow_box_shadow\";i:2;s:12:\"text_padding\";i:1;s:11:\"hover_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:7:{s:8:\"_padding\";i:1;s:6:\"_title\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:4:{s:14:\"_element_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:21:\"_offset_orientation_v\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:6;s:14:\"padding_mobile\";i:3;s:14:\"padding_tablet\";i:2;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:16:\"content_position\";i:3;s:21:\"space_between_widgets\";i:2;s:6:\"_title\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:13:\"content_width\";i:3;s:6:\"height\";i:1;s:13:\"custom_height\";i:2;s:20:\"custom_height_tablet\";i:1;s:6:\"_title\";i:5;s:20:\"custom_height_mobile\";i:1;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:2;s:23:\"background_color_b_stop\";i:2;s:25:\"background_gradient_angle\";i:2;}s:26:\"section_background_overlay\";a:11:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:3;s:27:\"background_overlay_position\";i:3;s:23:\"background_overlay_xpos\";i:2;s:23:\"background_overlay_ypos\";i:2;s:25:\"background_overlay_repeat\";i:3;s:23:\"background_overlay_size\";i:3;s:26:\"background_overlay_opacity\";i:3;s:34:\"background_overlay_position_mobile\";i:1;s:30:\"background_overlay_xpos_mobile\";i:1;s:34:\"background_overlay_position_tablet\";i:1;}s:21:\"section_shape_divider\";a:10:{s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_width\";i:2;s:27:\"shape_divider_bottom_height\";i:2;s:25:\"shape_divider_bottom_flip\";i:2;s:34:\"shape_divider_bottom_height_tablet\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:31:\"shape_divider_top_height_tablet\";i:1;s:22:\"shape_divider_top_flip\";i:1;}s:14:\"section_border\";a:6:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;s:7:\"padding\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:1;s:12:\"space_mobile\";i:1;}}}}s:25:\"theme-post-featured-image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_radius\";i:1;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:12:\"align_mobile\";i:1;s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:6;s:12:\"align_mobile\";i:6;s:5:\"align\";i:4;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:22:\"typography_line_height\";i:4;s:27:\"typography_font_size_tablet\";i:4;s:27:\"typography_font_size_mobile\";i:5;s:25:\"typography_text_transform\";i:6;s:29:\"typography_line_height_mobile\";i:3;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:6:{s:27:\"motion_fx_translateY_effect\";i:3;s:26:\"motion_fx_translateY_speed\";i:3;s:34:\"motion_fx_translateY_affectedRange\";i:3;s:24:\"motion_fx_opacity_effect\";i:3;s:23:\"motion_fx_opacity_range\";i:3;s:17:\"motion_fx_devices\";i:3;}}}}s:13:\"share-buttons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:23:\"section_buttons_content\";a:5:{s:13:\"share_buttons\";i:1;s:4:\"view\";i:1;s:4:\"skin\";i:1;s:9:\"alignment\";i:1;s:16:\"alignment_mobile\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_buttons_style\";a:8:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"button_size\";i:1;s:9:\"icon_size\";i:1;s:12:\"color_source\";i:1;s:13:\"primary_color\";i:1;s:15:\"secondary_color\";i:1;s:21:\"secondary_color_hover\";i:1;}}}}s:18:\"theme-post-content\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:5:{s:11:\"button_size\";i:1;s:12:\"button_width\";i:1;s:17:\"button_icon_align\";i:1;s:18:\"button_icon_indent\";i:1;s:20:\"selected_button_icon\";i:1;}s:20:\"section_form_options\";a:1:{s:13:\"error_message\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:3:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:9:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:33:\"field_typography_font_size_tablet\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;s:18:\"field_border_width\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:19:\"button_text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:15:\"post-navigation\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:5:\"style\";a:4:{s:11:\"label_style\";a:4:{s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:26:\"label_typography_font_size\";i:1;}s:11:\"title_style\";a:5:{s:10:\"text_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;}s:11:\"arrow_style\";a:3:{s:11:\"arrow_color\";i:1;s:10:\"arrow_size\";i:1;s:13:\"arrow_padding\";i:1;}s:21:\"borders_section_style\";a:3:{s:9:\"sep_color\";i:1;s:13:\"borders_width\";i:1;s:15:\"borders_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}s:7:\"content\";a:1:{s:31:\"section_post_navigation_content\";a:1:{s:5:\"arrow\";i:1;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:15:\"classic_columns\";i:1;s:22:\"classic_posts_per_page\";i:1;s:5:\"_skin\";i:1;s:13:\"cards_columns\";i:1;s:20:\"cards_posts_per_page\";i:1;s:16:\"cards_item_ratio\";i:1;s:15:\"cards_meta_data\";i:1;s:20:\"cards_show_read_more\";i:1;s:17:\"cards_show_avatar\";i:1;}s:13:\"section_query\";a:1:{s:13:\"posts_include\";i:1;}}s:5:\"style\";a:6:{s:24:\"section_pagination_style\";a:3:{s:16:\"pagination_color\";i:1;s:22:\"pagination_hover_color\";i:1;s:23:\"pagination_active_color\";i:1;}s:29:\"classic_section_design_layout\";a:1:{s:17:\"classic_alignment\";i:1;}s:27:\"cards_section_design_layout\";a:2:{s:13:\"cards_row_gap\";i:1;s:15:\"cards_alignment\";i:1;}s:25:\"cards_section_design_card\";a:2:{s:24:\"cards_card_border_radius\";i:1;s:18:\"cards_card_padding\";i:1;}s:26:\"cards_section_design_image\";a:9:{s:19:\"cards_image_spacing\";i:1;s:20:\"cards_badge_position\";i:1;s:20:\"cards_badge_bg_color\";i:1;s:18:\"cards_badge_radius\";i:1;s:16:\"cards_badge_size\";i:1;s:18:\"cards_badge_margin\";i:1;s:33:\"cards_badge_typography_typography\";i:1;s:34:\"cards_badge_typography_font_family\";i:1;s:37:\"cards_badge_typography_text_transform\";i:1;}s:28:\"cards_section_design_content\";a:16:{s:17:\"cards_title_color\";i:1;s:33:\"cards_title_typography_typography\";i:1;s:34:\"cards_title_typography_font_family\";i:1;s:32:\"cards_title_typography_font_size\";i:1;s:37:\"cards_title_typography_text_transform\";i:1;s:34:\"cards_title_typography_line_height\";i:1;s:16:\"cards_meta_color\";i:1;s:26:\"cards_meta_separator_color\";i:1;s:32:\"cards_meta_typography_typography\";i:1;s:33:\"cards_meta_typography_font_family\";i:1;s:31:\"cards_meta_typography_font_size\";i:1;s:35:\"cards_excerpt_typography_typography\";i:1;s:36:\"cards_excerpt_typography_font_family\";i:1;s:34:\"cards_excerpt_typography_font_size\";i:1;s:21:\"cards_excerpt_spacing\";i:1;s:23:\"cards_read_more_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_radius\";i:1;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}s:17:\"_section_position\";a:3:{s:21:\"_element_custom_width\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}s:15:\"section_effects\";a:6:{s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:27:\"motion_fx_translateY_effect\";i:1;s:30:\"motion_fx_translateY_direction\";i:1;s:26:\"motion_fx_translateY_speed\";i:1;s:17:\"motion_fx_devices\";i:1;s:34:\"motion_fx_translateY_affectedRange\";i:1;}}}}}'),
(1944,299,'_elementor_conditions','a:1:{i:0;s:16:\"include/singular\";}'),
(1949,300,'_menu_item_type','post_type'),
(1950,300,'_menu_item_menu_item_parent','0'),
(1951,300,'_menu_item_object_id','29'),
(1952,300,'_menu_item_object','page'),
(1953,300,'_menu_item_target',''),
(1954,300,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1955,300,'_menu_item_xfn',''),
(1956,300,'_menu_item_url',''),
(1958,297,'_wp_trash_meta_status','draft'),
(1959,297,'_wp_trash_meta_time','1617114177'),
(1960,297,'_wp_desired_post_slug',''),
(1961,301,'_elementor_edit_mode','builder'),
(1962,301,'_elementor_template_type','kit'),
(1963,301,'_elementor_version','3.1.4'),
(1964,301,'_elementor_pro_version','3.2.1'),
(1965,301,'_elementor_page_settings','a:19:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:23:\"body_background_color_b\";s:7:\"#7DECFF\";s:28:\"body_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:88;s:5:\"sizes\";a:0:{}}s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:9:\"#17D6D9ED\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}}'),
(1966,301,'_wp_page_template','default'),
(1967,301,'_elementor_data','[]'),
(1969,302,'_elementor_edit_mode','builder'),
(1970,302,'_elementor_template_type','wp-page'),
(1971,302,'_elementor_version','3.1.4'),
(1972,302,'_elementor_pro_version','3.2.1'),
(1973,302,'_wp_page_template','elementor_header_footer'),
(1974,302,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1975,302,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1976,303,'_elementor_edit_mode','builder'),
(1977,303,'_elementor_template_type','wp-page'),
(1978,303,'_elementor_version','3.1.4'),
(1979,303,'_elementor_pro_version','3.2.1'),
(1980,303,'_wp_page_template','elementor_header_footer'),
(1981,303,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1982,303,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1983,304,'_elementor_edit_mode','builder'),
(1984,304,'_elementor_template_type','wp-page'),
(1985,304,'_elementor_version','3.1.4'),
(1986,304,'_elementor_pro_version','3.2.1'),
(1987,304,'_wp_page_template','elementor_header_footer'),
(1988,304,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(1989,304,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(1999,306,'_elementor_edit_mode','builder'),
(2000,306,'_elementor_template_type','header'),
(2001,306,'_elementor_version','3.1.4'),
(2002,306,'_elementor_pro_version','3.2.1'),
(2003,306,'_wp_page_template','default'),
(2004,306,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"30\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":20,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"866f14e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_mobile\":\"top\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[{\"id\":\"3e1c325\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"alignment\":\"right\",\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"toggle_icon_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"toggle_button_padding_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"items_indicator_distance\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"space_between_buttons\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"},{\"id\":\"e42cb0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Now\",\"align_mobile\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),
(2005,306,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2011,307,'_elementor_edit_mode','builder'),
(2012,307,'_elementor_template_type','header'),
(2013,307,'_elementor_version','3.1.4'),
(2014,307,'_elementor_pro_version','3.2.1'),
(2015,307,'_wp_page_template','default'),
(2016,307,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"30\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":20,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"866f14e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_mobile\":\"top\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[{\"id\":\"3e1c325\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"alignment\":\"right\",\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"toggle_icon_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"toggle_button_padding_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"items_indicator_distance\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"space_between_buttons\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"},{\"id\":\"e42cb0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Now\",\"align_mobile\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),
(2017,307,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2029,309,'_elementor_edit_mode','builder'),
(2030,309,'_elementor_template_type','wp-page'),
(2031,309,'_elementor_version','3.1.4'),
(2032,309,'_elementor_pro_version','3.2.1'),
(2033,309,'_wp_page_template','elementor_header_footer'),
(2034,309,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2035,309,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2036,310,'_elementor_edit_mode','builder'),
(2037,310,'_elementor_template_type','wp-page'),
(2038,310,'_elementor_version','3.1.4'),
(2039,310,'_elementor_pro_version','3.2.1'),
(2040,310,'_wp_page_template','elementor_header_footer'),
(2041,310,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2042,310,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2043,311,'_elementor_edit_mode','builder'),
(2044,311,'_elementor_template_type','wp-page'),
(2045,311,'_elementor_version','3.1.4'),
(2046,311,'_elementor_pro_version','3.2.1'),
(2047,311,'_wp_page_template','elementor_header_footer'),
(2048,311,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2049,311,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2051,312,'_elementor_edit_mode','builder'),
(2052,312,'_elementor_template_type','header'),
(2053,312,'_elementor_version','3.1.4'),
(2054,312,'_elementor_pro_version','3.2.1'),
(2055,312,'_wp_page_template','default'),
(2056,312,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.368999999999999772626324556767940521240234375,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":56.1520000000000010231815394945442676544189453125,\"_inline_size_mobile\":20,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"866f14e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.382999999999999118927007657475769519805908203125,\"_inline_size_mobile\":50,\"content_position_mobile\":\"top\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[{\"id\":\"e42cb0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Now\",\"align_mobile\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"eba9e77\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":8.0050000000000007815970093361102044582366943359375},\"elements\":[{\"id\":\"3e1c325\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"alignment\":\"right\",\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"toggle_icon_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"toggle_button_padding_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"items_indicator_distance\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"space_between_buttons\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(2057,312,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2059,313,'_elementor_edit_mode','builder'),
(2060,313,'_elementor_template_type','wp-page'),
(2061,313,'_elementor_version','3.1.4'),
(2062,313,'_elementor_pro_version','3.2.1'),
(2063,313,'_wp_page_template','elementor_header_footer'),
(2064,313,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2065,313,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2066,314,'_elementor_edit_mode','builder'),
(2067,314,'_elementor_template_type','wp-page'),
(2068,314,'_elementor_version','3.1.4'),
(2069,314,'_elementor_pro_version','3.2.1'),
(2070,314,'_wp_page_template','elementor_header_footer'),
(2071,314,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2072,314,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":22},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2073,315,'_elementor_edit_mode','builder'),
(2074,315,'_elementor_template_type','wp-page'),
(2075,315,'_elementor_version','3.1.4'),
(2076,315,'_elementor_pro_version','3.2.1'),
(2077,315,'_wp_page_template','elementor_header_footer'),
(2078,315,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2079,315,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2091,317,'_elementor_edit_mode','builder'),
(2092,317,'_elementor_template_type','header'),
(2093,317,'_elementor_version','3.1.4'),
(2094,317,'_elementor_pro_version','3.2.1'),
(2095,317,'_wp_page_template','default'),
(2096,317,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.368999999999999772626324556767940521240234375,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":56.1520000000000010231815394945442676544189453125,\"_inline_size_mobile\":20,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"866f14e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10.382999999999999118927007657475769519805908203125,\"_inline_size_mobile\":50,\"content_position_mobile\":\"top\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[{\"id\":\"e42cb0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Now\",\"align_mobile\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"eba9e77\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":8.0050000000000007815970093361102044582366943359375},\"elements\":[{\"id\":\"3e1c325\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"toggle_icon_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"toggle_button_padding_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"items_indicator_distance\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"space_between_buttons\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_element_width_mobile\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"-19\",\"bottom\":\"-19\",\"left\":\"-19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(2097,317,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2100,318,'_elementor_edit_mode','builder'),
(2101,318,'_elementor_template_type','header'),
(2102,318,'_elementor_version','3.1.4'),
(2103,318,'_elementor_pro_version','3.2.1'),
(2104,318,'_wp_page_template','default'),
(2105,318,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":61.24499999999999744204615126363933086395263671875,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"-16\",\"bottom\":\"-16\",\"left\":\"-16\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"866f14e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":4.55299999999999993605115378159098327159881591796875,\"_inline_size_mobile\":50,\"content_position_mobile\":\"top\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[{\"id\":\"e42cb0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop\",\"align_mobile\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"eba9e77\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":8.5220000000000002415845301584340631961822509765625},\"elements\":[{\"id\":\"3e1c325\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"toggle_icon_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"toggle_button_padding_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"items_indicator_distance\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"space_between_buttons\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_element_width_mobile\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"-19\",\"bottom\":\"-19\",\"left\":\"-19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(2106,318,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2108,319,'_elementor_edit_mode','builder'),
(2109,319,'_elementor_template_type','header'),
(2110,319,'_elementor_version','3.1.4'),
(2111,319,'_elementor_pro_version','3.2.1'),
(2112,319,'_wp_page_template','default'),
(2113,319,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.368999999999999772626324556767940521240234375,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":58.36500000000000198951966012828052043914794921875,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"866f14e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":7.65299999999999958077978590154089033603668212890625,\"_inline_size_mobile\":50,\"content_position_mobile\":\"top\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[{\"id\":\"e42cb0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop\",\"align_mobile\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"eba9e77\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":8.5220000000000002415845301584340631961822509765625},\"elements\":[{\"id\":\"3e1c325\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"toggle_icon_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"toggle_button_padding_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"items_indicator_distance\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"space_between_buttons\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_element_width_mobile\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"-19\",\"bottom\":\"-19\",\"left\":\"-19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(2114,319,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2116,320,'_elementor_edit_mode','builder'),
(2117,320,'_elementor_template_type','header'),
(2118,320,'_elementor_version','3.1.4'),
(2119,320,'_elementor_pro_version','3.2.1'),
(2120,320,'_wp_page_template','default'),
(2121,320,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.617000000000000881072992342524230480194091796875,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"size\":\"small\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":46.18500000000000227373675443232059478759765625,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"866f14e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":12.803000000000000824229573481716215610504150390625,\"_inline_size_mobile\":50,\"content_position_mobile\":\"top\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[{\"id\":\"e42cb0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Now\",\"align_mobile\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"eba9e77\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":12.2539999999999995594635038287378847599029541015625},\"elements\":[{\"id\":\"3e1c325\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"toggle_icon_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"toggle_button_padding_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"items_indicator_distance\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"space_between_buttons\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_element_width_mobile\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"-19\",\"bottom\":\"-19\",\"left\":\"-19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(2122,320,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2124,321,'_elementor_edit_mode','builder'),
(2125,321,'_elementor_template_type','header'),
(2126,321,'_elementor_version','3.1.4'),
(2127,321,'_elementor_pro_version','3.2.1'),
(2128,321,'_wp_page_template','default'),
(2129,321,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"30\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"size\":\"small\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.99499999999999744204615126363933086395263671875,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"866f14e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10.19200000000000017053025658242404460906982421875,\"_inline_size_mobile\":50,\"content_position_mobile\":\"top\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[{\"id\":\"e42cb0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop\",\"align_mobile\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"-16\",\"bottom\":\"-16\",\"left\":\"-16\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"-18\",\"bottom\":\"-18\",\"left\":\"-18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fde28bd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829d050\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e11b953\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"toggle_button_border_radius\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"toggle_icon_size\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"toggle_button_padding\":{\"unit\":\"em\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(2130,321,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2140,323,'_elementor_edit_mode','builder'),
(2141,323,'_elementor_template_type','header'),
(2142,323,'_elementor_version','3.1.4'),
(2143,323,'_elementor_pro_version','3.2.1'),
(2144,323,'_wp_page_template','default'),
(2145,323,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"size\":\"small\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":44.7289999999999992041921359486877918243408203125,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"e9af8ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":7.8940000000000001278976924368180334568023681640625},\"elements\":[{\"id\":\"b3e3391\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":7.37699999999999977973175191436894237995147705078125},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"12f5c14\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"9539aa6\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Quicksand\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_typography_font_weight\":\"400\",\"input_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"input_border_color\":\"#605E69\",\"input_box_shadow_box_shadow_type\":\"yes\",\"input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":100,\"spread\":0,\"color\":\"rgba(232.5, 227.603499227652, 146.42165540612262, 0.5)\"},\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"-20\",\"bottom\":\"-20\",\"left\":\"-20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2146,323,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2156,325,'_elementor_edit_mode','builder'),
(2157,325,'_elementor_template_type','kit'),
(2158,325,'_elementor_version','3.1.4'),
(2159,325,'_elementor_pro_version','3.2.1'),
(2160,325,'_elementor_page_settings','a:17:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:23:\"body_background_color_b\";s:7:\"#FFFFF1\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:7:\"#FFFFF1\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}}'),
(2161,325,'_wp_page_template','default'),
(2162,325,'_elementor_data','[]'),
(2164,326,'_elementor_edit_mode','builder'),
(2165,326,'_elementor_template_type','kit'),
(2166,326,'_elementor_version','3.1.4'),
(2167,326,'_elementor_pro_version','3.2.1'),
(2168,326,'_elementor_page_settings','a:18:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:23:\"body_background_color_b\";s:7:\"#F2FF8B\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:7:\"#FFFFA7\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:76;s:5:\"sizes\";a:0:{}}}'),
(2169,326,'_wp_page_template','default'),
(2170,326,'_elementor_data','[]'),
(2171,327,'_elementor_edit_mode','builder'),
(2172,327,'_elementor_template_type','wp-page'),
(2173,327,'_elementor_version','3.1.4'),
(2174,327,'_elementor_pro_version','3.2.1'),
(2175,327,'_wp_page_template','elementor_header_footer'),
(2176,327,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2177,327,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2178,328,'_elementor_edit_mode','builder'),
(2179,328,'_elementor_template_type','wp-page'),
(2180,328,'_elementor_version','3.1.4'),
(2181,328,'_elementor_pro_version','3.2.1'),
(2182,328,'_wp_page_template','elementor_header_footer'),
(2183,328,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2184,328,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFB91B\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2185,329,'_elementor_edit_mode','builder'),
(2186,329,'_elementor_template_type','wp-page'),
(2187,329,'_elementor_version','3.1.4'),
(2188,329,'_elementor_pro_version','3.2.1'),
(2189,329,'_wp_page_template','elementor_header_footer'),
(2190,329,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2191,329,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2193,330,'_elementor_edit_mode','builder'),
(2194,330,'_elementor_template_type','header'),
(2195,330,'_elementor_version','3.1.4'),
(2196,330,'_elementor_pro_version','3.2.1'),
(2197,330,'_wp_page_template','default'),
(2198,330,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"size\":\"small\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":44.7289999999999992041921359486877918243408203125,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"e9af8ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":7.8940000000000001278976924368180334568023681640625},\"elements\":[{\"id\":\"b3e3391\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop\",\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#FFFFFF\",\"background_color\":\"#46C220\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":7.37699999999999977973175191436894237995147705078125},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"12f5c14\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"9539aa6\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Quicksand\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_typography_font_weight\":\"400\",\"input_typography_line_height\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"input_border_color\":\"#605E69\",\"input_box_shadow_box_shadow_type\":\"yes\",\"input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":100,\"spread\":0,\"color\":\"rgba(232.5, 227.603499227652, 146.42165540612262, 0.5)\"},\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"-20\",\"bottom\":\"-20\",\"left\":\"-20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2199,330,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2201,331,'_elementor_edit_mode','builder'),
(2202,331,'_elementor_template_type','kit'),
(2203,331,'_elementor_version','3.1.4'),
(2204,331,'_elementor_pro_version','3.2.1'),
(2205,331,'_elementor_page_settings','a:18:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:23:\"body_background_color_b\";s:7:\"#F2FF8B\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:7:\"#FFFFA7\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}}'),
(2206,331,'_wp_page_template','default'),
(2207,331,'_elementor_data','[]'),
(2221,333,'_elementor_edit_mode','builder'),
(2222,333,'_elementor_template_type','wp-page'),
(2223,333,'_elementor_version','3.1.4'),
(2224,333,'_elementor_pro_version','3.2.1'),
(2225,333,'_wp_page_template','elementor_header_footer'),
(2226,333,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2227,333,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2229,334,'_elementor_edit_mode','builder'),
(2230,334,'_elementor_template_type','wp-page'),
(2231,334,'_elementor_version','3.1.4'),
(2232,334,'_elementor_pro_version','3.2.1'),
(2233,334,'_wp_page_template','elementor_header_footer'),
(2234,334,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2235,334,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2237,335,'_elementor_edit_mode','builder'),
(2238,335,'_elementor_template_type','wp-page'),
(2239,335,'_elementor_version','3.1.4'),
(2240,335,'_elementor_pro_version','3.2.1'),
(2241,335,'_wp_page_template','elementor_header_footer'),
(2242,335,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2243,335,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2255,337,'_wp_attached_file','2021/03/DESIGNFORM-Logo.png'),
(2256,337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:175;s:6:\"height\";i:20;s:4:\"file\";s:27:\"2021/03/DESIGNFORM-Logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"DESIGNFORM-Logo-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"DESIGNFORM-Logo-100x20.png\";s:5:\"width\";i:100;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"DESIGNFORM-Logo-100x20.png\";s:5:\"width\";i:100;s:6:\"height\";i:20;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:{}}}'),
(2257,337,'_elementor_source_image_hash','fd99471ca45f84cb2b5307d710dd12da786d629a'),
(2259,338,'_wp_attached_file','2021/03/logo-1-2.png'),
(2260,338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2021/03/logo-1-2.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo-1-2-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:20:\"logo-1-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"logo-1-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"logo-1-2-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"logo-1-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"logo-1-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"logo-1-2-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"logo-1-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2262,339,'_elementor_edit_mode','builder'),
(2263,339,'_elementor_template_type','header'),
(2264,339,'_elementor_version','3.1.4'),
(2265,339,'_elementor_pro_version','3.2.1'),
(2266,339,'_wp_page_template','default'),
(2267,339,'_elementor_data','[{\"id\":\"79d73f27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"125\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"sticky\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#E7E7E7\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"502e3a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":4.0480000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size_mobile\":\"55\"},\"elements\":[{\"id\":\"4b76144e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":338,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/logo-1-2.png\"},\"image_size\":\"thumbnail\",\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"0a8f8e9\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"780f515f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":77.1809999999999973852027324028313159942626953125,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size_mobile\":\"35\"},\"elements\":[{\"id\":\"5b65ea3c\",\"elType\":\"widget\",\"settings\":{\"animation_text\":\"sink\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"},{\"id\":\"23890d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":11.6959999999999997299937604111619293689727783203125,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a05dca7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"245b837\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":7.0359999999999995878852132591418921947479248046875},\"elements\":[{\"id\":\"b85f557\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"alignment\":\"center\",\"toggle_button_padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\"},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":\"\"}]'),
(2268,339,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2270,340,'_elementor_edit_mode','builder'),
(2271,340,'_elementor_template_type','header'),
(2272,340,'_elementor_version','3.1.4'),
(2273,340,'_elementor_pro_version','3.2.1'),
(2274,340,'_wp_page_template','default'),
(2275,340,'_elementor_data','[{\"id\":\"79d73f27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"125\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"40\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":\"\"},\"sticky\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#E7E7E7\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"502e3a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":4.0480000000000000426325641456060111522674560546875,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size_mobile\":\"55\"},\"elements\":[{\"id\":\"4b76144e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":338,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/logo-1-2.png\"},\"image_size\":\"thumbnail\",\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"0a8f8e9\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"\"},{\"id\":\"780f515f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":77.1809999999999973852027324028313159942626953125,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_inline_size_mobile\":\"35\"},\"elements\":[{\"id\":\"5b65ea3c\",\"elType\":\"widget\",\"settings\":{\"animation_text\":\"sink\",\"menu\":\"primary-menu\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":\"\"},{\"id\":\"23890d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":11.6959999999999997299937604111619293689727783203125,\"content_position\":\"center\"},\"elements\":[{\"id\":\"b85f557\",\"elType\":\"widget\",\"settings\":{\"icon\":\"basket-medium\",\"alignment\":\"center\",\"toggle_button_padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\"},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"},{\"id\":\"a05dca7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop now\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"245b837\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":7.0359999999999995878852132591418921947479248046875},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"}]'),
(2276,340,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2286,342,'_elementor_edit_mode','builder'),
(2287,342,'_elementor_template_type','header'),
(2288,342,'_elementor_version','3.1.4'),
(2289,342,'_elementor_pro_version','3.2.1'),
(2290,342,'_wp_page_template','default'),
(2291,342,'_elementor_data','[{\"id\":\"dec1d71\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b6a280d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(2292,342,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2294,343,'_elementor_edit_mode','builder'),
(2295,343,'_elementor_template_type','header'),
(2296,343,'_elementor_version','3.1.4'),
(2297,343,'_elementor_pro_version','3.2.1'),
(2298,343,'_wp_page_template','default'),
(2299,343,'_elementor_data','[{\"id\":\"dec1d71\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b6a280d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(2300,343,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2313,345,'_elementor_edit_mode','builder'),
(2314,345,'_elementor_template_type','header'),
(2315,345,'_elementor_version','3.1.4'),
(2316,345,'_elementor_pro_version','3.2.1'),
(2317,345,'_wp_page_template','default'),
(2318,345,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.071999999999999175770426518283784389495849609375,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"size\":\"small\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":46.04899999999999948840923025272786617279052734375,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"e9af8ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":8.01200000000000045474735088646411895751953125},\"elements\":[{\"id\":\"b3e3391\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop\",\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#FFFFFF\",\"background_color\":\"#46C220\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(2319,345,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2322,346,'_elementor_edit_mode','builder'),
(2323,346,'_elementor_template_type','wp-page'),
(2324,346,'_elementor_version','3.1.4'),
(2325,346,'_elementor_pro_version','3.2.1'),
(2326,346,'_wp_page_template','elementor_header_footer'),
(2327,346,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2328,346,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2330,347,'_elementor_edit_mode','builder'),
(2331,347,'_elementor_template_type','wp-page'),
(2332,347,'_elementor_version','3.1.4'),
(2333,347,'_elementor_pro_version','3.2.1'),
(2334,347,'_wp_page_template','elementor_header_footer'),
(2335,347,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2336,347,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06079f3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5b795d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2e381d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-106,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2338,348,'_elementor_edit_mode','builder'),
(2339,348,'_elementor_template_type','wp-page'),
(2340,348,'_elementor_version','3.1.4'),
(2341,348,'_elementor_pro_version','3.2.1'),
(2342,348,'_wp_page_template','elementor_header_footer'),
(2343,348,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2344,348,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"99f57ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-9.png\",\"id\":36},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":804,\"unit\":\"px\"},\"_offset_y\":{\"size\":-116,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":152,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3602,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2349,349,'_elementor_edit_mode','builder'),
(2350,349,'_elementor_template_type','header'),
(2351,349,'_elementor_version','3.1.4'),
(2352,349,'_elementor_pro_version','3.2.1'),
(2353,349,'_wp_page_template','default'),
(2354,349,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"30\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"size\":\"small\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.9470000000000027284841053187847137451171875,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.99800000000000022026824808563105762004852294921875},\"elements\":[{\"id\":\"b3e3391\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop\",\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#FFFFFF\",\"background_color\":\"#46C220\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(2355,349,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2359,350,'_elementor_edit_mode','builder'),
(2360,350,'_elementor_template_type','wp-page'),
(2361,350,'_elementor_version','3.1.4'),
(2362,350,'_elementor_pro_version','3.2.1'),
(2363,350,'_wp_page_template','elementor_header_footer'),
(2364,350,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2365,350,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"99f57ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-9.png\",\"id\":36},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":804,\"unit\":\"px\"},\"_offset_y\":{\"size\":-116,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":152,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3602,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2367,351,'_elementor_edit_mode','builder'),
(2368,351,'_elementor_template_type','wp-page'),
(2369,351,'_elementor_version','3.1.4'),
(2370,351,'_elementor_pro_version','3.2.1'),
(2371,351,'_wp_page_template','elementor_header_footer'),
(2372,351,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2373,351,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"99f57ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-9.png\",\"id\":36},\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":804,\"unit\":\"px\"},\"_offset_y\":{\"size\":-116,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":152,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3602,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2375,352,'_elementor_edit_mode','builder'),
(2376,352,'_elementor_template_type','wp-page'),
(2377,352,'_elementor_version','3.1.4'),
(2378,352,'_elementor_pro_version','3.2.1'),
(2379,352,'_wp_page_template','elementor_header_footer'),
(2380,352,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2381,352,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":186,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3558,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":187,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2385,353,'_elementor_edit_mode','builder'),
(2386,353,'_elementor_template_type','wp-page'),
(2387,353,'_elementor_version','3.1.4'),
(2388,353,'_elementor_pro_version','3.2.1'),
(2389,353,'_wp_page_template','elementor_header_footer'),
(2390,353,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2391,353,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":186,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3558,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":187,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2393,354,'_elementor_edit_mode','builder'),
(2394,354,'_elementor_template_type','wp-page'),
(2395,354,'_elementor_version','3.1.4'),
(2396,354,'_elementor_pro_version','3.2.1'),
(2397,354,'_wp_page_template','elementor_header_footer'),
(2398,354,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2399,354,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":186,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3558,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":187,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2401,355,'_elementor_edit_mode','builder'),
(2402,355,'_elementor_template_type','wp-page'),
(2403,355,'_elementor_version','3.1.4'),
(2404,355,'_elementor_pro_version','3.2.1'),
(2405,355,'_wp_page_template','elementor_header_footer'),
(2406,355,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2407,355,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":187,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3607,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":187,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2411,356,'_elementor_edit_mode','builder'),
(2412,356,'_elementor_template_type','wp-page'),
(2413,356,'_elementor_version','3.1.4'),
(2414,356,'_elementor_pro_version','3.2.1'),
(2415,356,'_wp_page_template','elementor_header_footer'),
(2416,356,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2417,356,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":187,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3607,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":187,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2419,357,'_elementor_edit_mode','builder'),
(2420,357,'_elementor_template_type','wp-page'),
(2421,357,'_elementor_version','3.1.4'),
(2422,357,'_elementor_pro_version','3.2.1'),
(2423,357,'_wp_page_template','elementor_header_footer'),
(2424,357,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2425,357,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd67440\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35},\"_element_width\":\"initial\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":24,\"unit\":\"px\"},\"_offset_y\":{\"size\":218,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":187,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3607,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":14,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":187,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2427,358,'_elementor_edit_mode','builder'),
(2428,358,'_elementor_template_type','wp-page'),
(2429,358,'_elementor_version','3.1.4'),
(2430,358,'_elementor_pro_version','3.2.1'),
(2431,358,'_wp_page_template','elementor_header_footer'),
(2432,358,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2433,358,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2437,359,'_elementor_edit_mode','builder'),
(2438,359,'_elementor_template_type','header'),
(2439,359,'_elementor_version','3.1.4'),
(2440,359,'_elementor_pro_version','3.2.1'),
(2441,359,'_wp_page_template','default'),
(2442,359,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"1ff02364\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47d43899\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33ed83dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.260000000000001563194018672220408916473388671875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b02e5bb\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image\":{\"id\":\"45\",\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true},{\"id\":\"580df129\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.7399999999999948840923025272786617279052734375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a38f6c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choice Resources.co.uk\",\"header_size\":\"p\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"title_color\":\"#F0800B\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"vw\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"size\":\"small\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":58.070999999999997953636921010911464691162109375,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":8.907000000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"b3e3391\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop\",\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#FFFFFF\",\"background_color\":\"#46C220\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"6febedf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":7.98500000000000031974423109204508364200592041015625},\"elements\":[{\"id\":\"4af397d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-9.png\",\"id\":36}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),
(2443,359,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2455,361,'_wp_attached_file','2021/03/logo-2.png'),
(2456,361,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2021/03/logo-2.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"logo-2-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:18:\"logo-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"logo-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"logo-2-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"logo-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"logo-2-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2457,362,'_wp_attached_file','2021/03/2-1.png'),
(2458,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2021/03/2-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-1-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:15:\"2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"2-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"2-1-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"2-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"2-1-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2459,363,'_elementor_edit_mode','builder'),
(2460,363,'_elementor_template_type','kit'),
(2461,363,'_elementor_version','3.1.4'),
(2462,363,'_elementor_pro_version','3.2.1'),
(2463,363,'_elementor_page_settings','a:18:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:23:\"body_background_color_b\";s:7:\"#F2FF8B\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:7:\"#FFFFA7\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}}'),
(2464,363,'_wp_page_template','default'),
(2465,363,'_elementor_data','[]'),
(2472,364,'_wp_attached_file','2021/03/1-2.png'),
(2473,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2021/03/1-2.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-2-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:15:\"1-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"1-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"1-2-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"1-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"1-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"1-2-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"1-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2475,365,'_elementor_edit_mode','builder'),
(2476,365,'_elementor_template_type','kit'),
(2477,365,'_elementor_version','3.1.4'),
(2478,365,'_elementor_pro_version','3.2.1'),
(2479,365,'_elementor_page_settings','a:19:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:23:\"body_background_color_b\";s:7:\"#F2FF8B\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:7:\"#FFFFA7\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:9:\"site_logo\";a:2:{s:3:\"url\";s:63:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-1.png\";s:2:\"id\";i:362;}}'),
(2480,365,'_wp_page_template','default'),
(2481,365,'_elementor_data','[]'),
(2484,366,'_wp_attached_file','2021/03/1-3.png'),
(2485,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2021/03/1-3.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-3-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:15:\"1-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"1-3-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"1-3-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"1-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"1-3-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"1-3-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"1-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2487,367,'_elementor_edit_mode','builder'),
(2488,367,'_elementor_template_type','kit'),
(2489,367,'_elementor_version','3.1.4'),
(2490,367,'_elementor_pro_version','3.2.1'),
(2491,367,'_elementor_page_settings','a:19:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:23:\"body_background_color_b\";s:7:\"#F2FF8B\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:7:\"#FFFFA7\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:9:\"site_logo\";a:2:{s:3:\"url\";s:63:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-2.png\";s:2:\"id\";i:364;}}'),
(2492,367,'_wp_page_template','default'),
(2493,367,'_elementor_data','[]'),
(2498,368,'_wp_attached_file','2021/03/2-2.png'),
(2499,368,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2021/03/2-2.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-2-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:15:\"2-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"2-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"2-2-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"2-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"2-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"2-2-416x416.png\";s:5:\"width\";i:416;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"2-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2501,369,'_elementor_edit_mode','builder'),
(2502,369,'_elementor_template_type','kit'),
(2503,369,'_elementor_version','3.1.4'),
(2504,369,'_elementor_pro_version','3.2.1'),
(2505,369,'_elementor_page_settings','a:19:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:23:\"body_background_color_b\";s:7:\"#F2FF8B\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:7:\"#FFFFA7\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:9:\"site_logo\";a:2:{s:3:\"url\";s:63:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-3.png\";s:2:\"id\";i:366;}}'),
(2506,369,'_wp_page_template','default'),
(2507,369,'_elementor_data','[]'),
(2510,370,'_elementor_edit_mode','builder'),
(2511,370,'_elementor_template_type','kit'),
(2512,370,'_elementor_version','3.1.4'),
(2513,370,'_elementor_pro_version','3.2.1'),
(2514,370,'_elementor_page_settings','a:19:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:23:\"body_background_color_b\";s:7:\"#F2FF8B\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:7:\"#FFFFA7\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:9:\"site_logo\";a:2:{s:3:\"url\";s:63:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-1.png\";s:2:\"id\";i:362;}}'),
(2515,370,'_wp_page_template','default'),
(2516,370,'_elementor_data','[]'),
(2530,372,'_elementor_edit_mode','builder'),
(2531,372,'_elementor_template_type','wp-page'),
(2532,372,'_elementor_version','3.1.4'),
(2533,372,'_elementor_pro_version','3.2.1'),
(2534,372,'_wp_page_template','elementor_header_footer'),
(2535,372,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2536,372,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2537,373,'_elementor_edit_mode','builder'),
(2538,373,'_elementor_template_type','wp-page'),
(2539,373,'_elementor_version','3.1.4'),
(2540,373,'_elementor_pro_version','3.2.1'),
(2541,373,'_wp_page_template','elementor_header_footer'),
(2542,373,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2543,373,'_elementor_data','[{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":12},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2544,374,'_elementor_edit_mode','builder'),
(2545,374,'_elementor_template_type','wp-page'),
(2546,374,'_elementor_version','3.1.4'),
(2547,374,'_elementor_pro_version','3.2.1'),
(2548,374,'_wp_page_template','elementor_header_footer'),
(2549,374,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2550,374,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2552,375,'_elementor_edit_mode','builder'),
(2553,375,'_elementor_template_type','header'),
(2554,375,'_elementor_version','3.1.4'),
(2555,375,'_elementor_pro_version','3.2.1'),
(2556,375,'_wp_page_template','default'),
(2557,375,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"30\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.4550000000000000710542735760100185871124267578125},\"elements\":[{\"id\":\"d05d39f\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":57.87700000000000244426701101474463939666748046875,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b3e3391\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop\",\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#FFFFFF\",\"background_color\":\"#46C220\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(2558,375,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2561,376,'_elementor_edit_mode','builder'),
(2562,376,'_elementor_template_type','footer'),
(2563,376,'_elementor_version','3.1.4'),
(2564,376,'_elementor_pro_version','3.2.1'),
(2565,376,'_wp_page_template','default'),
(2566,376,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"shape_divider_top_color\":\"#FF7D7D\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\",\"id\":118},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b\":\"#CFFFFE\"},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\",\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#00AFE8\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.981999999999999317878973670303821563720703125,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.018000000000000682121026329696178436279296875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(2567,376,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2570,377,'_elementor_edit_mode','builder'),
(2571,377,'_elementor_template_type','footer'),
(2572,377,'_elementor_version','3.1.4'),
(2573,377,'_elementor_pro_version','3.2.1'),
(2574,377,'_wp_page_template','default'),
(2575,377,'_elementor_data','[{\"id\":\"482f1c27\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"shape_divider_top_color\":\"#FF7D7D\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/BG-Post-Sub.png\",\"id\":118},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\"},\"elements\":[{\"id\":\"56ac5875\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21f35af3\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"f1ba286\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"db2a3a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Started\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71e5c7d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Resources\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Tutorials\",\"icon\":\"\",\"_id\":\"21e9fd7\"},{\"text\":\"Examples\",\"icon\":\"\",\"_id\":\"1fd4f18\"},{\"text\":\"Docs\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ae17c1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"47f683be\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ca2575e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Stories\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Community\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Blog\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Brand Assets\",\"icon\":\"\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64c1dfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":15,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42d294a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c9bf2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview\",\"icon\":\"\",\"_id\":\"6b44671\"},{\"text\":\"Design\",\"icon\":\"\",\"_id\":\"6442eb7\"},{\"text\":\"Code\",\"icon\":\"\",\"_id\":\"fc019a2\"},{\"text\":\"Collaborate\",\"icon\":\"\",\"_id\":\"1fd4f18\"}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":0},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7cbee4e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":24.018000000000000682121026329696178436279296875,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c7b599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"210a9662\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Facebook\",\"icon\":\"fa fa-facebook-official\",\"_id\":\"6b44671\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Twitter\",\"icon\":\"fa fa-twitter\",\"_id\":\"6442eb7\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"YouTube\",\"icon\":\"fa fa-youtube-play\",\"_id\":\"fc019a2\",\"__fa4_migrated\":{\"selected_icon\":true}},{\"text\":\"Instagram\",\"icon\":\"fa fa-instagram\",\"_id\":\"1fd4f18\",\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":\"\"},\"text_color\":\"#198EB4C9\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"447dabf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":30.981999999999999317878973670303821563720703125,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"119fee89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap\":{\"unit\":\"px\",\"size\":12},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"label_typography_font_weight\":\"600\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_background_color\":\"#00AFE8\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#b52700\",\"input_size\":\"md\",\"button_size\":\"md\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f2ec32a\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.25)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7477bf90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":15.981999999999999317878973670303821563720703125,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true},{\"id\":\"4908975b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":84.018000000000000682121026329696178436279296875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"12a72b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2018 \\u00a9 All rights Reserved. Design by Elementor\",\"title_color\":\"#198EB4C9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"300\",\"align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18},\"header_size\":\"p\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),
(2576,377,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2578,378,'_elementor_edit_mode','builder'),
(2579,378,'_elementor_template_type','header'),
(2580,378,'_elementor_version','3.1.4'),
(2581,378,'_elementor_pro_version','3.2.1'),
(2582,378,'_wp_page_template','default'),
(2583,378,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"05\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d05d39f\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"space\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"height\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2584,378,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2586,379,'_elementor_edit_mode','builder'),
(2587,379,'_elementor_template_type','wp-page'),
(2588,379,'_elementor_version','3.1.4'),
(2589,379,'_elementor_pro_version','3.2.1'),
(2590,379,'_wp_page_template','elementor_header_footer'),
(2591,379,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2592,379,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2593,380,'_elementor_edit_mode','builder'),
(2594,380,'_elementor_template_type','wp-page'),
(2595,380,'_elementor_version','3.1.4'),
(2596,380,'_elementor_pro_version','3.2.1'),
(2597,380,'_wp_page_template','elementor_header_footer'),
(2598,380,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2599,380,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2600,381,'_elementor_edit_mode','builder'),
(2601,381,'_elementor_template_type','wp-page'),
(2602,381,'_elementor_version','3.1.4'),
(2603,381,'_elementor_pro_version','3.2.1'),
(2604,381,'_wp_page_template','elementor_header_footer'),
(2605,381,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2606,381,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2608,382,'_elementor_edit_mode','builder'),
(2609,382,'_elementor_template_type','wp-page'),
(2610,382,'_elementor_version','3.1.4'),
(2611,382,'_elementor_pro_version','3.2.1'),
(2612,382,'_wp_page_template','elementor_header_footer'),
(2613,382,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2614,382,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2615,383,'_elementor_edit_mode','builder'),
(2616,383,'_elementor_template_type','wp-page'),
(2617,383,'_elementor_version','3.1.4'),
(2618,383,'_elementor_pro_version','3.2.1'),
(2619,383,'_wp_page_template','elementor_header_footer'),
(2620,383,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2621,383,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2622,384,'_elementor_edit_mode','builder'),
(2623,384,'_elementor_template_type','wp-page'),
(2624,384,'_elementor_version','3.1.4'),
(2625,384,'_elementor_pro_version','3.2.1'),
(2626,384,'_wp_page_template','elementor_header_footer'),
(2627,384,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2628,384,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size_mobile\":100,\"_inline_size\":90.1929999999999978399500832892954349517822265625},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"524673f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":9.5329999999999994741983755375258624553680419921875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2630,385,'_elementor_edit_mode','builder'),
(2631,385,'_elementor_template_type','wp-page'),
(2632,385,'_elementor_version','3.1.4'),
(2633,385,'_elementor_pro_version','3.2.1'),
(2634,385,'_wp_page_template','elementor_header_footer'),
(2635,385,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2636,385,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size_mobile\":100,\"_inline_size\":90.1929999999999978399500832892954349517822265625},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"524673f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":9.5329999999999994741983755375258624553680419921875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2637,386,'_elementor_edit_mode','builder'),
(2638,386,'_elementor_template_type','wp-page'),
(2639,386,'_elementor_version','3.1.4'),
(2640,386,'_elementor_pro_version','3.2.1'),
(2641,386,'_wp_page_template','elementor_header_footer'),
(2642,386,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2643,386,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"61\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"layout\":\"full_width\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size_mobile\":100,\"_inline_size\":90.1929999999999978399500832892954349517822265625},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"524673f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":9.5329999999999994741983755375258624553680419921875},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2644,387,'_elementor_edit_mode','builder'),
(2645,387,'_elementor_template_type','wp-page'),
(2646,387,'_elementor_version','3.1.4'),
(2647,387,'_elementor_pro_version','3.2.1'),
(2648,387,'_wp_page_template','elementor_header_footer'),
(2649,387,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2650,387,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"layout\":\"full_width\",\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2652,388,'_elementor_edit_mode','builder'),
(2653,388,'_elementor_template_type','header'),
(2654,388,'_elementor_version','3.1.4'),
(2655,388,'_elementor_pro_version','3.2.1'),
(2656,388,'_wp_page_template','default'),
(2657,388,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d05d39f\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":39,\"sizes\":[]},\"space\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"height\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":20,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2658,388,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2668,390,'_elementor_edit_mode','builder'),
(2669,390,'_elementor_template_type','header'),
(2670,390,'_elementor_version','3.1.4'),
(2671,390,'_elementor_pro_version','3.2.1'),
(2672,390,'_wp_page_template','default'),
(2673,390,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"40\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"d05d39f\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"height\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":10,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2674,390,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2679,391,'_elementor_edit_mode','builder'),
(2680,391,'_elementor_template_type','header'),
(2681,391,'_elementor_version','3.1.4'),
(2682,391,'_elementor_pro_version','3.2.1'),
(2683,391,'_wp_page_template','default'),
(2684,391,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.0150000000000005684341886080801486968994140625,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"d05d39f\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"height\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":62.46399999999999863575794734060764312744140625,\"_inline_size_mobile\":10,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2685,391,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2688,392,'_elementor_edit_mode','builder'),
(2689,392,'_elementor_template_type','header'),
(2690,392,'_elementor_version','3.1.4'),
(2691,392,'_elementor_pro_version','3.2.1'),
(2692,392,'_wp_page_template','default'),
(2693,392,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.0150000000000005684341886080801486968994140625,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"d05d39f\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"height\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":62.46399999999999863575794734060764312744140625,\"_inline_size_mobile\":10,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2694,392,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2696,393,'_elementor_edit_mode','builder'),
(2697,393,'_elementor_template_type','header'),
(2698,393,'_elementor_version','3.1.4'),
(2699,393,'_elementor_pro_version','3.2.1'),
(2700,393,'_wp_page_template','default'),
(2701,393,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.0150000000000005684341886080801486968994140625,\"_inline_size_tablet\":50,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"d05d39f\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"height\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":62.46399999999999863575794734060764312744140625,\"_inline_size_mobile\":10,\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2702,393,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2705,394,'_elementor_edit_mode','builder'),
(2706,394,'_elementor_template_type','header'),
(2707,394,'_elementor_version','3.1.4'),
(2708,394,'_elementor_pro_version','3.2.1'),
(2709,394,'_wp_page_template','default'),
(2710,394,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.0150000000000005684341886080801486968994140625,\"_inline_size_tablet\":85,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"d05d39f\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_mobile\":\"left\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"height\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":62.46399999999999863575794734060764312744140625,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2711,394,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2714,395,'_elementor_edit_mode','builder'),
(2715,395,'_elementor_template_type','header'),
(2716,395,'_elementor_version','3.1.4'),
(2717,395,'_elementor_pro_version','3.2.1'),
(2718,395,'_wp_page_template','default'),
(2719,395,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.0150000000000005684341886080801486968994140625,\"_inline_size_tablet\":85,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"9630ca6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":62.46399999999999863575794734060764312744140625,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2720,395,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2724,396,'_elementor_edit_mode','builder'),
(2725,396,'_elementor_template_type','header'),
(2726,396,'_elementor_version','3.1.4'),
(2727,396,'_elementor_pro_version','3.2.1'),
(2728,396,'_wp_page_template','default'),
(2729,396,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.0150000000000005684341886080801486968994140625,\"_inline_size_tablet\":85,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"9630ca6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":62.46399999999999863575794734060764312744140625,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2730,396,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2734,397,'_elementor_edit_mode','builder'),
(2735,397,'_elementor_template_type','header'),
(2736,397,'_elementor_version','3.1.4'),
(2737,397,'_elementor_pro_version','3.2.1'),
(2738,397,'_wp_page_template','default'),
(2739,397,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.0150000000000005684341886080801486968994140625,\"_inline_size_tablet\":85,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"9630ca6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":62.46399999999999863575794734060764312744140625,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2740,397,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2744,398,'_elementor_edit_mode','builder'),
(2745,398,'_elementor_template_type','header'),
(2746,398,'_elementor_version','3.1.4'),
(2747,398,'_elementor_pro_version','3.2.1'),
(2748,398,'_wp_page_template','default'),
(2749,398,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.0150000000000005684341886080801486968994140625,\"_inline_size_tablet\":85,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"9630ca6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_tablet\":\"left\",\"width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":62.46399999999999863575794734060764312744140625,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2750,398,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2764,400,'_elementor_edit_mode','builder'),
(2765,400,'_elementor_template_type','footer'),
(2766,400,'_elementor_version','3.1.4'),
(2767,400,'_elementor_pro_version','3.2.1'),
(2768,400,'_wp_page_template','default'),
(2769,400,'_elementor_data','[]'),
(2770,400,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2771,401,'_elementor_edit_mode','builder'),
(2772,401,'_elementor_template_type','header'),
(2773,401,'_elementor_version','3.1.4'),
(2774,401,'_elementor_pro_version','3.2.1'),
(2775,401,'_wp_page_template','default'),
(2776,401,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":23.0150000000000005684341886080801486968994140625,\"_inline_size_tablet\":30,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9630ca6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_tablet\":\"left\",\"width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":62.46399999999999863575794734060764312744140625,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2777,401,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2783,402,'_wp_attached_file','2021/03/placeholder-2.png'),
(2784,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2021/03/placeholder-2.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"placeholder-2-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"placeholder-2-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"placeholder-2-416x277.png\";s:5:\"width\";i:416;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"placeholder-2-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"placeholder-2-416x277.png\";s:5:\"width\";i:416;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"placeholder-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2785,402,'_elementor_source_image_hash','29f58eb41708bb45f2f1015051073736077fb2cd'),
(2786,403,'_elementor_edit_mode','builder'),
(2787,403,'_elementor_template_type','wp-page'),
(2788,403,'_elementor_version','3.1.4'),
(2789,403,'_elementor_pro_version','3.2.1'),
(2790,403,'_wp_page_template','elementor_header_footer'),
(2791,403,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2792,403,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"layout\":\"full_width\",\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2794,404,'_elementor_edit_mode','builder'),
(2795,404,'_elementor_template_type','wp-page'),
(2796,404,'_elementor_version','3.1.4'),
(2797,404,'_elementor_pro_version','3.2.1'),
(2798,404,'_wp_page_template','elementor_header_footer'),
(2799,404,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2800,404,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"layout\":\"full_width\",\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),
(2802,405,'_elementor_edit_mode','builder'),
(2803,405,'_elementor_template_type','wp-page'),
(2804,405,'_elementor_version','3.1.4'),
(2805,405,'_elementor_pro_version','3.2.1'),
(2806,405,'_wp_page_template','elementor_header_footer'),
(2807,405,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(2808,405,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"layout\":\"full_width\",\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"-9\",\"bottom\":\"-9\",\"left\":\"-9\",\"isLinked\":true},\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e4308ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3cd833e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.4909999999999996589394868351519107818603515625,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"_inline_size_mobile\":100,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2bd8c868\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"image\":{\"id\":402,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder-2.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"},{\"id\":\"3a048fbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"text_color\":\"rgba(84,89,95,0.79)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ad01f4f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"3d4d16f\"},{\"social\":\"fa fa-twitter\",\"_id\":\"12db40b\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"0992f96\"},{\"social\":\"fa fa-snapchat\",\"_id\":\"166d599\"},{\"social\":\"fa fa-instagram\",\"_id\":\"b9433ea\"}],\"shape\":\"square\",\"align\":\"\",\"icon_size\":{\"unit\":\"px\",\"size\":12},\"icon_padding\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"7967343a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30.172999999999998266275724745355546474456787109375,\"_inline_size_tablet\":33,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74feeaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"title_color\":\"#02d3c9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f6aa398\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"485a2812\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"10ed1a11\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6b44671\"},{\"text\":\"Services\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6442eb7\"},{\"text\":\"Pricing\",\"icon\":\"fa fa-caret-right\",\"_id\":\"fc019a2\"},{\"text\":\"Contact\",\"icon\":\"fa fa-caret-right\",\"_id\":\"1fd4f18\"},{\"text\":\"Support\",\"icon\":\"fa fa-caret-right\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":13},\"text_color\":\"rgba(0,0,0,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":9},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"icon_typography_font_weight\":\"normal\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"rgba(0,0,0,0.23)\",\"text_color_hover\":\"#02d3c9\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f8fe4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.99199999999999732835931354202330112457275390625,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"52a7ff6e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Pricing\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6b44671\"},{\"text\":\"Teams\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6442eb7\"},{\"text\":\"Education\",\"icon\":\"fa fa-caret-right\",\"_id\":\"fc019a2\"},{\"text\":\"Refer a friend\",\"icon\":\"fa fa-caret-right\",\"_id\":\"1fd4f18\"},{\"text\":\"Updates\",\"icon\":\"fa fa-caret-right\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":13},\"text_color\":\"rgba(0,0,0,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":9},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"icon_typography_font_weight\":\"normal\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"rgba(0,0,0,0.23)\",\"text_color_hover\":\"#02d3c9\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3da2dba6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65d0a5f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#02d3c9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34f33c4c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Your Name\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"name\",\"previous_button\":\"\",\"next_button\":\"\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"field_border_color\":\"#c9c9c9\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#02d3c9\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.9000000000000003552713678800500929355621337890625},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#1c1c1c\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c0d098e\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":50},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"523540b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"38bb0415\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2018 All rights reserved\\u200b\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#7a7a7a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"711d667e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c09b320\",\"elType\":\"widget\",\"settings\":{\"title\":\"Made with \\u2764 with Elementor\\u200b\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#7a7a7a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),
(2810,57,'_elementor_controls_usage','a:15:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:18;s:19:\"_inline_size_mobile\";i:5;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"layout\";i:2;s:3:\"gap\";i:2;s:8:\"html_tag\";i:2;s:13:\"content_width\";i:2;s:16:\"content_position\";i:2;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:27:\"background_hover_transition\";i:1;}s:14:\"section_border\";a:7:{s:26:\"box_shadow_box_shadow_type\";i:1;s:32:\"box_shadow_hover_box_shadow_type\";i:1;s:27:\"box_shadow_hover_box_shadow\";i:1;s:23:\"border_hover_transition\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:21:\"section_shape_divider\";a:2:{s:17:\"shape_divider_top\";i:1;s:24:\"shape_divider_top_height\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:11;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:9:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;s:4:\"menu\";i:1;s:10:\"text_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:14:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:27:\"menu_typography_font_family\";i:1;s:32:\"color_menu_item_hover_pointer_bg\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:23:\"border_radius_menu_item\";i:1;s:18:\"menu_space_between\";i:1;}s:22:\"section_style_dropdown\";a:8:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:35:\"dropdown_box_shadow_box_shadow_type\";i:1;s:30:\"dropdown_box_shadow_box_shadow\";i:1;}s:12:\"style_toggle\";a:7:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;s:29:\"toggle_background_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:6:\"marker\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:2:{s:12:\"marker_color\";i:1;s:12:\"stroke_width\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}}}s:14:\"call-to-action\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:18:\"section_main_image\";a:1:{s:8:\"bg_image\";i:2;}s:15:\"section_content\";a:2:{s:5:\"title\";i:2;s:11:\"description\";i:2;}}s:5:\"style\";a:2:{s:21:\"section_content_style\";a:6:{s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:33:\"description_typography_typography\";i:2;s:34:\"description_typography_font_family\";i:2;s:34:\"description_typography_font_weight\";i:2;}s:12:\"button_style\";a:1:{s:29:\"button_hover_background_color\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:2;s:10:\"text_color\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:2:{s:11:\"arrows_size\";i:1;s:9:\"dots_size\";i:1;}s:19:\"section_style_image\";a:2:{s:19:\"image_border_border\";i:1;s:18:\"image_border_color\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:3:{s:21:\"motion_fx_tilt_effect\";i:1;s:24:\"motion_fx_tilt_direction\";i:1;s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:3:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_color\";i:1;s:28:\"_background_hover_transition\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:5;s:5:\"align\";i:3;s:11:\"header_size\";i:4;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:5;s:20:\"typography_font_size\";i:4;s:25:\"typography_text_transform\";i:2;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:5:\"_skin\";i:1;s:16:\"cards_item_ratio\";i:1;}}s:5:\"style\";a:2:{s:27:\"cards_section_design_layout\";a:1:{s:16:\"cards_column_gap\";i:1;}s:25:\"cards_section_design_card\";a:1:{s:27:\"cards_card_vertical_padding\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:12:\"aspect_ratio\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:4:\"link\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:2:{s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:2;s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:7:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;s:16:\"text_color_hover\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_text\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_field_style\";a:4:{s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:7:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}}'),
(2812,114,'_wp_trash_meta_status','publish'),
(2813,114,'_wp_trash_meta_time','1617200172'),
(2814,114,'_wp_desired_post_slug','elementor-single-post-114'),
(2815,406,'_edit_lock','1617210392:1'),
(2818,406,'_thumbnail_id','435'),
(2819,406,'_elementor_edit_mode','builder'),
(2820,406,'_elementor_template_type','wp-post'),
(2821,406,'_elementor_version','3.1.4'),
(2822,406,'_elementor_pro_version','3.2.1'),
(2835,409,'_elementor_edit_mode','builder'),
(2836,409,'_elementor_template_type','header'),
(2837,409,'_elementor_version','3.1.4'),
(2838,409,'_elementor_pro_version','3.2.1'),
(2839,409,'_wp_page_template','default'),
(2840,409,'_elementor_data','[{\"id\":\"1918fcb8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"deee60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17.586999999999999744204615126363933086395263671875,\"_inline_size_tablet\":30,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"9630ca6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_tablet\":\"left\",\"width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"74eff84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":67.89199999999999590727384202182292938232421875,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"6fdc6d1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"31d22b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"75fd6b2\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"55c5166\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d4a3b5a\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"ea17d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"522f517\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false}]'),
(2841,409,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(2842,43,'_elementor_controls_usage','a:7:{s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:10:\"image_size\";i:1;s:12:\"align_tablet\";i:1;s:5:\"image\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:12:\"width_mobile\";i:1;s:5:\"width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:5:{s:11:\"align_items\";i:1;s:12:\"toggle_align\";i:1;s:7:\"pointer\";i:1;s:9:\"indicator\";i:1;s:10:\"full_width\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:6:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:35:\"padding_horizontal_menu_item_tablet\";i:1;s:33:\"padding_vertical_menu_item_tablet\";i:1;}s:22:\"section_style_dropdown\";a:3:{s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_family\";i:1;s:28:\"dropdown_top_distance_mobile\";i:1;}s:12:\"style_toggle\";a:1:{s:23:\"toggle_background_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}}}}s:31:\"wp-widget-alg_wc_wl_widget_link\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:21:\"woocommerce-menu-cart\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_toggle_style\";a:3:{s:26:\"toggle_button_border_width\";i:1;s:27:\"toggle_button_border_radius\";i:1;s:28:\"toggle_button_padding_tablet\";i:1;}}}}s:11:\"search-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"search_content\";a:2:{s:4:\"skin\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_input_style\";a:2:{s:22:\"input_background_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:1;s:13:\"custom_height\";i:1;s:16:\"content_position\";i:1;s:8:\"html_tag\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:4:{s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;s:13:\"margin_mobile\";i:1;}}}}}'),
(2845,410,'_elementor_edit_mode','builder'),
(2846,410,'_elementor_template_type','single-post'),
(2847,411,'_elementor_edit_mode','builder'),
(2848,411,'_elementor_template_type','single-post'),
(2849,410,'_elementor_version','3.1.4'),
(2850,410,'_elementor_pro_version','3.2.1'),
(2851,410,'_edit_lock','1617213362:1'),
(2852,410,'_wp_page_template','default'),
(2853,410,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(2854,410,'_elementor_data','[{\"id\":\"363bb3db\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"19a779de\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17.586999999999999744204615126363933086395263671875,\"_inline_size_tablet\":30,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5afbe11d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_tablet\":\"left\",\"width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6cf9c182\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":67.89199999999999590727384202182292938232421875,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"1ec38f3c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4e6fc96e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f39ae58\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"4b5879ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"b2d9a26\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"6d362066\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"6499c77c\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c69a634\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"9658674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5fcb56\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ac2143\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"column_position\":\"bottom\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"451029a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20f194e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"height\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"align\":\"left\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"1809b5e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"title_color\":\"#939EA2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"theme-post-title\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"a8aab75\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f287fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"label_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":true},{\"id\":\"75df2a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":73.0810000000000030695446184836328029632568359375},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":26.8299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4097097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent posts\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ae45a5\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"1\",\"classic_columns_tablet\":\"1\",\"classic_posts_per_page\":2,\"classic_item_ratio\":{\"unit\":\"px\",\"size\":0.57999999999999996003197111349436454474925994873046875,\"sizes\":[]},\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\",\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-40\",\"left\":\"-40\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"-16\",\"bottom\":\"-16\",\"left\":\"-16\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"-4\",\"bottom\":\"-4\",\"left\":\"-4\",\"isLinked\":true},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":396,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9800671\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ec7d156\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(2855,412,'_elementor_edit_mode','builder'),
(2856,412,'_elementor_template_type','single-post'),
(2857,412,'_elementor_version','3.1.4'),
(2858,412,'_elementor_pro_version','3.2.1'),
(2859,412,'_wp_page_template','default'),
(2860,412,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(2861,412,'_elementor_data','[]'),
(2869,414,'_elementor_edit_mode','builder'),
(2870,414,'_elementor_template_type','single-post'),
(2871,414,'_elementor_version','3.1.4'),
(2872,414,'_elementor_pro_version','3.2.1'),
(2873,414,'_wp_page_template','default'),
(2874,414,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(2875,414,'_elementor_data','[{\"id\":\"b9f38dd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"64c2b62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0edca9a\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2efe1ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"15a6efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b83ca90\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"theme-post-title\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(2885,416,'_elementor_edit_mode','builder'),
(2886,416,'_elementor_template_type','single-post'),
(2887,416,'_elementor_version','3.1.4'),
(2888,416,'_elementor_pro_version','3.2.1'),
(2889,416,'_wp_page_template','default'),
(2890,416,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(2891,416,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f1453\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"9dd0fa6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"contain\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"view\":\"traditional\",\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"}],\"isInner\":false}],\"isInner\":false}]'),
(2893,417,'_elementor_edit_mode','builder'),
(2894,417,'_elementor_template_type','single-post'),
(2895,417,'_elementor_version','3.1.4'),
(2896,417,'_elementor_pro_version','3.2.1'),
(2897,417,'_wp_page_template','default'),
(2898,417,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(2899,417,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f1453\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"9dd0fa6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"contain\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"}],\"isInner\":false}],\"isInner\":false}]'),
(2909,419,'_wp_attached_file','2021/03/3-1.png'),
(2910,419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1050;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2021/03/3-1.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"3-1-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"3-1-1024x585.png\";s:5:\"width\";i:1024;s:6:\"height\";i:585;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"3-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:15:\"3-1-768x439.png\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"3-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"3-1-416x238.png\";s:5:\"width\";i:416;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"3-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"3-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"3-1-416x238.png\";s:5:\"width\";i:416;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"3-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2911,420,'_elementor_edit_mode','builder'),
(2912,420,'_elementor_template_type','single-post'),
(2913,420,'_elementor_version','3.1.4'),
(2914,420,'_elementor_pro_version','3.2.1'),
(2915,420,'_wp_page_template','default'),
(2916,420,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(2917,420,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f1453\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"9dd0fa6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"contain\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.9500000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.9609999999999985220711096189916133880615234375},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4ed07c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3-1.png\",\"id\":419},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70121de\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\"},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false}]'),
(2919,421,'_elementor_edit_mode','builder'),
(2920,421,'_elementor_template_type','single-post'),
(2921,421,'_elementor_version','3.1.4'),
(2922,421,'_elementor_pro_version','3.2.1'),
(2923,421,'_wp_page_template','default'),
(2924,421,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(2925,421,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f1453\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"9dd0fa6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"contain\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"},{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.9500000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.9609999999999985220711096189916133880615234375},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4ed07c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3-1.png\",\"id\":419},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70121de\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\"},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false}]'),
(2927,422,'_elementor_edit_mode','builder'),
(2928,422,'_elementor_template_type','single-post'),
(2929,422,'_elementor_version','3.1.4'),
(2930,422,'_elementor_pro_version','3.2.1'),
(2931,422,'_wp_page_template','default'),
(2932,422,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(2933,422,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f1453\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h2\",\"align\":\"left\",\"title_color\":\"#1A95C9\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"9dd0fa6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"width\":{\"unit\":\"%\",\"size\":33,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":89,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"contain\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"},{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.9500000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.9609999999999985220711096189916133880615234375},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4ed07c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3-1.png\",\"id\":419},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70121de\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\"},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false}]'),
(2935,410,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),
(2946,424,'_elementor_edit_mode','builder'),
(2947,424,'_elementor_template_type','kit'),
(2948,424,'_elementor_version','3.1.4'),
(2949,424,'_elementor_pro_version','3.2.1'),
(2950,424,'_elementor_page_settings','a:18:{s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"b27637c\";s:5:\"title\";s:16:\"New Global Color\";s:5:\"color\";s:7:\"#091A51\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:9:\"Quicksand\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:31:\"Christian Homeschool Essentials\";s:26:\"body_background_background\";s:8:\"gradient\";s:21:\"body_background_color\";s:7:\"#FFFFFF\";s:23:\"body_background_color_b\";s:7:\"#F2FF8B\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:2:{s:3:\"url\";s:77:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png\";s:2:\"id\";i:68;}s:25:\"mobile_browser_background\";s:7:\"#FFFFA7\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:2:{s:3:\"url\";s:68:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png\";s:2:\"id\";i:211;}s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}}'),
(2951,424,'_wp_page_template','default'),
(2952,424,'_elementor_data','[]'),
(2954,12,'_elementor_css','a:6:{s:4:\"time\";i:1617207413;s:5:\"fonts\";a:3:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";i:4;s:9:\"Quicksand\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(2956,43,'_elementor_css','a:6:{s:4:\"time\";i:1617207414;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"9630ca6\";i:1;s:7:\"9630ca6\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(2969,426,'_elementor_edit_mode','builder'),
(2970,426,'_elementor_template_type','single-post'),
(2971,426,'_elementor_version','3.1.4'),
(2972,426,'_elementor_pro_version','3.2.1'),
(2973,426,'_wp_page_template','default'),
(2974,426,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(2975,426,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ac2143\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"451029a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e003682\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"20f194e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"height\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"},{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.9500000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.9609999999999985220711096189916133880615234375},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4ed07c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3-1.png\",\"id\":419},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70121de\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\"},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false}]'),
(2976,426,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),
(2979,145,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"e7996445-f4a6-45b4-a3bf-174c75b58723\" data-name=\"Layer 1\" width=\"27\" height=\"19\" viewBox=\"0 0 27 19\"><title>Menu</title><rect x=\"13\" y=\"16\" width=\"14\" height=\"3\"></rect><rect width=\"27\" height=\"3\"></rect><rect y=\"8\" width=\"27\" height=\"3\"></rect></svg>'),
(2980,47,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"fcd95e07-8bd7-469f-808c-4bea57f73182\" data-name=\"Layer 1\" width=\"33.2114\" height=\"12.6055\" viewBox=\"0 0 33.2114 12.6055\"><rect x=\"0.106\" width=\"33\" height=\"2\"></rect><rect x=\"0.4016\" y=\"9.2498\" width=\"33.1968\" height=\"2.0001\" transform=\"translate(-1.4366 1.4718) rotate(-6.4411)\"></rect></svg>'),
(2981,428,'_wp_attached_file','2021/03/2-3.png'),
(2982,428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1050;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2021/03/2-3.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-3-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"2-3-1024x585.png\";s:5:\"width\";i:1024;s:6:\"height\";i:585;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-3-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:15:\"2-3-768x439.png\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"2-3-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"2-3-416x238.png\";s:5:\"width\";i:416;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"2-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"2-3-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"2-3-416x238.png\";s:5:\"width\";i:416;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"2-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2995,431,'_elementor_edit_mode','builder'),
(2996,431,'_elementor_template_type','single-post'),
(2997,431,'_elementor_version','3.1.4'),
(2998,431,'_elementor_pro_version','3.2.1'),
(2999,431,'_wp_page_template','default'),
(3000,431,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(3001,431,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ac2143\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"column_position\":\"bottom\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"451029a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e003682\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"size\":\"xxl\",\"title_color\":\"#939EA2\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"20f194e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"height\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"},{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":73.0810000000000030695446184836328029632568359375},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":26.8299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4ed07c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3-1.png\",\"id\":419},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70121de\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\"},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false}]'),
(3002,431,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),
(3004,432,'_elementor_edit_mode','builder'),
(3005,432,'_elementor_template_type','single-post'),
(3006,432,'_elementor_version','3.1.4'),
(3007,432,'_elementor_pro_version','3.2.1'),
(3008,432,'_wp_page_template','default'),
(3009,432,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(3010,432,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ac2143\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"column_position\":\"bottom\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"451029a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e003682\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"size\":\"xxl\",\"title_color\":\"#939EA2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"20f194e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"height\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"},{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":73.0810000000000030695446184836328029632568359375},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":{\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":26.8299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4ed07c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3-1.png\",\"id\":419},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70121de\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\"},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false}]'),
(3011,432,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),
(3022,434,'_elementor_edit_mode','builder'),
(3023,434,'_elementor_template_type','single-post'),
(3024,434,'_elementor_version','3.1.4'),
(3025,434,'_elementor_pro_version','3.2.1'),
(3026,434,'_wp_page_template','default'),
(3027,434,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(3028,434,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ac2143\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"column_position\":\"bottom\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"451029a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e003682\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"size\":\"xxl\",\"title_color\":\"#939EA2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"20f194e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"height\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"},{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":73.0810000000000030695446184836328029632568359375},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":26.8299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4ed07c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3-1.png\",\"id\":419},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70121de\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\"},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false}]'),
(3029,434,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),
(3034,435,'_wp_attached_file','2021/03/1-4.png'),
(3035,435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1050;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2021/03/1-4.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-4-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1-4-1024x585.png\";s:5:\"width\";i:1024;s:6:\"height\";i:585;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-4-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:15:\"1-4-768x439.png\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"1-4-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"1-4-416x238.png\";s:5:\"width\";i:416;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"1-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"1-4-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"1-4-416x238.png\";s:5:\"width\";i:416;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"1-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3039,159,'_elementor_edit_mode','builder'),
(3040,159,'_elementor_template_type','wp-post'),
(3041,159,'_elementor_version','3.1.4'),
(3042,159,'_elementor_pro_version','3.2.1'),
(3053,437,'_elementor_edit_mode','builder'),
(3054,437,'_elementor_template_type','single-post'),
(3055,437,'_elementor_version','3.1.4'),
(3056,437,'_elementor_pro_version','3.2.1'),
(3057,437,'_wp_page_template','default'),
(3058,437,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(3059,437,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ac2143\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"column_position\":\"bottom\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"451029a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20f194e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"height\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"1809b5e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"title_color\":\"#939EA2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"theme-post-title\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"a8aab75\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f287fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":true},{\"id\":\"75df2a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":73.0810000000000030695446184836328029632568359375},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":26.8299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4097097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent posts\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ae45a5\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"1\",\"classic_posts_per_page\":2,\"classic_item_ratio\":{\"unit\":\"px\",\"size\":0.57999999999999996003197111349436454474925994873046875,\"sizes\":[]},\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\"},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false}]'),
(3060,437,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),
(3062,438,'_elementor_edit_mode','builder'),
(3063,438,'_elementor_template_type','single-post'),
(3064,438,'_elementor_version','3.1.4'),
(3065,438,'_elementor_pro_version','3.2.1'),
(3066,438,'_wp_page_template','default'),
(3067,438,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(3068,438,'_elementor_data','[{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ac2143\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"column_position\":\"bottom\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"451029a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20f194e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"height\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"1809b5e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"title_color\":\"#939EA2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"theme-post-title\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"a8aab75\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f287fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"label_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":true},{\"id\":\"75df2a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":73.0810000000000030695446184836328029632568359375},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":26.8299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4097097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent posts\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ae45a5\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"1\",\"classic_columns_tablet\":\"1\",\"classic_posts_per_page\":2,\"classic_item_ratio\":{\"unit\":\"px\",\"size\":0.57999999999999996003197111349436454474925994873046875,\"sizes\":[]},\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\"},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false}]'),
(3069,438,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),
(3071,159,'_elementor_css','a:7:{s:4:\"time\";i:1617211916;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),
(3086,440,'_elementor_edit_mode','builder'),
(3087,440,'_elementor_template_type','single-post'),
(3088,440,'_elementor_version','3.1.4'),
(3089,440,'_elementor_pro_version','3.2.1'),
(3090,440,'_wp_page_template','default'),
(3091,440,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(3092,440,'_elementor_data','[{\"id\":\"363bb3db\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"19a779de\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17.586999999999999744204615126363933086395263671875,\"_inline_size_tablet\":30,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5afbe11d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_tablet\":\"left\",\"width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6cf9c182\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":67.89199999999999590727384202182292938232421875,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"1ec38f3c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4e6fc96e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f39ae58\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"4b5879ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"b2d9a26\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"6d362066\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"6499c77c\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c69a634\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9658674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5fcb56\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ac2143\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"column_position\":\"bottom\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"451029a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20f194e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"height\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"align\":\"left\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"1809b5e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"title_color\":\"#939EA2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"theme-post-title\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"a8aab75\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f287fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"label_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":true},{\"id\":\"75df2a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":73.0810000000000030695446184836328029632568359375},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":26.8299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4097097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent posts\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ae45a5\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"1\",\"classic_columns_tablet\":\"1\",\"classic_posts_per_page\":2,\"classic_item_ratio\":{\"unit\":\"px\",\"size\":0.57999999999999996003197111349436454474925994873046875,\"sizes\":[]},\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\",\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-40\",\"left\":\"-40\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"-16\",\"bottom\":\"-16\",\"left\":\"-16\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"-4\",\"bottom\":\"-4\",\"left\":\"-4\",\"isLinked\":true},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":396,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9800671\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ec7d156\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(3093,440,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),
(3104,442,'_elementor_edit_mode','builder'),
(3105,442,'_elementor_template_type','single-post'),
(3106,442,'_elementor_version','3.1.4'),
(3107,442,'_elementor_pro_version','3.2.1'),
(3108,442,'_wp_page_template','default'),
(3109,442,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),
(3110,442,'_elementor_data','[{\"id\":\"363bb3db\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"px\",\"size\":80},\"content_position\":\"middle\",\"structure\":\"50\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"020\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"background_background\":\"classic\",\"background_color\":\"#CFFFFE\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"19a779de\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":17.586999999999999744204615126363933086395263671875,\"_inline_size_tablet\":30,\"_inline_size_mobile\":30,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5afbe11d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"thumbnail\",\"align_tablet\":\"left\",\"width_mobile\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false},{\"id\":\"6cf9c182\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":67.89199999999999590727384202182292938232421875,\"_inline_size_mobile\":10,\"_inline_size_tablet\":13},\"elements\":[{\"id\":\"1ec38f3c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17},\"menu_typography_font_weight\":\"200\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":27},\"pointer\":\"none\",\"indicator\":\"none\",\"full_width\":\"stretch\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":14},\"toggle_background_color\":\"rgba(255,255,255,0)\",\"menu\":\"primary-menu\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_horizontal_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"4e6fc96e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":5,\"_inline_size_mobile\":10,\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f39ae58\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"link_label\":\"\",\"show_icon\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-alg_wc_wl_widget_link\"}],\"isInner\":false},{\"id\":\"4b5879ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":12.6959999999999997299937604111619293689727783203125,\"_inline_size_tablet\":25,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"b2d9a26\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"toggle_button_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_button_padding_tablet\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false},{\"id\":\"6d362066\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"_inline_size_tablet\":23},\"elements\":[{\"id\":\"6499c77c\",\"elType\":\"widget\",\"settings\":{\"skin\":\"minimal\",\"placeholder\":\"Search...\",\"button_text\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"input_background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"search-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c69a634\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"9658674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5fcb56\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"268a051\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"642623f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48dbf2e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ac2143\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"column_position\":\"bottom\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"451029a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20f194e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"},\"height\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"align\":\"left\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"1809b5e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"title_color\":\"#939EA2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"theme-post-title\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4afbfb9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1129,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f17c71e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f057978\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"32f5bb9\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"a39d86c\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"_id\":\"961753f\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"post_tag\",\"text_prefix\":\"Tag ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"}},{\"_id\":\"d32a978\",\"type\":\"terms\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"product_cat\",\"text_prefix\":\"Category ,\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-tags\",\"library\":\"fa-solid\"}}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"a8aab75\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f287fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5826c6b\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"label_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":true},{\"id\":\"75df2a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6545ab\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"039c1f1\"},{\"button\":\"twitter\",\"_id\":\"5d62af7\"},{\"button\":\"email\",\"_id\":\"01e000b\"},{\"_id\":\"e9aebc1\",\"button\":\"whatsapp\"},{\"_id\":\"91d9064\",\"button\":\"pinterest\"}],\"show_label\":\"\"},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"025c34d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d67f525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":73.0810000000000030695446184836328029632568359375},\"elements\":[{\"id\":\"e8b99c0\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":true},{\"id\":\"3c3bd1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":26.8299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"f250484\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"b9c5954\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\",\"id\":80},\"custom_style\":\"yes\",\"content_color\":\"#918383\",\"repeater_text_shadow_text_shadow_type\":\"yes\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(255, 255, 255, 0.72)\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"54f4523\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"d040e07\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Geography-Tracker.jpg\",\"id\":70},\"link\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"4097097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent posts\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ae45a5\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"1\",\"classic_columns_tablet\":\"1\",\"classic_posts_per_page\":2,\"classic_item_ratio\":{\"unit\":\"px\",\"size\":0.57999999999999996003197111349436454474925994873046875,\"sizes\":[]},\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54513be\",\"elType\":\"widget\",\"settings\":{\"author_name\":\"John Doe\",\"author_bio\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"link_text\":\"All Posts\"},\"elements\":[],\"widgetType\":\"author-box\"},{\"id\":\"fe4a65b\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\",\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"-40\",\"bottom\":\"-40\",\"left\":\"-40\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"-23\",\"bottom\":\"-23\",\"left\":\"-23\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"-16\",\"bottom\":\"-16\",\"left\":\"-16\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"-4\",\"bottom\":\"-4\",\"left\":\"-4\",\"isLinked\":true},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":396,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"post-comments\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9800671\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ec7d156\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(3111,442,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),
(3112,410,'_elementor_controls_usage','a:19:{s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:10:\"image_size\";i:1;s:12:\"align_tablet\";i:1;s:5:\"image\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:12:\"width_mobile\";i:1;s:5:\"width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:14;s:19:\"_inline_size_tablet\";i:4;s:19:\"_inline_size_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:6:{s:11:\"align_items\";i:2;s:12:\"toggle_align\";i:1;s:7:\"pointer\";i:1;s:9:\"indicator\";i:1;s:10:\"full_width\";i:1;s:4:\"menu\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:6:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:35:\"padding_horizontal_menu_item_tablet\";i:1;s:33:\"padding_vertical_menu_item_tablet\";i:1;}s:22:\"section_style_dropdown\";a:3:{s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_family\";i:1;s:28:\"dropdown_top_distance_mobile\";i:1;}s:12:\"style_toggle\";a:1:{s:23:\"toggle_background_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:4:{s:14:\"_margin_mobile\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}}}}s:31:\"wp-widget-alg_wc_wl_widget_link\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:21:\"woocommerce-menu-cart\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_toggle_style\";a:3:{s:26:\"toggle_button_border_width\";i:1;s:27:\"toggle_button_border_radius\";i:1;s:28:\"toggle_button_padding_tablet\";i:1;}}}}s:11:\"search-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"search_content\";a:2:{s:4:\"skin\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_input_style\";a:2:{s:22:\"input_background_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:6:\"layout\";i:3;s:13:\"custom_height\";i:2;s:16:\"content_position\";i:2;s:8:\"html_tag\";i:1;s:3:\"gap\";i:1;s:15:\"column_position\";i:1;s:13:\"content_width\";i:1;s:6:\"height\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:4:{s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}}}s:25:\"theme-post-featured-image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:6:\"height\";i:1;s:12:\"width_mobile\";i:1;s:5:\"space\";i:1;s:12:\"space_mobile\";i:1;s:13:\"height_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"align\";i:1;s:10:\"image_size\";i:1;s:5:\"image\";i:1;}}}}s:16:\"theme-post-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:9:\"post-info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}}}s:15:\"post-navigation\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:11:\"label_style\";a:6:{s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:26:\"label_typography_font_size\";i:1;s:28:\"label_typography_font_weight\";i:1;s:33:\"label_typography_font_size_tablet\";i:1;s:33:\"label_typography_font_size_mobile\";i:1;}}}}s:13:\"share-buttons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:23:\"section_buttons_content\";a:2:{s:13:\"share_buttons\";i:1;s:10:\"show_label\";i:1;}}}}s:18:\"theme-post-content\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:12:\"align_tablet\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"slides\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:2:{s:6:\"slides\";i:1;s:13:\"slides_height\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:15:\"classic_columns\";i:1;s:22:\"classic_columns_tablet\";i:1;s:22:\"classic_posts_per_page\";i:1;s:18:\"classic_item_ratio\";i:1;}}}}s:10:\"author-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:13:\"post-comments\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:5:\"_skin\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:28:\"_element_custom_width_mobile\";i:1;}}}}}'),
(3113,49,'_elementor_css','a:7:{s:4:\"time\";i:1617213560;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),
(3114,157,'_elementor_edit_mode','builder'),
(3115,157,'_elementor_template_type','wp-post'),
(3116,157,'_elementor_version','3.1.4'),
(3117,157,'_elementor_pro_version','3.2.1'),
(3118,410,'_elementor_css','a:6:{s:4:\"time\";i:1617213678;s:5:\"fonts\";a:3:{i:0;s:10:\"Montserrat\";i:1;s:6:\"Roboto\";i:2;s:11:\"Roboto Slab\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:4:{i:0;s:8:\"5afbe11d\";i:1;s:8:\"5afbe11d\";i:2;s:7:\"20f194e\";i:3;s:7:\"1809b5e\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(3119,443,'_menu_item_type','post_type'),
(3120,443,'_menu_item_menu_item_parent','0'),
(3121,443,'_menu_item_object_id','26'),
(3122,443,'_menu_item_object','page'),
(3123,443,'_menu_item_target',''),
(3124,443,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(3125,443,'_menu_item_xfn',''),
(3126,443,'_menu_item_url',''),
(3128,17,'_wp_old_date','2021-03-30'),
(3129,19,'_wp_old_date','2021-03-30'),
(3130,18,'_wp_old_date','2021-03-30'),
(3131,20,'_wp_old_date','2021-03-30'),
(3132,300,'_wp_old_date','2021-03-30'),
(3133,43,'_elementor_screenshot_failed','2021-03-31 19:36:21'),
(3134,444,'_elementor_edit_mode','builder'),
(3135,444,'_elementor_template_type','archive'),
(3136,444,'_elementor_version','3.1.4'),
(3137,444,'_elementor_pro_version','3.2.1'),
(3138,444,'_edit_lock','1617233486:1'),
(3139,444,'_wp_page_template','default');
INSERT INTO `wpcx_postmeta` VALUES
(3140,444,'_elementor_data','[{\"id\":\"7a076c6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"9c7e3bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3e20e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26c5278\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"13a47d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"625f143\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6493515\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6e449cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c471b59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blogs \"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb2cf48\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83fd5f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.61299999999999954525264911353588104248046875},\"elements\":[{\"id\":\"499af6d\",\"elType\":\"widget\",\"settings\":{\"archive_classic_columns\":\"2\",\"archive_classic_meta_separator\":\"\\/\\/\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More \\u00bb\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\"},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":false},{\"id\":\"a75e119\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.038000000000000255795384873636066913604736328125},\"elements\":[{\"id\":\"af0b955\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"Click Here\",\"background_color\":\"#833ca3\",\"_id\":\"35ccf69\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1-5.png\",\"id\":446}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"08b2ab3\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7-1.png\",\"id\":447}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"2afafe2\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77}}]},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"130ec30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b337f13\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Blogs Archives\",\"dropdown\":\"on\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-archives\"}],\"isInner\":false}],\"isInner\":false}]'),
(3141,445,'_elementor_edit_mode','builder'),
(3142,445,'_elementor_template_type','wp-page'),
(3143,445,'_elementor_version','3.1.4'),
(3144,445,'_elementor_pro_version','3.2.1'),
(3145,445,'_wp_page_template','elementor_header_footer'),
(3146,445,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(3147,445,'_elementor_data','[{\"id\":\"cb3db69\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"8bb9698\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbfa05\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cb52bae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#6DFF40\",\"padding\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#6DFF40\",\"padding_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"html_tag\":\"nav\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\",\"content_width\":{\"unit\":\"px\",\"size\":724,\"sizes\":[]},\"margin\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"shape_divider_top\":\"mountains\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"layout\":\"full_width\",\"margin_tablet\":{\"unit\":\"rem\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1941bdb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77d02ddc\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"center\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#625151\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#FFFFFF\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":0},\"color_dropdown_item\":\"#57575C\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#646862\",\"background_color_dropdown_item_hover\":\"#FDFE1A\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"framed\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":13},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"secondary-menu\",\"menu_typography_font_family\":\"Quicksand\",\"color_menu_item_hover_pointer_bg\":\"#6F6767\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"text_align\":\"center\",\"menu_space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_background_color_hover\":\"#FFFFFF\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":-100,\"vertical\":-100,\"blur\":0,\"spread\":-100,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"505a6dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1337,\"sizes\":[]},\"content_position\":\"space-evenly\"},\"elements\":[{\"id\":\"e555371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"86592e9\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"Amazing Resources for\",\"highlighted_text\":\"Children\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#47F232\",\"stroke_width\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#2A8BFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Quicksand\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d2b798\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"662a5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8a34ee3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Alphabet-feelings-Flashcards-.jpg\",\"id\":38},\"title\":\"Shop Now\",\"description\":\"25% off any item with the coupon CHOICE21\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false},{\"id\":\"c2c4a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb247f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7120104\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c20114\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome!\\u00a0<\\/strong><strong style=\\\"color: var( --e-global-color-text );\\\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. <span style=\\\"text-decoration-line: underline;\\\">Everything<\\/span> is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our <span style=\\\"text-decoration-line: underline;\\\">FREE<\\/span> Resources today.<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"adaea6c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1.png\"},{\"id\":75,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/2.png\"},{\"id\":76,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/3.png\"},{\"id\":77,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\"},{\"id\":78,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/5.png\"},{\"id\":79,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/6.png\"},{\"id\":80,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7.png\"},{\"id\":81,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/8.png\"},{\"id\":82,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/9.png\"},{\"id\":83,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/10.png\"},{\"id\":84,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/11.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"3\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_color\":\"#FFFFFF\",\"motion_fx_tilt_effect\":\"yes\",\"motion_fx_tilt_direction\":\"negative\",\"_animation\":\"none\",\"_background_hover_background\":\"gradient\",\"_background_hover_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"862c0e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"55bfce2\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Ready-Steady-Grow-2.jpg\",\"id\":85},\"title\":\"Find out more!\",\"description\":\"Summer Content Now Available\",\"button\":\"Click Here\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Quicksand\",\"title_typography_font_weight\":\"900\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Quicksand\",\"description_typography_font_weight\":\"500\",\"button_hover_background_color\":\"#65F69273\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"190ab19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b69c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535461f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Catch up on this week\'s reads\",\"align\":\"center\",\"title_color\":\"#2378C8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb42c32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":0,\"bottom\":\"1\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4a28300\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75.5259999999999962483343551866710186004638671875},\"elements\":[{\"id\":\"30e50db\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_item_ratio\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"cards_column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"cards_card_vertical_padding\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false},{\"id\":\"a0cb742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":24.388000000000001676880856393836438655853271484375},\"elements\":[{\"id\":\"837b5f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49e868e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"956ae62\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=t6S42sz-mHs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"aspect_ratio\":\"11\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e4308ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#02d3c9\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"html_tag\":\"footer\",\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"3cd833e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.4909999999999996589394868351519107818603515625,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33,\"_inline_size_mobile\":100,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2bd8c868\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"image\":{\"id\":402,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/placeholder-2.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"},{\"id\":\"3a048fbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"text_color\":\"rgba(84,89,95,0.79)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ad01f4f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"3d4d16f\"},{\"social\":\"fa fa-twitter\",\"_id\":\"12db40b\"},{\"social\":\"fa fa-google-plus\",\"_id\":\"0992f96\"},{\"social\":\"fa fa-snapchat\",\"_id\":\"166d599\"},{\"social\":\"fa fa-instagram\",\"_id\":\"b9433ea\"}],\"shape\":\"square\",\"align\":\"\",\"icon_size\":{\"unit\":\"px\",\"size\":12},\"icon_padding\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"7967343a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30.172999999999998266275724745355546474456787109375,\"_inline_size_tablet\":33,\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74feeaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"title_color\":\"#02d3c9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f6aa398\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"485a2812\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"10ed1a11\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6b44671\"},{\"text\":\"Services\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6442eb7\"},{\"text\":\"Pricing\",\"icon\":\"fa fa-caret-right\",\"_id\":\"fc019a2\"},{\"text\":\"Contact\",\"icon\":\"fa fa-caret-right\",\"_id\":\"1fd4f18\"},{\"text\":\"Support\",\"icon\":\"fa fa-caret-right\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":13},\"text_color\":\"rgba(0,0,0,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":9},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"icon_typography_font_weight\":\"normal\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"rgba(0,0,0,0.23)\",\"text_color_hover\":\"#02d3c9\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f8fe4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.99199999999999732835931354202330112457275390625,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"52a7ff6e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Pricing\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6b44671\"},{\"text\":\"Teams\",\"icon\":\"fa fa-caret-right\",\"_id\":\"6442eb7\"},{\"text\":\"Education\",\"icon\":\"fa fa-caret-right\",\"_id\":\"fc019a2\"},{\"text\":\"Refer a friend\",\"icon\":\"fa fa-caret-right\",\"_id\":\"1fd4f18\"},{\"text\":\"Updates\",\"icon\":\"fa fa-caret-right\",\"_id\":\"17a281d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":13},\"text_color\":\"rgba(0,0,0,0.79)\",\"text_indent\":{\"unit\":\"px\",\"size\":9},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"icon_typography_font_weight\":\"normal\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13},\"icon_color\":\"rgba(0,0,0,0.23)\",\"text_color_hover\":\"#02d3c9\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3da2dba6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":33,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65d0a5f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#02d3c9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34f33c4c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Your Name\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"name\",\"previous_button\":\"\",\"next_button\":\"\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"custom_id\":\"email\",\"previous_button\":\"\",\"next_button\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"field_border_color\":\"#c9c9c9\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#02d3c9\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.9000000000000003552713678800500929355621337890625},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#1c1c1c\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c0d098e\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":50},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"20\",\"bottom\":\"5\",\"left\":\"20\",\"isLinked\":false},\"_timestamp_\":\"v1OGQybnI0OUZVVmZhWG8yV1FqRFdCUT09\"},\"elements\":[{\"id\":\"523540b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"38bb0415\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2018 All rights reserved\\u200b\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#7a7a7a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"711d667e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c09b320\",\"elType\":\"widget\",\"settings\":{\"title\":\"Made with \\u2764 with Elementor\\u200b\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#7a7a7a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),
(3148,445,'_elementor_controls_usage','a:15:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:18;s:19:\"_inline_size_mobile\";i:5;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"layout\";i:2;s:3:\"gap\";i:2;s:8:\"html_tag\";i:2;s:13:\"content_width\";i:2;s:16:\"content_position\";i:2;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:27:\"background_hover_transition\";i:1;}s:14:\"section_border\";a:7:{s:26:\"box_shadow_box_shadow_type\";i:1;s:32:\"box_shadow_hover_box_shadow_type\";i:1;s:27:\"box_shadow_hover_box_shadow\";i:1;s:23:\"border_hover_transition\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:21:\"section_shape_divider\";a:2:{s:17:\"shape_divider_top\";i:1;s:24:\"shape_divider_top_height\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:11;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:9:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;s:4:\"menu\";i:1;s:10:\"text_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:14:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:27:\"menu_typography_font_family\";i:1;s:32:\"color_menu_item_hover_pointer_bg\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:23:\"border_radius_menu_item\";i:1;s:18:\"menu_space_between\";i:1;}s:22:\"section_style_dropdown\";a:8:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:35:\"dropdown_box_shadow_box_shadow_type\";i:1;s:30:\"dropdown_box_shadow_box_shadow\";i:1;}s:12:\"style_toggle\";a:7:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;s:29:\"toggle_background_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:6:\"marker\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:2:{s:12:\"marker_color\";i:1;s:12:\"stroke_width\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}}}s:14:\"call-to-action\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:18:\"section_main_image\";a:1:{s:8:\"bg_image\";i:2;}s:15:\"section_content\";a:2:{s:5:\"title\";i:2;s:11:\"description\";i:2;}}s:5:\"style\";a:2:{s:21:\"section_content_style\";a:6:{s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:33:\"description_typography_typography\";i:2;s:34:\"description_typography_font_family\";i:2;s:34:\"description_typography_font_weight\";i:2;}s:12:\"button_style\";a:1:{s:29:\"button_hover_background_color\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:2;s:10:\"text_color\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:2:{s:11:\"arrows_size\";i:1;s:9:\"dots_size\";i:1;}s:19:\"section_style_image\";a:2:{s:19:\"image_border_border\";i:1;s:18:\"image_border_color\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:3:{s:21:\"motion_fx_tilt_effect\";i:1;s:24:\"motion_fx_tilt_direction\";i:1;s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:3:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_color\";i:1;s:28:\"_background_hover_transition\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:5;s:5:\"align\";i:3;s:11:\"header_size\";i:4;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:5;s:20:\"typography_font_size\";i:4;s:25:\"typography_text_transform\";i:2;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:5:\"_skin\";i:1;s:16:\"cards_item_ratio\";i:1;}}s:5:\"style\";a:2:{s:27:\"cards_section_design_layout\";a:1:{s:16:\"cards_column_gap\";i:1;}s:25:\"cards_section_design_card\";a:1:{s:27:\"cards_card_vertical_padding\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:12:\"aspect_ratio\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:4:\"link\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:2:{s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:2;s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:7:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;s:16:\"text_color_hover\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_text\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_field_style\";a:4:{s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:7:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}}'),
(3149,445,'_elementor_css','a:6:{s:4:\"time\";i:1617207414;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:3:{i:0;s:9:\"fa-brands\";i:5;s:8:\"fa-solid\";i:15;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"2bd8c868\";i:1;s:8:\"2bd8c868\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(3150,446,'_wp_attached_file','2021/03/1-5.png'),
(3151,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:15:\"2021/03/1-5.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-5-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1-5-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-5-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:\"1-5-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"1-5-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"1-5-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"1-5-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"1-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"1-5-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"1-5-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"1-5-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3152,447,'_wp_attached_file','2021/03/7-1.png'),
(3153,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:15:\"2021/03/7-1.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"7-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"7-1-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"7-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:16:\"7-1-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"7-1-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"7-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"7-1-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"7-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"7-1-324x324.png\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"7-1-416x588.png\";s:5:\"width\";i:416;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"7-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3154,448,'_elementor_edit_mode','builder'),
(3155,448,'_elementor_template_type','archive'),
(3156,448,'_elementor_version','3.1.4'),
(3157,448,'_elementor_pro_version','3.2.1'),
(3158,448,'_wp_page_template','default'),
(3159,448,'_elementor_data','[{\"id\":\"7a076c6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"9c7e3bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3e20e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26c5278\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13a47d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"625f143\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6493515\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6e449cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c471b59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blogs \"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb2cf48\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83fd5f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":79.034999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"499af6d\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\\/\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More \\u00bb\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\"},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":false},{\"id\":\"a75e119\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20.6159999999999996589394868351519107818603515625},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(3160,449,'_elementor_edit_mode','builder'),
(3161,449,'_elementor_template_type','archive'),
(3162,449,'_elementor_version','3.1.4'),
(3163,449,'_elementor_pro_version','3.2.1'),
(3164,449,'_wp_page_template','default'),
(3165,449,'_elementor_data','[{\"id\":\"7a076c6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"9c7e3bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3e20e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26c5278\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13a47d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"625f143\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6493515\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6e449cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c471b59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blogs \"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb2cf48\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83fd5f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.61299999999999954525264911353588104248046875},\"elements\":[{\"id\":\"499af6d\",\"elType\":\"widget\",\"settings\":{\"archive_classic_meta_separator\":\"\\/\\/\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More \\u00bb\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\"},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":false},{\"id\":\"a75e119\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.038000000000000255795384873636066913604736328125},\"elements\":[{\"id\":\"af0b955\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"Click Here\",\"background_color\":\"#833ca3\",\"_id\":\"35ccf69\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1-5.png\",\"id\":446}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"08b2ab3\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7-1.png\",\"id\":447}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"2afafe2\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77}}]},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false}]'),
(3167,444,'_elementor_conditions','a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(3176,451,'_elementor_edit_mode','builder'),
(3177,451,'_elementor_template_type','archive'),
(3178,451,'_elementor_version','3.1.4'),
(3179,451,'_elementor_pro_version','3.2.1'),
(3180,451,'_wp_page_template','default'),
(3181,451,'_elementor_data','[{\"id\":\"7a076c6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"9c7e3bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3e20e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26c5278\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13a47d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"625f143\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6493515\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6e449cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c471b59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blogs \"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb2cf48\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83fd5f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.61299999999999954525264911353588104248046875},\"elements\":[{\"id\":\"499af6d\",\"elType\":\"widget\",\"settings\":{\"archive_classic_columns\":\"2\",\"archive_classic_meta_separator\":\"\\/\\/\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More \\u00bb\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\"},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":false},{\"id\":\"a75e119\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.038000000000000255795384873636066913604736328125},\"elements\":[{\"id\":\"af0b955\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"Click Here\",\"background_color\":\"#833ca3\",\"_id\":\"35ccf69\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1-5.png\",\"id\":446}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"08b2ab3\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7-1.png\",\"id\":447}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"2afafe2\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77}}]},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"130ec30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b337f13\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-archives\"}],\"isInner\":false}],\"isInner\":false}]'),
(3182,451,'_elementor_conditions','a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(3184,452,'_elementor_edit_mode','builder'),
(3185,452,'_elementor_template_type','archive'),
(3186,452,'_elementor_version','3.1.4'),
(3187,452,'_elementor_pro_version','3.2.1'),
(3188,452,'_wp_page_template','default'),
(3189,452,'_elementor_data','[{\"id\":\"7a076c6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"9c7e3bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3e20e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26c5278\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13a47d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"625f143\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6493515\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6e449cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c471b59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blogs \"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb2cf48\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83fd5f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.61299999999999954525264911353588104248046875},\"elements\":[{\"id\":\"499af6d\",\"elType\":\"widget\",\"settings\":{\"archive_classic_columns\":\"2\",\"archive_classic_meta_separator\":\"\\/\\/\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More \\u00bb\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\"},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":false},{\"id\":\"a75e119\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.038000000000000255795384873636066913604736328125},\"elements\":[{\"id\":\"af0b955\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"Click Here\",\"background_color\":\"#833ca3\",\"_id\":\"35ccf69\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1-5.png\",\"id\":446}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"08b2ab3\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7-1.png\",\"id\":447}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"2afafe2\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77}}]},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"130ec30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b337f13\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Blogs Archives\",\"dropdown\":\"on\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-archives\"}],\"isInner\":false}],\"isInner\":false}]'),
(3190,452,'_elementor_conditions','a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(3192,453,'_elementor_edit_mode','builder'),
(3193,453,'_elementor_template_type','archive'),
(3194,453,'_elementor_version','3.1.4'),
(3195,453,'_elementor_pro_version','3.2.1'),
(3196,454,'_elementor_edit_mode','builder'),
(3197,454,'_elementor_template_type','archive'),
(3198,454,'_elementor_version','3.1.4'),
(3199,454,'_elementor_pro_version','3.2.1'),
(3200,453,'_wp_page_template','default'),
(3201,453,'_elementor_data','[{\"id\":\"1a81db3a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"80f5c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2daf67ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47dbde5b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6fef0ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"683d25b9\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4181fb83\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"673f1d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42d244c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blogs \"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4959fa2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab0db12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.61299999999999954525264911353588104248046875},\"elements\":[{\"id\":\"4f50a835\",\"elType\":\"widget\",\"settings\":{\"archive_classic_columns\":\"2\",\"archive_classic_meta_separator\":\"\\/\\/\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More \\u00bb\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\"},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":false},{\"id\":\"108e1fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.038000000000000255795384873636066913604736328125},\"elements\":[{\"id\":\"54e248d5\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"Click Here\",\"background_color\":\"#833ca3\",\"_id\":\"35ccf69\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1-5.png\",\"id\":446}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"08b2ab3\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7-1.png\",\"id\":447}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"2afafe2\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77}}]},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"3310c477\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b4598e9\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Blogs Archives\",\"dropdown\":\"on\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-archives\"}],\"isInner\":false}],\"isInner\":false}]'),
(3202,455,'_elementor_edit_mode','builder'),
(3203,455,'_elementor_template_type','archive'),
(3204,455,'_elementor_version','3.1.4'),
(3205,455,'_elementor_pro_version','3.2.1'),
(3206,455,'_wp_page_template','default'),
(3207,455,'_elementor_data','[{\"id\":\"1a81db3a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"80f5c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2daf67ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47dbde5b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6fef0ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"683d25b9\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4181fb83\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"673f1d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42d244c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blogs \"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4959fa2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab0db12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.61299999999999954525264911353588104248046875},\"elements\":[{\"id\":\"4f50a835\",\"elType\":\"widget\",\"settings\":{\"archive_classic_columns\":\"2\",\"archive_classic_meta_separator\":\"\\/\\/\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More \\u00bb\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\"},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":false},{\"id\":\"108e1fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.038000000000000255795384873636066913604736328125},\"elements\":[{\"id\":\"54e248d5\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"Click Here\",\"background_color\":\"#833ca3\",\"_id\":\"35ccf69\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1-5.png\",\"id\":446}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"08b2ab3\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7-1.png\",\"id\":447}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"2afafe2\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77}}]},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"3310c477\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b4598e9\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Blogs Archives\",\"dropdown\":\"on\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-archives\"}],\"isInner\":false}],\"isInner\":false}]'),
(3209,57,'_elementor_css','a:6:{s:4:\"time\";i:1617233014;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:3:{i:0;s:9:\"fa-brands\";i:5;s:8:\"fa-solid\";i:15;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"2bd8c868\";i:1;s:8:\"2bd8c868\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(3214,456,'_elementor_edit_mode','builder'),
(3215,456,'_elementor_template_type','archive'),
(3216,456,'_elementor_version','3.1.4'),
(3217,456,'_elementor_pro_version','3.2.1'),
(3218,456,'_wp_page_template','default'),
(3219,456,'_elementor_data','[{\"id\":\"7a076c6\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"9c7e3bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3e20e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/CR-Banner-2-3.png\",\"id\":242},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26c5278\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"13a47d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"625f143\",\"elType\":\"widget\",\"settings\":{\"menu\":\"secondary-menu\",\"align_items\":\"center\",\"_background_background\":\"gradient\",\"_background_color\":\"#6DFF40\",\"_background_color_b\":\"#6DFF40\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6493515\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6e449cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c471b59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blogs \"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb2cf48\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83fd5f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.61299999999999954525264911353588104248046875},\"elements\":[{\"id\":\"499af6d\",\"elType\":\"widget\",\"settings\":{\"archive_classic_columns\":\"2\",\"archive_classic_meta_separator\":\"\\/\\/\\/\",\"archive_classic_read_more_text\":\"Read More \\u00bb\",\"archive_cards_meta_separator\":\"\\u2022\",\"archive_cards_read_more_text\":\"Read More \\u00bb\",\"archive_full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\"},\"elements\":[],\"widgetType\":\"archive-posts\"}],\"isInner\":false},{\"id\":\"a75e119\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.038000000000000255795384873636066913604736328125},\"elements\":[{\"id\":\"af0b955\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"Click Here\",\"background_color\":\"#833ca3\",\"_id\":\"35ccf69\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/1-5.png\",\"id\":446}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#4054b2\",\"_id\":\"08b2ab3\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/7-1.png\",\"id\":447}},{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#1abc9c\",\"_id\":\"2afafe2\",\"background_image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/4.png\",\"id\":77}}]},\"elements\":[],\"widgetType\":\"slides\"},{\"id\":\"130ec30\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Untitled-design-10.png\",\"id\":35}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b337f13\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Blogs Archives\",\"dropdown\":\"on\",\"count\":\"on\"}},\"elements\":[],\"widgetType\":\"wp-widget-archives\"}],\"isInner\":false}],\"isInner\":false}]'),
(3220,456,'_elementor_conditions','a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(3221,456,'_elementor_css','a:6:{s:4:\"time\";i:1617233245;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(3222,444,'_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:4:\"menu\";i:1;s:11:\"align_items\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}}}s:13:\"archive-posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:1:{s:23:\"archive_classic_columns\";i:1;}}}}s:6:\"slides\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:1:{s:6:\"slides\";i:1;}}}}s:18:\"wp-widget-archives\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),
(3223,444,'_elementor_css','a:6:{s:4:\"time\";i:1617233284;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(3224,453,'_elementor_css','a:6:{s:4:\"time\";i:1617233663;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(3225,453,'_wp_trash_meta_status','publish'),
(3226,453,'_wp_trash_meta_time','1617233699'),
(3227,453,'_wp_desired_post_slug','blog-archive-2');
/*!40000 ALTER TABLE `wpcx_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_posts`
--

DROP TABLE IF EXISTS `wpcx_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_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 NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text 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 NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) 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=457 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_posts`
--

LOCK TABLES `wpcx_posts` WRITE;
/*!40000 ALTER TABLE `wpcx_posts` DISABLE KEYS */;
INSERT INTO `wpcx_posts` VALUES
(1,1,'2021-03-30 03:15:01','2021-03-30 03:15:01','<!-- wp:paragraph -->\n<p>So this the post section and it\'s really a demo because I really caan\'t think of anything to write right now. I just wanted to see how a post looks. I think it will look nice. I hope so. It\'s 7 am and I haven\'t slept, so yeah, I need some feel good. :-)</p>\n<!-- /wp:paragraph -->','Big Ideas','','trash','open','open','','hello-world__trashed','','','2021-03-30 06:10:21','2021-03-30 06:10:21','',0,'http://choiceresources.co.uk/?p=1',0,'post','',1),
(2,1,'2021-03-30 03:15:01','2021-03-30 03:15:01','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://choiceresources.co.uk/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2021-03-30 03:15:01','2021-03-30 03:15:01','',0,'http://choiceresources.co.uk/?page_id=2',0,'page','',0),
(3,1,'2021-03-30 03:15:01','2021-03-30 03:15:01','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://choiceresources.co.uk.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-03-30 03:15:01','2021-03-30 03:15:01','',0,'http://choiceresources.co.uk/?page_id=3',0,'page','',0),
(4,1,'2021-03-30 03:15:14','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2021-03-30 03:15:14','0000-00-00 00:00:00','',0,'http://choiceresources.co.uk/?p=4',0,'post','',0),
(6,1,'2021-03-30 03:20:07','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2021-03-30 03:20:07','0000-00-00 00:00:00','',0,'http://choiceresources.co.uk/?page_id=6',0,'page','',0),
(7,1,'2021-03-30 03:25:27','2021-03-30 03:25:27','\n					<!-- wp:heading {\"align\":\"wide\",\"fontSize\":\"gigantic\",\"style\":{\"typography\":{\"lineHeight\":\"1.1\"}}} -->\n					<h2 class=\"alignwide has-text-align-wide has-gigantic-font-size\" style=\"line-height:1.1\">Create your website with blocks</h2>\n					<!-- /wp:heading -->\n\n					<!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-columns-overlap\"} -->\n					<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-style-twentytwentyone-columns-overlap\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\"} -->\n					<figure class=\"wp-block-image alignfull size-large\"><img src=\"http://choiceresources.co.uk/wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg\" alt=\"&#8220;Roses TrÃ©miÃ¨res&#8221; by Berthe Morisot\"/></figure>\n					<!-- /wp:image -->\n\n					<!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\",\"className\":\"is-style-twentytwentyone-image-frame\"} -->\n					<figure class=\"wp-block-image alignfull size-large is-style-twentytwentyone-image-frame\"><img src=\"http://choiceresources.co.uk/wp-content/themes/twentytwentyone/assets/images/in-the-bois-de-boulogne.jpg\" alt=\"&#8220;In the Bois de Boulogne&#8221; by Berthe Morisot\"/></figure>\n					<!-- /wp:image --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:image {\"sizeSlug\":\"large\",\"className\":\"alignfull size-full is-style-twentytwentyone-border\"} -->\n					<figure class=\"wp-block-image size-large alignfull size-full is-style-twentytwentyone-border\"><img src=\"http://choiceresources.co.uk/wp-content/themes/twentytwentyone/assets/images/young-woman-in-mauve.jpg\" alt=\"&#8220;Young Woman in Mauve&#8221; by Berthe Morisot\"/></figure>\n					<!-- /wp:image --></div>\n					<!-- /wp:column --></div>\n					<!-- /wp:columns -->\n\n					<!-- wp:spacer {\"height\":50} -->\n					<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\n					<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n					<h3>Add block patterns</h3>\n					<!-- /wp:heading -->\n\n					<!-- wp:paragraph -->\n					<p>Block patterns are pre-designed groups of blocks. To add one, select the Add Block button [+] in the toolbar at the top of the editor. Switch to the Patterns tab underneath the search bar, and choose a pattern.</p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n					<h3>Frame your images</h3>\n					<!-- /wp:heading -->\n\n					<!-- wp:paragraph -->\n					<p>Twenty Twenty-One includes stylish borders for your content. With an Image block selected, open the &quot;Styles&quot; panel within the Editor sidebar. Select the &quot;Frame&quot; block style to activate it.</p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n					<h3>Overlap columns</h3>\n					<!-- /wp:heading -->\n\n					<!-- wp:paragraph -->\n					<p>Twenty Twenty-One also includes an overlap style for column blocks. With a Columns block selected, open the &quot;Styles&quot; panel within the Editor sidebar. Choose the &quot;Overlap&quot; block style to try it out.</p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column --></div>\n					<!-- /wp:columns -->\n\n					<!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:cover {\"overlayColor\":\"green\",\"contentPosition\":\"center center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-border\"} -->\n					<div class=\"wp-block-cover alignwide has-green-background-color has-background-dim is-style-twentytwentyone-border\"><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":20} -->\n					<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:paragraph {\"fontSize\":\"huge\"} -->\n					<p class=\"has-huge-font-size\">Need help?</p>\n					<!-- /wp:paragraph -->\n\n					<!-- wp:spacer {\"height\":75} -->\n					<div style=\"height:75px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:columns -->\n					<div class=\"wp-block-columns\"><!-- wp:column -->\n					<div class=\"wp-block-column\"><!-- wp:paragraph -->\n					<p><a href=\"https://wordpress.org/support/article/twenty-twenty-one/\">Read the Theme Documentation</a></p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column -->\n					<div class=\"wp-block-column\"><!-- wp:paragraph -->\n					<p><a href=\"https://wordpress.org/support/theme/twentytwentyone/\">Check out the Support Forums</a></p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column --></div>\n					<!-- /wp:columns -->\n\n					<!-- wp:spacer {\"height\":20} -->\n					<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer --></div></div>\n					<!-- /wp:cover -->','Create your website with blocks','','publish','closed','closed','','create-your-website-with-blocks','','','2021-03-30 03:25:27','2021-03-30 03:25:27','',0,'http://choiceresources.co.uk/?page_id=7',0,'page','',0),
(8,1,'2021-03-30 03:25:27','2021-03-30 03:25:27','<!-- wp:paragraph -->\n<p>You might be an artist who would like to introduce yourself and your work here or maybe youâ€™re a business with a mission to describe.</p>\n<!-- /wp:paragraph -->','About us','','publish','closed','closed','','about','','','2021-03-30 10:42:46','2021-03-30 10:42:46','',0,'http://choiceresources.co.uk/?page_id=8',0,'page','',0),
(9,1,'2021-03-30 03:25:27','2021-03-30 03:25:27','<!-- wp:paragraph -->\n<p>This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.</p>\n<!-- /wp:paragraph -->','Contact us','','publish','closed','closed','','contact','','','2021-03-30 10:43:17','2021-03-30 10:43:17','',0,'http://choiceresources.co.uk/?page_id=9',0,'page','',0),
(10,1,'2021-03-30 03:25:27','2021-03-30 03:25:27','','Blog','','publish','closed','closed','','blog','','','2021-03-30 03:25:27','2021-03-30 03:25:27','',0,'http://choiceresources.co.uk/?page_id=10',0,'page','',0),
(11,1,'2021-03-30 03:25:27','2021-03-30 03:25:27','{\n    \"nav_menus_created_posts\": {\n        \"starter_content\": true,\n        \"value\": [\n            7,\n            8,\n            9,\n            10\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:20:49\"\n    },\n    \"nav_menu[-1]\": {\n        \"value\": {\n            \"name\": \"Primary menu\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"auto_add\": false\n        },\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    },\n    \"nav_menu_item[-1]\": {\n        \"value\": {\n            \"object_id\": 0,\n            \"object\": \"\",\n            \"menu_item_parent\": 0,\n            \"position\": 0,\n            \"type\": \"custom\",\n            \"title\": \"Home\",\n            \"url\": \"http://choiceresources.co.uk/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"\",\n            \"nav_menu_term_id\": -1,\n            \"_invalid\": false,\n            \"type_label\": \"Custom Link\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    },\n    \"nav_menu_item[-2]\": {\n        \"value\": {\n            \"object_id\": 8,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 1,\n            \"type\": \"post_type\",\n            \"title\": \"About\",\n            \"url\": \"\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"About\",\n            \"nav_menu_term_id\": -1,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    },\n    \"nav_menu_item[-3]\": {\n        \"value\": {\n            \"object_id\": 10,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 2,\n            \"type\": \"post_type\",\n            \"title\": \"Blog\",\n            \"url\": \"\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Blog\",\n            \"nav_menu_term_id\": -1,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    },\n    \"nav_menu_item[-4]\": {\n        \"value\": {\n            \"object_id\": 9,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 3,\n            \"type\": \"post_type\",\n            \"title\": \"Contact\",\n            \"url\": \"\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Contact\",\n            \"nav_menu_term_id\": -1,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    },\n    \"twentytwentyone::nav_menu_locations[primary]\": {\n        \"starter_content\": true,\n        \"value\": -1,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:20:49\"\n    },\n    \"nav_menu[-5]\": {\n        \"value\": {\n            \"name\": \"Secondary menu\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"auto_add\": false\n        },\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    },\n    \"nav_menu_item[-5]\": {\n        \"value\": {\n            \"object_id\": 0,\n            \"object\": \"\",\n            \"menu_item_parent\": 0,\n            \"position\": 0,\n            \"type\": \"custom\",\n            \"title\": \"Facebook\",\n            \"url\": \"https://www.facebook.com/wordpress\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"\",\n            \"nav_menu_term_id\": -5,\n            \"_invalid\": false,\n            \"type_label\": \"Custom Link\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    },\n    \"nav_menu_item[-6]\": {\n        \"value\": {\n            \"object_id\": 0,\n            \"object\": \"\",\n            \"menu_item_parent\": 0,\n            \"position\": 1,\n            \"type\": \"custom\",\n            \"title\": \"Twitter\",\n            \"url\": \"https://twitter.com/wordpress\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"\",\n            \"nav_menu_term_id\": -5,\n            \"_invalid\": false,\n            \"type_label\": \"Custom Link\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    },\n    \"nav_menu_item[-7]\": {\n        \"value\": {\n            \"object_id\": 0,\n            \"object\": \"\",\n            \"menu_item_parent\": 0,\n            \"position\": 2,\n            \"type\": \"custom\",\n            \"title\": \"Instagram\",\n            \"url\": \"https://www.instagram.com/explore/tags/wordcamp/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"\",\n            \"nav_menu_term_id\": -5,\n            \"_invalid\": false,\n            \"type_label\": \"Custom Link\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    },\n    \"nav_menu_item[-8]\": {\n        \"value\": {\n            \"object_id\": 0,\n            \"object\": \"\",\n            \"menu_item_parent\": 0,\n            \"position\": 3,\n            \"type\": \"custom\",\n            \"title\": \"Email\",\n            \"url\": \"mailto:wordpress@example.com\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"\",\n            \"nav_menu_term_id\": -5,\n            \"_invalid\": false,\n            \"type_label\": \"Custom Link\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    },\n    \"twentytwentyone::nav_menu_locations[footer]\": {\n        \"starter_content\": true,\n        \"value\": -5,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:20:49\"\n    },\n    \"show_on_front\": {\n        \"starter_content\": true,\n        \"value\": \"page\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:20:49\"\n    },\n    \"page_on_front\": {\n        \"starter_content\": true,\n        \"value\": 7,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:20:49\"\n    },\n    \"page_for_posts\": {\n        \"starter_content\": true,\n        \"value\": 10,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:20:49\"\n    },\n    \"twentytwentyone::background_color\": {\n        \"value\": \"#fbc351\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-03-30 03:25:27\"\n    }\n}','','','trash','closed','closed','','33f78bf8-2ccd-4b8c-8bcd-d8139a2ae6b0','','','2021-03-30 03:25:27','2021-03-30 03:25:27','',0,'http://choiceresources.co.uk/?p=11',0,'customize_changeset','',0),
(12,1,'2021-03-30 03:20:53','2021-03-30 03:20:53','','Default Kit','','publish','closed','closed','','default-kit','','','2021-03-31 16:16:30','2021-03-31 16:16:30','',0,'http://choiceresources.co.uk/?elementor_library=default-kit',0,'elementor_library','',0),
(13,1,'2021-03-30 03:25:27','2021-03-30 03:25:27','\n					<!-- wp:heading {\"align\":\"wide\",\"fontSize\":\"gigantic\",\"style\":{\"typography\":{\"lineHeight\":\"1.1\"}}} -->\n					<h2 class=\"alignwide has-text-align-wide has-gigantic-font-size\" style=\"line-height:1.1\">Create your website with blocks</h2>\n					<!-- /wp:heading -->\n\n					<!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-columns-overlap\"} -->\n					<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-style-twentytwentyone-columns-overlap\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\"} -->\n					<figure class=\"wp-block-image alignfull size-large\"><img src=\"http://choiceresources.co.uk/wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg\" alt=\"&#8220;Roses TrÃ©miÃ¨res&#8221; by Berthe Morisot\"/></figure>\n					<!-- /wp:image -->\n\n					<!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\",\"className\":\"is-style-twentytwentyone-image-frame\"} -->\n					<figure class=\"wp-block-image alignfull size-large is-style-twentytwentyone-image-frame\"><img src=\"http://choiceresources.co.uk/wp-content/themes/twentytwentyone/assets/images/in-the-bois-de-boulogne.jpg\" alt=\"&#8220;In the Bois de Boulogne&#8221; by Berthe Morisot\"/></figure>\n					<!-- /wp:image --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:image {\"sizeSlug\":\"large\",\"className\":\"alignfull size-full is-style-twentytwentyone-border\"} -->\n					<figure class=\"wp-block-image size-large alignfull size-full is-style-twentytwentyone-border\"><img src=\"http://choiceresources.co.uk/wp-content/themes/twentytwentyone/assets/images/young-woman-in-mauve.jpg\" alt=\"&#8220;Young Woman in Mauve&#8221; by Berthe Morisot\"/></figure>\n					<!-- /wp:image --></div>\n					<!-- /wp:column --></div>\n					<!-- /wp:columns -->\n\n					<!-- wp:spacer {\"height\":50} -->\n					<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\n					<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n					<h3>Add block patterns</h3>\n					<!-- /wp:heading -->\n\n					<!-- wp:paragraph -->\n					<p>Block patterns are pre-designed groups of blocks. To add one, select the Add Block button [+] in the toolbar at the top of the editor. Switch to the Patterns tab underneath the search bar, and choose a pattern.</p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n					<h3>Frame your images</h3>\n					<!-- /wp:heading -->\n\n					<!-- wp:paragraph -->\n					<p>Twenty Twenty-One includes stylish borders for your content. With an Image block selected, open the &quot;Styles&quot; panel within the Editor sidebar. Select the &quot;Frame&quot; block style to activate it.</p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n					<h3>Overlap columns</h3>\n					<!-- /wp:heading -->\n\n					<!-- wp:paragraph -->\n					<p>Twenty Twenty-One also includes an overlap style for column blocks. With a Columns block selected, open the &quot;Styles&quot; panel within the Editor sidebar. Choose the &quot;Overlap&quot; block style to try it out.</p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column --></div>\n					<!-- /wp:columns -->\n\n					<!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:cover {\"overlayColor\":\"green\",\"contentPosition\":\"center center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-border\"} -->\n					<div class=\"wp-block-cover alignwide has-green-background-color has-background-dim is-style-twentytwentyone-border\"><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":20} -->\n					<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:paragraph {\"fontSize\":\"huge\"} -->\n					<p class=\"has-huge-font-size\">Need help?</p>\n					<!-- /wp:paragraph -->\n\n					<!-- wp:spacer {\"height\":75} -->\n					<div style=\"height:75px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:columns -->\n					<div class=\"wp-block-columns\"><!-- wp:column -->\n					<div class=\"wp-block-column\"><!-- wp:paragraph -->\n					<p><a href=\"https://wordpress.org/support/article/twenty-twenty-one/\">Read the Theme Documentation</a></p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column -->\n					<div class=\"wp-block-column\"><!-- wp:paragraph -->\n					<p><a href=\"https://wordpress.org/support/theme/twentytwentyone/\">Check out the Support Forums</a></p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column --></div>\n					<!-- /wp:columns -->\n\n					<!-- wp:spacer {\"height\":20} -->\n					<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer --></div></div>\n					<!-- /wp:cover -->','Create your website with blocks','','inherit','closed','closed','','7-revision-v1','','','2021-03-30 03:25:27','2021-03-30 03:25:27','',7,'http://choiceresources.co.uk/?p=13',0,'revision','',0),
(14,1,'2021-03-30 03:25:27','2021-03-30 03:25:27','<!-- wp:paragraph -->\n<p>You might be an artist who would like to introduce yourself and your work here or maybe you&rsquo;re a business with a mission to describe.</p>\n<!-- /wp:paragraph -->','About','','inherit','closed','closed','','8-revision-v1','','','2021-03-30 03:25:27','2021-03-30 03:25:27','',8,'http://choiceresources.co.uk/?p=14',0,'revision','',0),
(15,1,'2021-03-30 03:25:27','2021-03-30 03:25:27','<!-- wp:paragraph -->\n<p>This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.</p>\n<!-- /wp:paragraph -->','Contact','','inherit','closed','closed','','9-revision-v1','','','2021-03-30 03:25:27','2021-03-30 03:25:27','',9,'http://choiceresources.co.uk/?p=15',0,'revision','',0),
(16,1,'2021-03-30 03:25:27','2021-03-30 03:25:27','','Blog','','inherit','closed','closed','','10-revision-v1','','','2021-03-30 03:25:27','2021-03-30 03:25:27','',10,'http://choiceresources.co.uk/?p=16',0,'revision','',0),
(17,1,'2021-03-31 19:37:13','2021-03-30 03:25:27','','Home','','publish','closed','closed','','home','','','2021-03-31 19:37:13','2021-03-31 19:37:13','',0,'http://choiceresources.co.uk/2021/03/30/home/',1,'nav_menu_item','',0),
(18,1,'2021-03-31 19:37:13','2021-03-30 03:25:27',' ','','','publish','closed','closed','','18','','','2021-03-31 19:37:13','2021-03-31 19:37:13','',0,'http://choiceresources.co.uk/2021/03/30/18/',2,'nav_menu_item','',0),
(19,1,'2021-03-31 19:37:13','2021-03-30 03:25:27',' ','','','publish','closed','closed','','19','','','2021-03-31 19:37:13','2021-03-31 19:37:13','',0,'http://choiceresources.co.uk/2021/03/30/19/',3,'nav_menu_item','',0),
(20,1,'2021-03-31 19:37:13','2021-03-30 03:25:27',' ','','','publish','closed','closed','','20','','','2021-03-31 19:37:13','2021-03-31 19:37:13','',0,'http://choiceresources.co.uk/2021/03/30/20/',6,'nav_menu_item','',0),
(25,1,'2021-03-30 03:26:13','2021-03-30 03:26:13','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-03-30 03:26:13','2021-03-30 03:26:13','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/woocommerce-placeholder.png',0,'attachment','image/png',0),
(26,1,'2021-03-30 03:26:13','2021-03-30 03:26:13','','Shop','','publish','closed','closed','','shop','','','2021-03-30 03:26:13','2021-03-30 03:26:13','',0,'http://choiceresources.co.uk/shop/',0,'page','',0),
(27,1,'2021-03-30 03:26:13','2021-03-30 03:26:13','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2021-03-30 03:26:13','2021-03-30 03:26:13','',0,'http://choiceresources.co.uk/cart/',0,'page','',0),
(28,1,'2021-03-30 03:26:13','2021-03-30 03:26:13','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2021-03-30 03:26:13','2021-03-30 03:26:13','',0,'http://choiceresources.co.uk/checkout/',0,'page','',0),
(29,1,'2021-03-30 03:26:13','2021-03-30 03:26:13','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2021-03-30 03:26:13','2021-03-30 03:26:13','',0,'http://choiceresources.co.uk/my-account/',0,'page','',0),
(30,1,'2021-03-30 03:33:21','2021-03-30 03:33:21','looks like this and looks like that','Product 1','nice product very nice','publish','open','closed','','product-1','','','2021-03-30 03:41:37','2021-03-30 03:41:37','',0,'http://choiceresources.co.uk/?post_type=product&#038;p=30',0,'product','',0),
(31,1,'2021-03-30 03:31:34','2021-03-30 03:31:34','','PE Tracker','','inherit','open','closed','','pe-tracker','','','2021-03-30 03:31:34','2021-03-30 03:31:34','',30,'http://choiceresources.co.uk/wp-content/uploads/2021/03/PE-Tracker.jpg',0,'attachment','image/jpeg',0),
(32,1,'2021-03-30 03:32:24','2021-03-30 03:32:24','','PE Tracker','','inherit','open','closed','','pe-tracker-2','','','2021-03-30 03:32:24','2021-03-30 03:32:24','',30,'http://choiceresources.co.uk/wp-content/uploads/woocommerce_uploads/2021/03/PE-Tracker-5lizl4.jpg',0,'attachment','image/jpeg',0),
(33,1,'2021-03-30 03:33:03','2021-03-30 03:33:03','','Music Tracker','','inherit','open','closed','','music-tracker','','','2021-03-30 03:33:03','2021-03-30 03:33:03','',30,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Music-Tracker-.jpg',0,'attachment','image/jpeg',0),
(34,1,'2021-03-30 03:35:23','2021-03-30 03:35:23','Very nice very nice looks nice','Product 2','Very nice very nice looks nice','publish','open','closed','','product-2','','','2021-03-30 03:41:25','2021-03-30 03:41:25','',0,'http://choiceresources.co.uk/?post_type=product&#038;p=34',0,'product','',0),
(35,1,'2021-03-30 03:34:30','2021-03-30 03:34:30','','Untitled design (10)','','inherit','open','closed','','untitled-design-10','','','2021-03-30 03:34:30','2021-03-30 03:34:30','',34,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png',0,'attachment','image/png',0),
(36,1,'2021-03-30 03:35:08','2021-03-30 03:35:08','','Untitled design (9)','','inherit','open','closed','','untitled-design-9','','','2021-03-30 03:35:08','2021-03-30 03:35:08','',34,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9.png',0,'attachment','image/png',0),
(37,1,'2021-03-30 03:37:27','2021-03-30 03:37:27','Very nice very nice looks nice','Product 3','Very nice very nice looks nice','publish','open','closed','','product-3','','','2021-03-30 03:41:11','2021-03-30 03:41:11','',0,'http://choiceresources.co.uk/?post_type=product&#038;p=37',0,'product','',0),
(38,1,'2021-03-30 03:36:45','2021-03-30 03:36:45','','Alphabet feelings Flashcards','','inherit','open','closed','','alphabet-feelings-flashcards','','','2021-03-30 03:36:45','2021-03-30 03:36:45','',37,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Alphabet-feelings-Flashcards-.jpg',0,'attachment','image/jpeg',0),
(39,1,'2021-03-30 03:37:06','2021-03-30 03:37:06','','Alphabet feelings Flashcards','','inherit','open','closed','','alphabet-feelings-flashcards-2','','','2021-03-30 03:37:06','2021-03-30 03:37:06','',37,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Alphabet-feelings-Flashcards-1-1.jpg',0,'attachment','image/jpeg',0),
(40,1,'2021-03-30 03:39:17','2021-03-30 03:39:17','Very nice very nice looks nice','Product 4','Very nice very nice looks nice','publish','open','closed','','product-4','','','2021-03-30 03:41:01','2021-03-30 03:41:01','',0,'http://choiceresources.co.uk/?post_type=product&#038;p=40',0,'product','',0),
(41,1,'2021-03-30 03:38:36','2021-03-30 03:38:36','','Ready, Steady, Grow!','','inherit','open','closed','','ready-steady-grow','','','2021-03-30 03:38:36','2021-03-30 03:38:36','',40,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Ready-Steady-Grow.jpg',0,'attachment','image/jpeg',0),
(42,1,'2021-03-30 03:39:08','2021-03-30 03:39:08','','Ready, Steady, Grow!','','inherit','open','closed','','ready-steady-grow-2','','','2021-03-30 03:39:08','2021-03-30 03:39:08','',40,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Ready-Steady-Grow-1.jpg',0,'attachment','image/jpeg',0),
(43,1,'2021-03-30 03:53:48','2021-03-30 03:53:48','','Elementor Header #43','','publish','closed','closed','','elementor-header-43','','','2021-03-31 14:31:31','2021-03-31 14:31:31','',0,'http://choiceresources.co.uk/?post_type=elementor_library&#038;p=43',0,'elementor_library','',0),
(44,1,'2021-03-30 03:50:22','2021-03-30 03:50:22','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 03:50:22','2021-03-30 03:50:22','',43,'http://choiceresources.co.uk/?p=44',0,'revision','',0),
(45,1,'2021-03-30 03:50:52','2021-03-30 03:50:52','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2021-03-30 03:50:52','2021-03-30 03:50:52','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/placeholder.png',0,'attachment','image/png',0),
(46,1,'2021-03-30 03:52:00','2021-03-30 03:52:00','','Resturant_Logo.png','','inherit','open','closed','','resturant_logo-png','','','2021-03-30 03:52:00','2021-03-30 03:52:00','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Resturant_Logo.png',0,'attachment','image/png',0),
(47,1,'2021-03-30 03:52:00','2021-03-30 03:52:00','','Menu.svg','','inherit','open','closed','','menu-svg','','','2021-03-30 03:52:00','2021-03-30 03:52:00','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Menu.svg',0,'attachment','image/svg+xml',0),
(48,1,'2021-03-30 03:55:35','2021-03-30 03:55:35','<img width=\"324\" height=\"48\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Resturant_Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Resturant_Logo.png 324w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Resturant_Logo-300x44.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />											\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<a href=\"https://library.elementor.com/japanese-restaurant/reservations/\" role=\"button\">\n						RESERVATIONS\n					</a>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"fcd95e07-8bd7-469f-808c-4bea57f73182\" data-name=\"Layer 1\" width=\"33.2114\" height=\"12.6055\" viewBox=\"0 0 33.2114 12.6055\"><rect x=\"0.106\" width=\"33\" height=\"2\"></rect><rect x=\"0.4016\" y=\"9.2498\" width=\"33.1968\" height=\"2.0001\" transform=\"translate(-1.4366 1.4718) rotate(-6.4411)\"></rect></svg>			\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 03:55:35','2021-03-30 03:55:35','',43,'http://choiceresources.co.uk/?p=48',0,'revision','',0),
(49,1,'2021-03-30 03:55:49','2021-03-30 03:55:49','','Elementor Footer #49','','publish','closed','closed','','elementor-footer-49','','','2021-03-30 23:29:20','2021-03-30 23:29:20','',0,'http://choiceresources.co.uk/?post_type=elementor_library&#038;p=49',0,'elementor_library','',0),
(50,1,'2021-03-30 03:55:49','2021-03-30 03:55:49','','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 03:55:49','2021-03-30 03:55:49','',49,'http://choiceresources.co.uk/?p=50',0,'revision','',0),
(51,1,'2021-03-30 03:57:28','2021-03-30 03:57:28','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 03:57:28','2021-03-30 03:57:28','',49,'http://choiceresources.co.uk/?p=51',0,'revision','',0),
(52,1,'2021-03-30 04:00:28','2021-03-30 04:00:28','','Elementor Single Product #52','','trash','closed','closed','','__trashed','','','2021-03-30 04:00:28','2021-03-30 04:00:28','',0,'http://choiceresources.co.uk/?post_type=elementor_library&#038;p=52',0,'elementor_library','',0),
(53,1,'2021-03-30 03:58:55','2021-03-30 03:58:55','','Elementor Single Product #52','','inherit','closed','closed','','52-revision-v1','','','2021-03-30 03:58:55','2021-03-30 03:58:55','',52,'http://choiceresources.co.uk/?p=53',0,'revision','',0),
(55,1,'2021-03-30 04:07:32','0000-00-00 00:00:00','Share on facebook\n										Facebook									\n								Share on twitter\n										Twitter									\n								Share on linkedin\n										LinkedIn									\n								Share on whatsapp\n										WhatsApp									\n								Share on email\n										Email','Elementor Single Product #55','','draft','closed','closed','','','','','2021-03-30 04:07:32','2021-03-30 04:07:32','',0,'http://choiceresources.co.uk/?post_type=elementor_library&#038;p=55',0,'elementor_library','',0),
(56,1,'2021-03-30 04:00:32','2021-03-30 04:00:32','','Elementor Single Product #55','','inherit','closed','closed','','55-revision-v1','','','2021-03-30 04:00:32','2021-03-30 04:00:32','',55,'http://choiceresources.co.uk/?p=56',0,'revision','',0),
(57,1,'2021-03-30 04:12:26','2021-03-30 04:12:26','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Google-plus\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Snapchat\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<h4>Navigation</h4>		\n					<ul>\n							<li>\n										About\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Contact\n									</li>\n								<li>\n										Support\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Pricing\n									</li>\n								<li>\n										Teams\n									</li>\n								<li>\n										Education\n									</li>\n								<li>\n										Refer a friend\n									</li>\n								<li>\n										Updates\n									</li>\n						</ul>\n			<h4>Newsletter</h4>		\n			<p>Â© 2018 All rights reservedâ€‹</p>		\n			<p>Made with â¤ with Elementorâ€‹</p>','Home','','publish','closed','closed','','home','','','2021-03-30 23:36:20','2021-03-30 23:36:20','',0,'http://choiceresources.co.uk/?page_id=57',0,'page','',0),
(58,1,'2021-03-30 04:10:05','2021-03-30 04:10:05','','home about us shop cart (2)','','inherit','open','closed','','home-about-us-shop-cart-2','','','2021-03-30 04:10:05','2021-03-30 04:10:05','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/home-about-us-shop-cart-2.png',0,'attachment','image/png',0),
(59,1,'2021-03-30 04:12:26','2021-03-30 04:12:26','','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 04:12:26','2021-03-30 04:12:26','',57,'http://choiceresources.co.uk/?p=59',0,'revision','',0),
(60,1,'2021-03-30 04:16:26','2021-03-30 04:16:26','','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 04:16:26','2021-03-30 04:16:26','',57,'http://choiceresources.co.uk/?p=60',0,'revision','',0),
(61,1,'2021-03-30 04:16:26','2021-03-30 04:16:26','','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 04:16:26','2021-03-30 04:16:26','',57,'http://choiceresources.co.uk/?p=61',0,'revision','',0),
(62,1,'2021-03-30 04:16:26','2021-03-30 04:16:26','','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 04:16:26','2021-03-30 04:16:26','',57,'http://choiceresources.co.uk/?p=62',0,'revision','',0),
(63,1,'2021-03-30 04:21:10','2021-03-30 04:21:10','','CR Banner 2 (2)','','inherit','open','closed','','cr-banner-2-2','','','2021-03-30 04:21:10','2021-03-30 04:21:10','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg',0,'attachment','image/jpeg',0),
(64,1,'2021-03-30 04:26:31','2021-03-30 04:26:31','','Copy of CR Banner 2 (3)','','inherit','open','closed','','copy-of-cr-banner-2-3','','','2021-03-30 04:26:31','2021-03-30 04:26:31','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Copy-of-CR-Banner-2-3.png',0,'attachment','image/png',0),
(65,1,'2021-03-30 04:27:22','2021-03-30 04:27:22','','Music Tracker','','inherit','open','closed','','music-tracker-2','','','2021-03-30 04:27:22','2021-03-30 04:27:22','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Music-Tracker-1-1.jpg',0,'attachment','image/jpeg',0),
(66,1,'2021-03-30 04:31:57','2021-03-30 04:31:57','','A Day at the Allotment','','inherit','open','closed','','a-day-at-the-allotment','','','2021-03-30 04:31:57','2021-03-30 04:31:57','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/A-Day-at-the-Allotment.jpg',0,'attachment','image/jpeg',0),
(68,1,'2021-03-30 04:32:24','2021-03-30 04:32:24','','Untitled design (5)','','inherit','open','closed','','untitled-design-5','','','2021-03-30 04:32:24','2021-03-30 04:32:24','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-5.png',0,'attachment','image/png',0),
(69,1,'2021-03-30 04:33:18','2021-03-30 04:33:18','','Science (2)','','inherit','open','closed','','science-2','','','2021-03-30 04:33:18','2021-03-30 04:33:18','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Science-2.png',0,'attachment','image/png',0),
(70,1,'2021-03-30 04:35:05','2021-03-30 04:35:05','','Geography Tracker','','inherit','open','closed','','geography-tracker','','','2021-03-30 04:35:05','2021-03-30 04:35:05','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Geography-Tracker.jpg',0,'attachment','image/jpeg',0),
(71,1,'2021-03-30 04:35:53','2021-03-30 04:35:53','','Booklet Art Tracker (3)','','inherit','open','closed','','booklet-art-tracker-3','','','2021-03-30 04:35:53','2021-03-30 04:35:53','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Booklet-Art-Tracker-3.png',0,'attachment','image/png',0),
(72,1,'2021-03-30 04:41:17','2021-03-30 04:41:17','','PE Tracker','','inherit','open','closed','','pe-tracker-3','','','2021-03-30 04:41:17','2021-03-30 04:41:17','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/PE-Tracker-1.jpg',0,'attachment','image/jpeg',0),
(73,1,'2021-03-30 04:41:19','2021-03-30 04:41:19','','Music Tracker','','inherit','open','closed','','music-tracker-3','','','2021-03-30 04:41:19','2021-03-30 04:41:19','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Music-Tracker-1-2.jpg',0,'attachment','image/jpeg',0),
(74,1,'2021-03-30 04:46:45','2021-03-30 04:46:45','','1','','inherit','open','closed','','1','','','2021-03-30 04:46:45','2021-03-30 04:46:45','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/1.png',0,'attachment','image/png',0),
(75,1,'2021-03-30 04:46:48','2021-03-30 04:46:48','','2','','inherit','open','closed','','2','','','2021-03-30 04:46:48','2021-03-30 04:46:48','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/2.png',0,'attachment','image/png',0),
(76,1,'2021-03-30 04:46:55','2021-03-30 04:46:55','','3','','inherit','open','closed','','3','','','2021-03-30 04:46:55','2021-03-30 04:46:55','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/3.png',0,'attachment','image/png',0),
(77,1,'2021-03-30 04:47:00','2021-03-30 04:47:00','','4','','inherit','open','closed','','4','','','2021-03-30 04:47:00','2021-03-30 04:47:00','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/4.png',0,'attachment','image/png',0),
(78,1,'2021-03-30 04:47:04','2021-03-30 04:47:04','','5','','inherit','open','closed','','5','','','2021-03-30 04:47:04','2021-03-30 04:47:04','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/5.png',0,'attachment','image/png',0),
(79,1,'2021-03-30 04:47:08','2021-03-30 04:47:08','','6','','inherit','open','closed','','6','','','2021-03-30 04:47:08','2021-03-30 04:47:08','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/6.png',0,'attachment','image/png',0),
(80,1,'2021-03-30 04:47:14','2021-03-30 04:47:14','','7','','inherit','open','closed','','7','','','2021-03-30 04:47:14','2021-03-30 04:47:14','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/7.png',0,'attachment','image/png',0),
(81,1,'2021-03-30 04:47:19','2021-03-30 04:47:19','','8','','inherit','open','closed','','8','','','2021-03-30 04:47:19','2021-03-30 04:47:19','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/8.png',0,'attachment','image/png',0),
(82,1,'2021-03-30 04:47:23','2021-03-30 04:47:23','','9','','inherit','open','closed','','9','','','2021-03-30 04:47:23','2021-03-30 04:47:23','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/9.png',0,'attachment','image/png',0),
(83,1,'2021-03-30 04:47:27','2021-03-30 04:47:27','','10','','inherit','open','closed','','10','','','2021-03-30 04:47:27','2021-03-30 04:47:27','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/10.png',0,'attachment','image/png',0),
(84,1,'2021-03-30 04:47:32','2021-03-30 04:47:32','','11','','inherit','open','closed','','11','','','2021-03-30 04:47:32','2021-03-30 04:47:32','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/11.png',0,'attachment','image/png',0),
(85,1,'2021-03-30 04:54:42','2021-03-30 04:54:42','','Ready, Steady, Grow!','','inherit','open','closed','','ready-steady-grow-3','','','2021-03-30 04:54:42','2021-03-30 04:54:42','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Ready-Steady-Grow-2.jpg',0,'attachment','image/jpeg',0),
(86,1,'2021-03-30 05:11:36','2021-03-30 05:11:36','','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:11:36','2021-03-30 05:11:36','',57,'http://choiceresources.co.uk/?p=86',0,'revision','',0),
(87,1,'2021-03-30 05:11:36','2021-03-30 05:11:36','','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:11:36','2021-03-30 05:11:36','',57,'http://choiceresources.co.uk/?p=87',0,'revision','',0),
(88,1,'2021-03-30 05:11:36','2021-03-30 05:11:36','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n			<h2>Welcome to Choice Resources, the platform <br>for life Resources.\n</h2>		\n			<h2>Feelings Cards</h2>		\n			<h2>National Curriculum Trackers</h2>		\n			<h2>Seed Journey</h2>		\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:11:36','2021-03-30 05:11:36','',57,'http://choiceresources.co.uk/?p=88',0,'revision','',0),
(89,1,'2021-03-30 05:12:23','2021-03-30 05:12:23','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n			<h2>Welcome to Choice Resources, the platform <br>for life Resources.\n</h2>		\n			<h2>Feelings Cards</h2>		\n			<h2>National Curriculum Trackers</h2>		\n			<h2>Seed Journey</h2>		\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:12:23','2021-03-30 05:12:23','',57,'http://choiceresources.co.uk/?p=89',0,'revision','',0),
(90,1,'2021-03-30 05:12:23','2021-03-30 05:12:23','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n			<h2>Welcome to Choice Resources, the platform <br>for life Resources.\n</h2>		\n			<h2>Feelings Cards</h2>		\n			<h2>National Curriculum Trackers</h2>		\n			<h2>Seed Journey</h2>		\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:12:23','2021-03-30 05:12:23','',57,'http://choiceresources.co.uk/?p=90',0,'revision','',0),
(91,1,'2021-03-30 05:12:23','2021-03-30 05:12:23','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n			<h2>Welcome to Choice Resources, the platform <br>for life Resources.\n</h2>		\n			<h2>Feelings Cards</h2>		\n			<h2>National Curriculum Trackers</h2>		\n			<h2>Seed Journey</h2>		\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:12:23','2021-03-30 05:12:23','',57,'http://choiceresources.co.uk/?p=91',0,'revision','',0),
(92,1,'2021-03-30 05:14:58','2021-03-30 05:14:58','<img width=\"324\" height=\"48\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Resturant_Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Resturant_Logo.png 324w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Resturant_Logo-300x44.png 300w\" sizes=\"(max-width: 324px) 100vw, 324px\" />											\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<a href=\"https://library.elementor.com/japanese-restaurant/reservations/\" role=\"button\">\n						RESERVATIONS\n					</a>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"fcd95e07-8bd7-469f-808c-4bea57f73182\" data-name=\"Layer 1\" width=\"33.2114\" height=\"12.6055\" viewBox=\"0 0 33.2114 12.6055\"><rect x=\"0.106\" width=\"33\" height=\"2\"></rect><rect x=\"0.4016\" y=\"9.2498\" width=\"33.1968\" height=\"2.0001\" transform=\"translate(-1.4366 1.4718) rotate(-6.4411)\"></rect></svg>			\n			<a href=\"#\" role=\"button\">\n						Donate Now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 05:14:58','2021-03-30 05:14:58','',43,'http://choiceresources.co.uk/?p=92',0,'revision','',0),
(93,1,'2021-03-30 05:17:06','2021-03-30 05:17:06','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 05:17:06','2021-03-30 05:17:06','',49,'http://choiceresources.co.uk/?p=93',0,'revision','',0),
(94,1,'2021-03-30 05:19:07','2021-03-30 05:19:07','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 05:19:07','2021-03-30 05:19:07','',49,'http://choiceresources.co.uk/?p=94',0,'revision','',0),
(96,1,'2021-03-30 05:46:48','2021-03-30 05:46:48','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n			<h2>Welcome to Choice Resources, the platform <br>for life Resources.\n</h2>		\n			<h2>Feelings Cards</h2>		\n			<h2>National Curriculum Trackers</h2>		\n			<h2>Seed Journey</h2>		\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:46:48','2021-03-30 05:46:48','',57,'http://choiceresources.co.uk/?p=96',0,'revision','',0),
(97,1,'2021-03-30 05:46:48','2021-03-30 05:46:48','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n			<h2>Welcome to Choice Resources, the platform <br>for life Resources.\n</h2>		\n			<h2>Feelings Cards</h2>		\n			<h2>National Curriculum Trackers</h2>		\n			<h2>Seed Journey</h2>		\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:46:48','2021-03-30 05:46:48','',57,'http://choiceresources.co.uk/?p=97',0,'revision','',0),
(98,1,'2021-03-30 05:46:48','2021-03-30 05:46:48','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:46:48','2021-03-30 05:46:48','',57,'http://choiceresources.co.uk/?p=98',0,'revision','',0),
(100,1,'2021-03-30 05:51:27','2021-03-30 05:51:27','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:51:27','2021-03-30 05:51:27','',57,'http://choiceresources.co.uk/?p=100',0,'revision','',0),
(101,1,'2021-03-30 05:51:27','2021-03-30 05:51:27','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:51:27','2021-03-30 05:51:27','',57,'http://choiceresources.co.uk/?p=101',0,'revision','',0),
(102,1,'2021-03-30 05:51:27','2021-03-30 05:51:27','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=gfiYd_p4o2o','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 05:51:27','2021-03-30 05:51:27','',57,'http://choiceresources.co.uk/?p=102',0,'revision','',0),
(103,1,'2021-03-30 05:59:37','2021-03-30 05:59:37','<a href=\"#\" role=\"button\">\n						Back to all\n					</a>\n			<h2>You might also enjoy</h2>','Elementor Single Post #103','','trash','closed','closed','','__trashed-2','','','2021-03-30 05:59:37','2021-03-30 05:59:37','',0,'http://choiceresources.co.uk/?post_type=elementor_library&#038;p=103',0,'elementor_library','',0),
(104,1,'2021-03-30 05:53:47','2021-03-30 05:53:47','','Elementor Single Post #103','','inherit','closed','closed','','103-revision-v1','','','2021-03-30 05:53:47','2021-03-30 05:53:47','',103,'http://choiceresources.co.uk/?p=104',0,'revision','',0),
(105,1,'2021-03-30 05:55:09','2021-03-30 05:55:09','','placeholder.png','','inherit','open','closed','','placeholder-png-2','','','2021-03-30 05:55:09','2021-03-30 05:55:09','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/placeholder-1.png',0,'attachment','image/png',0),
(106,1,'2021-03-30 05:55:10','2021-03-30 05:55:10','','Jack_Grant-Profile.jpg','','inherit','open','closed','','jack_grant-profile-jpg','','','2021-03-30 05:55:10','2021-03-30 05:55:10','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Jack_Grant-Profile.jpg',0,'attachment','image/jpeg',0),
(107,1,'2021-03-30 05:59:37','2021-03-30 05:59:37','<a href=\"#\" role=\"button\">\n						Back to all\n					</a>\n			<h2>You might also enjoy</h2>','Elementor Single Post #103','','inherit','closed','closed','','103-revision-v1','','','2021-03-30 05:59:37','2021-03-30 05:59:37','',103,'http://choiceresources.co.uk/?p=107',0,'revision','',0),
(108,1,'2021-03-30 05:59:44','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2021-03-30 05:59:44','0000-00-00 00:00:00','',0,'http://choiceresources.co.uk/?page_id=108',0,'page','',0),
(110,1,'2021-03-30 06:02:29','2021-03-30 06:02:29','','Orange Green Animal Lion 5W Graphic Organizer','','inherit','open','closed','','orange-green-animal-lion-5w-graphic-organizer','','','2021-03-30 06:02:29','2021-03-30 06:02:29','',1,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Orange-Green-Animal-Lion-5W-Graphic-Organizer.png',0,'attachment','image/png',0),
(111,1,'2021-03-30 06:05:19','2021-03-30 06:05:19','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2021-03-30 06:05:19','2021-03-30 06:05:19','',1,'http://choiceresources.co.uk/?p=111',0,'revision','',0),
(112,1,'2021-03-30 06:05:19','2021-03-30 06:05:19','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Big Ideas','','inherit','closed','closed','','1-revision-v1','','','2021-03-30 06:05:19','2021-03-30 06:05:19','',1,'http://choiceresources.co.uk/?p=112',0,'revision','',0),
(113,1,'2021-03-30 06:05:20','2021-03-30 06:05:20','<!-- wp:paragraph -->\n<p>So this the post section and it\'s really a demo because I really caan\'t think of anything to write right now. I just wanted to see how a post looks. I think it will look nice. I hope so. It\'s 7 am and I haven\'t slept, so yeah, I need some feel good. :-)</p>\n<!-- /wp:paragraph -->','Big Ideas','','inherit','closed','closed','','1-revision-v1','','','2021-03-30 06:05:20','2021-03-30 06:05:20','',1,'http://choiceresources.co.uk/?p=113',0,'revision','',0),
(114,1,'2021-03-30 06:13:54','2021-03-30 06:13:54','<a role=\"button\">\n					</a>\n		<p>Many people think Elementor is user friendly but I think it is quite confusing.Â </p><p>Many people think Elementor is user friendly but I think it is quite confusing.Â </p><p>Many people think Elementor is user friendly but I think it is quite confusing.Â </p>		\n			<h2>Share This Post</h2>		\n								Share on facebook\n								Share on linkedin\n								Share on twitter\n								Share on email\n			<h2>Subscribe To Our Newsletter</h2>		\n			<h3>Get updates and learn from the best</h3>		\n			<h2>More To Explore</h2>		\n			<h4>Do You Want To Boost Your Business?</h4>		\n			<h2>drop us a line and keep in touch</h2>		\n			<a href=\"#about\" role=\"button\">\n						Contact Us\n					</a>\n										<img width=\"212\" height=\"300\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-212x300.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8.png 1587w\" sizes=\"(max-width: 212px) 100vw, 212px\" />','Elementor Single Post #114','','trash','closed','closed','','elementor-single-post-114__trashed','','','2021-03-31 14:16:12','2021-03-31 14:16:12','',0,'http://choiceresources.co.uk/?post_type=elementor_library&#038;p=114',0,'elementor_library','',0),
(115,1,'2021-03-30 06:10:56','2021-03-30 06:10:56','','Elementor Single Post #114','','inherit','closed','closed','','114-revision-v1','','','2021-03-30 06:10:56','2021-03-30 06:10:56','',114,'http://choiceresources.co.uk/?p=115',0,'revision','',0),
(116,1,'2021-03-30 06:12:00','2021-03-30 06:12:00','','Post-BG.png','','inherit','open','closed','','post-bg-png','','','2021-03-30 06:12:00','2021-03-30 06:12:00','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Post-BG.png',0,'attachment','image/png',0),
(117,1,'2021-03-30 06:12:01','2021-03-30 06:12:01','','placeholder-1.png','','inherit','open','closed','','placeholder-1-png','','','2021-03-30 06:12:01','2021-03-30 06:12:01','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/placeholder-1-1.png',0,'attachment','image/png',0),
(118,1,'2021-03-30 06:12:02','2021-03-30 06:12:02','','BG-Post-Sub.png','','inherit','open','closed','','bg-post-sub-png','','','2021-03-30 06:12:02','2021-03-30 06:12:02','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/BG-Post-Sub.png',0,'attachment','image/png',0),
(119,1,'2021-03-30 06:12:02','2021-03-30 06:12:02','','CTA-post.png','','inherit','open','closed','','cta-post-png','','','2021-03-30 06:12:02','2021-03-30 06:12:02','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/CTA-post.png',0,'attachment','image/png',0),
(120,1,'2021-03-30 06:12:03','2021-03-30 06:12:03','','CTA-Shapes.png','','inherit','open','closed','','cta-shapes-png','','','2021-03-30 06:12:03','2021-03-30 06:12:03','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/CTA-Shapes.png',0,'attachment','image/png',0),
(121,1,'2021-03-30 06:14:04','2021-03-30 06:14:04','','Untitled design (8)','','inherit','open','closed','','untitled-design-8','','','2021-03-30 06:14:04','2021-03-30 06:14:04','',114,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8.png',0,'attachment','image/png',0),
(122,1,'2021-03-30 06:19:03','2021-03-30 06:19:03','<a role=\"button\">\n					</a>\n			<h2>Share This Post</h2>		\n								Share on facebook\n								Share on linkedin\n								Share on twitter\n								Share on email\n			<h2>Subscribe To Our Newsletter</h2>		\n			<h3>Get updates and learn from the best</h3>		\n			<h2>More To Explore</h2>		\n			<h4>Do You Want To Boost Your Business?</h4>		\n			<h2>drop us a line and keep in touch</h2>		\n			<a href=\"#about\" role=\"button\">\n						Contact Us\n					</a>\n										<img width=\"539\" height=\"539\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CTA-post.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CTA-post.png 539w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CTA-post-300x300.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CTA-post-150x150.png 150w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CTA-post-324x324.png 324w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CTA-post-416x416.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CTA-post-100x100.png 100w\" sizes=\"(max-width: 539px) 100vw, 539px\" />','Elementor Single Post #114','','inherit','closed','closed','','114-revision-v1','','','2021-03-30 06:19:03','2021-03-30 06:19:03','',114,'http://choiceresources.co.uk/?p=122',0,'revision','',0),
(123,1,'2021-03-30 06:19:03','2021-03-30 06:19:03','<a role=\"button\">\n					</a>\n		<p>Many people think Elementor is user friendly but I think it is quite confusing.Â </p><p>Many people think Elementor is user friendly but I think it is quite confusing.Â </p><p>Many people think Elementor is user friendly but I think it is quite confusing.Â </p>		\n			<h2>Share This Post</h2>		\n								Share on facebook\n								Share on linkedin\n								Share on twitter\n								Share on email\n			<h2>Subscribe To Our Newsletter</h2>		\n			<h3>Get updates and learn from the best</h3>		\n			<h2>More To Explore</h2>		\n			<h4>Do You Want To Boost Your Business?</h4>		\n			<h2>drop us a line and keep in touch</h2>		\n			<a href=\"#about\" role=\"button\">\n						Contact Us\n					</a>\n										<img width=\"212\" height=\"300\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-212x300.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8.png 1587w\" sizes=\"(max-width: 212px) 100vw, 212px\" />','Elementor Single Post #114','','inherit','closed','closed','','114-revision-v1','','','2021-03-30 06:19:03','2021-03-30 06:19:03','',114,'http://choiceresources.co.uk/?p=123',0,'revision','',0),
(124,1,'2021-03-30 06:21:47','2021-03-30 06:21:47','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 06:21:47','2021-03-30 06:21:47','',12,'http://choiceresources.co.uk/?p=124',0,'revision','',0),
(125,1,'2021-03-30 06:21:47','2021-03-30 06:21:47','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 06:21:47','2021-03-30 06:21:47','',12,'http://choiceresources.co.uk/?p=125',0,'revision','',0),
(127,1,'2021-03-30 06:33:57','2021-03-30 06:33:57','','1','','inherit','open','closed','','1-2','','','2021-03-30 06:33:57','2021-03-30 06:33:57','',12,'http://choiceresources.co.uk/wp-content/uploads/2021/03/1-1.png',0,'attachment','image/png',0),
(128,1,'2021-03-30 06:35:27','2021-03-30 06:35:27','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 06:35:27','2021-03-30 06:35:27','',12,'http://choiceresources.co.uk/?p=128',0,'revision','',0),
(129,1,'2021-03-30 06:37:16','2021-03-30 06:37:16','','CR Banner 2 (2)','','inherit','open','closed','','cr-banner-2-2-2','','','2021-03-30 06:37:16','2021-03-30 06:37:16','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png',0,'attachment','image/png',0),
(131,1,'2021-03-30 06:38:59','2021-03-30 06:38:59','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=gfiYd_p4o2o','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 06:38:59','2021-03-30 06:38:59','',57,'http://choiceresources.co.uk/?p=131',0,'revision','',0),
(132,1,'2021-03-30 06:38:59','2021-03-30 06:38:59','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=gfiYd_p4o2o','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 06:38:59','2021-03-30 06:38:59','',57,'http://choiceresources.co.uk/?p=132',0,'revision','',0),
(133,1,'2021-03-30 06:38:59','2021-03-30 06:38:59','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=gfiYd_p4o2o','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 06:38:59','2021-03-30 06:38:59','',57,'http://choiceresources.co.uk/?p=133',0,'revision','',0),
(135,1,'2021-03-30 06:42:28','2021-03-30 06:42:28','','Logo CR (1)','','inherit','open','closed','','logo-cr-1','','','2021-03-30 06:42:28','2021-03-30 06:42:28','',12,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Logo-CR-1.png',0,'attachment','image/png',0),
(136,1,'2021-03-30 06:42:37','2021-03-30 06:42:37','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 06:42:37','2021-03-30 06:42:37','',12,'http://choiceresources.co.uk/?p=136',0,'revision','',0),
(137,1,'2021-03-30 06:53:51','2021-03-30 06:53:51','','logo','','inherit','open','closed','','logo','','','2021-03-30 06:53:51','2021-03-30 06:53:51','',12,'http://choiceresources.co.uk/wp-content/uploads/2021/03/logo.png',0,'attachment','image/png',0),
(138,1,'2021-03-30 06:54:01','2021-03-30 06:54:01','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 06:54:01','2021-03-30 06:54:01','',12,'http://choiceresources.co.uk/?p=138',0,'revision','',0),
(139,1,'2021-03-30 06:58:08','2021-03-30 06:58:08','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=gfiYd_p4o2o','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 06:58:08','2021-03-30 06:58:08','',57,'http://choiceresources.co.uk/?p=139',0,'revision','',0),
(140,1,'2021-03-30 06:58:08','2021-03-30 06:58:08','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=gfiYd_p4o2o','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 06:58:08','2021-03-30 06:58:08','',57,'http://choiceresources.co.uk/?p=140',0,'revision','',0),
(141,1,'2021-03-30 06:58:08','2021-03-30 06:58:08','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=gfiYd_p4o2o','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 06:58:08','2021-03-30 06:58:08','',57,'http://choiceresources.co.uk/?p=141',0,'revision','',0),
(142,1,'2021-03-30 06:59:11','2021-03-30 06:59:11','','Logo-Gym-New.png','','inherit','open','closed','','logo-gym-new-png','','','2021-03-30 06:59:11','2021-03-30 06:59:11','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Logo-Gym-New.png',0,'attachment','image/png',0),
(143,1,'2021-03-30 07:00:22','2021-03-30 07:00:22','','LEGIT.png','','inherit','open','closed','','legit-png','','','2021-03-30 07:00:22','2021-03-30 07:00:22','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/LEGIT.png',0,'attachment','image/png',0),
(144,1,'2021-03-30 07:02:30','2021-03-30 07:02:30','','iTour-Logo.png','','inherit','open','closed','','itour-logo-png','','','2021-03-30 07:02:30','2021-03-30 07:02:30','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/iTour-Logo.png',0,'attachment','image/png',0),
(145,1,'2021-03-30 07:02:30','2021-03-30 07:02:30','','Menu.svg','','inherit','open','closed','','menu-svg-2','','','2021-03-30 07:02:30','2021-03-30 07:02:30','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Menu-1.svg',0,'attachment','image/svg+xml',0),
(146,1,'2021-03-30 07:04:17','2021-03-30 07:04:17','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 07:04:17','2021-03-30 07:04:17','',43,'http://choiceresources.co.uk/?p=146',0,'revision','',0),
(151,1,'2021-03-30 07:25:34','2021-03-30 07:25:34','<!-- wp:media-text {\"mediaId\":152,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-edited.png\" alt=\"\" class=\"wp-image-152 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Contentâ€¦\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">this is a strange post</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading -->\n<h2>POST</h2>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Big Ideas','','publish','open','open','','big-ideas','','','2021-03-30 07:33:42','2021-03-30 07:33:42','',0,'http://choiceresources.co.uk/?p=151',0,'post','',0),
(152,1,'2021-03-30 07:23:35','2021-03-30 07:23:35','','Untitled design (8)','','inherit','open','closed','','untitled-design-8-2','','','2021-03-30 07:23:35','2021-03-30 07:23:35','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-edited.png',0,'attachment','image/png',0),
(153,1,'2021-03-30 07:25:34','2021-03-30 07:25:34','<!-- wp:media-text {\"mediaId\":152,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-8-edited.png\" alt=\"\" class=\"wp-image-152 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Contentâ€¦\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">this is a strange post</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading -->\n<h2>POST</h2>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Big Ideas','','inherit','closed','closed','','151-revision-v1','','','2021-03-30 07:25:34','2021-03-30 07:25:34','',151,'http://choiceresources.co.uk/?p=153',0,'revision','',0),
(154,1,'2021-03-30 07:31:56','2021-03-30 07:31:56','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=gfiYd_p4o2o','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 07:31:56','2021-03-30 07:31:56','',57,'http://choiceresources.co.uk/?p=154',0,'revision','',0),
(155,1,'2021-03-30 07:31:56','2021-03-30 07:31:56','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=gfiYd_p4o2o','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 07:31:56','2021-03-30 07:31:56','',57,'http://choiceresources.co.uk/?p=155',0,'revision','',0),
(156,1,'2021-03-30 07:31:57','2021-03-30 07:31:57','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=tFoUuFq3vHw&#038;t=32s','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 07:31:57','2021-03-30 07:31:57','',57,'http://choiceresources.co.uk/?p=156',0,'revision','',0),
(157,1,'2021-03-30 07:35:29','2021-03-30 07:35:29','<!-- wp:paragraph -->\n<p>oh yes, it is true. The best is yet to come. </p>\n<!-- /wp:paragraph -->','Best is yet to come','','publish','open','open','','best-is-yet-to-come','','','2021-03-30 07:35:29','2021-03-30 07:35:29','',0,'http://choiceresources.co.uk/?p=157',0,'post','',0),
(158,1,'2021-03-30 07:35:29','2021-03-30 07:35:29','<!-- wp:paragraph -->\n<p>oh yes, it is true. The best is yet to come. </p>\n<!-- /wp:paragraph -->','Best is yet to come','','inherit','closed','closed','','157-revision-v1','','','2021-03-30 07:35:29','2021-03-30 07:35:29','',157,'http://choiceresources.co.uk/?p=158',0,'revision','',0),
(159,1,'2021-03-30 07:37:09','2021-03-30 07:37:09','<!-- wp:paragraph -->\n<p>More than&nbsp;<a href=\"https://en.unesco.org/themes/education-emergencies/coronavirus-school-closures\">861 million children</a>&nbsp;are learning from home now, as schools globally shutter to try and slow the spread of Covid-19.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Parents are all teachers now. A Quartz team made up of education reporters, former teachers, and parents have compiled useful resources to help parents navigate this transition. They are neither comprehensive nor meant to replace the learning your kidsâ€™ schools are trying to put in place. They are things to use to augment school assignments and help fill the other hours in ways that that you, and hopefully your kids, can feel good about.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We all know there are special challenges to every age, but high schools kids can direct their own learning, and younger kids need socialization and less focus on academics. Much of this guide is focused on elementary (primary) school children, ages five to 12. But thereâ€™s a special chapter for 0-3 and some links for older kids too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are the basics: make a scheduleâ€”we need to create order when there is noneâ€”forgive yourself when you realize you are a terrible teacher (and then send a note to your teacher expressing appreciation), recognize that kids&nbsp;<a href=\"https://qz.com/1819866/how-to-manage-your-kids-screen-time-during-coronavirus/\">will be on screens</a>&nbsp;way more than anyone wants, and keep an eye on their well-being and yours.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In many cases, the goal is not to make sure they stay exactly on target (or to scramble to catch up if they are behind), but to give them routines, make sure there is variety in the dayâ€”outdoors! cook! read! play games! socialize in safe social distancing ways! and provide comforting continuity. There will be days when they binge-watch&nbsp;<em>The Magic School Bus</em>&nbsp;(words you never thought you would see together) or&nbsp;<em>The Great British Bake-Off</em>&nbsp;(again). Older kids will waste time, obsess over friendships and connecting, and discover that they can do a whole dayâ€™s work in three hours. Give yourself, and your children, a break.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>More than&nbsp;<a href=\"https://en.unesco.org/themes/education-emergencies/coronavirus-school-closures\">861 million children</a>&nbsp;are learning from home now, as schools globally shutter to try and slow the spread of Covid-19.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Parents are all teachers now. A Quartz team made up of education reporters, former teachers, and parents have compiled useful resources to help parents navigate this transition. They are neither comprehensive nor meant to replace the learning your kidsâ€™ schools are trying to put in place. They are things to use to augment school assignments and help fill the other hours in ways that that you, and hopefully your kids, can feel good about.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We all know there are special challenges to every age, but high schools kids can direct their own learning, and younger kids need socialization and less focus on academics. Much of this guide is focused on elementary (primary) school children, ages five to 12. But thereâ€™s a special chapter for 0-3 and some links for older kids too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are the basics: make a scheduleâ€”we need to create order when there is noneâ€”forgive yourself when you realize you are a terrible teacher (and then send a note to your teacher expressing appreciation), recognize that kids&nbsp;<a href=\"https://qz.com/1819866/how-to-manage-your-kids-screen-time-during-coronavirus/\">will be on screens</a>&nbsp;way more than anyone wants, and keep an eye on their well-being and yours.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In many cases, the goal is not to make sure they stay exactly on target (or to scramble to catch up if they are behind), but to give them routines, make sure there is variety in the dayâ€”outdoors! cook! read! play games! socialize in safe social distancing ways! and provide comforting continuity. There will be days when they binge-watch&nbsp;<em>The Magic School Bus</em>&nbsp;(words you never thought you would see together) or&nbsp;<em>The Great British Bake-Off</em>&nbsp;(again). Older kids will waste time, obsess over friendships and connecting, and discover that they can do a whole dayâ€™s work in three hours. Give yourself, and your children, a break.</p>\n<!-- /wp:paragraph -->','More than what you\'d expect','','publish','open','open','','more-than-what-youd-expect','','','2021-03-31 16:38:17','2021-03-31 16:38:17','',0,'http://choiceresources.co.uk/?p=159',0,'post','',0),
(160,1,'2021-03-30 07:36:41','2021-03-30 07:36:41','','Copy of Homeschool Essentials 4 (7)','','inherit','open','closed','','copy-of-homeschool-essentials-4-7','','','2021-03-30 07:36:41','2021-03-30 07:36:41','',159,'http://choiceresources.co.uk/wp-content/uploads/2021/03/Copy-of-Homeschool-Essentials-4-7.png',0,'attachment','image/png',0),
(161,1,'2021-03-30 07:37:09','2021-03-30 07:37:09','<!-- wp:paragraph -->\n<p>your children will eat more than you expect.</p>\n<!-- /wp:paragraph -->','More than what you\'d expect','','inherit','closed','closed','','159-revision-v1','','','2021-03-30 07:37:09','2021-03-30 07:37:09','',159,'http://choiceresources.co.uk/?p=161',0,'revision','',0),
(163,1,'2021-03-30 07:49:41','2021-03-30 07:49:41','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=tFoUuFq3vHw&#038;t=32s','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 07:49:41','2021-03-30 07:49:41','',57,'http://choiceresources.co.uk/?p=163',0,'revision','',0),
(164,1,'2021-03-30 07:49:41','2021-03-30 07:49:41','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		https://www.youtube.com/watch?v=tFoUuFq3vHw&#038;t=32s','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 07:49:41','2021-03-30 07:49:41','',57,'http://choiceresources.co.uk/?p=164',0,'revision','',0),
(165,1,'2021-03-30 07:49:41','2021-03-30 07:49:41','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 07:49:41','2021-03-30 07:49:41','',57,'http://choiceresources.co.uk/?p=165',0,'revision','',0),
(166,1,'2021-03-30 07:52:04','2021-03-30 07:52:04','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 07:52:04','2021-03-30 07:52:04','',12,'http://choiceresources.co.uk/?p=166',0,'revision','',0),
(167,1,'2021-03-30 07:54:22','2021-03-30 07:54:22','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 07:54:22','2021-03-30 07:54:22','',57,'http://choiceresources.co.uk/?p=167',0,'revision','',0),
(168,1,'2021-03-30 07:54:22','2021-03-30 07:54:22','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 07:54:22','2021-03-30 07:54:22','',57,'http://choiceresources.co.uk/?p=168',0,'revision','',0),
(169,1,'2021-03-30 07:54:22','2021-03-30 07:54:22','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 07:54:22','2021-03-30 07:54:22','',57,'http://choiceresources.co.uk/?p=169',0,'revision','',0),
(170,1,'2021-03-30 07:57:03','2021-03-30 07:57:03','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 07:57:03','2021-03-30 07:57:03','',49,'http://choiceresources.co.uk/?p=170',0,'revision','',0),
(171,1,'2021-03-30 07:57:44','2021-03-30 07:57:44','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 07:57:44','2021-03-30 07:57:44','',12,'http://choiceresources.co.uk/?p=171',0,'revision','',0),
(173,1,'2021-03-30 08:07:15','2021-03-30 08:07:15','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 08:07:15','2021-03-30 08:07:15','',49,'http://choiceresources.co.uk/?p=173',0,'revision','',0),
(174,1,'2021-03-30 08:08:10','2021-03-30 08:08:10','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 08:08:10','2021-03-30 08:08:10','',49,'http://choiceresources.co.uk/?p=174',0,'revision','',0),
(176,1,'2021-03-30 08:12:02','2021-03-30 08:12:02','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 08:12:02','2021-03-30 08:12:02','',49,'http://choiceresources.co.uk/?p=176',0,'revision','',0),
(178,1,'2021-03-30 08:15:56','2021-03-30 08:15:56','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:15:56','2021-03-30 08:15:56','',57,'http://choiceresources.co.uk/?p=178',0,'revision','',0),
(179,1,'2021-03-30 08:15:56','2021-03-30 08:15:56','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:15:56','2021-03-30 08:15:56','',57,'http://choiceresources.co.uk/?p=179',0,'revision','',0),
(180,1,'2021-03-30 08:15:56','2021-03-30 08:15:56','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:15:56','2021-03-30 08:15:56','',57,'http://choiceresources.co.uk/?p=180',0,'revision','',0),
(182,1,'2021-03-30 08:17:57','2021-03-30 08:17:57','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 08:17:57','2021-03-30 08:17:57','',49,'http://choiceresources.co.uk/?p=182',0,'revision','',0),
(184,1,'2021-03-30 08:24:41','2021-03-30 08:24:41','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 08:24:41','2021-03-30 08:24:41','',49,'http://choiceresources.co.uk/?p=184',0,'revision','',0),
(186,1,'2021-03-30 08:32:16','2021-03-30 08:32:16','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:32:16','2021-03-30 08:32:16','',57,'http://choiceresources.co.uk/?p=186',0,'revision','',0),
(187,1,'2021-03-30 08:32:16','2021-03-30 08:32:16','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.jpg 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.jpg 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.jpg 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.jpg 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.jpg 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:32:16','2021-03-30 08:32:16','',57,'http://choiceresources.co.uk/?p=187',0,'revision','',0),
(188,1,'2021-03-30 08:32:16','2021-03-30 08:32:16','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:32:16','2021-03-30 08:32:16','',57,'http://choiceresources.co.uk/?p=188',0,'revision','',0),
(189,1,'2021-03-30 08:39:56','2021-03-30 08:39:56','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:39:56','2021-03-30 08:39:56','',57,'http://choiceresources.co.uk/?p=189',0,'revision','',0),
(190,1,'2021-03-30 08:39:56','2021-03-30 08:39:56','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						This is the heading					</h2>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:39:56','2021-03-30 08:39:56','',57,'http://choiceresources.co.uk/?p=190',0,'revision','',0),
(191,1,'2021-03-30 08:39:56','2021-03-30 08:39:56','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:39:56','2021-03-30 08:39:56','',57,'http://choiceresources.co.uk/?p=191',0,'revision','',0),
(192,1,'2021-03-30 08:54:51','2021-03-30 08:54:51','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:54:51','2021-03-30 08:54:51','',57,'http://choiceresources.co.uk/?p=192',0,'revision','',0),
(193,1,'2021-03-30 08:54:51','2021-03-30 08:54:51','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p>Welcome to this Amazing Website It is called Choice Resources and it is a BETA website, so if you accidently bump into it, please go to www.youtube.com or something. Many Thanks. :-)</p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:54:51','2021-03-30 08:54:51','',57,'http://choiceresources.co.uk/?p=193',0,'revision','',0),
(194,1,'2021-03-30 08:54:51','2021-03-30 08:54:51','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 08:54:51','2021-03-30 08:54:51','',57,'http://choiceresources.co.uk/?p=194',0,'revision','',0),
(196,1,'2021-03-30 08:59:05','2021-03-30 08:59:05','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 08:59:05','2021-03-30 08:59:05','',49,'http://choiceresources.co.uk/?p=196',0,'revision','',0),
(198,1,'2021-03-30 09:07:00','2021-03-30 09:07:00','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 09:07:00','2021-03-30 09:07:00','',57,'http://choiceresources.co.uk/?p=198',0,'revision','',0),
(199,1,'2021-03-30 09:07:00','2021-03-30 09:07:00','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Reads of the week.\nCatch up on all<br> the latest reads this week<br></h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 09:07:00','2021-03-30 09:07:00','',57,'http://choiceresources.co.uk/?p=199',0,'revision','',0),
(200,1,'2021-03-30 09:07:00','2021-03-30 09:07:00','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 09:07:00','2021-03-30 09:07:00','',57,'http://choiceresources.co.uk/?p=200',0,'revision','',0),
(201,1,'2021-03-30 09:22:35','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2021-03-30 09:22:35','0000-00-00 00:00:00','',0,'http://choiceresources.co.uk/?p=201',1,'nav_menu_item','',0),
(202,1,'2021-03-30 09:27:11','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2021-03-30 09:27:11','0000-00-00 00:00:00','',0,'http://choiceresources.co.uk/?p=202',1,'nav_menu_item','',0),
(204,1,'2021-03-30 13:53:48','2021-03-30 09:37:47',' ','','','publish','closed','closed','','204','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=204',6,'nav_menu_item','',0),
(206,1,'2021-03-30 09:41:23','2021-03-30 09:41:23','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 09:41:23','2021-03-30 09:41:23','',57,'http://choiceresources.co.uk/?p=206',0,'revision','',0),
(207,1,'2021-03-30 09:41:23','2021-03-30 09:41:23','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 09:41:23','2021-03-30 09:41:23','',57,'http://choiceresources.co.uk/?p=207',0,'revision','',0),
(208,1,'2021-03-30 09:41:23','2021-03-30 09:41:23','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 09:41:23','2021-03-30 09:41:23','',57,'http://choiceresources.co.uk/?p=208',0,'revision','',0),
(210,1,'2021-03-30 09:52:19','2021-03-30 09:52:19','','logo (1)','','inherit','open','closed','','logo-1','','','2021-03-30 09:52:19','2021-03-30 09:52:19','',12,'http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1.png',0,'attachment','image/png',0),
(211,1,'2021-03-30 09:52:34','2021-03-30 09:52:34','','logo (1)','','inherit','open','closed','','logo-1-2','','','2021-03-30 09:52:34','2021-03-30 09:52:34','',12,'http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-1.png',0,'attachment','image/png',0),
(212,1,'2021-03-30 09:52:45','2021-03-30 09:52:45','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 09:52:45','2021-03-30 09:52:45','',12,'http://choiceresources.co.uk/?p=212',0,'revision','',0),
(213,1,'2021-03-30 09:55:39','2021-03-30 09:55:39','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 09:55:39','2021-03-30 09:55:39','',43,'http://choiceresources.co.uk/?p=213',0,'revision','',0),
(214,1,'2021-03-30 10:02:19','2021-03-30 10:02:19','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 10:02:19','2021-03-30 10:02:19','',57,'http://choiceresources.co.uk/?p=214',0,'revision','',0),
(215,1,'2021-03-30 10:02:20','2021-03-30 10:02:20','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 10:02:20','2021-03-30 10:02:20','',57,'http://choiceresources.co.uk/?p=215',0,'revision','',0),
(216,1,'2021-03-30 10:02:20','2021-03-30 10:02:20','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 10:02:20','2021-03-30 10:02:20','',57,'http://choiceresources.co.uk/?p=216',0,'revision','',0),
(218,1,'2021-03-30 10:06:56','2021-03-30 10:06:56','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 10:06:56','2021-03-30 10:06:56','',57,'http://choiceresources.co.uk/?p=218',0,'revision','',0),
(219,1,'2021-03-30 10:06:56','2021-03-30 10:06:56','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 10:06:56','2021-03-30 10:06:56','',57,'http://choiceresources.co.uk/?p=219',0,'revision','',0),
(220,1,'2021-03-30 10:06:56','2021-03-30 10:06:56','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 10:06:56','2021-03-30 10:06:56','',57,'http://choiceresources.co.uk/?p=220',0,'revision','',0),
(222,1,'2021-03-30 10:17:48','2021-03-30 10:17:48','<p>Choice Resources</p>		\n			<a href=\"#\" role=\"button\">\n						Shop now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 10:17:48','2021-03-30 10:17:48','',43,'http://choiceresources.co.uk/?p=222',0,'revision','',0),
(224,1,'2021-03-30 10:33:26','2021-03-30 10:33:26','<p>My  WebSite</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 10:33:26','2021-03-30 10:33:26','',43,'http://choiceresources.co.uk/?p=224',0,'revision','',0),
(225,1,'2021-03-30 10:37:46','2021-03-30 10:36:38',' ','','','publish','closed','closed','','225','','','2021-03-30 10:37:46','2021-03-30 10:37:46','',0,'http://choiceresources.co.uk/?p=225',1,'nav_menu_item','',0),
(227,1,'2021-03-30 10:37:24','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2021-03-30 10:37:24','0000-00-00 00:00:00','',0,'http://choiceresources.co.uk/?p=227',1,'nav_menu_item','',0),
(228,1,'2021-03-30 10:37:46','2021-03-30 10:37:46',' ','','','publish','closed','closed','','228','','','2021-03-30 10:37:46','2021-03-30 10:37:46','',0,'http://choiceresources.co.uk/?p=228',2,'nav_menu_item','',0),
(229,1,'2021-03-30 10:41:34','2021-03-30 10:41:34','[alg_wc_wl]','Wish List','','publish','closed','closed','','wish-list','','','2021-03-30 10:41:34','2021-03-30 10:41:34','',0,'http://choiceresources.co.uk/wish-list/',0,'page','',0),
(230,1,'2021-03-30 10:42:46','2021-03-30 10:42:46','<!-- wp:paragraph -->\n<p>You might be an artist who would like to introduce yourself and your work here or maybe youâ€™re a business with a mission to describe.</p>\n<!-- /wp:paragraph -->','About us','','inherit','closed','closed','','8-revision-v1','','','2021-03-30 10:42:46','2021-03-30 10:42:46','',8,'http://choiceresources.co.uk/?p=230',0,'revision','',0),
(231,1,'2021-03-30 10:43:17','2021-03-30 10:43:17','<!-- wp:paragraph -->\n<p>This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.</p>\n<!-- /wp:paragraph -->','Contact us','','inherit','closed','closed','','9-revision-v1','','','2021-03-30 10:43:17','2021-03-30 10:43:17','',9,'http://choiceresources.co.uk/?p=231',0,'revision','',0),
(232,1,'2021-03-30 11:09:27','2021-03-30 11:09:27','<p>Choice Resources.co.uk</p>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 11:09:27','2021-03-30 11:09:27','',43,'http://choiceresources.co.uk/?p=232',0,'revision','',0),
(234,1,'2021-03-30 11:18:34','2021-03-30 11:18:34','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop Now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 11:18:34','2021-03-30 11:18:34','',43,'http://choiceresources.co.uk/?p=234',0,'revision','',0),
(235,1,'2021-03-30 11:20:31','2021-03-30 11:20:31','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 11:20:31','2021-03-30 11:20:31','',57,'http://choiceresources.co.uk/?p=235',0,'revision','',0),
(236,1,'2021-03-30 11:20:31','2021-03-30 11:20:31','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 11:20:31','2021-03-30 11:20:31','',57,'http://choiceresources.co.uk/?p=236',0,'revision','',0),
(237,1,'2021-03-30 11:20:31','2021-03-30 11:20:31','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 11:20:31','2021-03-30 11:20:31','',57,'http://choiceresources.co.uk/?p=237',0,'revision','',0),
(239,1,'2021-03-30 11:26:02','2021-03-30 11:26:02','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 11:26:02','2021-03-30 11:26:02','',57,'http://choiceresources.co.uk/?p=239',0,'revision','',0),
(240,1,'2021-03-30 11:26:02','2021-03-30 11:26:02','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 11:26:02','2021-03-30 11:26:02','',57,'http://choiceresources.co.uk/?p=240',0,'revision','',0),
(241,1,'2021-03-30 11:26:03','2021-03-30 11:26:03','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 11:26:03','2021-03-30 11:26:03','',57,'http://choiceresources.co.uk/?p=241',0,'revision','',0),
(242,1,'2021-03-30 13:01:52','2021-03-30 13:01:52','','CR Banner 2 (3)','','inherit','open','closed','','cr-banner-2-3','','','2021-03-30 13:01:52','2021-03-30 13:01:52','',57,'http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png',0,'attachment','image/png',0),
(245,1,'2021-03-30 13:05:01','2021-03-30 13:05:01','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 13:05:01','2021-03-30 13:05:01','',12,'http://choiceresources.co.uk/?p=245',0,'revision','',0),
(246,1,'2021-03-30 13:53:48','2021-03-30 13:21:17',' ','','','publish','closed','closed','','246','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=246',32,'nav_menu_item','',0),
(247,1,'2021-03-30 13:19:58','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2021-03-30 13:19:58','0000-00-00 00:00:00','',0,'http://choiceresources.co.uk/?p=247',1,'nav_menu_item','',0),
(248,1,'2021-03-30 13:53:48','2021-03-30 13:21:17',' ','','','publish','closed','closed','','248','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=248',27,'nav_menu_item','',0),
(249,1,'2021-03-30 13:53:48','2021-03-30 13:21:17',' ','','','publish','closed','closed','','249','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=249',22,'nav_menu_item','',0),
(251,1,'2021-03-30 13:19:58','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2021-03-30 13:19:58','0000-00-00 00:00:00','',0,'http://choiceresources.co.uk/?p=251',1,'nav_menu_item','',0),
(252,1,'2021-03-30 13:53:48','2021-03-30 13:21:17',' ','','','publish','closed','closed','','252','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=252',37,'nav_menu_item','',0),
(253,1,'2021-03-30 13:53:48','2021-03-30 13:21:17',' ','','','publish','closed','closed','','253','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=253',11,'nav_menu_item','',0),
(254,1,'2021-03-30 13:53:48','2021-03-30 13:21:17',' ','','','publish','closed','closed','','254','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=254',16,'nav_menu_item','',0),
(255,1,'2021-03-30 13:53:48','2021-03-30 13:29:22',' ','','','publish','closed','closed','','255','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=255',42,'nav_menu_item','',0),
(256,1,'2021-03-30 13:53:48','2021-03-30 13:29:22',' ','','','publish','closed','closed','','256','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=256',21,'nav_menu_item','',0),
(257,1,'2021-03-30 13:53:48','2021-03-30 13:38:25',' ','','','publish','closed','closed','','257','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=257',1,'nav_menu_item','',0),
(258,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','258','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=258',5,'nav_menu_item','',0),
(259,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','259','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=259',2,'nav_menu_item','',0),
(260,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','260','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=260',3,'nav_menu_item','',0),
(261,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','261','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=261',4,'nav_menu_item','',0),
(262,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','262','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=262',10,'nav_menu_item','',0),
(263,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','263','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=263',7,'nav_menu_item','',0),
(264,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','264','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=264',8,'nav_menu_item','',0),
(265,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','265','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=265',9,'nav_menu_item','',0),
(266,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','266','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=266',15,'nav_menu_item','',0),
(267,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','267','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=267',12,'nav_menu_item','',0),
(268,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','268','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=268',13,'nav_menu_item','',0),
(269,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','269','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=269',14,'nav_menu_item','',0),
(270,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','270','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=270',20,'nav_menu_item','',0),
(271,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','271','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=271',17,'nav_menu_item','',0),
(272,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','272','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=272',19,'nav_menu_item','',0),
(273,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','273','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=273',18,'nav_menu_item','',0),
(274,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','274','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=274',26,'nav_menu_item','',0),
(275,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','275','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=275',23,'nav_menu_item','',0),
(276,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','276','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=276',24,'nav_menu_item','',0),
(277,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','277','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=277',25,'nav_menu_item','',0),
(278,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','278','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=278',31,'nav_menu_item','',0),
(279,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','279','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=279',28,'nav_menu_item','',0),
(280,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','280','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=280',29,'nav_menu_item','',0),
(281,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','281','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=281',30,'nav_menu_item','',0),
(282,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','282','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=282',35,'nav_menu_item','',0),
(283,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','283','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=283',33,'nav_menu_item','',0),
(284,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','284','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=284',34,'nav_menu_item','',0),
(285,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','285','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=285',36,'nav_menu_item','',0),
(286,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','286','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=286',41,'nav_menu_item','',0),
(287,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','287','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=287',38,'nav_menu_item','',0),
(288,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','288','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=288',39,'nav_menu_item','',0),
(289,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','289','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=289',40,'nav_menu_item','',0),
(290,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','290','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=290',46,'nav_menu_item','',0),
(291,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','291','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=291',43,'nav_menu_item','',0),
(292,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','292','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=292',44,'nav_menu_item','',0),
(293,1,'2021-03-30 13:53:48','2021-03-30 13:53:48',' ','','','publish','closed','closed','','293','','','2021-03-30 13:53:48','2021-03-30 13:53:48','',0,'http://choiceresources.co.uk/?p=293',45,'nav_menu_item','',0),
(294,1,'2021-03-30 13:56:44','2021-03-30 13:56:44','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 13:56:44','2021-03-30 13:56:44','',57,'http://choiceresources.co.uk/?p=294',0,'revision','',0),
(295,1,'2021-03-30 13:56:44','2021-03-30 13:56:44','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-2-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 13:56:44','2021-03-30 13:56:44','',57,'http://choiceresources.co.uk/?p=295',0,'revision','',0),
(296,1,'2021-03-30 13:56:44','2021-03-30 13:56:44','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 13:56:44','2021-03-30 13:56:44','',57,'http://choiceresources.co.uk/?p=296',0,'revision','',0),
(297,1,'2021-03-30 14:22:57','2021-03-30 14:22:57','','Elementor #297','','trash','closed','closed','','__trashed','','','2021-03-30 14:22:57','2021-03-30 14:22:57','',0,'http://choiceresources.co.uk/?page_id=297',0,'page','',0),
(298,1,'2021-03-30 13:57:59','2021-03-30 13:57:59','','Elementor #297','','inherit','closed','closed','','297-revision-v1','','','2021-03-30 13:57:59','2021-03-30 13:57:59','',297,'http://choiceresources.co.uk/?p=298',0,'revision','',0),
(299,1,'2021-03-30 14:00:59','2021-03-30 14:00:59','','Elementor Single Post #114','','inherit','closed','closed','','114-autosave-v1','','','2021-03-30 14:04:39','2021-03-30 14:04:39','',114,'http://choiceresources.co.uk/?p=299',0,'revision','',0),
(300,1,'2021-03-31 19:37:13','2021-03-30 14:17:56',' ','','','publish','closed','closed','','300','','','2021-03-31 19:37:13','2021-03-31 19:37:13','',0,'http://choiceresources.co.uk/?p=300',5,'nav_menu_item','',0),
(301,1,'2021-03-30 18:44:08','2021-03-30 18:44:08','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 18:44:08','2021-03-30 18:44:08','',12,'http://choiceresources.co.uk/?p=301',0,'revision','',0),
(302,1,'2021-03-30 18:50:44','2021-03-30 18:50:44','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 18:50:44','2021-03-30 18:50:44','',57,'http://choiceresources.co.uk/?p=302',0,'revision','',0),
(303,1,'2021-03-30 18:50:44','2021-03-30 18:50:44','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 18:50:44','2021-03-30 18:50:44','',57,'http://choiceresources.co.uk/?p=303',0,'revision','',0),
(304,1,'2021-03-30 18:50:44','2021-03-30 18:50:44','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 18:50:44','2021-03-30 18:50:44','',57,'http://choiceresources.co.uk/?p=304',0,'revision','',0),
(306,1,'2021-03-30 19:04:16','2021-03-30 19:04:16','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop Now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 19:04:16','2021-03-30 19:04:16','',43,'http://choiceresources.co.uk/?p=306',0,'revision','',0),
(307,1,'2021-03-30 19:05:32','2021-03-30 19:05:32','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop Now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 19:05:32','2021-03-30 19:05:32','',43,'http://choiceresources.co.uk/?p=307',0,'revision','',0),
(309,1,'2021-03-30 19:11:49','2021-03-30 19:11:49','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 19:11:49','2021-03-30 19:11:49','',57,'http://choiceresources.co.uk/?p=309',0,'revision','',0),
(310,1,'2021-03-30 19:11:49','2021-03-30 19:11:49','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 19:11:49','2021-03-30 19:11:49','',57,'http://choiceresources.co.uk/?p=310',0,'revision','',0),
(311,1,'2021-03-30 19:11:50','2021-03-30 19:11:50','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 19:11:50','2021-03-30 19:11:50','',57,'http://choiceresources.co.uk/?p=311',0,'revision','',0),
(312,1,'2021-03-30 19:15:08','2021-03-30 19:15:08','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop Now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 19:15:08','2021-03-30 19:15:08','',43,'http://choiceresources.co.uk/?p=312',0,'revision','',0),
(313,1,'2021-03-30 19:17:18','2021-03-30 19:17:18','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 19:17:18','2021-03-30 19:17:18','',57,'http://choiceresources.co.uk/?p=313',0,'revision','',0),
(314,1,'2021-03-30 19:17:18','2021-03-30 19:17:18','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 19:17:18','2021-03-30 19:17:18','',57,'http://choiceresources.co.uk/?p=314',0,'revision','',0),
(315,1,'2021-03-30 19:17:18','2021-03-30 19:17:18','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 19:17:18','2021-03-30 19:17:18','',57,'http://choiceresources.co.uk/?p=315',0,'revision','',0),
(317,1,'2021-03-30 19:22:47','2021-03-30 19:22:47','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop Now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 19:22:47','2021-03-30 19:22:47','',43,'http://choiceresources.co.uk/?p=317',0,'revision','',0),
(318,1,'2021-03-30 19:27:29','2021-03-30 19:27:29','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 19:27:29','2021-03-30 19:27:29','',43,'http://choiceresources.co.uk/?p=318',0,'revision','',0),
(319,1,'2021-03-30 19:29:55','2021-03-30 19:29:55','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 19:29:55','2021-03-30 19:29:55','',43,'http://choiceresources.co.uk/?p=319',0,'revision','',0),
(320,1,'2021-03-30 19:36:19','2021-03-30 19:36:19','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop Now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 19:36:19','2021-03-30 19:36:19','',43,'http://choiceresources.co.uk/?p=320',0,'revision','',0),
(321,1,'2021-03-30 19:43:44','2021-03-30 19:43:44','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 19:43:44','2021-03-30 19:43:44','',43,'http://choiceresources.co.uk/?p=321',0,'revision','',0),
(323,1,'2021-03-30 19:59:55','2021-03-30 19:59:55','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 19:59:55','2021-03-30 19:59:55','',43,'http://choiceresources.co.uk/?p=323',0,'revision','',0),
(325,1,'2021-03-30 20:07:34','2021-03-30 20:07:34','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 20:07:34','2021-03-30 20:07:34','',12,'http://choiceresources.co.uk/?p=325',0,'revision','',0),
(326,1,'2021-03-30 20:09:22','2021-03-30 20:09:22','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 20:09:22','2021-03-30 20:09:22','',12,'http://choiceresources.co.uk/?p=326',0,'revision','',0),
(327,1,'2021-03-30 20:11:01','2021-03-30 20:11:01','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 20:11:01','2021-03-30 20:11:01','',57,'http://choiceresources.co.uk/?p=327',0,'revision','',0),
(328,1,'2021-03-30 20:11:01','2021-03-30 20:11:01','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 20:11:01','2021-03-30 20:11:01','',57,'http://choiceresources.co.uk/?p=328',0,'revision','',0),
(329,1,'2021-03-30 20:11:01','2021-03-30 20:11:01','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 20:11:01','2021-03-30 20:11:01','',57,'http://choiceresources.co.uk/?p=329',0,'revision','',0),
(330,1,'2021-03-30 20:11:56','2021-03-30 20:11:56','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 20:11:56','2021-03-30 20:11:56','',43,'http://choiceresources.co.uk/?p=330',0,'revision','',0),
(331,1,'2021-03-30 20:12:53','2021-03-30 20:12:53','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 20:12:53','2021-03-30 20:12:53','',12,'http://choiceresources.co.uk/?p=331',0,'revision','',0),
(333,1,'2021-03-30 20:22:59','2021-03-30 20:22:59','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 20:22:59','2021-03-30 20:22:59','',57,'http://choiceresources.co.uk/?p=333',0,'revision','',0),
(334,1,'2021-03-30 20:22:59','2021-03-30 20:22:59','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 20:22:59','2021-03-30 20:22:59','',57,'http://choiceresources.co.uk/?p=334',0,'revision','',0),
(335,1,'2021-03-30 20:22:59','2021-03-30 20:22:59','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 20:22:59','2021-03-30 20:22:59','',57,'http://choiceresources.co.uk/?p=335',0,'revision','',0),
(337,1,'2021-03-30 20:25:05','2021-03-30 20:25:05','','DESIGNFORM-Logo.png','','inherit','open','closed','','designform-logo-png','','','2021-03-30 20:25:05','2021-03-30 20:25:05','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/DESIGNFORM-Logo.png',0,'attachment','image/png',0),
(338,1,'2021-03-30 20:26:03','2021-03-30 20:26:03','','logo (1)','','inherit','open','closed','','logo-1-3','','','2021-03-30 20:26:03','2021-03-30 20:26:03','',43,'http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2.png',0,'attachment','image/png',0),
(339,1,'2021-03-30 20:35:43','2021-03-30 20:35:43','<img width=\"150\" height=\"150\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-150x150.png 150w, http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-300x300.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-324x324.png 324w, http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-416x416.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-100x100.png 100w, http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2.png 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 20:35:43','2021-03-30 20:35:43','',43,'http://choiceresources.co.uk/?p=339',0,'revision','',0),
(340,1,'2021-03-30 20:38:38','2021-03-30 20:38:38','<img width=\"150\" height=\"150\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-150x150.png 150w, http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-300x300.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-324x324.png 324w, http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-416x416.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2-100x100.png 100w, http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-1-2.png 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n			<a href=\"#\" role=\"button\">\n						Shop now\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 20:38:38','2021-03-30 20:38:38','',43,'http://choiceresources.co.uk/?p=340',0,'revision','',0),
(342,1,'2021-03-30 20:47:34','2021-03-30 20:47:34','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 20:47:34','2021-03-30 20:47:34','',43,'http://choiceresources.co.uk/?p=342',0,'revision','',0),
(343,1,'2021-03-30 20:48:15','2021-03-30 20:48:15','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 20:48:15','2021-03-30 20:48:15','',43,'http://choiceresources.co.uk/?p=343',0,'revision','',0),
(345,1,'2021-03-30 21:13:27','2021-03-30 21:13:27','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 21:13:27','2021-03-30 21:13:27','',43,'http://choiceresources.co.uk/?p=345',0,'revision','',0),
(346,1,'2021-03-30 21:20:40','2021-03-30 21:20:40','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:20:40','2021-03-30 21:20:40','',57,'http://choiceresources.co.uk/?p=346',0,'revision','',0),
(347,1,'2021-03-30 21:20:40','2021-03-30 21:20:40','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:20:40','2021-03-30 21:20:40','',57,'http://choiceresources.co.uk/?p=347',0,'revision','',0),
(348,1,'2021-03-30 21:20:40','2021-03-30 21:20:40','<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:20:40','2021-03-30 21:20:40','',57,'http://choiceresources.co.uk/?p=348',0,'revision','',0),
(349,1,'2021-03-30 21:27:34','2021-03-30 21:27:34','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 21:27:34','2021-03-30 21:27:34','',43,'http://choiceresources.co.uk/?p=349',0,'revision','',0),
(350,1,'2021-03-30 21:29:22','2021-03-30 21:29:22','<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:29:22','2021-03-30 21:29:22','',57,'http://choiceresources.co.uk/?p=350',0,'revision','',0),
(351,1,'2021-03-30 21:29:22','2021-03-30 21:29:22','<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:29:22','2021-03-30 21:29:22','',57,'http://choiceresources.co.uk/?p=351',0,'revision','',0),
(352,1,'2021-03-30 21:29:22','2021-03-30 21:29:22','<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:29:22','2021-03-30 21:29:22','',57,'http://choiceresources.co.uk/?p=352',0,'revision','',0),
(353,1,'2021-03-30 21:29:42','2021-03-30 21:29:42','<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:29:42','2021-03-30 21:29:42','',57,'http://choiceresources.co.uk/?p=353',0,'revision','',0),
(354,1,'2021-03-30 21:29:42','2021-03-30 21:29:42','<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:29:42','2021-03-30 21:29:42','',57,'http://choiceresources.co.uk/?p=354',0,'revision','',0),
(355,1,'2021-03-30 21:29:42','2021-03-30 21:29:42','<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:29:42','2021-03-30 21:29:42','',57,'http://choiceresources.co.uk/?p=355',0,'revision','',0),
(356,1,'2021-03-30 21:30:08','2021-03-30 21:30:08','<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:30:08','2021-03-30 21:30:08','',57,'http://choiceresources.co.uk/?p=356',0,'revision','',0),
(357,1,'2021-03-30 21:30:08','2021-03-30 21:30:08','<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />											\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:30:08','2021-03-30 21:30:08','',57,'http://choiceresources.co.uk/?p=357',0,'revision','',0),
(358,1,'2021-03-30 21:30:08','2021-03-30 21:30:08','<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 21:30:08','2021-03-30 21:30:08','',57,'http://choiceresources.co.uk/?p=358',0,'revision','',0),
(359,1,'2021-03-30 21:32:42','2021-03-30 21:32:42','<p>Choice Resources.co.uk</p>		\n			<a href=\"#\" role=\"button\">\n						Shop\n					</a>\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-9.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 21:32:42','2021-03-30 21:32:42','',43,'http://choiceresources.co.uk/?p=359',0,'revision','',0),
(361,1,'2021-03-30 21:43:41','2021-03-30 21:43:41','','logo (2)','','inherit','open','closed','','logo-2','','','2021-03-30 21:43:41','2021-03-30 21:43:41','',43,'http://choiceresources.co.uk/wp-content/uploads/2021/03/logo-2.png',0,'attachment','image/png',0),
(362,1,'2021-03-30 21:54:15','2021-03-30 21:54:15','','2','','inherit','open','closed','','2-2','','','2021-03-30 21:54:15','2021-03-30 21:54:15','',12,'http://choiceresources.co.uk/wp-content/uploads/2021/03/2-1.png',0,'attachment','image/png',0),
(363,1,'2021-03-30 21:55:10','2021-03-30 21:55:10','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 21:55:10','2021-03-30 21:55:10','',12,'http://choiceresources.co.uk/?p=363',0,'revision','',0),
(364,1,'2021-03-30 21:59:10','2021-03-30 21:59:10','','1','','inherit','open','closed','','1-3','','','2021-03-30 21:59:10','2021-03-30 21:59:10','',12,'http://choiceresources.co.uk/wp-content/uploads/2021/03/1-2.png',0,'attachment','image/png',0),
(365,1,'2021-03-30 21:59:26','2021-03-30 21:59:26','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 21:59:26','2021-03-30 21:59:26','',12,'http://choiceresources.co.uk/?p=365',0,'revision','',0),
(366,1,'2021-03-30 22:00:26','2021-03-30 22:00:26','','1','','inherit','open','closed','','1-4','','','2021-03-30 22:00:26','2021-03-30 22:00:26','',12,'http://choiceresources.co.uk/wp-content/uploads/2021/03/1-3.png',0,'attachment','image/png',0),
(367,1,'2021-03-30 22:00:42','2021-03-30 22:00:42','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 22:00:42','2021-03-30 22:00:42','',12,'http://choiceresources.co.uk/?p=367',0,'revision','',0),
(368,1,'2021-03-30 22:02:02','2021-03-30 22:02:02','','2','','inherit','open','closed','','2-3','','','2021-03-30 22:02:02','2021-03-30 22:02:02','',12,'http://choiceresources.co.uk/wp-content/uploads/2021/03/2-2.png',0,'attachment','image/png',0),
(369,1,'2021-03-30 22:02:14','2021-03-30 22:02:14','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 22:02:14','2021-03-30 22:02:14','',12,'http://choiceresources.co.uk/?p=369',0,'revision','',0),
(370,1,'2021-03-30 22:03:30','2021-03-30 22:03:30','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-30 22:03:30','2021-03-30 22:03:30','',12,'http://choiceresources.co.uk/?p=370',0,'revision','',0),
(372,1,'2021-03-30 22:12:58','2021-03-30 22:12:58','<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:12:58','2021-03-30 22:12:58','',57,'http://choiceresources.co.uk/?p=372',0,'revision','',0),
(373,1,'2021-03-30 22:12:58','2021-03-30 22:12:58','<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:12:58','2021-03-30 22:12:58','',57,'http://choiceresources.co.uk/?p=373',0,'revision','',0),
(374,1,'2021-03-30 22:12:58','2021-03-30 22:12:58','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:12:58','2021-03-30 22:12:58','',57,'http://choiceresources.co.uk/?p=374',0,'revision','',0),
(375,1,'2021-03-30 22:13:53','2021-03-30 22:13:53','<a href=\"#\" role=\"button\">\n						Shop\n					</a>','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 22:13:53','2021-03-30 22:13:53','',43,'http://choiceresources.co.uk/?p=375',0,'revision','',0),
(376,1,'2021-03-30 22:15:22','2021-03-30 22:15:22','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 22:15:22','2021-03-30 22:15:22','',49,'http://choiceresources.co.uk/?p=376',0,'revision','',0),
(377,1,'2021-03-30 22:16:05','2021-03-30 22:16:05','<h4>Get Started</h4>		\n					<ul>\n							<li>\n										Resources\n									</li>\n								<li>\n										Tutorials\n									</li>\n								<li>\n										Examples\n									</li>\n								<li>\n										Docs\n									</li>\n						</ul>\n			<h4>About</h4>		\n					<ul>\n							<li>\n										Stories\n									</li>\n								<li>\n										Community\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Brand Assets\n									</li>\n						</ul>\n			<h4>Features</h4>		\n					<ul>\n							<li>\n										Overview\n									</li>\n								<li>\n										Design\n									</li>\n								<li>\n										Code\n									</li>\n								<li>\n										Collaborate\n									</li>\n						</ul>\n			<h4>Follow Us</h4>		\n					<ul>\n							<li>\n										Facebook\n									</li>\n								<li>\n										Twitter\n									</li>\n								<li>\n										YouTube\n									</li>\n								<li>\n										Instagram\n									</li>\n						</ul>\n			<p>Copyright 2018 Â© All rights Reserved. Design by Elementor</p>','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 22:16:05','2021-03-30 22:16:05','',49,'http://choiceresources.co.uk/?p=377',0,'revision','',0),
(378,1,'2021-03-30 22:20:30','2021-03-30 22:20:30','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 22:20:30','2021-03-30 22:20:30','',43,'http://choiceresources.co.uk/?p=378',0,'revision','',0),
(379,1,'2021-03-30 22:22:32','2021-03-30 22:22:32','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:22:32','2021-03-30 22:22:32','',57,'http://choiceresources.co.uk/?p=379',0,'revision','',0),
(380,1,'2021-03-30 22:22:32','2021-03-30 22:22:32','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome! Choice Resources is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:22:32','2021-03-30 22:22:32','',57,'http://choiceresources.co.uk/?p=380',0,'revision','',0),
(381,1,'2021-03-30 22:22:33','2021-03-30 22:22:33','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:22:33','2021-03-30 22:22:33','',57,'http://choiceresources.co.uk/?p=381',0,'revision','',0),
(382,1,'2021-03-30 22:25:27','2021-03-30 22:25:27','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:25:27','2021-03-30 22:25:27','',57,'http://choiceresources.co.uk/?p=382',0,'revision','',0),
(383,1,'2021-03-30 22:25:27','2021-03-30 22:25:27','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:25:27','2021-03-30 22:25:27','',57,'http://choiceresources.co.uk/?p=383',0,'revision','',0),
(384,1,'2021-03-30 22:25:27','2021-03-30 22:25:27','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:25:27','2021-03-30 22:25:27','',57,'http://choiceresources.co.uk/?p=384',0,'revision','',0),
(385,1,'2021-03-30 22:27:22','2021-03-30 22:27:22','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:27:22','2021-03-30 22:27:22','',57,'http://choiceresources.co.uk/?p=385',0,'revision','',0),
(386,1,'2021-03-30 22:27:22','2021-03-30 22:27:22','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:27:22','2021-03-30 22:27:22','',57,'http://choiceresources.co.uk/?p=386',0,'revision','',0),
(387,1,'2021-03-30 22:27:23','2021-03-30 22:27:23','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 22:27:23','2021-03-30 22:27:23','',57,'http://choiceresources.co.uk/?p=387',0,'revision','',0),
(388,1,'2021-03-30 22:30:27','2021-03-30 22:30:27','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 22:30:27','2021-03-30 22:30:27','',43,'http://choiceresources.co.uk/?p=388',0,'revision','',0),
(390,1,'2021-03-30 22:53:02','2021-03-30 22:53:02','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 22:53:02','2021-03-30 22:53:02','',43,'http://choiceresources.co.uk/?p=390',0,'revision','',0),
(391,1,'2021-03-30 22:58:41','2021-03-30 22:58:41','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 22:58:41','2021-03-30 22:58:41','',43,'http://choiceresources.co.uk/?p=391',0,'revision','',0),
(392,1,'2021-03-30 22:59:04','2021-03-30 22:59:04','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 22:59:04','2021-03-30 22:59:04','',43,'http://choiceresources.co.uk/?p=392',0,'revision','',0),
(393,1,'2021-03-30 23:01:21','2021-03-30 23:01:21','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 23:01:21','2021-03-30 23:01:21','',43,'http://choiceresources.co.uk/?p=393',0,'revision','',0),
(394,1,'2021-03-30 23:03:04','2021-03-30 23:03:04','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 23:03:04','2021-03-30 23:03:04','',43,'http://choiceresources.co.uk/?p=394',0,'revision','',0),
(395,1,'2021-03-30 23:04:20','2021-03-30 23:04:20','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 23:04:20','2021-03-30 23:04:20','',43,'http://choiceresources.co.uk/?p=395',0,'revision','',0),
(396,1,'2021-03-30 23:05:09','2021-03-30 23:05:09','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 23:05:09','2021-03-30 23:05:09','',43,'http://choiceresources.co.uk/?p=396',0,'revision','',0),
(397,1,'2021-03-30 23:05:35','2021-03-30 23:05:35','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 23:05:35','2021-03-30 23:05:35','',43,'http://choiceresources.co.uk/?p=397',0,'revision','',0),
(398,1,'2021-03-30 23:07:00','2021-03-30 23:07:00','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 23:07:00','2021-03-30 23:07:00','',43,'http://choiceresources.co.uk/?p=398',0,'revision','',0),
(400,1,'2021-03-30 23:29:20','2021-03-30 23:29:20','','Elementor Footer #49','','inherit','closed','closed','','49-revision-v1','','','2021-03-30 23:29:20','2021-03-30 23:29:20','',49,'http://choiceresources.co.uk/?p=400',0,'revision','',0),
(401,1,'2021-03-30 23:31:13','2021-03-30 23:31:13','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-30 23:31:13','2021-03-30 23:31:13','',43,'http://choiceresources.co.uk/?p=401',0,'revision','',0),
(402,1,'2021-03-30 23:36:01','2021-03-30 23:36:01','','placeholder.png','','inherit','open','closed','','placeholder-png-3','','','2021-03-30 23:36:01','2021-03-30 23:36:01','',0,'http://choiceresources.co.uk/wp-content/uploads/2021/03/placeholder-2.png',0,'attachment','image/png',0),
(403,1,'2021-03-30 23:36:20','2021-03-30 23:36:20','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 23:36:20','2021-03-30 23:36:20','',57,'http://choiceresources.co.uk/?p=403',0,'revision','',0),
(404,1,'2021-03-30 23:36:20','2021-03-30 23:36:20','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 23:36:20','2021-03-30 23:36:20','',57,'http://choiceresources.co.uk/?p=404',0,'revision','',0),
(405,1,'2021-03-30 23:36:20','2021-03-30 23:36:20','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Google-plus\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Snapchat\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<h4>Navigation</h4>		\n					<ul>\n							<li>\n										About\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Contact\n									</li>\n								<li>\n										Support\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Pricing\n									</li>\n								<li>\n										Teams\n									</li>\n								<li>\n										Education\n									</li>\n								<li>\n										Refer a friend\n									</li>\n								<li>\n										Updates\n									</li>\n						</ul>\n			<h4>Newsletter</h4>		\n			<p>Â© 2018 All rights reservedâ€‹</p>		\n			<p>Made with â¤ with Elementorâ€‹</p>','Home','','inherit','closed','closed','','57-revision-v1','','','2021-03-30 23:36:20','2021-03-30 23:36:20','',57,'http://choiceresources.co.uk/?p=405',0,'revision','',0),
(406,1,'2021-03-31 17:07:33','2021-03-31 17:07:33','<!-- wp:paragraph -->\n<p><strong>Disclosure:</strong>&nbsp;Please note that some of the links below are affiliate links and at no additional cost to you, Iâ€™ll earn a commission. Know that I only recommend products and services Iâ€™ve personally used and stand behind. When you use one of my affiliate links, the company compensates me, which helps me run this blog and keep all of my in-depth content free of charge for readers (like you).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One of the most common questions I get from readers whoâ€™ve just hit publish on their first blog posts isâ€¦&nbsp;<em>ok, so now where is everyone?</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As much as Iâ€™d like to tell you that building a successful blog is as simple as&nbsp;<a href=\"https://www.ryrob.com/how-write-blog-post/\" target=\"_blank\" rel=\"noreferrer noopener\">writing a great blog post</a>&nbsp;or two, kicking back and watching a flood of readers come flying in, the truth is that growing a blog is a bit more nuanced than thatâ€”itâ€™ll take time, repetition and the willingness to experiment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quickly before we move into breaking down all of my best ways to grow a blog, letâ€™s define what I mean when I use the term&nbsp;<em>growing a blog</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Iâ€™m not just talking about increasing the number of readers on your blog (<a href=\"https://www.ryrob.com/drive-traffic-website/\" target=\"_blank\" rel=\"noreferrer noopener\">driving traffic</a>). More importantly, growing a blog is also about building your email list and helping you to&nbsp;<a href=\"https://www.ryrob.com/make-money-blogging/\" target=\"_blank\" rel=\"noreferrer noopener\">make money from your blog</a>. To me, growing a successful blog encompasses each of the following:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Driving more traffic to your blog</li><li>Growing your email list</li><li>Increasing your revenue</li><li>Expanding your influence and authority</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Getting more readers for your writing is all well and good, but I&nbsp;</p>\n<!-- /wp:paragraph -->','Ready, Steady, Grow','','publish','open','open','','ready-steady-grow','','','2021-03-31 17:07:33','2021-03-31 17:07:33','',0,'http://choiceresources.co.uk/?p=406',0,'post','',0),
(407,1,'2021-03-31 14:25:47','2021-03-31 14:25:47','<!-- wp:paragraph -->\n<p><strong>Disclosure:</strong>&nbsp;Please note that some of the links below are affiliate links and at no additional cost to you, Iâ€™ll earn a commission. Know that I only recommend products and services Iâ€™ve personally used and stand behind. When you use one of my affiliate links, the company compensates me, which helps me run this blog and keep all of my in-depth content free of charge for readers (like you).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One of the most common questions I get from readers whoâ€™ve just hit publish on their first blog posts isâ€¦&nbsp;<em>ok, so now where is everyone?</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As much as Iâ€™d like to tell you that building a successful blog is as simple as&nbsp;<a href=\"https://www.ryrob.com/how-write-blog-post/\" target=\"_blank\" rel=\"noreferrer noopener\">writing a great blog post</a>&nbsp;or two, kicking back and watching a flood of readers come flying in, the truth is that growing a blog is a bit more nuanced than thatâ€”itâ€™ll take time, repetition and the willingness to experiment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quickly before we move into breaking down all of my best ways to grow a blog, letâ€™s define what I mean when I use the term&nbsp;<em>growing a blog</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Iâ€™m not just talking about increasing the number of readers on your blog (<a href=\"https://www.ryrob.com/drive-traffic-website/\" target=\"_blank\" rel=\"noreferrer noopener\">driving traffic</a>). More importantly, growing a blog is also about building your email list and helping you to&nbsp;<a href=\"https://www.ryrob.com/make-money-blogging/\" target=\"_blank\" rel=\"noreferrer noopener\">make money from your blog</a>. To me, growing a successful blog encompasses each of the following:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Driving more traffic to your blog</li><li>Growing your email list</li><li>Increasing your revenue</li><li>Expanding your influence and authority</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Getting more readers for your writing is all well and good, but I&nbsp;</p>\n<!-- /wp:paragraph -->','Ready, Steady, Grow','','inherit','closed','closed','','406-revision-v1','','','2021-03-31 14:25:47','2021-03-31 14:25:47','',406,'http://choiceresources.co.uk/?p=407',0,'revision','',0),
(409,1,'2021-03-31 14:31:31','2021-03-31 14:31:31','','Elementor Header #43','','inherit','closed','closed','','43-revision-v1','','','2021-03-31 14:31:31','2021-03-31 14:31:31','',43,'http://choiceresources.co.uk/?p=409',0,'revision','',0),
(410,1,'2021-03-31 14:41:37','2021-03-31 14:41:37','<img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" title=\"CR Banner 2 (3)\" alt=\"CR Banner 2 (3)\" />											\n								Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n			<h3>Recent posts</h3>','Elementor Single Post #410','','publish','closed','closed','','elementor-single-post-410','','','2021-03-31 17:58:16','2021-03-31 17:58:16','',0,'http://choiceresources.co.uk/?post_type=elementor_library&#038;p=410',0,'elementor_library','',0),
(411,1,'2021-03-31 14:41:37','2021-03-31 14:41:37','','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 14:41:37','2021-03-31 14:41:37','',410,'http://choiceresources.co.uk/?p=411',0,'revision','',0),
(412,1,'2021-03-31 14:46:58','2021-03-31 14:46:58','','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 14:46:58','2021-03-31 14:46:58','',410,'http://choiceresources.co.uk/?p=412',0,'revision','',0),
(414,1,'2021-03-31 15:14:22','2021-03-31 15:14:22','','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 15:14:22','2021-03-31 15:14:22','',410,'http://choiceresources.co.uk/?p=414',0,'revision','',0),
(416,1,'2021-03-31 15:41:44','2021-03-31 15:41:44','','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 15:41:44','2021-03-31 15:41:44','',410,'http://choiceresources.co.uk/?p=416',0,'revision','',0),
(417,1,'2021-03-31 15:42:15','2021-03-31 15:42:15','','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 15:42:15','2021-03-31 15:42:15','',410,'http://choiceresources.co.uk/?p=417',0,'revision','',0),
(419,1,'2021-03-31 15:57:20','2021-03-31 15:57:20','','3','','inherit','open','closed','','3-2','','','2021-03-31 15:57:20','2021-03-31 15:57:20','',410,'http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png',0,'attachment','image/png',0),
(420,1,'2021-03-31 16:06:01','2021-03-31 16:06:01','Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n											<a href=\"http://choiceresources.co.uk/\">\n							<img width=\"1050\" height=\"600\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png 1050w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-300x171.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-1024x585.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-768x439.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-416x238.png 416w\" sizes=\"(max-width: 1050px) 100vw, 1050px\" />								</a>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 16:06:01','2021-03-31 16:06:01','',410,'http://choiceresources.co.uk/?p=420',0,'revision','',0),
(421,1,'2021-03-31 16:07:29','2021-03-31 16:07:29','Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n											<a href=\"http://choiceresources.co.uk/\">\n							<img width=\"1050\" height=\"600\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png 1050w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-300x171.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-1024x585.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-768x439.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-416x238.png 416w\" sizes=\"(max-width: 1050px) 100vw, 1050px\" />								</a>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 16:07:29','2021-03-31 16:07:29','',410,'http://choiceresources.co.uk/?p=421',0,'revision','',0),
(422,1,'2021-03-31 16:09:00','2021-03-31 16:09:00','Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n											<a href=\"http://choiceresources.co.uk/\">\n							<img width=\"1050\" height=\"600\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png 1050w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-300x171.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-1024x585.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-768x439.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-416x238.png 416w\" sizes=\"(max-width: 1050px) 100vw, 1050px\" />								</a>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 16:09:00','2021-03-31 16:09:00','',410,'http://choiceresources.co.uk/?p=422',0,'revision','',0),
(424,1,'2021-03-31 16:16:30','2021-03-31 16:16:30','','Default Kit','','inherit','closed','closed','','12-revision-v1','','','2021-03-31 16:16:30','2021-03-31 16:16:30','',12,'http://choiceresources.co.uk/?p=424',0,'revision','',0),
(426,1,'2021-03-31 16:33:44','2021-03-31 16:33:44','Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n											<a href=\"http://choiceresources.co.uk/\">\n							<img width=\"1050\" height=\"600\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png 1050w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-300x171.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-1024x585.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-768x439.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-416x238.png 416w\" sizes=\"(max-width: 1050px) 100vw, 1050px\" />								</a>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 16:33:44','2021-03-31 16:33:44','',410,'http://choiceresources.co.uk/?p=426',0,'revision','',0),
(428,1,'2021-03-31 16:36:25','2021-03-31 16:36:25','','2','','inherit','open','closed','','2-4','','','2021-03-31 16:36:25','2021-03-31 16:36:25','',159,'http://choiceresources.co.uk/wp-content/uploads/2021/03/2-3.png',0,'attachment','image/png',0),
(429,1,'2021-03-31 16:38:17','2021-03-31 16:38:17','<!-- wp:paragraph -->\n<p>More than&nbsp;<a href=\"https://en.unesco.org/themes/education-emergencies/coronavirus-school-closures\">861 million children</a>&nbsp;are learning from home now, as schools globally shutter to try and slow the spread of Covid-19.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Parents are all teachers now. A Quartz team made up of education reporters, former teachers, and parents have compiled useful resources to help parents navigate this transition. They are neither comprehensive nor meant to replace the learning your kidsâ€™ schools are trying to put in place. They are things to use to augment school assignments and help fill the other hours in ways that that you, and hopefully your kids, can feel good about.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We all know there are special challenges to every age, but high schools kids can direct their own learning, and younger kids need socialization and less focus on academics. Much of this guide is focused on elementary (primary) school children, ages five to 12. But thereâ€™s a special chapter for 0-3 and some links for older kids too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are the basics: make a scheduleâ€”we need to create order when there is noneâ€”forgive yourself when you realize you are a terrible teacher (and then send a note to your teacher expressing appreciation), recognize that kids&nbsp;<a href=\"https://qz.com/1819866/how-to-manage-your-kids-screen-time-during-coronavirus/\">will be on screens</a>&nbsp;way more than anyone wants, and keep an eye on their well-being and yours.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In many cases, the goal is not to make sure they stay exactly on target (or to scramble to catch up if they are behind), but to give them routines, make sure there is variety in the dayâ€”outdoors! cook! read! play games! socialize in safe social distancing ways! and provide comforting continuity. There will be days when they binge-watch&nbsp;<em>The Magic School Bus</em>&nbsp;(words you never thought you would see together) or&nbsp;<em>The Great British Bake-Off</em>&nbsp;(again). Older kids will waste time, obsess over friendships and connecting, and discover that they can do a whole dayâ€™s work in three hours. Give yourself, and your children, a break.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>More than&nbsp;<a href=\"https://en.unesco.org/themes/education-emergencies/coronavirus-school-closures\">861 million children</a>&nbsp;are learning from home now, as schools globally shutter to try and slow the spread of Covid-19.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Parents are all teachers now. A Quartz team made up of education reporters, former teachers, and parents have compiled useful resources to help parents navigate this transition. They are neither comprehensive nor meant to replace the learning your kidsâ€™ schools are trying to put in place. They are things to use to augment school assignments and help fill the other hours in ways that that you, and hopefully your kids, can feel good about.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We all know there are special challenges to every age, but high schools kids can direct their own learning, and younger kids need socialization and less focus on academics. Much of this guide is focused on elementary (primary) school children, ages five to 12. But thereâ€™s a special chapter for 0-3 and some links for older kids too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are the basics: make a scheduleâ€”we need to create order when there is noneâ€”forgive yourself when you realize you are a terrible teacher (and then send a note to your teacher expressing appreciation), recognize that kids&nbsp;<a href=\"https://qz.com/1819866/how-to-manage-your-kids-screen-time-during-coronavirus/\">will be on screens</a>&nbsp;way more than anyone wants, and keep an eye on their well-being and yours.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In many cases, the goal is not to make sure they stay exactly on target (or to scramble to catch up if they are behind), but to give them routines, make sure there is variety in the dayâ€”outdoors! cook! read! play games! socialize in safe social distancing ways! and provide comforting continuity. There will be days when they binge-watch&nbsp;<em>The Magic School Bus</em>&nbsp;(words you never thought you would see together) or&nbsp;<em>The Great British Bake-Off</em>&nbsp;(again). Older kids will waste time, obsess over friendships and connecting, and discover that they can do a whole dayâ€™s work in three hours. Give yourself, and your children, a break.</p>\n<!-- /wp:paragraph -->','More than what you\'d expect','','inherit','closed','closed','','159-revision-v1','','','2021-03-31 16:38:17','2021-03-31 16:38:17','',159,'http://choiceresources.co.uk/?p=429',0,'revision','',0),
(431,1,'2021-03-31 16:49:54','2021-03-31 16:49:54','Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n											<a href=\"http://choiceresources.co.uk/\">\n							<img width=\"1050\" height=\"600\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png 1050w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-300x171.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-1024x585.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-768x439.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-416x238.png 416w\" sizes=\"(max-width: 1050px) 100vw, 1050px\" />								</a>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 16:49:54','2021-03-31 16:49:54','',410,'http://choiceresources.co.uk/?p=431',0,'revision','',0),
(432,1,'2021-03-31 16:55:47','2021-03-31 16:55:47','Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n											<a href=\"http://choiceresources.co.uk/\">\n							<img width=\"1050\" height=\"600\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png 1050w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-300x171.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-1024x585.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-768x439.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-416x238.png 416w\" sizes=\"(max-width: 1050px) 100vw, 1050px\" />								</a>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 16:55:47','2021-03-31 16:55:47','',410,'http://choiceresources.co.uk/?p=432',0,'revision','',0),
(434,1,'2021-03-31 17:01:34','2021-03-31 17:01:34','Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n											<a href=\"http://choiceresources.co.uk/\">\n							<img width=\"1050\" height=\"600\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1.png 1050w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-300x171.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-1024x585.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-768x439.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/3-1-416x238.png 416w\" sizes=\"(max-width: 1050px) 100vw, 1050px\" />								</a>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 17:01:34','2021-03-31 17:01:34','',410,'http://choiceresources.co.uk/?p=434',0,'revision','',0),
(435,1,'2021-03-31 17:07:17','2021-03-31 17:07:17','','1','','inherit','open','closed','','1-5','','','2021-03-31 17:07:17','2021-03-31 17:07:17','',406,'http://choiceresources.co.uk/wp-content/uploads/2021/03/1-4.png',0,'attachment','image/png',0),
(437,1,'2021-03-31 17:25:28','2021-03-31 17:25:28','Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n			<h3>Recent posts</h3>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 17:25:28','2021-03-31 17:25:28','',410,'http://choiceresources.co.uk/?p=437',0,'revision','',0),
(438,1,'2021-03-31 17:27:31','2021-03-31 17:27:31','Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n			<h3>Recent posts</h3>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 17:27:31','2021-03-31 17:27:31','',410,'http://choiceresources.co.uk/?p=438',0,'revision','',0),
(440,1,'2021-03-31 17:53:49','2021-03-31 17:53:49','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n								Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n			<h3>Recent posts</h3>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 17:53:49','2021-03-31 17:53:49','',410,'http://choiceresources.co.uk/?p=440',0,'revision','',0),
(442,1,'2021-03-31 17:58:16','2021-03-31 17:58:16','<img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" title=\"CR Banner 2 (3)\" alt=\"CR Banner 2 (3)\" />											\n								Share on facebook\n								Share on twitter\n								Share on email\n								Share on whatsapp\n								Share on pinterest\n					<a href=\"http://choiceresources.co.uk/\"></a><a href=\"http://choiceresources.co.uk/\"></a>				\n							Previous\n							Next\n			<h3>Recent posts</h3>','Elementor Single Post #410','','inherit','closed','closed','','410-revision-v1','','','2021-03-31 17:58:16','2021-03-31 17:58:16','',410,'http://choiceresources.co.uk/?p=442',0,'revision','',0),
(443,1,'2021-03-31 19:37:13','2021-03-31 19:34:06',' ','','','publish','closed','closed','','443','','','2021-03-31 19:37:13','2021-03-31 19:37:13','',0,'http://choiceresources.co.uk/?p=443',4,'nav_menu_item','',0),
(444,1,'2021-03-31 23:06:00','2021-03-31 23:06:00','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n			<h2>Blogs </h2>		\n					Click Here				\n							Previous\n							Next\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />','Blog Archive','','publish','closed','closed','','blog-archive','','','2021-03-31 23:27:59','2021-03-31 23:27:59','',0,'http://choiceresources.co.uk/?post_type=elementor_library&#038;p=444',0,'elementor_library','',0),
(445,1,'2021-03-31 23:01:01','2021-03-31 23:01:01','<img width=\"980\" height=\"151\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w\" sizes=\"(max-width: 980px) 100vw, 980px\" />											\n					<h3>\n					Amazing Resources for\n					Children\n				</h3>\n									<h2>\n						Shop Now					</h2>\n						25% off any item with the coupon CHOICE21					\n					<a>\n						Click Here					</a>\n		<p><strong>Welcome!Â </strong><strong style=\"color: var( --e-global-color-text );\">Choice Resources.co.uk is the Newest Christian Learning Platform in the UK. Everything is designed by teachers and Holistic Educators to bring the Word of God to each child through Outdoor and Curriculum based Resources. Dive into some of our FREE Resources today.</strong></p>		\n				<figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/1-724x1024.png\" alt=\"1\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/2-724x1024.png\" alt=\"2\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/3-724x1024.png\" alt=\"3\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/4-724x1024.png\" alt=\"4\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/5-724x1024.png\" alt=\"5\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/6-724x1024.png\" alt=\"6\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/7-724x1024.png\" alt=\"7\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/8-724x1024.png\" alt=\"8\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/9-724x1024.png\" alt=\"9\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/10-724x1024.png\" alt=\"10\" /></figure><figure><img src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/11-724x1024.png\" alt=\"11\" /></figure>			\n						Previous\n						Next\n									<h2>\n						Find out more!					</h2>\n						Summer Content Now Available					\n					<a>\n						Click Here					</a>\n			<h2>Catch up on this week\'s reads</h2>		\n		https://www.youtube.com/watch?v=t6S42sz-mHs<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Google-plus\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Snapchat\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n			<h4>Navigation</h4>		\n					<ul>\n							<li>\n										About\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Contact\n									</li>\n								<li>\n										Support\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Pricing\n									</li>\n								<li>\n										Teams\n									</li>\n								<li>\n										Education\n									</li>\n								<li>\n										Refer a friend\n									</li>\n								<li>\n										Updates\n									</li>\n						</ul>\n			<h4>Newsletter</h4>		\n			<p>Â© 2018 All rights reservedâ€‹</p>		\n			<p>Made with â¤ with Elementorâ€‹</p>','Home','','inherit','closed','closed','','57-autosave-v1','','','2021-03-31 23:01:01','2021-03-31 23:01:01','',57,'http://choiceresources.co.uk/?p=445',0,'revision','',0),
(446,1,'2021-03-31 23:06:57','2021-03-31 23:06:57','','1','','inherit','open','closed','','1-6','','','2021-03-31 23:06:57','2021-03-31 23:06:57','',444,'http://choiceresources.co.uk/wp-content/uploads/2021/03/1-5.png',0,'attachment','image/png',0),
(447,1,'2021-03-31 23:07:45','2021-03-31 23:07:45','','7','','inherit','open','closed','','7-2','','','2021-03-31 23:07:45','2021-03-31 23:07:45','',444,'http://choiceresources.co.uk/wp-content/uploads/2021/03/7-1.png',0,'attachment','image/png',0),
(448,1,'2021-03-31 23:08:41','2021-03-31 23:08:41','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n			<h2>Blogs </h2>','Blog Archive','','inherit','closed','closed','','444-revision-v1','','','2021-03-31 23:08:41','2021-03-31 23:08:41','',444,'http://choiceresources.co.uk/?p=448',0,'revision','',0),
(449,1,'2021-03-31 23:08:42','2021-03-31 23:08:42','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n			<h2>Blogs </h2>		\n					Click Here				\n							Previous\n							Next','Blog Archive','','inherit','closed','closed','','444-revision-v1','','','2021-03-31 23:08:42','2021-03-31 23:08:42','',444,'http://choiceresources.co.uk/?p=449',0,'revision','',0),
(451,1,'2021-03-31 23:19:38','2021-03-31 23:19:38','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n			<h2>Blogs </h2>		\n					Click Here				\n							Previous\n							Next\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />','Blog Archive','','inherit','closed','closed','','444-revision-v1','','','2021-03-31 23:19:38','2021-03-31 23:19:38','',444,'http://choiceresources.co.uk/?p=451',0,'revision','',0),
(452,1,'2021-03-31 23:21:55','2021-03-31 23:21:55','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n			<h2>Blogs </h2>		\n					Click Here				\n							Previous\n							Next\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />','Blog Archive','','inherit','closed','closed','','444-revision-v1','','','2021-03-31 23:21:55','2021-03-31 23:21:55','',444,'http://choiceresources.co.uk/?p=452',0,'revision','',0),
(453,1,'2021-03-31 23:22:32','2021-03-31 23:22:32','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n			<h2>Blogs </h2>		\n					Click Here				\n							Previous\n							Next\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />','Blog Archive','','trash','closed','closed','','blog-archive-2__trashed','','','2021-03-31 23:34:59','2021-03-31 23:34:59','',0,'http://choiceresources.co.uk/?elementor_library=blog-archive-2',0,'elementor_library','',0),
(454,1,'2021-03-31 23:22:32','2021-03-31 23:22:32','','Blog Archive','','inherit','closed','closed','','453-revision-v1','','','2021-03-31 23:22:32','2021-03-31 23:22:32','',453,'http://choiceresources.co.uk/?p=454',0,'revision','',0),
(455,1,'2021-03-31 23:22:32','2021-03-31 23:22:32','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n			<h2>Blogs </h2>		\n					Click Here				\n							Previous\n							Next\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />','Blog Archive','','inherit','closed','closed','','453-revision-v1','','','2021-03-31 23:22:32','2021-03-31 23:22:32','',453,'http://choiceresources.co.uk/?p=455',0,'revision','',0),
(456,1,'2021-03-31 23:27:59','2021-03-31 23:27:59','<img width=\"1300\" height=\"200\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3.png 1300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-300x46.png 300w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-1024x158.png 1024w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-768x118.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/CR-Banner-2-3-416x64.png 416w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" />											\n			<h2>Blogs </h2>		\n					Click Here				\n							Previous\n							Next\n										<img width=\"724\" height=\"1024\" src=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png\" alt=\"\" loading=\"lazy\" srcset=\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-724x1024.png 724w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-212x300.png 212w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-768x1086.png 768w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1086x1536.png 1086w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-1448x2048.png 1448w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10-416x588.png 416w, http://choiceresources.co.uk/wp-content/uploads/2021/03/Untitled-design-10.png 1587w\" sizes=\"(max-width: 724px) 100vw, 724px\" />','Blog Archive','','inherit','closed','closed','','444-revision-v1','','','2021-03-31 23:27:59','2021-03-31 23:27:59','',444,'http://choiceresources.co.uk/?p=456',0,'revision','',0);
/*!40000 ALTER TABLE `wpcx_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_term_relationships`
--

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

--
-- Dumping data for table `wpcx_term_relationships`
--

LOCK TABLES `wpcx_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpcx_term_relationships` DISABLE KEYS */;
INSERT INTO `wpcx_term_relationships` VALUES
(1,1,0),
(17,2,0),
(18,2,0),
(19,2,0),
(20,2,0),
(30,4,0),
(30,18,0),
(30,19,0),
(30,20,0),
(30,24,0),
(34,4,0),
(34,20,0),
(34,21,0),
(34,22,0),
(34,25,0),
(37,4,0),
(37,19,0),
(37,20,0),
(37,23,0),
(37,24,0),
(40,4,0),
(40,20,0),
(40,27,0),
(43,28,0),
(49,29,0),
(52,30,0),
(55,30,0),
(103,31,0),
(114,31,0),
(134,28,0),
(151,1,0),
(157,1,0),
(159,1,0),
(172,29,0),
(175,29,0),
(181,29,0),
(183,29,0),
(195,29,0),
(204,3,0),
(209,28,0),
(221,28,0),
(223,28,0),
(225,40,0),
(228,40,0),
(233,28,0),
(246,3,0),
(248,3,0),
(249,3,0),
(252,3,0),
(253,3,0),
(254,3,0),
(255,3,0),
(256,3,0),
(257,3,0),
(258,3,0),
(259,3,0),
(260,3,0),
(261,3,0),
(262,3,0),
(263,3,0),
(264,3,0),
(265,3,0),
(266,3,0),
(267,3,0),
(268,3,0),
(269,3,0),
(270,3,0),
(271,3,0),
(272,3,0),
(273,3,0),
(274,3,0),
(275,3,0),
(276,3,0),
(277,3,0),
(278,3,0),
(279,3,0),
(280,3,0),
(281,3,0),
(282,3,0),
(283,3,0),
(284,3,0),
(285,3,0),
(286,3,0),
(287,3,0),
(288,3,0),
(289,3,0),
(290,3,0),
(291,3,0),
(292,3,0),
(293,3,0),
(299,31,0),
(300,2,0),
(305,28,0),
(316,28,0),
(322,28,0),
(324,28,0),
(336,28,0),
(341,28,0),
(344,28,0),
(360,28,0),
(389,28,0),
(399,29,0),
(406,57,0),
(406,58,0),
(408,28,0),
(410,31,0),
(413,31,0),
(415,31,0),
(418,31,0),
(423,31,0),
(425,31,0),
(430,31,0),
(433,31,0),
(436,31,0),
(439,31,0),
(441,31,0),
(443,2,0),
(444,59,0),
(450,59,0),
(453,59,0);
/*!40000 ALTER TABLE `wpcx_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_term_taxonomy`
--

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

--
-- Dumping data for table `wpcx_term_taxonomy`
--

LOCK TABLES `wpcx_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpcx_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpcx_term_taxonomy` VALUES
(1,1,'category','',0,3),
(2,2,'nav_menu','',0,6),
(3,3,'nav_menu','',0,46),
(4,4,'product_type','',0,4),
(5,5,'product_type','',0,0),
(6,6,'product_type','',0,0),
(7,7,'product_type','',0,0),
(8,8,'product_visibility','',0,0),
(9,9,'product_visibility','',0,0),
(10,10,'product_visibility','',0,0),
(11,11,'product_visibility','',0,0),
(12,12,'product_visibility','',0,0),
(13,13,'product_visibility','',0,0),
(14,14,'product_visibility','',0,0),
(15,15,'product_visibility','',0,0),
(16,16,'product_visibility','',0,0),
(18,18,'product_tag','',0,1),
(19,19,'product_tag','',0,2),
(20,20,'product_tag','',0,4),
(21,21,'product_tag','',0,1),
(22,22,'product_tag','',0,1),
(23,23,'product_tag','',0,1),
(24,24,'product_cat','',0,2),
(25,25,'product_cat','',0,1),
(26,26,'product_cat','',0,0),
(27,27,'product_cat','',0,1),
(28,28,'elementor_library_type','',0,1),
(29,29,'elementor_library_type','',0,1),
(30,30,'elementor_library_type','',0,0),
(31,31,'elementor_library_type','',0,1),
(32,32,'elementor_library_category','',0,0),
(33,33,'elementor_library_category','',0,0),
(34,34,'elementor_library_category','',0,0),
(35,35,'elementor_library_category','',0,0),
(36,36,'elementor_library_category','',0,0),
(37,37,'elementor_library_category','',0,0),
(38,38,'elementor_library_category','',0,0),
(39,39,'elementor_library_category','',0,0),
(40,40,'nav_menu','',0,2),
(41,41,'product_cat','',0,0),
(42,42,'product_cat','',0,0),
(43,43,'product_cat','',0,0),
(44,44,'product_cat','',0,0),
(45,45,'product_cat','',0,0),
(46,46,'product_cat','',0,0),
(47,47,'product_cat','',0,0),
(53,53,'product_cat','',0,0),
(54,54,'product_cat','',0,0),
(55,55,'product_cat','',0,0),
(56,56,'product_cat','',0,0),
(57,57,'category','',0,1),
(58,58,'post_tag','',0,1),
(59,59,'elementor_library_type','',0,1);
/*!40000 ALTER TABLE `wpcx_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_termmeta`
--

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

--
-- Dumping data for table `wpcx_termmeta`
--

LOCK TABLES `wpcx_termmeta` WRITE;
/*!40000 ALTER TABLE `wpcx_termmeta` DISABLE KEYS */;
INSERT INTO `wpcx_termmeta` VALUES
(2,18,'product_count_product_tag','1'),
(3,19,'product_count_product_tag','2'),
(4,20,'product_count_product_tag','4'),
(5,21,'product_count_product_tag','1'),
(6,22,'product_count_product_tag','1'),
(7,23,'product_count_product_tag','1'),
(8,24,'order','0'),
(9,24,'display_type','products'),
(10,24,'thumbnail_id','0'),
(11,25,'order','0'),
(12,25,'display_type','products'),
(13,25,'thumbnail_id','0'),
(14,26,'order','0'),
(15,26,'display_type','products'),
(16,26,'thumbnail_id','0'),
(17,27,'order','0'),
(18,27,'display_type','products'),
(19,27,'thumbnail_id','0'),
(20,27,'product_count_product_cat','1'),
(21,24,'product_count_product_cat','2'),
(22,25,'product_count_product_cat','1'),
(23,41,'order','0'),
(24,41,'display_type',''),
(25,41,'thumbnail_id','0'),
(26,42,'order','0'),
(27,42,'display_type',''),
(28,42,'thumbnail_id','0'),
(29,43,'order','0'),
(30,43,'display_type',''),
(31,43,'thumbnail_id','0'),
(32,44,'order','0'),
(33,44,'display_type',''),
(34,44,'thumbnail_id','0'),
(35,45,'order','0'),
(36,45,'display_type',''),
(37,45,'thumbnail_id','0'),
(38,46,'order','0'),
(39,46,'display_type',''),
(40,46,'thumbnail_id','0'),
(41,47,'order','0'),
(42,47,'display_type',''),
(43,47,'thumbnail_id','0'),
(59,53,'order','0'),
(60,53,'display_type','subcategories'),
(61,53,'thumbnail_id','0'),
(62,54,'order','0'),
(63,54,'display_type','subcategories'),
(64,54,'thumbnail_id','0'),
(65,55,'order','0'),
(66,55,'display_type','subcategories'),
(67,55,'thumbnail_id','0'),
(68,56,'order','0'),
(69,56,'display_type',''),
(70,56,'thumbnail_id','0');
/*!40000 ALTER TABLE `wpcx_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_terms`
--

DROP TABLE IF EXISTS `wpcx_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpcx_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) 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=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpcx_terms`
--

LOCK TABLES `wpcx_terms` WRITE;
/*!40000 ALTER TABLE `wpcx_terms` DISABLE KEYS */;
INSERT INTO `wpcx_terms` VALUES
(1,'Uncategorized','uncategorized',0),
(2,'Primary menu','primary-menu',0),
(3,'Secondary menu','secondary-menu',0),
(4,'simple','simple',0),
(5,'grouped','grouped',0),
(6,'variable','variable',0),
(7,'external','external',0),
(8,'exclude-from-search','exclude-from-search',0),
(9,'exclude-from-catalog','exclude-from-catalog',0),
(10,'featured','featured',0),
(11,'outofstock','outofstock',0),
(12,'rated-1','rated-1',0),
(13,'rated-2','rated-2',0),
(14,'rated-3','rated-3',0),
(15,'rated-4','rated-4',0),
(16,'rated-5','rated-5',0),
(18,'nice','nice',0),
(19,'big','big',0),
(20,'blue','blue',0),
(21,'pink','pink',0),
(22,'red','red',0),
(23,'bag','bag',0),
(24,'Maths','maths',0),
(25,'English','english',0),
(26,'Science','science',0),
(27,'Art','art',0),
(28,'header','header',0),
(29,'footer','footer',0),
(30,'product','product',0),
(31,'single-post','single-post',0),
(32,'Maths','maths',0),
(33,'English','english',0),
(34,'Science','science',0),
(35,'History','history',0),
(36,'Art','art',0),
(37,'STEM','stem',0),
(38,'Geography','geography',0),
(39,'Life Skills','life-skills',0),
(40,'Top Menu','top-menu',0),
(41,'Geography','geography',0),
(42,'History','history',0),
(43,'Music','music',0),
(44,'STEM','stem',0),
(45,'Life Skills','life-skills',0),
(46,'Forest School','forest-school',0),
(47,'Foundation','foundation',0),
(53,'Ages 3+','ages-3',0),
(54,'Ages 5+','ages-5',0),
(55,'Ages 8+','ages-8',0),
(56,'Ages 11+','ages-11',0),
(57,'Planting','planting',0),
(58,'Planting','planting',0),
(59,'archive','archive',0);
/*!40000 ALTER TABLE `wpcx_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_usermeta`
--

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

--
-- Dumping data for table `wpcx_usermeta`
--

LOCK TABLES `wpcx_usermeta` WRITE;
/*!40000 ALTER TABLE `wpcx_usermeta` DISABLE KEYS */;
INSERT INTO `wpcx_usermeta` VALUES
(1,1,'nickname','admin'),
(2,1,'first_name',''),
(3,1,'last_name',''),
(4,1,'description',''),
(5,1,'rich_editing','true'),
(6,1,'syntax_highlighting','true'),
(7,1,'comment_shortcuts','false'),
(8,1,'admin_color','fresh'),
(9,1,'use_ssl','0'),
(10,1,'show_admin_bar_front','true'),
(11,1,'locale',''),
(12,1,'wpcx_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(13,1,'wpcx_user_level','10'),
(14,1,'dismissed_wp_pointers',''),
(15,1,'show_welcome_panel','1'),
(17,1,'wpcx_dashboard_quick_press_last_post_id','4'),
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"213.205.194.0\";}'),
(19,1,'session_tokens','a:14:{s:64:\"d64b8d3ed1aaf79b5fdd443b733e06c770fd4ba5b80f29dc8ea8a185704475c9\";a:4:{s:10:\"expiration\";i:1618283752;s:2:\"ip\";s:15:\"213.205.194.233\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1617074152;}s:64:\"50f826cfba7a07f1c713fa18d1435e12753d379cc6dcde28b8ee2ac41a30ed02\";a:4:{s:10:\"expiration\";i:1618283769;s:2:\"ip\";s:15:\"213.205.194.233\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1617074169;}s:64:\"cad6f9f91cbd1551cfac2971bd354bbfda3d66e5b327a8478387506ea1339d8d\";a:4:{s:10:\"expiration\";i:1617268264;s:2:\"ip\";s:15:\"213.205.194.233\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1617095464;}s:64:\"0df3a2f351413766adb749f3aa90fdaedea0814c62d62a971a3c5ddd74633ca9\";a:4:{s:10:\"expiration\";i:1617302282;s:2:\"ip\";s:15:\"213.205.194.134\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36\";s:5:\"login\";i:1617129482;}s:64:\"6e92c5a068fb4455a23c9f28002e4101eb85cc4c8b6fc4c02f7a437a866e42c9\";a:4:{s:10:\"expiration\";i:1617319310;s:2:\"ip\";s:15:\"213.205.194.134\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36\";s:5:\"login\";i:1617146510;}s:64:\"f1b45228b71e5f3624418532b8941f5e4d7908c807c07529d8ea3a5fa8b6b0cb\";a:4:{s:10:\"expiration\";i:1617372537;s:2:\"ip\";s:15:\"213.205.194.155\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1617199737;}s:64:\"bea7399bc14a0cf976ebd751f9e8b5a4db1cc2b69c113a430113df0a33022495\";a:4:{s:10:\"expiration\";i:1617375839;s:2:\"ip\";s:15:\"213.205.194.155\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36\";s:5:\"login\";i:1617203039;}s:64:\"cfae6e74d9bfb79471a102afc93ce8bff4f3c52a701d6003c664af529b664485\";a:4:{s:10:\"expiration\";i:1617379783;s:2:\"ip\";s:15:\"213.205.194.155\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36\";s:5:\"login\";i:1617206983;}s:64:\"d7c46dedac27afc34d6b81e063aac82aba73427ee7764ac6949dcf83407346d5\";a:4:{s:10:\"expiration\";i:1617379994;s:2:\"ip\";s:15:\"213.205.194.155\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36\";s:5:\"login\";i:1617207194;}s:64:\"04cc793e797427d4dacc55fb4666e125297c08ecb6214ef67652076e071b5cff\";a:4:{s:10:\"expiration\";i:1617380001;s:2:\"ip\";s:15:\"213.205.194.155\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36\";s:5:\"login\";i:1617207201;}s:64:\"b8743257d4342d64bb852b2ed4341e5135fa76e0e08ccd9de98b18db174a562f\";a:4:{s:10:\"expiration\";i:1617380015;s:2:\"ip\";s:15:\"213.205.194.155\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36\";s:5:\"login\";i:1617207215;}s:64:\"a4e390b68046ecc2bb7a1a272504878000a7e5c0ab8ed91ae7798745d1454c89\";a:4:{s:10:\"expiration\";i:1617391895;s:2:\"ip\";s:15:\"213.205.194.155\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1617219095;}s:64:\"3af7541e39e05b1ab19a67d3359cfbdbc4fab7c77c484b0e2f308b8564ce1dbe\";a:4:{s:10:\"expiration\";i:1617391895;s:2:\"ip\";s:15:\"213.205.194.155\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1617219095;}s:64:\"2b6e38bfd958f91d84c7f7d7453ec8938e17b4e534ce70d9531b5cf7d68f1c68\";a:4:{s:10:\"expiration\";i:1617403350;s:2:\"ip\";s:15:\"213.205.194.155\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1617230550;}}'),
(20,1,'wpcx_elementor_connect_common_data','a:3:{s:9:\"client_id\";s:32:\"XthnpOi4LrDv3cDmwqgULzmOmAZYji8S\";s:11:\"auth_secret\";s:32:\"APxESt7prmbebET5b9URjNElGojrL5Gc\";s:5:\"state\";s:12:\"VZyL7LkLjzAp\";}'),
(21,1,'_woocommerce_tracks_anon_id','woo:e7EIYpdwzMSIGL0rluMtmDJr'),
(22,1,'last_update','1617075019'),
(23,1,'woocommerce_admin_activity_panel_inbox_last_read','1617075010297'),
(24,1,'woocommerce_admin_task_list_tracked_started_tasks','{\"products\":1}'),
(25,1,'wc_last_active','1617148800'),
(26,1,'elementor_introduction','a:1:{s:10:\"rightClick\";b:1;}'),
(27,1,'nav_menu_recently_edited','2'),
(28,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(29,1,'metaboxhidden_nav-menus','a:4:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:21:\"add-post-type-product\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-product_tag\";}'),
(32,1,'closedpostboxes_nav-menus','a:0:{}'),
(36,1,'wpcx_user-settings','mfold=o&libraryContent=browse&editor=tinymce'),
(37,1,'wpcx_user-settings-time','1617199738'),
(38,1,'_order_count','0');
/*!40000 ALTER TABLE `wpcx_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_users`
--

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

--
-- Dumping data for table `wpcx_users`
--

LOCK TABLES `wpcx_users` WRITE;
/*!40000 ALTER TABLE `wpcx_users` DISABLE KEYS */;
INSERT INTO `wpcx_users` VALUES
(1,'admin','$P$BWotF900Fk.2KGXTVLC3ucA1MNyAWe.','admin','ivankulongo@gmail.com','http://choiceresources.co.uk','2021-03-30 03:15:01','',0,'admin');
/*!40000 ALTER TABLE `wpcx_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_wc_admin_note_actions`
--

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

--
-- Dumping data for table `wpcx_wc_admin_note_actions`
--

LOCK TABLES `wpcx_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wpcx_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wpcx_wc_admin_note_actions` VALUES
(1,1,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned',0,''),
(2,2,'open-marketing-hub','Open marketing hub','http://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,''),
(16,16,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,''),
(30,17,'learn-more','Learn more','https://woocommerce.com/posts/how-to-sell-online-courses-wordpress/?utm_source=inbox','actioned',1,''),
(44,18,'customize-store-with-storefront','Let\'s go!','http://choiceresources.co.uk/wp-admin/themes.php?page=storefront-welcome','actioned',1,''),
(45,19,'learn-more','Learn more','https://docs.woocommerce.com/document/variable-product/?utm_source=inbox','actioned',0,''),
(176,20,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox','actioned',0,''),
(177,21,'affirm-insight-first-product-and-payment','Yes','','actioned',0,'Thanks for your feedback'),
(178,22,'day-after-first-product','Learn more','https://docs.woocommerce.com/document/woocommerce-customizer/?utm_source=inbox','actioned',0,''),
(179,3,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=&section=changelog','actioned',1,''),
(180,4,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,''),
(181,5,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,''),
(182,6,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,''),
(183,7,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,''),
(184,8,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,''),
(185,9,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,''),
(186,10,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,''),
(187,11,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business','actioned',1,''),
(188,23,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','actioned',1,''),
(189,23,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,''),
(190,12,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,''),
(191,13,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business','actioned',1,''),
(192,14,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,''),
(193,15,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,'');
/*!40000 ALTER TABLE `wpcx_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_wc_admin_notes`
--

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

--
-- Dumping data for table `wpcx_wc_admin_notes`
--

LOCK TABLES `wpcx_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wpcx_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wpcx_wc_admin_notes` VALUES
(1,'wc-admin-onboarding-email-marketing','info','en_US','Sign up for tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','unactioned','woocommerce-admin','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(2,'wc-admin-marketing-intro','info','en_US','Connect with your audience','Grow your customer base and increase your sales with marketing tools built for WooCommerce.','{}','unactioned','woocommerce-admin','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(3,'facebook_pixel_api_2021','marketing','en_US','Improve the performance of your Facebook ads','Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved performance and measurement of your Facebook ad campaigns.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(4,'facebook_ec_2021','marketing','en_US','Sync your product catalog with Facebook to help boost sales','A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(5,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. Weâ€™re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(6,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store â€œready to sellâ€ as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(7,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while theyâ€™re shopping on your online store. No more follow-up email requestsâ€”customers get what they want, before theyâ€™re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(8,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(9,'your-first-product','info','en_US','Your first product','That\'s huge! You\'re well on your way to building a successful online store â€” now itâ€™s time to think about how you\'ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','unactioned','woocommerce.com','2021-03-30 03:33:21',NULL,0,'plain','',0,'info'),
(10,'wc-square-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple PayÂ® with Square you can increase conversion rates by letting your customers know that Apple PayÂ® is available. Hereâ€™s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(11,'wc-square-apple-pay-grow-your-business','marketing','en_US','Grow your business with Square and Apple Pay ','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple PayÂ®.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(12,'wcpay-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple PayÂ® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple PayÂ® is available. Hereâ€™s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(13,'wcpay-apple-pay-grow-your-business','marketing','en_US','Grow your business with WooCommerce Payments and Apple Pay','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple PayÂ®.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(14,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(15,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(16,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-03-30 03:26:15',NULL,0,'plain','',0,'info'),
(17,'wc-admin-selling-online-courses','marketing','en_US','Do you want to sell online courses?','Online courses are a great solution for any business that can teach a new skill. Since courses donâ€™t require physical product development or shipping, theyâ€™re affordable, fast to create, and can generate passive income for years to come. In this article, we provide you more information about selling courses using WooCommerce.','{}','unactioned','woocommerce-admin','2021-03-30 03:27:31',NULL,0,'plain','',0,'info'),
(18,'storefront-customize','info','en_US','Design your store with Storefront ðŸŽ¨','Visit the Storefront settings page to start setup and customization of your shop.','{}','unactioned','storefront','2021-03-30 03:30:02',NULL,0,'plain','',0,'info'),
(19,'wc-admin-learn-more-about-variable-products','info','en_US','Learn more about variable products','Variable products are a powerful product type that lets you offer a set of variations on a product, with control over prices, stock, image and more for each variation. They can be used for a product like a shirt, where you can offer a large, medium and small and in different colors.','{}','unactioned','woocommerce-admin','2021-03-30 03:33:21',NULL,0,'plain','',0,'info'),
(20,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2021-03-31 14:08:36',NULL,0,'plain','',0,'info'),
(21,'wc-admin-insight-first-product-and-payment','survey','en_US','Insight','More than 80% of new merchants add the first product and have at least one payment method set up during the first week. We\'re here to help your business succeed! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-03-31 14:08:36',NULL,0,'plain','',0,'info'),
(22,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2021-03-31 14:08:36',NULL,0,'plain','',0,'info'),
(23,'wcpay-apple-pay-is-now-available','marketing','en_US','Apple Pay is now available with WooCommerce Payments!','Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>Â®. Itâ€™s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.','{}','pending','woocommerce.com','2021-03-31 14:08:37',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wpcx_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_wc_category_lookup`
--

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

--
-- Dumping data for table `wpcx_wc_category_lookup`
--

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

--
-- Table structure for table `wpcx_wc_customer_lookup`
--

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

--
-- Dumping data for table `wpcx_wc_customer_lookup`
--

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

--
-- Table structure for table `wpcx_wc_order_coupon_lookup`
--

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

--
-- Dumping data for table `wpcx_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wpcx_wc_order_product_lookup`
--

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

--
-- Dumping data for table `wpcx_wc_order_product_lookup`
--

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

--
-- Table structure for table `wpcx_wc_order_stats`
--

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

--
-- Dumping data for table `wpcx_wc_order_stats`
--

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

--
-- Table structure for table `wpcx_wc_order_tax_lookup`
--

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

--
-- Dumping data for table `wpcx_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wpcx_wc_product_meta_lookup`
--

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

--
-- Dumping data for table `wpcx_wc_product_meta_lookup`
--

LOCK TABLES `wpcx_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wpcx_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wpcx_wc_product_meta_lookup` VALUES
(30,'',1,1,5.9900,5.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(34,'',1,1,4.0000,4.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(37,'',1,1,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(40,'',1,1,6.9900,6.9900,0,NULL,'instock',0,0.00,0,'taxable','');
/*!40000 ALTER TABLE `wpcx_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpcx_wc_reserved_stock`
--

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

--
-- Dumping data for table `wpcx_wc_reserved_stock`
--

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

--
-- Table structure for table `wpcx_wc_tax_rate_classes`
--

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

--
-- Dumping data for table `wpcx_wc_tax_rate_classes`
--

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

--
-- Table structure for table `wpcx_wc_webhooks`
--

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

--
-- Dumping data for table `wpcx_wc_webhooks`
--

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

--
-- Table structure for table `wpcx_woocommerce_api_keys`
--

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

--
-- Dumping data for table `wpcx_woocommerce_api_keys`
--

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

--
-- Table structure for table `wpcx_woocommerce_attribute_taxonomies`
--

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

--
-- Dumping data for table `wpcx_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wpcx_woocommerce_downloadable_product_permissions`
--

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

--
-- Dumping data for table `wpcx_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wpcx_woocommerce_log`
--

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

--
-- Dumping data for table `wpcx_woocommerce_log`
--

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

--
-- Table structure for table `wpcx_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wpcx_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wpcx_woocommerce_order_items`
--

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

--
-- Dumping data for table `wpcx_woocommerce_order_items`
--

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

--
-- Table structure for table `wpcx_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wpcx_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wpcx_woocommerce_payment_tokens`
--

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

--
-- Dumping data for table `wpcx_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wpcx_woocommerce_sessions`
--

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

--
-- Dumping data for table `wpcx_woocommerce_sessions`
--

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

--
-- Table structure for table `wpcx_woocommerce_shipping_zone_locations`
--

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

--
-- Dumping data for table `wpcx_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wpcx_woocommerce_shipping_zone_methods`
--

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

--
-- Dumping data for table `wpcx_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wpcx_woocommerce_shipping_zones`
--

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

--
-- Dumping data for table `wpcx_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wpcx_woocommerce_tax_rate_locations`
--

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

--
-- Dumping data for table `wpcx_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wpcx_woocommerce_tax_rates`
--

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

--
-- Dumping data for table `wpcx_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wphu_actionscheduler_actions`
--

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

--
-- Dumping data for table `wphu_actionscheduler_actions`
--

LOCK TABLES `wphu_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wphu_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wphu_actionscheduler_actions` VALUES
(636,'woocommerce_run_update_callback','failed','2022-06-05 02:25:17','2022-06-05 02:25:17','{\"update_callback\":\"wc_update_630_create_product_attributes_lookup_table\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1654395917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1654395917;}',4,1,'2022-06-05 02:25:43','2022-06-05 02:25:43',0,NULL,10),
(3552,'wpforms_email_summaries_fetch_info_blocks','failed','2023-03-30 23:06:23','2023-03-30 23:06:23','{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680217583;s:18:\"\0*\0first_timestamp\";i:1654086855;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680217583;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',7,1,'2023-03-30 23:07:23','2023-03-30 23:07:23',0,NULL,10),
(3582,'wpforms_process_forms_locator_scan','failed','2023-03-30 23:45:15','2023-03-30 23:45:15','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680219915;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680219915;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-03-30 23:45:36','2023-03-30 23:45:36',0,NULL,10),
(3586,'woocommerce_run_on_woocommerce_admin_updated','failed','2023-03-30 21:29:03','2023-03-30 21:29:03','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1680211743;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1680211743;}',6,1,'2023-03-30 21:29:12','2023-03-30 21:29:12',0,NULL,10),
(3598,'wpforms_email_summaries_fetch_info_blocks','failed','2023-04-06 23:07:23','2023-04-06 23:07:23','{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680822443;s:18:\"\0*\0first_timestamp\";i:1654086855;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680822443;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',7,1,'2023-04-06 23:08:28','2023-04-06 23:08:28',0,NULL,10),
(3599,'wpforms_process_forms_locator_scan','failed','2023-03-31 23:45:36','2023-03-31 23:45:36','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680306336;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680306336;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-03-31 23:46:12','2023-03-31 23:46:12',0,NULL,10),
(3603,'wpforms_process_forms_locator_scan','failed','2023-04-01 23:46:12','2023-04-01 23:46:12','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680392772;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680392772;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-01 23:46:12','2023-04-01 23:46:12',0,NULL,10),
(3607,'wpforms_process_forms_locator_scan','failed','2023-04-02 23:46:12','2023-04-02 23:46:12','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680479172;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680479172;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-02 23:46:17','2023-04-02 23:46:17',0,NULL,10),
(3610,'wpforms_process_forms_locator_scan','failed','2023-04-03 23:46:17','2023-04-03 23:46:17','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680565577;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680565577;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-03 23:47:28','2023-04-03 23:47:28',0,NULL,10),
(3618,'wpforms_process_forms_locator_scan','failed','2023-04-04 23:47:28','2023-04-04 23:47:28','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680652048;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680652048;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-04 23:48:25','2023-04-04 23:48:25',0,NULL,10),
(3622,'wpforms_process_forms_locator_scan','failed','2023-04-05 23:48:25','2023-04-05 23:48:25','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680738505;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680738505;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-05 23:49:26','2023-04-05 23:49:26',0,NULL,10),
(3625,'wpforms_process_forms_locator_scan','failed','2023-04-06 23:49:26','2023-04-06 23:49:26','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680824966;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680824966;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-06 23:50:13','2023-04-06 23:50:13',0,NULL,10),
(3631,'wpforms_email_summaries_fetch_info_blocks','failed','2023-04-13 23:08:28','2023-04-13 23:08:28','{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681427308;s:18:\"\0*\0first_timestamp\";i:1654086855;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681427308;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',7,1,'2023-04-13 23:09:13','2023-04-13 23:09:13',0,NULL,10),
(3632,'wpforms_process_forms_locator_scan','failed','2023-04-07 23:50:13','2023-04-07 23:50:13','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680911413;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680911413;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-07 23:50:26','2023-04-07 23:50:26',0,NULL,10),
(3635,'wpforms_process_forms_locator_scan','failed','2023-04-08 23:50:26','2023-04-08 23:50:26','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1680997826;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1680997826;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-08 23:51:13','2023-04-08 23:51:13',0,NULL,10),
(3638,'wpforms_process_forms_locator_scan','failed','2023-04-09 23:51:13','2023-04-09 23:51:13','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681084273;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681084273;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-09 23:51:19','2023-04-09 23:51:19',0,NULL,10),
(3641,'wpforms_process_forms_locator_scan','failed','2023-04-10 23:51:19','2023-04-10 23:51:19','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681170679;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681170679;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-10 23:52:16','2023-04-10 23:52:16',0,NULL,10),
(3651,'wpforms_process_forms_locator_scan','failed','2023-04-11 23:52:16','2023-04-11 23:52:16','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681257136;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681257136;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-11 23:53:16','2023-04-11 23:53:16',0,NULL,10),
(3654,'wpforms_process_forms_locator_scan','failed','2023-04-12 23:53:16','2023-04-12 23:53:16','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681343596;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681343596;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-12 23:53:16','2023-04-12 23:53:16',0,NULL,10),
(3657,'wpforms_process_forms_locator_scan','failed','2023-04-13 23:53:16','2023-04-13 23:53:16','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681429996;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681429996;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-13 23:53:19','2023-04-13 23:53:19',0,NULL,10),
(3662,'wpforms_email_summaries_fetch_info_blocks','failed','2023-04-20 23:09:13','2023-04-20 23:09:13','{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682032153;s:18:\"\0*\0first_timestamp\";i:1654086855;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682032153;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',7,1,'2023-04-20 23:09:20','2023-04-20 23:09:20',0,NULL,10),
(3663,'wpforms_process_forms_locator_scan','failed','2023-04-14 23:53:19','2023-04-14 23:53:19','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681516399;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681516399;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-14 23:53:23','2023-04-14 23:53:23',0,NULL,10),
(3667,'wpforms_process_forms_locator_scan','failed','2023-04-15 23:53:23','2023-04-15 23:53:23','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681602803;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681602803;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-15 23:54:14','2023-04-15 23:54:14',0,NULL,10),
(3670,'wpforms_process_forms_locator_scan','failed','2023-04-16 23:54:14','2023-04-16 23:54:14','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681689254;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681689254;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-16 23:54:36','2023-04-16 23:54:36',0,NULL,10),
(3673,'wpforms_process_forms_locator_scan','failed','2023-04-17 23:54:36','2023-04-17 23:54:36','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681775676;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681775676;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-17 23:55:14','2023-04-17 23:55:14',0,NULL,10),
(3677,'wpforms_process_forms_locator_scan','failed','2023-04-18 23:55:14','2023-04-18 23:55:14','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681862114;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681862114;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-18 23:56:24','2023-04-18 23:56:24',0,NULL,10),
(3680,'wpforms_process_forms_locator_scan','failed','2023-04-19 23:56:24','2023-04-19 23:56:24','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1681948584;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1681948584;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-19 23:57:16','2023-04-19 23:57:16',0,NULL,10),
(3684,'wpforms_process_forms_locator_scan','failed','2023-04-20 23:57:16','2023-04-20 23:57:16','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682035036;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682035036;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-20 23:57:39','2023-04-20 23:57:39',0,NULL,10),
(3689,'wpforms_email_summaries_fetch_info_blocks','failed','2023-04-27 23:09:20','2023-04-27 23:09:20','{\"tasks_meta_id\":null}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682636960;s:18:\"\0*\0first_timestamp\";i:1654086855;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682636960;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',7,1,'2023-04-27 23:10:17','2023-04-27 23:10:17',0,NULL,10),
(3690,'wpforms_process_forms_locator_scan','failed','2023-04-21 23:57:39','2023-04-21 23:57:39','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682121459;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682121459;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-21 23:58:15','2023-04-21 23:58:15',0,NULL,10),
(3695,'wpforms_process_forms_locator_scan','failed','2023-04-22 23:58:15','2023-04-22 23:58:15','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682207895;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682207895;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-22 23:58:18','2023-04-22 23:58:18',0,NULL,10),
(3698,'wpforms_process_forms_locator_scan','failed','2023-04-23 23:58:18','2023-04-23 23:58:18','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682294298;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682294298;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-23 23:59:17','2023-04-23 23:59:17',0,NULL,10),
(3701,'wpforms_process_forms_locator_scan','failed','2023-04-24 23:59:17','2023-04-24 23:59:17','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682380757;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682380757;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-24 23:59:21','2023-04-24 23:59:21',0,NULL,10),
(3704,'wpforms_process_forms_locator_scan','failed','2023-04-25 23:59:21','2023-04-25 23:59:21','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682467161;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682467161;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-25 23:59:43','2023-04-25 23:59:43',0,NULL,10),
(3707,'wpforms_process_forms_locator_scan','failed','2023-04-26 23:59:43','2023-04-26 23:59:43','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682553583;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682553583;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-27 00:00:18','2023-04-27 00:00:18',0,NULL,10),
(3710,'wpforms_process_forms_locator_scan','failed','2023-04-28 00:00:18','2023-04-28 00:00:18','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682640018;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682640018;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-28 00:01:17','2023-04-28 00:01:17',0,NULL,10),
(3715,'wpforms_process_forms_locator_scan','failed','2023-04-29 00:01:17','2023-04-29 00:01:17','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682726477;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682726477;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-29 00:01:23','2023-04-29 00:01:23',0,NULL,10),
(3718,'wpforms_process_forms_locator_scan','failed','2023-04-30 00:01:23','2023-04-30 00:01:23','{\"tasks_meta_id\":5}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1682812883;s:18:\"\0*\0first_timestamp\";i:1654545663;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1682812883;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',7,1,'2023-04-30 00:02:22','2023-04-30 00:02:22',0,NULL,10),
(4276,'woocommerce_scheduled_subscription_payment','pending','2024-11-16 23:17:18','2024-11-16 23:17:18','{\"subscription_id\":17436}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1731799038;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1731799038;}',9,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(4504,'cartflows_update_knowledge_base_data','failed','2024-02-14 16:25:39','2024-02-14 16:25:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1707927939;s:18:\"\0*\0first_timestamp\";i:1707927939;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1707927939;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-02-14 16:25:40','2024-02-14 16:25:40',0,NULL,10),
(4507,'cartflows_update_knowledge_base_data','failed','2024-02-21 16:25:40','2024-02-21 16:25:40','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1708532740;s:18:\"\0*\0first_timestamp\";i:1707927939;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1708532740;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-02-21 16:27:30','2024-02-21 16:27:30',0,NULL,10),
(9576,'cartflows_update_knowledge_base_data','failed','2024-02-28 16:27:30','2024-02-28 16:27:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1709137650;s:18:\"\0*\0first_timestamp\";i:1707927939;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1709137650;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-02-28 16:28:57','2024-02-28 16:28:57',0,NULL,10),
(13991,'cartflows_update_knowledge_base_data','failed','2024-03-06 16:28:57','2024-03-06 16:28:57','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1709742537;s:18:\"\0*\0first_timestamp\";i:1707927939;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1709742537;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-03-06 16:29:29','2024-03-06 16:29:29',0,NULL,10),
(22876,'cartflows_update_knowledge_base_data','failed','2024-03-13 16:29:29','2024-03-13 16:29:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1710347369;s:18:\"\0*\0first_timestamp\";i:1707927939;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1710347369;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-03-13 16:30:09','2024-03-13 16:30:09',0,NULL,10),
(41191,'cartflows_update_knowledge_base_data','failed','2024-03-20 16:37:24','2024-03-20 16:37:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1710952644;s:18:\"\0*\0first_timestamp\";i:1710347843;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1710952644;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-03-20 16:37:48','2024-03-20 16:37:48',0,NULL,10),
(52090,'cartflows_update_knowledge_base_data','failed','2024-03-27 16:37:53','2024-03-27 16:37:53','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1711557473;s:18:\"\0*\0first_timestamp\";i:1710952672;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1711557473;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-03-27 16:48:32','2024-03-27 16:48:32',0,NULL,10),
(60085,'cartflows_update_knowledge_base_data','failed','2024-04-03 20:25:41','2024-04-03 20:25:41','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1712175941;s:18:\"\0*\0first_timestamp\";i:1711571140;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1712175941;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-04-03 20:27:03','2024-04-03 20:27:03',0,NULL,10),
(69072,'cartflows_update_knowledge_base_data','failed','2024-04-10 21:14:41','2024-04-10 21:14:41','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1712783681;s:18:\"\0*\0first_timestamp\";i:1712178880;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1712783681;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-04-10 21:15:04','2024-04-10 21:15:04',0,NULL,10),
(79971,'cartflows_update_knowledge_base_data','failed','2024-04-18 16:45:09','2024-04-18 16:45:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1713458709;s:18:\"\0*\0first_timestamp\";i:1712853908;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1713458709;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-04-18 16:45:40','2024-04-18 16:45:40',0,NULL,10),
(99223,'cartflows_update_knowledge_base_data','failed','2024-04-25 20:12:46','2024-04-25 20:12:46','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1714075966;s:18:\"\0*\0first_timestamp\";i:1713471165;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1714075966;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-04-25 20:14:51','2024-04-25 20:14:51',0,NULL,10),
(114540,'cartflows_update_knowledge_base_data','failed','2024-04-25 20:20:09','2024-04-25 20:20:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1714076409;s:18:\"\0*\0first_timestamp\";i:1714076409;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1714076409;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-04-25 20:20:12','2024-04-25 20:20:12',0,NULL,10),
(114546,'cartflows_update_knowledge_base_data','failed','2024-05-02 20:20:13','2024-05-02 20:20:13','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1714681213;s:18:\"\0*\0first_timestamp\";i:1714076413;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1714681213;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-05-02 20:28:57','2024-05-02 20:28:57',0,NULL,10),
(141032,'cartflows_update_knowledge_base_data','failed','2024-05-16 22:00:38','2024-05-16 22:00:38','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1715896838;s:18:\"\0*\0first_timestamp\";i:1714687212;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1715896838;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-05-16 22:15:06','2024-05-16 22:15:06',0,NULL,10),
(153352,'cartflows_update_knowledge_base_data','failed','2024-05-23 22:23:51','2024-05-23 22:23:51','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1716503031;s:18:\"\0*\0first_timestamp\";i:1715898230;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1716503031;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-05-23 22:30:07','2024-05-23 22:30:07',0,NULL,10),
(161397,'cartflows_update_knowledge_base_data','failed','2024-05-31 00:23:02','2024-05-31 00:23:02','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1717114982;s:18:\"\0*\0first_timestamp\";i:1716510181;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1717114982;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-05-31 00:30:12','2024-05-31 00:30:12',0,NULL,10),
(166305,'cartflows_update_knowledge_base_data','failed','2024-06-07 05:19:27','2024-06-07 05:19:27','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1717737567;s:18:\"\0*\0first_timestamp\";i:1717132765;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1717737567;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-06-07 05:23:34','2024-06-07 05:23:34',0,NULL,10),
(171981,'cartflows_update_knowledge_base_data','failed','2024-06-14 16:33:09','2024-06-14 16:33:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1718382789;s:18:\"\0*\0first_timestamp\";i:1717777988;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1718382789;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-06-14 16:45:13','2024-06-14 16:45:13',0,NULL,10),
(185730,'cartflows_update_knowledge_base_data','failed','2024-06-28 16:45:36','2024-06-28 16:45:36','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1719593136;s:18:\"\0*\0first_timestamp\";i:1718383521;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1719593136;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-06-28 16:51:52','2024-06-28 16:51:52',0,NULL,10),
(189398,'cartflows_update_knowledge_base_data','failed','2024-06-28 20:28:46','2024-06-28 20:28:46','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1719606526;s:18:\"\0*\0first_timestamp\";i:1719606526;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1719606526;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-06-28 20:28:47','2024-06-28 20:28:47',0,NULL,10),
(189424,'cartflows_update_knowledge_base_data','failed','2024-07-05 21:01:20','2024-07-05 21:01:20','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1720213280;s:18:\"\0*\0first_timestamp\";i:1719608479;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1720213280;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-07-05 21:02:34','2024-07-05 21:02:34',0,NULL,10),
(199672,'cartflows_update_knowledge_base_data','failed','2024-07-12 21:02:39','2024-07-12 21:02:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1720818159;s:18:\"\0*\0first_timestamp\";i:1720213358;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1720818159;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-07-12 21:15:07','2024-07-12 21:15:07',0,NULL,10),
(208710,'cartflows_update_knowledge_base_data','failed','2024-07-19 23:46:20','2024-07-19 23:46:20','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1721432780;s:18:\"\0*\0first_timestamp\";i:1720827979;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1721432780;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-07-19 23:48:26','2024-07-19 23:48:26',0,NULL,10),
(227860,'cartflows_update_knowledge_base_data','failed','2024-08-03 03:15:13','2024-08-03 03:15:13','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1722654913;s:18:\"\0*\0first_timestamp\";i:1721445311;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1722654913;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-08-03 03:15:34','2024-08-03 03:15:34',0,NULL,10),
(232977,'cartflows_update_knowledge_base_data','failed','2024-08-10 06:16:49','2024-08-10 06:16:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1723270609;s:18:\"\0*\0first_timestamp\";i:1722665808;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1723270609;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-08-10 06:18:24','2024-08-10 06:18:24',0,NULL,10),
(240571,'cartflows_update_knowledge_base_data','failed','2024-08-17 13:06:40','2024-08-17 13:06:40','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1723900000;s:18:\"\0*\0first_timestamp\";i:1723295199;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1723900000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-08-17 13:15:07','2024-08-17 13:15:07',0,NULL,10),
(254762,'cartflows_update_knowledge_base_data','failed','2024-08-31 15:15:13','2024-08-31 15:15:13','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1725117313;s:18:\"\0*\0first_timestamp\";i:1723907712;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1725117313;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-08-31 15:19:56','2024-08-31 15:19:56',0,NULL,10),
(259707,'cartflows_update_knowledge_base_data','failed','2024-09-07 16:39:50','2024-09-07 16:39:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1725727190;s:18:\"\0*\0first_timestamp\";i:1725122389;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1725727190;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-09-07 16:40:50','2024-09-07 16:40:50',0,NULL,10),
(277322,'cartflows_update_knowledge_base_data','failed','2024-09-14 20:23:11','2024-09-14 20:23:11','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1726345391;s:18:\"\0*\0first_timestamp\";i:1725740590;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1726345391;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-09-14 20:27:24','2024-09-14 20:27:24',0,NULL,10),
(297299,'cartflows_update_knowledge_base_data','failed','2024-09-22 16:35:20','2024-09-22 16:35:20','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1727022920;s:18:\"\0*\0first_timestamp\";i:1726418119;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1727022920;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-09-22 16:45:04','2024-09-22 16:45:04',0,NULL,10),
(306507,'cartflows_delete_old_log_files','complete','2024-10-22 11:30:04','2024-10-22 11:30:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729596604;s:18:\"\0*\0first_timestamp\";i:1675123200;s:13:\"\0*\0recurrence\";i:2592000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729596604;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:2592000;}',9,1,'2024-10-22 11:30:05','2024-10-22 11:30:05',0,NULL,10),
(306707,'cartflows_update_knowledge_base_data','failed','2024-09-29 16:45:08','2024-09-29 16:45:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1727628308;s:18:\"\0*\0first_timestamp\";i:1727023506;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1727628308;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-09-29 16:56:29','2024-09-29 16:56:29',0,NULL,10),
(307899,'cartflows_send_report_summary_email','complete','2024-10-01 02:00:04','2024-10-01 02:00:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1727748004;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1727748004;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-01 02:00:06','2024-10-01 02:00:06',0,NULL,10),
(307900,'cartflows_ca_send_report_summary_email','complete','2024-10-01 02:00:04','2024-10-01 02:00:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1727748004;s:18:\"\0*\0first_timestamp\";i:1655128800;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1727748004;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-01 02:00:06','2024-10-01 02:00:06',0,NULL,10),
(311606,'woocommerce_cleanup_draft_orders','complete','2024-09-29 12:15:05','2024-09-29 12:15:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1727612105;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1727612105;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-09-29 12:16:53','2024-09-29 12:16:53',0,NULL,10),
(311759,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-09-28 16:42:24','2024-09-28 16:42:24','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1727541744;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1727541744;}',9,1,'2024-09-28 16:42:24','2024-09-28 16:42:24',0,NULL,10),
(312647,'woocommerce_cleanup_draft_orders','complete','2024-09-30 12:16:53','2024-09-30 12:16:53','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1727698613;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1727698613;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-09-30 12:30:05','2024-09-30 12:30:05',0,NULL,10),
(312884,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-09-29 16:33:31','2024-09-29 16:33:31','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1727627611;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1727627611;}',9,1,'2024-09-29 16:33:31','2024-09-29 16:33:31',0,NULL,10),
(313439,'cartflows_update_knowledge_base_data','complete','2024-09-30 03:15:10','2024-09-30 03:15:10','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1727666110;s:18:\"\0*\0first_timestamp\";i:1727666110;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1727666110;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-09-30 03:15:11','2024-09-30 03:15:11',0,NULL,10),
(313444,'cartflows_update_knowledge_base_data','complete','2024-10-07 03:15:11','2024-10-07 03:15:11','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728270911;s:18:\"\0*\0first_timestamp\";i:1727666110;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728270911;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-07 03:15:11','2024-10-07 03:15:11',0,NULL,10),
(313906,'woocommerce_cleanup_draft_orders','complete','2024-10-01 12:30:05','2024-10-01 12:30:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1727785805;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1727785805;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-01 12:30:05','2024-10-01 12:30:05',0,NULL,10),
(314091,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-09-30 16:45:06','2024-09-30 16:45:06','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1727714706;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1727714706;}',9,1,'2024-09-30 16:45:09','2024-09-30 16:45:09',0,NULL,10),
(314530,'cartflows_send_report_summary_email','complete','2024-10-08 02:00:06','2024-10-08 02:00:06','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728352806;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728352806;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-08 02:04:09','2024-10-08 02:04:09',0,NULL,10),
(314531,'cartflows_ca_send_report_summary_email','complete','2024-10-08 02:00:06','2024-10-08 02:00:06','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728352806;s:18:\"\0*\0first_timestamp\";i:1655128800;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728352806;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-08 02:04:09','2024-10-08 02:04:09',0,NULL,10),
(315079,'woocommerce_cleanup_draft_orders','complete','2024-10-02 12:30:05','2024-10-02 12:30:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1727872205;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1727872205;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-02 12:31:14','2024-10-02 12:31:14',0,NULL,10),
(315332,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-01 16:36:54','2024-10-01 16:36:54','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1727800614;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1727800614;}',9,1,'2024-10-01 16:36:56','2024-10-01 16:36:56',0,NULL,10),
(316488,'woocommerce_cleanup_draft_orders','complete','2024-10-03 12:31:14','2024-10-03 12:31:14','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1727958674;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1727958674;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-03 12:32:07','2024-10-03 12:32:07',0,NULL,10),
(316697,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-02 16:34:16','2024-10-02 16:34:16','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1727886856;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1727886856;}',9,1,'2024-10-02 16:34:18','2024-10-02 16:34:18',0,NULL,10),
(318128,'woocommerce_cleanup_draft_orders','complete','2024-10-04 12:32:07','2024-10-04 12:32:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728045127;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728045127;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-04 12:37:57','2024-10-04 12:37:57',0,NULL,10),
(318977,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-03 16:33:09','2024-10-03 16:33:09','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1727973189;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1727973189;}',9,1,'2024-10-03 16:33:11','2024-10-03 16:33:11',0,NULL,10),
(321820,'woocommerce_cleanup_draft_orders','complete','2024-10-05 12:37:57','2024-10-05 12:37:57','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728131877;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728131877;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-05 12:40:08','2024-10-05 12:40:08',0,NULL,10),
(321959,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-04 16:34:54','2024-10-04 16:34:54','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728059694;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728059694;}',9,1,'2024-10-04 16:34:54','2024-10-04 16:34:54',0,NULL,10),
(323401,'woocommerce_cleanup_draft_orders','complete','2024-10-06 12:40:08','2024-10-06 12:40:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728218408;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728218408;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-06 12:40:14','2024-10-06 12:40:14',0,NULL,10),
(323542,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-05 16:45:06','2024-10-05 16:45:06','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728146706;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728146706;}',9,1,'2024-10-05 16:45:08','2024-10-05 16:45:08',0,NULL,10),
(325808,'woocommerce_update_marketplace_suggestions','complete','2024-10-06 12:13:58','2024-10-06 12:13:58','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728216838;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728216838;}',9,1,'2024-10-06 12:14:13','2024-10-06 12:14:13',0,NULL,10),
(325901,'woocommerce_cleanup_draft_orders','complete','2024-10-07 12:40:14','2024-10-07 12:40:14','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728304814;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728304814;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-07 12:45:04','2024-10-07 12:45:04',0,NULL,10),
(326558,'woocommerce_run_product_attribute_lookup_update_callback','complete','2024-10-06 15:59:43','2024-10-06 15:59:43','[36041,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728230383;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728230383;}',4,1,'2024-10-06 16:00:17','2024-10-06 16:00:17',0,NULL,10),
(326677,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-06 16:32:57','2024-10-06 16:32:57','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728232377;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728232377;}',9,1,'2024-10-06 16:32:59','2024-10-06 16:32:59',0,NULL,10),
(328014,'cartflows_update_knowledge_base_data','failed','2024-10-14 03:15:11','2024-10-14 03:15:11','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728875711;s:18:\"\0*\0first_timestamp\";i:1727666110;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728875711;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-14 03:15:25','2024-10-14 03:15:25',0,NULL,10),
(328805,'woocommerce_cleanup_draft_orders','complete','2024-10-08 12:45:04','2024-10-08 12:45:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728391504;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728391504;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-08 12:45:05','2024-10-08 12:45:05',0,NULL,10),
(329027,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-07 16:45:06','2024-10-07 16:45:06','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728319506;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728319506;}',9,1,'2024-10-07 16:45:10','2024-10-07 16:45:10',0,NULL,10),
(329438,'cartflows_send_report_summary_email','complete','2024-10-15 02:04:09','2024-10-15 02:04:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728957849;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728957849;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-15 02:04:27','2024-10-15 02:04:27',0,NULL,10),
(329439,'cartflows_ca_send_report_summary_email','complete','2024-10-15 02:04:09','2024-10-15 02:04:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728957849;s:18:\"\0*\0first_timestamp\";i:1655128800;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728957849;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-15 02:04:27','2024-10-15 02:04:27',0,NULL,10),
(329856,'woocommerce_cleanup_draft_orders','complete','2024-10-09 12:45:05','2024-10-09 12:45:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728477905;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728477905;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-09 12:45:05','2024-10-09 12:45:05',0,NULL,10),
(329980,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-08 16:40:37','2024-10-08 16:40:37','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728405637;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728405637;}',9,1,'2024-10-08 16:40:39','2024-10-08 16:40:39',0,NULL,10),
(330661,'woocommerce_cleanup_draft_orders','complete','2024-10-10 12:45:05','2024-10-10 12:45:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728564305;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728564305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-10 12:45:05','2024-10-10 12:45:05',0,NULL,10),
(330801,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-09 16:37:00','2024-10-09 16:37:00','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728491820;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728491820;}',9,1,'2024-10-09 16:37:02','2024-10-09 16:37:02',0,NULL,10),
(331592,'woocommerce_cleanup_draft_orders','complete','2024-10-11 12:45:05','2024-10-11 12:45:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728650705;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728650705;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-11 13:00:06','2024-10-11 13:00:06',0,NULL,10),
(331719,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-10 16:35:53','2024-10-10 16:35:53','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728578153;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728578153;}',9,1,'2024-10-10 16:35:55','2024-10-10 16:35:55',0,NULL,10),
(332451,'woocommerce_cleanup_draft_orders','complete','2024-10-12 13:00:06','2024-10-12 13:00:06','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728738006;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728738006;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-12 13:00:06','2024-10-12 13:00:06',0,NULL,10),
(332548,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-11 16:45:05','2024-10-11 16:45:05','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728665105;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728665105;}',9,1,'2024-10-11 16:45:09','2024-10-11 16:45:09',0,NULL,10),
(334774,'woocommerce_cleanup_draft_orders','complete','2024-10-13 13:00:06','2024-10-13 13:00:06','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728824406;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728824406;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-13 13:00:16','2024-10-13 13:00:16',0,NULL,10),
(335199,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-12 16:33:08','2024-10-12 16:33:08','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728750788;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728750788;}',9,1,'2024-10-12 16:33:10','2024-10-12 16:33:10',0,NULL,10),
(337717,'woocommerce_cleanup_draft_orders','complete','2024-10-14 13:00:16','2024-10-14 13:00:16','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728910816;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728910816;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-14 13:01:51','2024-10-14 13:01:51',0,NULL,10),
(338142,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-13 16:33:06','2024-10-13 16:33:06','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728837186;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728837186;}',9,1,'2024-10-13 16:33:09','2024-10-13 16:33:09',0,NULL,10),
(339644,'cartflows_update_knowledge_base_data','complete','2024-10-14 05:04:34','2024-10-14 05:04:34','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728882274;s:18:\"\0*\0first_timestamp\";i:1728882274;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728882274;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-14 05:04:37','2024-10-14 05:04:37',0,NULL,10),
(339645,'cartflows_update_knowledge_base_data','failed','2024-10-21 05:04:37','2024-10-21 05:04:37','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729487077;s:18:\"\0*\0first_timestamp\";i:1728882274;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729487077;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-21 05:04:39','2024-10-21 05:04:39',0,NULL,10),
(340598,'woocommerce_cleanup_draft_orders','complete','2024-10-15 13:01:51','2024-10-15 13:01:51','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1728997311;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1728997311;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-15 13:03:46','2024-10-15 13:03:46',0,NULL,10),
(341029,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-14 16:33:29','2024-10-14 16:33:29','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728923609;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728923609;}',9,1,'2024-10-14 16:33:29','2024-10-14 16:33:29',0,NULL,10),
(342171,'cartflows_send_report_summary_email','complete','2024-10-22 02:04:27','2024-10-22 02:04:27','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729562667;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729562667;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-22 02:05:08','2024-10-22 02:05:08',0,NULL,10),
(342172,'cartflows_ca_send_report_summary_email','complete','2024-10-22 02:04:27','2024-10-22 02:04:27','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729562667;s:18:\"\0*\0first_timestamp\";i:1655128800;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729562667;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-22 02:05:08','2024-10-22 02:05:08',0,NULL,10),
(343487,'woocommerce_cleanup_draft_orders','complete','2024-10-16 13:03:46','2024-10-16 13:03:46','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729083826;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729083826;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-16 13:03:48','2024-10-16 13:03:48',0,NULL,10),
(343906,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-15 16:34:31','2024-10-15 16:34:31','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729010071;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729010071;}',9,1,'2024-10-15 16:34:31','2024-10-15 16:34:31',0,NULL,10),
(346390,'woocommerce_cleanup_draft_orders','complete','2024-10-17 13:03:48','2024-10-17 13:03:48','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729170228;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729170228;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-17 13:04:10','2024-10-17 13:04:10',0,NULL,10),
(346805,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-16 16:34:32','2024-10-16 16:34:32','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729096472;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729096472;}',9,1,'2024-10-16 16:34:32','2024-10-16 16:34:32',0,NULL,10),
(349299,'woocommerce_cleanup_draft_orders','complete','2024-10-18 13:04:10','2024-10-18 13:04:10','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729256650;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729256650;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-18 13:04:18','2024-10-18 13:04:18',0,NULL,10),
(349730,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-17 16:32:57','2024-10-17 16:32:57','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729182777;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729182777;}',9,1,'2024-10-17 16:33:00','2024-10-17 16:33:00',0,NULL,10),
(352246,'woocommerce_cleanup_draft_orders','complete','2024-10-19 13:04:18','2024-10-19 13:04:18','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729343058;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729343058;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-19 13:04:54','2024-10-19 13:04:54',0,NULL,10),
(352689,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-18 16:33:23','2024-10-18 16:33:23','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729269203;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729269203;}',9,1,'2024-10-18 16:33:27','2024-10-18 16:33:27',0,NULL,10),
(355283,'woocommerce_cleanup_draft_orders','complete','2024-10-20 13:04:54','2024-10-20 13:04:54','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729429494;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729429494;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-20 13:05:10','2024-10-20 13:05:10',0,NULL,10),
(355738,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-19 16:33:19','2024-10-19 16:33:19','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729355599;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729355599;}',9,1,'2024-10-19 16:33:19','2024-10-19 16:33:19',0,NULL,10),
(358294,'woocommerce_cleanup_draft_orders','complete','2024-10-21 13:05:10','2024-10-21 13:05:10','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729515910;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729515910;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-21 13:05:25','2024-10-21 13:05:25',0,NULL,10),
(358753,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-20 16:33:06','2024-10-20 16:33:06','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729441986;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729441986;}',9,1,'2024-10-20 16:33:09','2024-10-20 16:33:09',0,NULL,10),
(360521,'cartflows_update_knowledge_base_data','complete','2024-10-21 06:18:36','2024-10-21 06:18:36','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729491516;s:18:\"\0*\0first_timestamp\";i:1729491516;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729491516;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-21 06:18:39','2024-10-21 06:18:39',0,NULL,10),
(360526,'cartflows_update_knowledge_base_data','failed','2024-10-28 06:18:39','2024-10-28 06:18:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730096319;s:18:\"\0*\0first_timestamp\";i:1729491516;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730096319;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-28 06:19:23','2024-10-28 06:19:23',0,NULL,10),
(361375,'woocommerce_cleanup_draft_orders','complete','2024-10-22 13:05:25','2024-10-22 13:05:25','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729602325;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729602325;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-22 13:06:28','2024-10-22 13:06:28',0,NULL,10),
(361820,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-21 16:33:42','2024-10-21 16:33:42','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729528422;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729528422;}',9,1,'2024-10-21 16:33:45','2024-10-21 16:33:45',0,NULL,10),
(362997,'cartflows_send_report_summary_email','complete','2024-10-29 02:05:08','2024-10-29 02:05:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730167508;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730167508;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-29 02:06:38','2024-10-29 02:06:38',0,NULL,10),
(362998,'cartflows_ca_send_report_summary_email','complete','2024-10-29 02:05:08','2024-10-29 02:05:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730167508;s:18:\"\0*\0first_timestamp\";i:1655128800;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730167508;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-29 02:06:38','2024-10-29 02:06:38',0,NULL,10),
(364118,'cartflows_delete_old_log_files','pending','2024-11-21 11:30:05','2024-11-21 11:30:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1732188605;s:18:\"\0*\0first_timestamp\";i:1675123200;s:13:\"\0*\0recurrence\";i:2592000;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1732188605;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:2592000;}',9,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(364313,'woocommerce_cleanup_draft_orders','complete','2024-10-23 13:06:28','2024-10-23 13:06:28','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729688788;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729688788;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-23 13:06:32','2024-10-23 13:06:32',0,NULL,10),
(364734,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-22 16:33:01','2024-10-22 16:33:01','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729614781;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729614781;}',9,1,'2024-10-22 16:33:04','2024-10-22 16:33:04',0,NULL,10),
(367244,'woocommerce_cleanup_draft_orders','complete','2024-10-24 13:06:32','2024-10-24 13:06:32','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729775192;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729775192;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-24 13:07:51','2024-10-24 13:07:51',0,NULL,10),
(367667,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-23 16:33:07','2024-10-23 16:33:07','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729701187;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729701187;}',9,1,'2024-10-23 16:33:09','2024-10-23 16:33:09',0,NULL,10),
(370187,'woocommerce_cleanup_draft_orders','complete','2024-10-25 13:07:51','2024-10-25 13:07:51','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729861671;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729861671;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-25 13:08:50','2024-10-25 13:08:50',0,NULL,10),
(370602,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-24 16:33:05','2024-10-24 16:33:05','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729787585;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729787585;}',9,1,'2024-10-24 16:33:07','2024-10-24 16:33:07',0,NULL,10),
(373162,'woocommerce_cleanup_draft_orders','complete','2024-10-26 13:08:50','2024-10-26 13:08:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1729948130;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1729948130;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-26 13:10:16','2024-10-26 13:10:16',0,NULL,10),
(373579,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-25 16:33:13','2024-10-25 16:33:13','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729873993;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729873993;}',9,1,'2024-10-25 16:33:16','2024-10-25 16:33:16',0,NULL,10),
(376065,'woocommerce_cleanup_draft_orders','complete','2024-10-27 13:10:16','2024-10-27 13:10:16','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730034616;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730034616;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-27 13:10:17','2024-10-27 13:10:17',0,NULL,10),
(376470,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-26 16:33:05','2024-10-26 16:33:05','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1729960385;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1729960385;}',9,1,'2024-10-26 16:33:08','2024-10-26 16:33:08',0,NULL,10),
(379008,'woocommerce_cleanup_draft_orders','complete','2024-10-28 13:10:17','2024-10-28 13:10:17','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730121017;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730121017;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-28 13:10:24','2024-10-28 13:10:24',0,NULL,10),
(379415,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-27 16:33:05','2024-10-27 16:33:05','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1730046785;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1730046785;}',9,1,'2024-10-27 16:33:07','2024-10-27 16:33:07',0,NULL,10),
(381633,'cartflows_update_knowledge_base_data','complete','2024-10-28 11:00:49','2024-10-28 11:00:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730113249;s:18:\"\0*\0first_timestamp\";i:1730113249;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730113249;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,1,'2024-10-28 11:00:51','2024-10-28 11:00:51',0,NULL,10),
(381634,'cartflows_update_knowledge_base_data','pending','2024-11-04 11:00:51','2024-11-04 11:00:51','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730718051;s:18:\"\0*\0first_timestamp\";i:1730113249;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730718051;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(381889,'woocommerce_cleanup_draft_orders','complete','2024-10-29 13:10:24','2024-10-29 13:10:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207424;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207424;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,1,'2024-10-29 13:11:45','2024-10-29 13:11:45',0,NULL,10),
(382306,'woocommerce_subscriptions_privacy_anonymize_ended_subscriptions','complete','2024-10-28 16:33:04','2024-10-28 16:33:04','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1730133184;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1730133184;}',9,1,'2024-10-28 16:33:07','2024-10-28 16:33:07',0,NULL,10),
(382383,'action_scheduler/migration_hook','complete','2024-10-28 17:03:51','2024-10-28 17:03:51','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1730135031;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1730135031;}',1,1,'2024-10-28 17:03:57','2024-10-28 17:03:57',0,NULL,10),
(382388,'action_scheduler/migration_hook','failed','2024-10-28 17:04:58','2024-10-28 17:04:58','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1730135098;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1730135098;}',1,1,'2024-10-28 17:04:59','2024-10-28 17:04:59',0,NULL,10),
(382437,'action_scheduler/migration_hook','complete','2024-10-28 17:22:27','2024-10-28 17:22:27','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1730136147;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1730136147;}',1,1,'2024-10-28 17:23:26','2024-10-28 17:23:26',0,NULL,10),
(382446,'action_scheduler/migration_hook','failed','2024-10-28 17:24:27','2024-10-28 17:24:27','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1730136267;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1730136267;}',1,1,'2024-10-28 17:24:49','2024-10-28 17:24:49',0,NULL,10),
(382905,'woocommerce_update_marketplace_suggestions','complete','2024-10-28 20:58:17','2024-10-28 20:58:17','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1730149097;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1730149097;}',9,1,'2024-10-28 20:58:18','2024-10-28 20:58:18',0,NULL,10),
(383554,'cartflows_send_report_summary_email','pending','2024-11-05 02:06:38','2024-11-05 02:06:38','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730772398;s:18:\"\0*\0first_timestamp\";i:1670853600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730772398;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(383555,'cartflows_ca_send_report_summary_email','pending','2024-11-05 02:06:38','2024-11-05 02:06:38','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730772398;s:18:\"\0*\0first_timestamp\";i:1655128800;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730772398;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',9,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(384581,'forminator_action_scheduler_cleanup','complete','2024-10-29 12:50:51','2024-10-29 12:50:51','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206251;s:18:\"\0*\0first_timestamp\";i:1710975733;s:13:\"\0*\0recurrence\";i:7200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206251;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:7200;}',10,1,'2024-10-29 12:52:59','2024-10-29 12:52:59',0,NULL,10),
(384640,'forminator_daily_cron','pending','2024-10-30 12:11:57','2024-10-30 12:11:57','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1730290317;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1730290317;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(384757,'forminator_general_data_protection_cleanup','complete','2024-10-29 13:08:53','2024-10-29 13:08:53','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207333;s:18:\"\0*\0first_timestamp\";i:1720199113;s:13:\"\0*\0recurrence\";i:3600;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207333;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}',10,1,'2024-10-29 13:09:15','2024-10-29 13:09:15',0,NULL,10),
(384758,'forminator_general_data_protection_cleanup','complete','2024-10-29 13:08:53','2024-10-29 13:08:53','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207333;s:18:\"\0*\0first_timestamp\";i:1707927814;s:13:\"\0*\0recurrence\";i:3600;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207333;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}',10,1,'2024-10-29 13:09:16','2024-10-29 13:09:16',0,NULL,10),
(384843,'forminator_send_export','complete','2024-10-29 12:51:15','2024-10-29 12:51:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206275;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206275;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:52:59','2024-10-29 12:52:59',0,NULL,10),
(384844,'forminator_process_report','complete','2024-10-29 12:51:15','2024-10-29 12:51:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206275;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206275;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:52:59','2024-10-29 12:52:59',0,NULL,10),
(384845,'forminator_send_export','complete','2024-10-29 12:51:15','2024-10-29 12:51:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206275;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206275;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:52:59','2024-10-29 12:52:59',0,NULL,10),
(384846,'forminator_process_report','complete','2024-10-29 12:51:15','2024-10-29 12:51:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206275;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206275;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:52:59','2024-10-29 12:52:59',0,NULL,10),
(384847,'forminator_action_scheduler_cleanup','pending','2024-10-29 14:52:59','2024-10-29 14:52:59','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730213579;s:18:\"\0*\0first_timestamp\";i:1707927814;s:13:\"\0*\0recurrence\";i:7200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730213579;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:7200;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(384848,'forminator_action_scheduler_cleanup','pending','2024-10-29 14:52:59','2024-10-29 14:52:59','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730213579;s:18:\"\0*\0first_timestamp\";i:1710975733;s:13:\"\0*\0recurrence\";i:7200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730213579;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:7200;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(384849,'forminator_send_export','complete','2024-10-29 12:53:59','2024-10-29 12:53:59','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206439;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206439;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:55:06','2024-10-29 12:55:06',0,NULL,10),
(384850,'forminator_process_report','complete','2024-10-29 12:53:59','2024-10-29 12:53:59','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206439;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206439;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:55:06','2024-10-29 12:55:06',0,NULL,10),
(384851,'forminator_send_export','complete','2024-10-29 12:53:59','2024-10-29 12:53:59','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206439;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206439;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:55:06','2024-10-29 12:55:06',0,NULL,10),
(384852,'forminator_process_report','complete','2024-10-29 12:53:59','2024-10-29 12:53:59','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206439;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206439;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:55:06','2024-10-29 12:55:06',0,NULL,10),
(384853,'forminator_send_export','complete','2024-10-29 12:56:06','2024-10-29 12:56:06','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206566;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206566;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:57:07','2024-10-29 12:57:07',0,NULL,10),
(384854,'forminator_process_report','complete','2024-10-29 12:56:06','2024-10-29 12:56:06','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206566;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206566;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:57:07','2024-10-29 12:57:07',0,NULL,10),
(384855,'forminator_send_export','complete','2024-10-29 12:56:06','2024-10-29 12:56:06','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206566;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206566;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:57:07','2024-10-29 12:57:07',0,NULL,10),
(384856,'forminator_process_report','complete','2024-10-29 12:56:06','2024-10-29 12:56:06','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206566;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206566;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:57:07','2024-10-29 12:57:07',0,NULL,10),
(384857,'forminator_send_export','complete','2024-10-29 12:58:07','2024-10-29 12:58:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206687;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206687;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:59:08','2024-10-29 12:59:08',0,NULL,10),
(384858,'forminator_process_report','complete','2024-10-29 12:58:07','2024-10-29 12:58:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206687;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206687;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:59:08','2024-10-29 12:59:08',0,NULL,10),
(384859,'forminator_send_export','complete','2024-10-29 12:58:07','2024-10-29 12:58:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206687;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206687;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:59:08','2024-10-29 12:59:08',0,NULL,10),
(384860,'forminator_process_report','complete','2024-10-29 12:58:07','2024-10-29 12:58:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206687;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206687;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 12:59:08','2024-10-29 12:59:08',0,NULL,10),
(384861,'forminator_send_export','complete','2024-10-29 13:00:08','2024-10-29 13:00:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206808;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206808;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:01:09','2024-10-29 13:01:09',0,NULL,10),
(384862,'forminator_process_report','complete','2024-10-29 13:00:08','2024-10-29 13:00:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206808;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206808;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:01:09','2024-10-29 13:01:09',0,NULL,10),
(384863,'forminator_send_export','complete','2024-10-29 13:00:08','2024-10-29 13:00:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206808;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206808;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:01:09','2024-10-29 13:01:09',0,NULL,10),
(384864,'forminator_process_report','complete','2024-10-29 13:00:08','2024-10-29 13:00:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206808;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206808;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:01:09','2024-10-29 13:01:09',0,NULL,10),
(384865,'forminator_send_export','complete','2024-10-29 13:02:09','2024-10-29 13:02:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206929;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206929;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:03:24','2024-10-29 13:03:24',0,NULL,10),
(384866,'forminator_process_report','complete','2024-10-29 13:02:09','2024-10-29 13:02:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206929;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206929;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:03:24','2024-10-29 13:03:24',0,NULL,10),
(384867,'forminator_send_export','complete','2024-10-29 13:02:09','2024-10-29 13:02:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206929;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206929;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:03:24','2024-10-29 13:03:24',0,NULL,10),
(384868,'forminator_process_report','complete','2024-10-29 13:02:09','2024-10-29 13:02:09','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730206929;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730206929;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:03:24','2024-10-29 13:03:24',0,NULL,10),
(384869,'forminator_send_export','complete','2024-10-29 13:04:24','2024-10-29 13:04:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207064;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207064;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:04:29','2024-10-29 13:04:29',0,NULL,10),
(384870,'forminator_process_report','complete','2024-10-29 13:04:24','2024-10-29 13:04:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207064;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207064;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:04:29','2024-10-29 13:04:29',0,NULL,10),
(384871,'forminator_send_export','complete','2024-10-29 13:04:24','2024-10-29 13:04:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207064;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207064;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:04:29','2024-10-29 13:04:29',0,NULL,10),
(384872,'forminator_process_report','complete','2024-10-29 13:04:24','2024-10-29 13:04:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207064;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207064;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:04:29','2024-10-29 13:04:29',0,NULL,10),
(384873,'forminator_send_export','complete','2024-10-29 13:05:29','2024-10-29 13:05:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207129;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:05:30','2024-10-29 13:05:30',0,NULL,10),
(384874,'forminator_process_report','complete','2024-10-29 13:05:29','2024-10-29 13:05:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207129;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:05:30','2024-10-29 13:05:30',0,NULL,10),
(384875,'forminator_send_export','complete','2024-10-29 13:05:29','2024-10-29 13:05:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207129;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:05:30','2024-10-29 13:05:30',0,NULL,10),
(384876,'forminator_process_report','complete','2024-10-29 13:05:29','2024-10-29 13:05:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207129;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:05:30','2024-10-29 13:05:30',0,NULL,10),
(384877,'forminator_send_export','complete','2024-10-29 13:06:30','2024-10-29 13:06:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207190;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207190;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:06:45','2024-10-29 13:06:45',0,NULL,10),
(384878,'forminator_process_report','complete','2024-10-29 13:06:30','2024-10-29 13:06:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207190;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207190;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:06:45','2024-10-29 13:06:45',0,NULL,10),
(384879,'forminator_send_export','complete','2024-10-29 13:06:30','2024-10-29 13:06:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207190;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207190;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:06:45','2024-10-29 13:06:45',0,NULL,10),
(384880,'forminator_process_report','complete','2024-10-29 13:06:30','2024-10-29 13:06:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207190;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207190;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:06:45','2024-10-29 13:06:45',0,NULL,10),
(384881,'forminator_send_export','complete','2024-10-29 13:07:45','2024-10-29 13:07:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207265;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207265;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:08:29','2024-10-29 13:08:29',0,NULL,10),
(384882,'forminator_process_report','complete','2024-10-29 13:07:45','2024-10-29 13:07:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207265;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207265;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:08:29','2024-10-29 13:08:29',0,NULL,10),
(384883,'forminator_send_export','complete','2024-10-29 13:07:45','2024-10-29 13:07:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207265;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207265;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:08:29','2024-10-29 13:08:29',0,NULL,10),
(384884,'forminator_process_report','complete','2024-10-29 13:07:45','2024-10-29 13:07:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207265;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207265;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:08:29','2024-10-29 13:08:29',0,NULL,10),
(384885,'forminator_send_export','complete','2024-10-29 13:09:29','2024-10-29 13:09:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207369;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207369;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:11:45','2024-10-29 13:11:45',0,NULL,10),
(384886,'forminator_process_report','complete','2024-10-29 13:09:29','2024-10-29 13:09:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207369;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207369;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:11:45','2024-10-29 13:11:45',0,NULL,10),
(384887,'forminator_send_export','complete','2024-10-29 13:09:29','2024-10-29 13:09:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207369;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207369;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:11:45','2024-10-29 13:11:45',0,NULL,10),
(384888,'forminator_process_report','complete','2024-10-29 13:09:29','2024-10-29 13:09:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207369;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207369;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:11:45','2024-10-29 13:11:45',0,NULL,10),
(384889,'forminator_general_data_protection_cleanup','complete','2024-10-29 14:09:15','2024-10-29 14:09:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210955;s:18:\"\0*\0first_timestamp\";i:1720199113;s:13:\"\0*\0recurrence\";i:3600;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210955;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}',10,1,'2024-10-29 14:09:56','2024-10-29 14:09:56',0,NULL,10),
(384890,'forminator_general_data_protection_cleanup','complete','2024-10-29 14:09:16','2024-10-29 14:09:16','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210956;s:18:\"\0*\0first_timestamp\";i:1707927814;s:13:\"\0*\0recurrence\";i:3600;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210956;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}',10,1,'2024-10-29 14:09:56','2024-10-29 14:09:56',0,NULL,10),
(384891,'forminator_send_export','complete','2024-10-29 13:12:45','2024-10-29 13:12:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207565;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207565;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:13:50','2024-10-29 13:13:50',0,NULL,10),
(384892,'forminator_process_report','complete','2024-10-29 13:12:45','2024-10-29 13:12:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207565;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207565;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:13:50','2024-10-29 13:13:50',0,NULL,10),
(384893,'forminator_send_export','complete','2024-10-29 13:12:45','2024-10-29 13:12:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207565;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207565;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:13:50','2024-10-29 13:13:50',0,NULL,10),
(384894,'forminator_process_report','complete','2024-10-29 13:12:45','2024-10-29 13:12:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207565;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207565;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:13:50','2024-10-29 13:13:50',0,NULL,10),
(384895,'woocommerce_cleanup_draft_orders','pending','2024-10-30 13:11:45','2024-10-30 13:11:45','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730293905;s:18:\"\0*\0first_timestamp\";i:1670544809;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730293905;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',9,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(384896,'forminator_send_export','complete','2024-10-29 13:14:50','2024-10-29 13:14:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207690;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207690;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:15:04','2024-10-29 13:15:04',0,NULL,10),
(384897,'forminator_process_report','complete','2024-10-29 13:14:50','2024-10-29 13:14:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207690;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207690;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:15:04','2024-10-29 13:15:04',0,NULL,10),
(384898,'forminator_send_export','complete','2024-10-29 13:14:50','2024-10-29 13:14:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207690;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207690;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:15:04','2024-10-29 13:15:04',0,NULL,10),
(384899,'forminator_process_report','complete','2024-10-29 13:14:50','2024-10-29 13:14:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207690;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207690;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:15:04','2024-10-29 13:15:04',0,NULL,10),
(384900,'forminator_send_export','complete','2024-10-29 13:16:04','2024-10-29 13:16:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207764;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207764;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:16:29','2024-10-29 13:16:29',0,NULL,10),
(384901,'forminator_process_report','complete','2024-10-29 13:16:04','2024-10-29 13:16:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207764;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207764;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:16:29','2024-10-29 13:16:29',0,NULL,10),
(384902,'forminator_send_export','complete','2024-10-29 13:16:04','2024-10-29 13:16:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207764;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207764;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:16:29','2024-10-29 13:16:29',0,NULL,10),
(384903,'forminator_process_report','complete','2024-10-29 13:16:04','2024-10-29 13:16:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207764;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207764;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:16:29','2024-10-29 13:16:29',0,NULL,10),
(384904,'forminator_send_export','complete','2024-10-29 13:17:29','2024-10-29 13:17:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207849;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207849;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:18:01','2024-10-29 13:18:01',0,NULL,10),
(384905,'forminator_process_report','complete','2024-10-29 13:17:29','2024-10-29 13:17:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207849;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207849;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:18:01','2024-10-29 13:18:01',0,NULL,10),
(384906,'forminator_send_export','complete','2024-10-29 13:17:29','2024-10-29 13:17:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207849;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207849;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:18:01','2024-10-29 13:18:01',0,NULL,10),
(384907,'forminator_process_report','complete','2024-10-29 13:17:29','2024-10-29 13:17:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207849;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207849;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:18:01','2024-10-29 13:18:01',0,NULL,10),
(384908,'forminator_send_export','complete','2024-10-29 13:19:01','2024-10-29 13:19:01','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207941;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207941;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:20:07','2024-10-29 13:20:07',0,NULL,10),
(384909,'forminator_process_report','complete','2024-10-29 13:19:01','2024-10-29 13:19:01','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207941;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207941;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:20:07','2024-10-29 13:20:07',0,NULL,10),
(384910,'forminator_send_export','complete','2024-10-29 13:19:01','2024-10-29 13:19:01','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207941;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207941;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:20:07','2024-10-29 13:20:07',0,NULL,10),
(384911,'forminator_process_report','complete','2024-10-29 13:19:01','2024-10-29 13:19:01','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730207941;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730207941;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:20:07','2024-10-29 13:20:07',0,NULL,10),
(384912,'forminator_send_export','complete','2024-10-29 13:21:07','2024-10-29 13:21:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208067;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208067;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:22:12','2024-10-29 13:22:12',0,NULL,10),
(384913,'forminator_process_report','complete','2024-10-29 13:21:07','2024-10-29 13:21:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208067;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208067;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:22:12','2024-10-29 13:22:12',0,NULL,10),
(384914,'forminator_send_export','complete','2024-10-29 13:21:07','2024-10-29 13:21:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208067;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208067;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:22:12','2024-10-29 13:22:12',0,NULL,10),
(384915,'forminator_process_report','complete','2024-10-29 13:21:07','2024-10-29 13:21:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208067;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208067;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:22:12','2024-10-29 13:22:12',0,NULL,10),
(384916,'forminator_send_export','complete','2024-10-29 13:23:12','2024-10-29 13:23:12','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208192;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208192;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:24:28','2024-10-29 13:24:28',0,NULL,10),
(384917,'forminator_process_report','complete','2024-10-29 13:23:12','2024-10-29 13:23:12','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208192;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208192;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:24:28','2024-10-29 13:24:28',0,NULL,10),
(384918,'forminator_send_export','complete','2024-10-29 13:23:12','2024-10-29 13:23:12','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208192;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208192;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:24:28','2024-10-29 13:24:28',0,NULL,10),
(384919,'forminator_process_report','complete','2024-10-29 13:23:12','2024-10-29 13:23:12','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208192;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208192;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:24:28','2024-10-29 13:24:28',0,NULL,10),
(384920,'forminator_send_export','complete','2024-10-29 13:25:28','2024-10-29 13:25:28','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208328;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208328;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:26:22','2024-10-29 13:26:22',0,NULL,10),
(384921,'forminator_process_report','complete','2024-10-29 13:25:28','2024-10-29 13:25:28','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208328;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208328;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:26:22','2024-10-29 13:26:22',0,NULL,10),
(384922,'forminator_send_export','complete','2024-10-29 13:25:28','2024-10-29 13:25:28','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208328;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208328;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:26:22','2024-10-29 13:26:22',0,NULL,10),
(384923,'forminator_process_report','complete','2024-10-29 13:25:28','2024-10-29 13:25:28','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208328;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208328;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:26:22','2024-10-29 13:26:22',0,NULL,10),
(384924,'forminator_send_export','complete','2024-10-29 13:27:22','2024-10-29 13:27:22','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208442;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208442;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:28:29','2024-10-29 13:28:29',0,NULL,10),
(384925,'forminator_process_report','complete','2024-10-29 13:27:22','2024-10-29 13:27:22','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208442;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208442;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:28:29','2024-10-29 13:28:29',0,NULL,10),
(384926,'forminator_send_export','complete','2024-10-29 13:27:22','2024-10-29 13:27:22','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208442;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208442;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:28:29','2024-10-29 13:28:29',0,NULL,10),
(384927,'forminator_process_report','complete','2024-10-29 13:27:22','2024-10-29 13:27:22','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208442;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208442;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:28:29','2024-10-29 13:28:29',0,NULL,10),
(384928,'forminator_send_export','complete','2024-10-29 13:29:29','2024-10-29 13:29:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208569;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:30:05','2024-10-29 13:30:05',0,NULL,10),
(384929,'forminator_process_report','complete','2024-10-29 13:29:29','2024-10-29 13:29:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208569;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:30:05','2024-10-29 13:30:05',0,NULL,10),
(384930,'forminator_send_export','complete','2024-10-29 13:29:29','2024-10-29 13:29:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208569;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:30:05','2024-10-29 13:30:05',0,NULL,10),
(384931,'forminator_process_report','complete','2024-10-29 13:29:29','2024-10-29 13:29:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208569;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:30:05','2024-10-29 13:30:05',0,NULL,10),
(384932,'forminator_send_export','complete','2024-10-29 13:31:05','2024-10-29 13:31:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208665;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208665;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:32:37','2024-10-29 13:32:37',0,NULL,10),
(384933,'forminator_process_report','complete','2024-10-29 13:31:05','2024-10-29 13:31:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208665;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208665;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:32:37','2024-10-29 13:32:37',0,NULL,10),
(384934,'forminator_send_export','complete','2024-10-29 13:31:05','2024-10-29 13:31:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208665;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208665;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:32:37','2024-10-29 13:32:37',0,NULL,10),
(384935,'forminator_process_report','complete','2024-10-29 13:31:05','2024-10-29 13:31:05','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208665;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208665;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:32:37','2024-10-29 13:32:37',0,NULL,10),
(384936,'forminator_send_export','complete','2024-10-29 13:33:37','2024-10-29 13:33:37','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208817;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208817;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:34:43','2024-10-29 13:34:43',0,NULL,10),
(384937,'forminator_process_report','complete','2024-10-29 13:33:37','2024-10-29 13:33:37','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208817;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208817;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:34:43','2024-10-29 13:34:43',0,NULL,10),
(384938,'forminator_send_export','complete','2024-10-29 13:33:37','2024-10-29 13:33:37','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208817;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208817;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:34:43','2024-10-29 13:34:43',0,NULL,10),
(384939,'forminator_process_report','complete','2024-10-29 13:33:37','2024-10-29 13:33:37','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208817;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208817;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:34:43','2024-10-29 13:34:43',0,NULL,10),
(384940,'forminator_send_export','complete','2024-10-29 13:35:43','2024-10-29 13:35:43','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208943;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208943;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:35:49','2024-10-29 13:35:49',0,NULL,10),
(384941,'forminator_process_report','complete','2024-10-29 13:35:43','2024-10-29 13:35:43','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208943;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208943;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:35:49','2024-10-29 13:35:49',0,NULL,10),
(384942,'forminator_send_export','complete','2024-10-29 13:35:43','2024-10-29 13:35:43','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208943;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208943;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:35:49','2024-10-29 13:35:49',0,NULL,10),
(384943,'forminator_process_report','complete','2024-10-29 13:35:43','2024-10-29 13:35:43','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730208943;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730208943;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:35:49','2024-10-29 13:35:49',0,NULL,10),
(384944,'forminator_send_export','complete','2024-10-29 13:36:49','2024-10-29 13:36:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209009;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:37:07','2024-10-29 13:37:07',0,NULL,10),
(384945,'forminator_process_report','complete','2024-10-29 13:36:49','2024-10-29 13:36:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209009;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:37:07','2024-10-29 13:37:07',0,NULL,10),
(384946,'forminator_send_export','complete','2024-10-29 13:36:49','2024-10-29 13:36:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209009;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:37:07','2024-10-29 13:37:07',0,NULL,10),
(384947,'forminator_process_report','complete','2024-10-29 13:36:49','2024-10-29 13:36:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209009;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:37:07','2024-10-29 13:37:07',0,NULL,10),
(384948,'forminator_send_export','complete','2024-10-29 13:38:07','2024-10-29 13:38:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209087;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209087;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:38:53','2024-10-29 13:38:53',0,NULL,10),
(384949,'forminator_process_report','complete','2024-10-29 13:38:07','2024-10-29 13:38:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209087;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209087;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:38:53','2024-10-29 13:38:53',0,NULL,10),
(384950,'forminator_send_export','complete','2024-10-29 13:38:07','2024-10-29 13:38:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209087;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209087;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:38:53','2024-10-29 13:38:53',0,NULL,10),
(384951,'forminator_process_report','complete','2024-10-29 13:38:07','2024-10-29 13:38:07','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209087;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209087;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:38:53','2024-10-29 13:38:53',0,NULL,10),
(384952,'forminator_send_export','complete','2024-10-29 13:39:53','2024-10-29 13:39:53','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209193;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209193;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:40:58','2024-10-29 13:40:58',0,NULL,10),
(384953,'forminator_process_report','complete','2024-10-29 13:39:53','2024-10-29 13:39:53','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209193;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209193;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:40:58','2024-10-29 13:40:58',0,NULL,10),
(384954,'forminator_send_export','complete','2024-10-29 13:39:53','2024-10-29 13:39:53','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209193;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209193;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:40:58','2024-10-29 13:40:58',0,NULL,10),
(384955,'forminator_process_report','complete','2024-10-29 13:39:53','2024-10-29 13:39:53','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209193;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209193;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:40:58','2024-10-29 13:40:58',0,NULL,10),
(384956,'forminator_send_export','complete','2024-10-29 13:41:58','2024-10-29 13:41:58','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209318;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209318;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:43:03','2024-10-29 13:43:03',0,NULL,10),
(384957,'forminator_process_report','complete','2024-10-29 13:41:58','2024-10-29 13:41:58','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209318;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209318;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:43:03','2024-10-29 13:43:03',0,NULL,10),
(384958,'forminator_send_export','complete','2024-10-29 13:41:58','2024-10-29 13:41:58','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209318;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209318;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:43:03','2024-10-29 13:43:03',0,NULL,10),
(384959,'forminator_process_report','complete','2024-10-29 13:41:58','2024-10-29 13:41:58','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209318;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209318;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:43:03','2024-10-29 13:43:03',0,NULL,10),
(384960,'forminator_send_export','complete','2024-10-29 13:44:03','2024-10-29 13:44:03','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209443;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209443;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:45:04','2024-10-29 13:45:04',0,NULL,10),
(384961,'forminator_process_report','complete','2024-10-29 13:44:03','2024-10-29 13:44:03','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209443;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209443;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:45:04','2024-10-29 13:45:04',0,NULL,10),
(384962,'forminator_send_export','complete','2024-10-29 13:44:03','2024-10-29 13:44:03','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209443;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209443;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:45:04','2024-10-29 13:45:04',0,NULL,10),
(384963,'forminator_process_report','complete','2024-10-29 13:44:03','2024-10-29 13:44:03','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209443;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209443;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:45:04','2024-10-29 13:45:04',0,NULL,10),
(384964,'forminator_send_export','complete','2024-10-29 13:46:04','2024-10-29 13:46:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209564;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:47:14','2024-10-29 13:47:14',0,NULL,10),
(384965,'forminator_process_report','complete','2024-10-29 13:46:04','2024-10-29 13:46:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209564;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:47:14','2024-10-29 13:47:14',0,NULL,10),
(384966,'forminator_send_export','complete','2024-10-29 13:46:04','2024-10-29 13:46:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209564;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:47:14','2024-10-29 13:47:14',0,NULL,10),
(384967,'forminator_process_report','complete','2024-10-29 13:46:04','2024-10-29 13:46:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209564;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:47:14','2024-10-29 13:47:14',0,NULL,10),
(384968,'forminator_send_export','complete','2024-10-29 13:48:14','2024-10-29 13:48:14','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209694;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209694;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:48:30','2024-10-29 13:48:30',0,NULL,10),
(384969,'forminator_process_report','complete','2024-10-29 13:48:14','2024-10-29 13:48:14','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209694;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209694;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:48:30','2024-10-29 13:48:30',0,NULL,10),
(384970,'forminator_send_export','complete','2024-10-29 13:48:14','2024-10-29 13:48:14','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209694;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209694;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:48:30','2024-10-29 13:48:30',0,NULL,10),
(384971,'forminator_process_report','complete','2024-10-29 13:48:14','2024-10-29 13:48:14','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209694;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209694;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:48:30','2024-10-29 13:48:30',0,NULL,10),
(384972,'forminator_send_export','complete','2024-10-29 13:49:30','2024-10-29 13:49:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209770;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209770;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:51:24','2024-10-29 13:51:24',0,NULL,10),
(384973,'forminator_process_report','complete','2024-10-29 13:49:30','2024-10-29 13:49:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209770;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209770;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:51:24','2024-10-29 13:51:24',0,NULL,10),
(384974,'forminator_send_export','complete','2024-10-29 13:49:30','2024-10-29 13:49:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209770;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209770;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:51:24','2024-10-29 13:51:24',0,NULL,10),
(384975,'forminator_process_report','complete','2024-10-29 13:49:30','2024-10-29 13:49:30','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209770;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209770;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:51:24','2024-10-29 13:51:24',0,NULL,10),
(384976,'forminator_send_export','complete','2024-10-29 13:52:24','2024-10-29 13:52:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209944;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209944;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:52:29','2024-10-29 13:52:29',0,NULL,10),
(384977,'forminator_process_report','complete','2024-10-29 13:52:24','2024-10-29 13:52:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209944;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209944;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:52:29','2024-10-29 13:52:29',0,NULL,10),
(384978,'forminator_send_export','complete','2024-10-29 13:52:24','2024-10-29 13:52:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209944;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209944;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:52:29','2024-10-29 13:52:29',0,NULL,10),
(384979,'forminator_process_report','complete','2024-10-29 13:52:24','2024-10-29 13:52:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730209944;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730209944;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:52:29','2024-10-29 13:52:29',0,NULL,10),
(384980,'forminator_send_export','complete','2024-10-29 13:53:29','2024-10-29 13:53:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210009;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:55:35','2024-10-29 13:55:35',0,NULL,10),
(384981,'forminator_process_report','complete','2024-10-29 13:53:29','2024-10-29 13:53:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210009;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:55:35','2024-10-29 13:55:35',0,NULL,10),
(384982,'forminator_send_export','complete','2024-10-29 13:53:29','2024-10-29 13:53:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210009;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:55:35','2024-10-29 13:55:35',0,NULL,10),
(384983,'forminator_process_report','complete','2024-10-29 13:53:29','2024-10-29 13:53:29','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210009;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210009;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:55:35','2024-10-29 13:55:35',0,NULL,10),
(384984,'forminator_send_export','complete','2024-10-29 13:56:35','2024-10-29 13:56:35','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210195;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210195;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:57:39','2024-10-29 13:57:39',0,NULL,10),
(384985,'forminator_process_report','complete','2024-10-29 13:56:35','2024-10-29 13:56:35','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210195;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210195;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:57:39','2024-10-29 13:57:39',0,NULL,10),
(384986,'forminator_send_export','complete','2024-10-29 13:56:35','2024-10-29 13:56:35','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210195;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210195;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:57:39','2024-10-29 13:57:39',0,NULL,10),
(384987,'forminator_process_report','complete','2024-10-29 13:56:35','2024-10-29 13:56:35','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210195;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210195;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:57:39','2024-10-29 13:57:39',0,NULL,10),
(384988,'forminator_send_export','complete','2024-10-29 13:58:39','2024-10-29 13:58:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210319;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210319;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:59:44','2024-10-29 13:59:44',0,NULL,10),
(384989,'forminator_process_report','complete','2024-10-29 13:58:39','2024-10-29 13:58:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210319;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210319;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:59:44','2024-10-29 13:59:44',0,NULL,10),
(384990,'forminator_send_export','complete','2024-10-29 13:58:39','2024-10-29 13:58:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210319;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210319;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:59:44','2024-10-29 13:59:44',0,NULL,10),
(384991,'forminator_process_report','complete','2024-10-29 13:58:39','2024-10-29 13:58:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210319;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210319;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 13:59:44','2024-10-29 13:59:44',0,NULL,10),
(384992,'forminator_send_export','complete','2024-10-29 14:00:44','2024-10-29 14:00:44','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210444;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210444;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:01:49','2024-10-29 14:01:49',0,NULL,10),
(384993,'forminator_process_report','complete','2024-10-29 14:00:44','2024-10-29 14:00:44','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210444;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210444;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:01:49','2024-10-29 14:01:49',0,NULL,10),
(384994,'forminator_send_export','complete','2024-10-29 14:00:44','2024-10-29 14:00:44','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210444;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210444;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:01:49','2024-10-29 14:01:49',0,NULL,10),
(384995,'forminator_process_report','complete','2024-10-29 14:00:44','2024-10-29 14:00:44','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210444;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210444;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:01:49','2024-10-29 14:01:49',0,NULL,10),
(384996,'forminator_send_export','complete','2024-10-29 14:02:49','2024-10-29 14:02:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210569;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:03:55','2024-10-29 14:03:55',0,NULL,10),
(384997,'forminator_process_report','complete','2024-10-29 14:02:49','2024-10-29 14:02:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210569;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:03:55','2024-10-29 14:03:55',0,NULL,10),
(384998,'forminator_send_export','complete','2024-10-29 14:02:49','2024-10-29 14:02:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210569;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:03:55','2024-10-29 14:03:55',0,NULL,10),
(384999,'forminator_process_report','complete','2024-10-29 14:02:49','2024-10-29 14:02:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210569;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:03:55','2024-10-29 14:03:55',0,NULL,10),
(385000,'forminator_send_export','complete','2024-10-29 14:04:55','2024-10-29 14:04:55','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210695;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210695;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:06:00','2024-10-29 14:06:00',0,NULL,10),
(385001,'forminator_process_report','complete','2024-10-29 14:04:55','2024-10-29 14:04:55','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210695;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210695;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:06:00','2024-10-29 14:06:00',0,NULL,10),
(385002,'forminator_send_export','complete','2024-10-29 14:04:55','2024-10-29 14:04:55','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210695;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210695;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:06:00','2024-10-29 14:06:00',0,NULL,10),
(385003,'forminator_process_report','complete','2024-10-29 14:04:55','2024-10-29 14:04:55','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210695;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210695;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:06:00','2024-10-29 14:06:00',0,NULL,10),
(385004,'forminator_send_export','complete','2024-10-29 14:07:00','2024-10-29 14:07:00','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210820;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210820;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:08:04','2024-10-29 14:08:04',0,NULL,10),
(385005,'forminator_process_report','complete','2024-10-29 14:07:00','2024-10-29 14:07:00','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210820;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210820;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:08:04','2024-10-29 14:08:04',0,NULL,10),
(385006,'forminator_send_export','complete','2024-10-29 14:07:00','2024-10-29 14:07:00','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210820;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210820;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:08:04','2024-10-29 14:08:04',0,NULL,10),
(385007,'forminator_process_report','complete','2024-10-29 14:07:00','2024-10-29 14:07:00','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210820;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210820;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:08:04','2024-10-29 14:08:04',0,NULL,10),
(385008,'forminator_send_export','complete','2024-10-29 14:09:04','2024-10-29 14:09:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210944;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210944;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:09:55','2024-10-29 14:09:55',0,NULL,10),
(385009,'forminator_process_report','complete','2024-10-29 14:09:04','2024-10-29 14:09:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210944;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210944;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:09:56','2024-10-29 14:09:56',0,NULL,10),
(385010,'forminator_send_export','complete','2024-10-29 14:09:04','2024-10-29 14:09:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210944;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210944;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:09:56','2024-10-29 14:09:56',0,NULL,10),
(385011,'forminator_process_report','complete','2024-10-29 14:09:04','2024-10-29 14:09:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730210944;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730210944;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:09:56','2024-10-29 14:09:56',0,NULL,10),
(385012,'forminator_send_export','complete','2024-10-29 14:10:55','2024-10-29 14:10:55','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211055;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211055;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:12:15','2024-10-29 14:12:15',0,NULL,10),
(385013,'forminator_process_report','complete','2024-10-29 14:10:56','2024-10-29 14:10:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211056;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211056;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:12:15','2024-10-29 14:12:15',0,NULL,10),
(385014,'forminator_send_export','complete','2024-10-29 14:10:56','2024-10-29 14:10:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211056;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211056;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:12:15','2024-10-29 14:12:15',0,NULL,10),
(385015,'forminator_process_report','complete','2024-10-29 14:10:56','2024-10-29 14:10:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211056;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211056;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:12:15','2024-10-29 14:12:15',0,NULL,10),
(385016,'forminator_general_data_protection_cleanup','pending','2024-10-29 15:09:56','2024-10-29 15:09:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730214596;s:18:\"\0*\0first_timestamp\";i:1720199113;s:13:\"\0*\0recurrence\";i:3600;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730214596;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(385017,'forminator_general_data_protection_cleanup','pending','2024-10-29 15:09:56','2024-10-29 15:09:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730214596;s:18:\"\0*\0first_timestamp\";i:1707927814;s:13:\"\0*\0recurrence\";i:3600;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730214596;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(385018,'forminator_send_export','complete','2024-10-29 14:13:15','2024-10-29 14:13:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211195;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211195;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:14:21','2024-10-29 14:14:21',0,NULL,10),
(385019,'forminator_process_report','complete','2024-10-29 14:13:15','2024-10-29 14:13:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211195;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211195;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:14:21','2024-10-29 14:14:21',0,NULL,10),
(385020,'forminator_send_export','complete','2024-10-29 14:13:15','2024-10-29 14:13:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211195;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211195;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:14:21','2024-10-29 14:14:21',0,NULL,10),
(385021,'forminator_process_report','complete','2024-10-29 14:13:15','2024-10-29 14:13:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211195;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211195;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:14:21','2024-10-29 14:14:21',0,NULL,10),
(385022,'forminator_send_export','complete','2024-10-29 14:15:21','2024-10-29 14:15:21','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211321;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:16:25','2024-10-29 14:16:25',0,NULL,10),
(385023,'forminator_process_report','complete','2024-10-29 14:15:21','2024-10-29 14:15:21','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211321;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:16:25','2024-10-29 14:16:25',0,NULL,10),
(385024,'forminator_send_export','complete','2024-10-29 14:15:21','2024-10-29 14:15:21','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211321;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:16:25','2024-10-29 14:16:25',0,NULL,10),
(385025,'forminator_process_report','complete','2024-10-29 14:15:21','2024-10-29 14:15:21','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211321;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:16:25','2024-10-29 14:16:25',0,NULL,10),
(385026,'forminator_send_export','complete','2024-10-29 14:17:25','2024-10-29 14:17:25','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211445;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211445;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:17:50','2024-10-29 14:17:50',0,NULL,10),
(385027,'forminator_process_report','complete','2024-10-29 14:17:25','2024-10-29 14:17:25','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211445;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211445;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:17:50','2024-10-29 14:17:50',0,NULL,10),
(385028,'forminator_send_export','complete','2024-10-29 14:17:25','2024-10-29 14:17:25','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211445;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211445;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:17:50','2024-10-29 14:17:50',0,NULL,10),
(385029,'forminator_process_report','complete','2024-10-29 14:17:25','2024-10-29 14:17:25','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211445;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211445;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:17:50','2024-10-29 14:17:50',0,NULL,10),
(385030,'forminator_send_export','complete','2024-10-29 14:18:50','2024-10-29 14:18:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211530;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211530;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:20:36','2024-10-29 14:20:36',0,NULL,10),
(385031,'forminator_process_report','complete','2024-10-29 14:18:50','2024-10-29 14:18:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211530;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211530;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:20:36','2024-10-29 14:20:36',0,NULL,10),
(385032,'forminator_send_export','complete','2024-10-29 14:18:50','2024-10-29 14:18:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211530;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211530;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:20:36','2024-10-29 14:20:36',0,NULL,10),
(385033,'forminator_process_report','complete','2024-10-29 14:18:50','2024-10-29 14:18:50','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211530;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211530;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:20:36','2024-10-29 14:20:36',0,NULL,10),
(385034,'forminator_send_export','complete','2024-10-29 14:21:36','2024-10-29 14:21:36','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211696;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211696;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:22:42','2024-10-29 14:22:42',0,NULL,10),
(385035,'forminator_process_report','complete','2024-10-29 14:21:36','2024-10-29 14:21:36','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211696;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211696;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:22:42','2024-10-29 14:22:42',0,NULL,10),
(385036,'forminator_send_export','complete','2024-10-29 14:21:36','2024-10-29 14:21:36','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211696;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211696;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:22:42','2024-10-29 14:22:42',0,NULL,10),
(385037,'forminator_process_report','complete','2024-10-29 14:21:36','2024-10-29 14:21:36','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211696;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211696;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:22:42','2024-10-29 14:22:42',0,NULL,10),
(385038,'forminator_send_export','complete','2024-10-29 14:23:42','2024-10-29 14:23:42','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211822;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211822;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:24:46','2024-10-29 14:24:46',0,NULL,10),
(385039,'forminator_process_report','complete','2024-10-29 14:23:42','2024-10-29 14:23:42','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211822;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211822;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:24:46','2024-10-29 14:24:46',0,NULL,10),
(385040,'forminator_send_export','complete','2024-10-29 14:23:42','2024-10-29 14:23:42','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211822;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211822;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:24:46','2024-10-29 14:24:46',0,NULL,10),
(385041,'forminator_process_report','complete','2024-10-29 14:23:42','2024-10-29 14:23:42','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211822;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211822;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,1,'2024-10-29 14:24:46','2024-10-29 14:24:46',0,NULL,10),
(385042,'forminator_send_export','pending','2024-10-29 14:25:46','2024-10-29 14:25:46','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211946;s:18:\"\0*\0first_timestamp\";i:1709548290;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211946;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(385043,'forminator_process_report','pending','2024-10-29 14:25:46','2024-10-29 14:25:46','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211946;s:18:\"\0*\0first_timestamp\";i:1707936925;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211946;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(385044,'forminator_send_export','pending','2024-10-29 14:25:46','2024-10-29 14:25:46','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211946;s:18:\"\0*\0first_timestamp\";i:1708702446;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211946;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),
(385045,'forminator_process_report','pending','2024-10-29 14:25:46','2024-10-29 14:25:46','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1730211946;s:18:\"\0*\0first_timestamp\";i:1707927834;s:13:\"\0*\0recurrence\";i:60;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1730211946;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:60;}',10,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10);
/*!40000 ALTER TABLE `wphu_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_actionscheduler_claims`
--

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

--
-- Dumping data for table `wphu_actionscheduler_claims`
--

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

--
-- Table structure for table `wphu_actionscheduler_groups`
--

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

--
-- Dumping data for table `wphu_actionscheduler_groups`
--

LOCK TABLES `wphu_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wphu_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wphu_actionscheduler_groups` VALUES
(1,'action-scheduler-migration'),
(2,'wc-admin-data'),
(3,'woocommerce-memberships'),
(4,'woocommerce-db-updates'),
(5,'wc_update_product_default_cat'),
(6,'woocommerce-remote-inbox-engine'),
(7,'wpforms'),
(8,'mc-woocommerce'),
(9,''),
(10,'forminator'),
(11,'woocommerce_payments');
/*!40000 ALTER TABLE `wphu_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_actionscheduler_logs`
--

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

--
-- Dumping data for table `wphu_actionscheduler_logs`
--

LOCK TABLES `wphu_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wphu_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wphu_actionscheduler_logs` VALUES
(1707,636,'action created','2022-06-05 02:25:10','2022-06-05 02:25:10'),
(1763,636,'action started via Async Request','2022-06-05 02:25:43','2022-06-05 02:25:43'),
(1764,636,'action failed via Async Request: Can\'t enable or disable the attributes lookup table usage while it\'s regenerating.','2022-06-05 02:25:43','2022-06-05 02:25:43'),
(10368,3552,'action created','2023-03-23 23:06:23','2023-03-23 23:06:23'),
(10458,3582,'action created','2023-03-29 23:45:15','2023-03-29 23:45:15'),
(10466,3586,'action created','2023-03-30 21:29:03','2023-03-30 21:29:03'),
(10467,3586,'action started via WP Cron','2023-03-30 21:29:12','2023-03-30 21:29:12'),
(10468,3586,'action failed via WP Cron: Scheduled action for woocommerce_run_on_woocommerce_admin_updated will not be executed as no callbacks are registered.','2023-03-30 21:29:12','2023-03-30 21:29:12'),
(10504,3552,'action started via WP Cron','2023-03-30 23:07:23','2023-03-30 23:07:23'),
(10505,3552,'action failed via WP Cron: Scheduled action for wpforms_email_summaries_fetch_info_blocks will not be executed as no callbacks are registered.','2023-03-30 23:07:23','2023-03-30 23:07:23'),
(10506,3598,'action created','2023-03-30 23:07:23','2023-03-30 23:07:23'),
(10507,3582,'action started via WP Cron','2023-03-30 23:45:36','2023-03-30 23:45:36'),
(10508,3582,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-03-30 23:45:36','2023-03-30 23:45:36'),
(10509,3599,'action created','2023-03-30 23:45:36','2023-03-30 23:45:36'),
(10519,3599,'action started via WP Cron','2023-03-31 23:46:12','2023-03-31 23:46:12'),
(10520,3599,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-03-31 23:46:12','2023-03-31 23:46:12'),
(10521,3603,'action created','2023-03-31 23:46:12','2023-03-31 23:46:12'),
(10531,3603,'action started via WP Cron','2023-04-01 23:46:12','2023-04-01 23:46:12'),
(10532,3603,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-01 23:46:12','2023-04-01 23:46:12'),
(10533,3607,'action created','2023-04-01 23:46:12','2023-04-01 23:46:12'),
(10540,3607,'action started via WP Cron','2023-04-02 23:46:17','2023-04-02 23:46:17'),
(10541,3607,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-02 23:46:17','2023-04-02 23:46:17'),
(10542,3610,'action created','2023-04-02 23:46:17','2023-04-02 23:46:17'),
(10564,3610,'action started via WP Cron','2023-04-03 23:47:28','2023-04-03 23:47:28'),
(10565,3610,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-03 23:47:28','2023-04-03 23:47:28'),
(10566,3618,'action created','2023-04-03 23:47:28','2023-04-03 23:47:28'),
(10576,3618,'action started via WP Cron','2023-04-04 23:48:25','2023-04-04 23:48:25'),
(10577,3618,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-04 23:48:25','2023-04-04 23:48:25'),
(10578,3622,'action created','2023-04-04 23:48:25','2023-04-04 23:48:25'),
(10585,3622,'action started via WP Cron','2023-04-05 23:49:26','2023-04-05 23:49:26'),
(10586,3622,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-05 23:49:26','2023-04-05 23:49:26'),
(10587,3625,'action created','2023-04-05 23:49:26','2023-04-05 23:49:26'),
(10603,3598,'action started via WP Cron','2023-04-06 23:08:28','2023-04-06 23:08:28'),
(10604,3598,'action failed via WP Cron: Scheduled action for wpforms_email_summaries_fetch_info_blocks will not be executed as no callbacks are registered.','2023-04-06 23:08:28','2023-04-06 23:08:28'),
(10605,3631,'action created','2023-04-06 23:08:28','2023-04-06 23:08:28'),
(10606,3625,'action started via WP Cron','2023-04-06 23:50:13','2023-04-06 23:50:13'),
(10607,3625,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-06 23:50:13','2023-04-06 23:50:13'),
(10608,3632,'action created','2023-04-06 23:50:13','2023-04-06 23:50:13'),
(10615,3632,'action started via WP Cron','2023-04-07 23:50:26','2023-04-07 23:50:26'),
(10616,3632,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-07 23:50:26','2023-04-07 23:50:26'),
(10617,3635,'action created','2023-04-07 23:50:26','2023-04-07 23:50:26'),
(10624,3635,'action started via WP Cron','2023-04-08 23:51:13','2023-04-08 23:51:13'),
(10625,3635,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-08 23:51:13','2023-04-08 23:51:13'),
(10626,3638,'action created','2023-04-08 23:51:13','2023-04-08 23:51:13'),
(10633,3638,'action started via WP Cron','2023-04-09 23:51:19','2023-04-09 23:51:19'),
(10634,3638,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-09 23:51:19','2023-04-09 23:51:19'),
(10635,3641,'action created','2023-04-09 23:51:19','2023-04-09 23:51:19'),
(10663,3641,'action started via WP Cron','2023-04-10 23:52:16','2023-04-10 23:52:16'),
(10664,3641,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-10 23:52:16','2023-04-10 23:52:16'),
(10665,3651,'action created','2023-04-10 23:52:16','2023-04-10 23:52:16'),
(10672,3651,'action started via WP Cron','2023-04-11 23:53:16','2023-04-11 23:53:16'),
(10673,3651,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-11 23:53:16','2023-04-11 23:53:16'),
(10674,3654,'action created','2023-04-11 23:53:16','2023-04-11 23:53:16'),
(10681,3654,'action started via WP Cron','2023-04-12 23:53:16','2023-04-12 23:53:16'),
(10682,3654,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-12 23:53:16','2023-04-12 23:53:16'),
(10683,3657,'action created','2023-04-12 23:53:16','2023-04-12 23:53:16'),
(10696,3631,'action started via WP Cron','2023-04-13 23:09:13','2023-04-13 23:09:13'),
(10697,3631,'action failed via WP Cron: Scheduled action for wpforms_email_summaries_fetch_info_blocks will not be executed as no callbacks are registered.','2023-04-13 23:09:13','2023-04-13 23:09:13'),
(10698,3662,'action created','2023-04-13 23:09:13','2023-04-13 23:09:13'),
(10699,3657,'action started via WP Cron','2023-04-13 23:53:19','2023-04-13 23:53:19'),
(10700,3657,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-13 23:53:19','2023-04-13 23:53:19'),
(10701,3663,'action created','2023-04-13 23:53:19','2023-04-13 23:53:19'),
(10711,3663,'action started via WP Cron','2023-04-14 23:53:23','2023-04-14 23:53:23'),
(10712,3663,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-14 23:53:23','2023-04-14 23:53:23'),
(10713,3667,'action created','2023-04-14 23:53:23','2023-04-14 23:53:23'),
(10720,3667,'action started via WP Cron','2023-04-15 23:54:14','2023-04-15 23:54:14'),
(10721,3667,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-15 23:54:14','2023-04-15 23:54:14'),
(10722,3670,'action created','2023-04-15 23:54:14','2023-04-15 23:54:14'),
(10729,3670,'action started via WP Cron','2023-04-16 23:54:36','2023-04-16 23:54:36'),
(10730,3670,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-16 23:54:36','2023-04-16 23:54:36'),
(10731,3673,'action created','2023-04-16 23:54:36','2023-04-16 23:54:36'),
(10741,3673,'action started via WP Cron','2023-04-17 23:55:14','2023-04-17 23:55:14'),
(10742,3673,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-17 23:55:14','2023-04-17 23:55:14'),
(10743,3677,'action created','2023-04-17 23:55:14','2023-04-17 23:55:14'),
(10750,3677,'action started via WP Cron','2023-04-18 23:56:24','2023-04-18 23:56:24'),
(10751,3677,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-18 23:56:24','2023-04-18 23:56:24'),
(10752,3680,'action created','2023-04-18 23:56:24','2023-04-18 23:56:24'),
(10762,3680,'action started via WP Cron','2023-04-19 23:57:16','2023-04-19 23:57:16'),
(10763,3680,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-19 23:57:16','2023-04-19 23:57:16'),
(10764,3684,'action created','2023-04-19 23:57:16','2023-04-19 23:57:16'),
(10777,3662,'action started via WP Cron','2023-04-20 23:09:20','2023-04-20 23:09:20'),
(10778,3662,'action failed via WP Cron: Scheduled action for wpforms_email_summaries_fetch_info_blocks will not be executed as no callbacks are registered.','2023-04-20 23:09:20','2023-04-20 23:09:20'),
(10779,3689,'action created','2023-04-20 23:09:20','2023-04-20 23:09:20'),
(10780,3684,'action started via WP Cron','2023-04-20 23:57:39','2023-04-20 23:57:39'),
(10781,3684,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-20 23:57:39','2023-04-20 23:57:39'),
(10782,3690,'action created','2023-04-20 23:57:39','2023-04-20 23:57:39'),
(10795,3690,'action started via WP Cron','2023-04-21 23:58:15','2023-04-21 23:58:15'),
(10796,3690,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-21 23:58:15','2023-04-21 23:58:15'),
(10797,3695,'action created','2023-04-21 23:58:15','2023-04-21 23:58:15'),
(10804,3695,'action started via WP Cron','2023-04-22 23:58:18','2023-04-22 23:58:18'),
(10805,3695,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-22 23:58:18','2023-04-22 23:58:18'),
(10806,3698,'action created','2023-04-22 23:58:18','2023-04-22 23:58:18'),
(10813,3698,'action started via WP Cron','2023-04-23 23:59:17','2023-04-23 23:59:17'),
(10814,3698,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-23 23:59:17','2023-04-23 23:59:17'),
(10815,3701,'action created','2023-04-23 23:59:17','2023-04-23 23:59:17'),
(10822,3701,'action started via WP Cron','2023-04-24 23:59:21','2023-04-24 23:59:21'),
(10823,3701,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-24 23:59:21','2023-04-24 23:59:21'),
(10824,3704,'action created','2023-04-24 23:59:21','2023-04-24 23:59:21'),
(10831,3704,'action started via WP Cron','2023-04-25 23:59:43','2023-04-25 23:59:43'),
(10832,3704,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-25 23:59:43','2023-04-25 23:59:43'),
(10833,3707,'action created','2023-04-25 23:59:43','2023-04-25 23:59:43'),
(10840,3707,'action started via WP Cron','2023-04-27 00:00:18','2023-04-27 00:00:18'),
(10841,3707,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-27 00:00:18','2023-04-27 00:00:18'),
(10842,3710,'action created','2023-04-27 00:00:18','2023-04-27 00:00:18'),
(10855,3689,'action started via WP Cron','2023-04-27 23:10:17','2023-04-27 23:10:17'),
(10856,3689,'action failed via WP Cron: Scheduled action for wpforms_email_summaries_fetch_info_blocks will not be executed as no callbacks are registered.','2023-04-27 23:10:17','2023-04-27 23:10:17'),
(10857,3689,'This action appears to be consistently failing. A new instance will not be scheduled.','2023-04-27 23:10:17','2023-04-27 23:10:17'),
(10858,3710,'action started via WP Cron','2023-04-28 00:01:17','2023-04-28 00:01:17'),
(10859,3710,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-28 00:01:17','2023-04-28 00:01:17'),
(10860,3715,'action created','2023-04-28 00:01:17','2023-04-28 00:01:17'),
(10867,3715,'action started via WP Cron','2023-04-29 00:01:23','2023-04-29 00:01:23'),
(10868,3715,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-29 00:01:23','2023-04-29 00:01:23'),
(10869,3718,'action created','2023-04-29 00:01:23','2023-04-29 00:01:23'),
(10876,3718,'action started via WP Cron','2023-04-30 00:02:22','2023-04-30 00:02:22'),
(10877,3718,'action failed via WP Cron: Scheduled action for wpforms_process_forms_locator_scan will not be executed as no callbacks are registered.','2023-04-30 00:02:22','2023-04-30 00:02:22'),
(10878,3718,'This action appears to be consistently failing. A new instance will not be scheduled.','2023-04-30 00:02:22','2023-04-30 00:02:22'),
(12538,4276,'action created','2023-11-16 23:17:18','2023-11-16 23:17:18'),
(13218,4504,'action created','2024-02-14 16:25:39','2024-02-14 16:25:39'),
(13225,4504,'action started via WP Cron','2024-02-14 16:25:40','2024-02-14 16:25:40'),
(13226,4504,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-02-14 16:25:40','2024-02-14 16:25:40'),
(13227,4507,'action created','2024-02-14 16:25:40','2024-02-14 16:25:40'),
(28430,4507,'action started via WP Cron','2024-02-21 16:27:30','2024-02-21 16:27:30'),
(28431,4507,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-02-21 16:27:30','2024-02-21 16:27:30'),
(28432,9576,'action created','2024-02-21 16:27:30','2024-02-21 16:27:30'),
(41673,9576,'action started via WP Cron','2024-02-28 16:28:57','2024-02-28 16:28:57'),
(41674,9576,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-02-28 16:28:57','2024-02-28 16:28:57'),
(41675,13991,'action created','2024-02-28 16:28:57','2024-02-28 16:28:57'),
(68326,13991,'action started via WP Cron','2024-03-06 16:29:29','2024-03-06 16:29:29'),
(68327,13991,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-03-06 16:29:29','2024-03-06 16:29:29'),
(68328,22876,'action created','2024-03-06 16:29:29','2024-03-06 16:29:29'),
(123241,22876,'action started via WP Cron','2024-03-13 16:30:09','2024-03-13 16:30:09'),
(123242,22876,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-03-13 16:30:09','2024-03-13 16:30:09'),
(123243,22876,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-03-13 16:30:09','2024-03-13 16:30:09'),
(123272,41191,'action created','2024-03-13 16:37:24','2024-03-13 16:37:24'),
(155954,41191,'action started via WP Cron','2024-03-20 16:37:48','2024-03-20 16:37:48'),
(155955,41191,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-03-20 16:37:48','2024-03-20 16:37:48'),
(155956,41191,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-03-20 16:37:48','2024-03-20 16:37:48'),
(155972,52090,'action created','2024-03-20 16:37:53','2024-03-20 16:37:53'),
(179560,52090,'action started via WP Cron','2024-03-27 16:48:32','2024-03-27 16:48:32'),
(179561,52090,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-03-27 16:48:32','2024-03-27 16:48:32'),
(179562,52090,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-03-27 16:48:32','2024-03-27 16:48:32'),
(179956,60085,'action created','2024-03-27 20:25:41','2024-03-27 20:25:41'),
(206747,60085,'action started via WP Cron','2024-04-03 20:27:03','2024-04-03 20:27:03'),
(206748,60085,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-04-03 20:27:03','2024-04-03 20:27:03'),
(206749,60085,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-04-03 20:27:03','2024-04-03 20:27:03'),
(206918,69072,'action created','2024-04-03 21:14:41','2024-04-03 21:14:41'),
(238233,69072,'action started via WP Cron','2024-04-10 21:15:04','2024-04-10 21:15:04'),
(238234,69072,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-04-10 21:15:04','2024-04-10 21:15:04'),
(238235,69072,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-04-10 21:15:04','2024-04-10 21:15:04'),
(239616,79971,'action created','2024-04-11 16:45:09','2024-04-11 16:45:09'),
(296551,79971,'action started via WP Cron','2024-04-18 16:45:40','2024-04-18 16:45:40'),
(296552,79971,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-04-18 16:45:40','2024-04-18 16:45:40'),
(296553,79971,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-04-18 16:45:40','2024-04-18 16:45:40'),
(297373,99223,'action created','2024-04-18 20:12:46','2024-04-18 20:12:46'),
(343295,99223,'action started via WP Cron','2024-04-25 20:14:51','2024-04-25 20:14:51'),
(343296,99223,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-04-25 20:14:51','2024-04-25 20:14:51'),
(343297,99223,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-04-25 20:14:51','2024-04-25 20:14:51'),
(343325,114540,'action created','2024-04-25 20:20:09','2024-04-25 20:20:09'),
(343338,114540,'action started via WP Cron','2024-04-25 20:20:12','2024-04-25 20:20:12'),
(343339,114540,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-04-25 20:20:12','2024-04-25 20:20:12'),
(343340,114540,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-04-25 20:20:12','2024-04-25 20:20:12'),
(343344,114546,'action created','2024-04-25 20:20:13','2024-04-25 20:20:13'),
(384904,114546,'action started via WP Cron','2024-05-02 20:28:57','2024-05-02 20:28:57'),
(384905,114546,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-05-02 20:28:57','2024-05-02 20:28:57'),
(384906,114546,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-05-02 20:28:57','2024-05-02 20:28:57'),
(422769,141032,'action created','2024-05-09 22:00:38','2024-05-09 22:00:38'),
(459700,141032,'action started via WP Cron','2024-05-16 22:15:06','2024-05-16 22:15:06'),
(459701,141032,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-05-16 22:15:06','2024-05-16 22:15:06'),
(459702,141032,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-05-16 22:15:06','2024-05-16 22:15:06'),
(459730,153352,'action created','2024-05-16 22:23:51','2024-05-16 22:23:51'),
(483692,153352,'action started via WP Cron','2024-05-23 22:30:07','2024-05-23 22:30:07'),
(483693,153352,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-05-23 22:30:07','2024-05-23 22:30:07'),
(483694,153352,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-05-23 22:30:07','2024-05-23 22:30:07'),
(483866,161397,'action created','2024-05-24 00:23:02','2024-05-24 00:23:02'),
(498102,161397,'action started via WP Cron','2024-05-31 00:30:12','2024-05-31 00:30:12'),
(498103,161397,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-05-31 00:30:12','2024-05-31 00:30:12'),
(498104,161397,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-05-31 00:30:12','2024-05-31 00:30:12'),
(498591,166305,'action created','2024-05-31 05:19:27','2024-05-31 05:19:27'),
(513043,166305,'action started via WP Cron','2024-06-07 05:23:34','2024-06-07 05:23:34'),
(513044,166305,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-06-07 05:23:34','2024-06-07 05:23:34'),
(513045,166305,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-06-07 05:23:34','2024-06-07 05:23:34'),
(515620,171981,'action created','2024-06-07 16:33:09','2024-06-07 16:33:09'),
(544577,171981,'action started via WP Cron','2024-06-14 16:45:13','2024-06-14 16:45:13'),
(544578,171981,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-06-14 16:45:13','2024-06-14 16:45:13'),
(544579,171981,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-06-14 16:45:13','2024-06-14 16:45:13'),
(556868,185730,'action created','2024-06-21 16:45:36','2024-06-21 16:45:36'),
(567615,185730,'action started via WP Cron','2024-06-28 16:51:52','2024-06-28 16:51:52'),
(567616,185730,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-06-28 16:51:52','2024-06-28 16:51:52'),
(567617,185730,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-06-28 16:51:52','2024-06-28 16:51:52'),
(567873,189398,'action created','2024-06-28 20:28:46','2024-06-28 20:28:46'),
(567886,189398,'action started via WP Cron','2024-06-28 20:28:47','2024-06-28 20:28:47'),
(567887,189398,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-06-28 20:28:47','2024-06-28 20:28:47'),
(567888,189398,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-06-28 20:28:47','2024-06-28 20:28:47'),
(567952,189424,'action created','2024-06-28 21:01:20','2024-06-28 21:01:20'),
(598680,189424,'action started via WP Cron','2024-07-05 21:02:34','2024-07-05 21:02:34'),
(598681,189424,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-07-05 21:02:34','2024-07-05 21:02:34'),
(598682,189424,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-07-05 21:02:34','2024-07-05 21:02:34'),
(598695,199672,'action created','2024-07-05 21:02:39','2024-07-05 21:02:39'),
(625609,199672,'action started via WP Cron','2024-07-12 21:15:07','2024-07-12 21:15:07'),
(625610,199672,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-07-12 21:15:07','2024-07-12 21:15:07'),
(625611,199672,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-07-12 21:15:07','2024-07-12 21:15:07'),
(625810,208710,'action created','2024-07-12 23:46:20','2024-07-12 23:46:20'),
(646757,208710,'action started via WP Cron','2024-07-19 23:48:26','2024-07-19 23:48:26'),
(646758,208710,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-07-19 23:48:26','2024-07-19 23:48:26'),
(646759,208710,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-07-19 23:48:26','2024-07-19 23:48:26'),
(683261,227860,'action created','2024-07-27 03:15:13','2024-07-27 03:15:13'),
(698049,227860,'action started via WP Cron','2024-08-03 03:15:34','2024-08-03 03:15:34'),
(698050,227860,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-08-03 03:15:34','2024-08-03 03:15:34'),
(698051,227860,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-08-03 03:15:34','2024-08-03 03:15:34'),
(698613,232977,'action created','2024-08-03 06:16:49','2024-08-03 06:16:49'),
(719497,232977,'action started via WP Cron','2024-08-10 06:18:24','2024-08-10 06:18:24'),
(719498,232977,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-08-10 06:18:25','2024-08-10 06:18:25'),
(719499,232977,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-08-10 06:18:25','2024-08-10 06:18:25'),
(721396,240571,'action created','2024-08-10 13:06:40','2024-08-10 13:06:40'),
(749075,240571,'action started via WP Cron','2024-08-17 13:15:07','2024-08-17 13:15:07'),
(749076,240571,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-08-17 13:15:07','2024-08-17 13:15:07'),
(749077,240571,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-08-17 13:15:07','2024-08-17 13:15:07'),
(763970,254762,'action created','2024-08-24 15:15:13','2024-08-24 15:15:13'),
(778656,254762,'action started via WP Cron','2024-08-31 15:19:56','2024-08-31 15:19:56'),
(778657,254762,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-08-31 15:19:56','2024-08-31 15:19:56'),
(778658,254762,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-08-31 15:19:56','2024-08-31 15:19:56'),
(778804,259707,'action created','2024-08-31 16:39:50','2024-08-31 16:39:50'),
(830314,259707,'action started via WP Cron','2024-09-07 16:40:50','2024-09-07 16:40:50'),
(830315,259707,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-09-07 16:40:50','2024-09-07 16:40:50'),
(830316,259707,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-09-07 16:40:50','2024-09-07 16:40:50'),
(831652,277322,'action created','2024-09-07 20:23:11','2024-09-07 20:23:11'),
(886232,277322,'action started via WP Cron','2024-09-14 20:27:24','2024-09-14 20:27:24'),
(886233,277322,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-09-14 20:27:24','2024-09-14 20:27:24'),
(886234,277322,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-09-14 20:27:24','2024-09-14 20:27:24'),
(891584,297299,'action created','2024-09-15 16:35:20','2024-09-15 16:35:20'),
(919208,306507,'action created','2024-09-22 11:30:04','2024-09-22 11:30:04'),
(919800,297299,'action started via WP Cron','2024-09-22 16:45:04','2024-09-22 16:45:04'),
(919801,297299,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-09-22 16:45:04','2024-09-22 16:45:04'),
(919802,297299,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-09-22 16:45:04','2024-09-22 16:45:04'),
(919809,306707,'action created','2024-09-22 16:45:08','2024-09-22 16:45:08'),
(923385,307899,'action created','2024-09-24 02:00:04','2024-09-24 02:00:04'),
(923388,307900,'action created','2024-09-24 02:00:04','2024-09-24 02:00:04'),
(934506,311606,'action created','2024-09-28 12:15:05','2024-09-28 12:15:05'),
(934963,311759,'action created','2024-09-28 16:42:24','2024-09-28 16:42:24'),
(934976,311759,'action started via WP Cron','2024-09-28 16:42:24','2024-09-28 16:42:24'),
(934977,311759,'action complete via WP Cron','2024-09-28 16:42:24','2024-09-28 16:42:24'),
(937627,311606,'action started via WP Cron','2024-09-29 12:16:53','2024-09-29 12:16:53'),
(937628,311606,'action complete via WP Cron','2024-09-29 12:16:53','2024-09-29 12:16:53'),
(937629,312647,'action created','2024-09-29 12:16:53','2024-09-29 12:16:53'),
(938338,312884,'action created','2024-09-29 16:33:31','2024-09-29 16:33:31'),
(938339,312884,'action started via WP Cron','2024-09-29 16:33:31','2024-09-29 16:33:31'),
(938340,312884,'action complete via WP Cron','2024-09-29 16:33:31','2024-09-29 16:33:31'),
(938377,306707,'action started via WP Cron','2024-09-29 16:56:29','2024-09-29 16:56:29'),
(938378,306707,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-09-29 16:56:29','2024-09-29 16:56:29'),
(938379,306707,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-09-29 16:56:29','2024-09-29 16:56:29'),
(940006,313439,'action created','2024-09-30 03:15:10','2024-09-30 03:15:10'),
(940019,313439,'action started via Async Request','2024-09-30 03:15:10','2024-09-30 03:15:10'),
(940020,313439,'action complete via Async Request','2024-09-30 03:15:11','2024-09-30 03:15:11'),
(940021,313444,'action created','2024-09-30 03:15:11','2024-09-30 03:15:11'),
(941405,312647,'action started via WP Cron','2024-09-30 12:30:05','2024-09-30 12:30:05'),
(941406,312647,'action complete via WP Cron','2024-09-30 12:30:05','2024-09-30 12:30:05'),
(941407,313906,'action created','2024-09-30 12:30:05','2024-09-30 12:30:05'),
(941960,314091,'action created','2024-09-30 16:45:06','2024-09-30 16:45:06'),
(941961,314091,'action started via Async Request','2024-09-30 16:45:09','2024-09-30 16:45:09'),
(941962,314091,'action complete via Async Request','2024-09-30 16:45:09','2024-09-30 16:45:09'),
(943277,307899,'action started via WP Cron','2024-10-01 02:00:06','2024-10-01 02:00:06'),
(943278,307899,'action complete via WP Cron','2024-10-01 02:00:06','2024-10-01 02:00:06'),
(943279,314530,'action created','2024-10-01 02:00:06','2024-10-01 02:00:06'),
(943280,307900,'action started via WP Cron','2024-10-01 02:00:06','2024-10-01 02:00:06'),
(943281,307900,'action complete via WP Cron','2024-10-01 02:00:06','2024-10-01 02:00:06'),
(943282,314531,'action created','2024-10-01 02:00:06','2024-10-01 02:00:06'),
(944924,313906,'action started via WP Cron','2024-10-01 12:30:05','2024-10-01 12:30:05'),
(944925,313906,'action complete via WP Cron','2024-10-01 12:30:05','2024-10-01 12:30:05'),
(944926,315079,'action created','2024-10-01 12:30:05','2024-10-01 12:30:05'),
(945683,315332,'action created','2024-10-01 16:36:54','2024-10-01 16:36:54'),
(945684,315332,'action started via Async Request','2024-10-01 16:36:56','2024-10-01 16:36:56'),
(945685,315332,'action complete via Async Request','2024-10-01 16:36:56','2024-10-01 16:36:56'),
(949151,315079,'action started via WP Cron','2024-10-02 12:31:14','2024-10-02 12:31:14'),
(949152,315079,'action complete via WP Cron','2024-10-02 12:31:14','2024-10-02 12:31:14'),
(949153,316488,'action created','2024-10-02 12:31:14','2024-10-02 12:31:14'),
(949778,316697,'action created','2024-10-02 16:34:16','2024-10-02 16:34:16'),
(949779,316697,'action started via Async Request','2024-10-02 16:34:18','2024-10-02 16:34:18'),
(949780,316697,'action complete via Async Request','2024-10-02 16:34:18','2024-10-02 16:34:18'),
(954071,316488,'action started via WP Cron','2024-10-03 12:32:07','2024-10-03 12:32:07'),
(954072,316488,'action complete via WP Cron','2024-10-03 12:32:07','2024-10-03 12:32:07'),
(954073,318128,'action created','2024-10-03 12:32:07','2024-10-03 12:32:07'),
(956618,318977,'action created','2024-10-03 16:33:09','2024-10-03 16:33:09'),
(956619,318977,'action started via Async Request','2024-10-03 16:33:11','2024-10-03 16:33:11'),
(956620,318977,'action complete via Async Request','2024-10-03 16:33:11','2024-10-03 16:33:11'),
(965147,318128,'action started via WP Cron','2024-10-04 12:37:57','2024-10-04 12:37:57'),
(965148,318128,'action complete via WP Cron','2024-10-04 12:37:57','2024-10-04 12:37:57'),
(965149,321820,'action created','2024-10-04 12:37:57','2024-10-04 12:37:57'),
(965564,321959,'action created','2024-10-04 16:34:54','2024-10-04 16:34:54'),
(965577,321959,'action started via WP Cron','2024-10-04 16:34:54','2024-10-04 16:34:54'),
(965578,321959,'action complete via WP Cron','2024-10-04 16:34:54','2024-10-04 16:34:54'),
(969890,321820,'action started via WP Cron','2024-10-05 12:40:08','2024-10-05 12:40:08'),
(969891,321820,'action complete via WP Cron','2024-10-05 12:40:08','2024-10-05 12:40:08'),
(969892,323401,'action created','2024-10-05 12:40:08','2024-10-05 12:40:08'),
(970313,323542,'action created','2024-10-05 16:45:06','2024-10-05 16:45:06'),
(970314,323542,'action started via Async Request','2024-10-05 16:45:08','2024-10-05 16:45:08'),
(970315,323542,'action complete via Async Request','2024-10-05 16:45:08','2024-10-05 16:45:08'),
(977111,325808,'action created','2024-10-06 12:13:58','2024-10-06 12:13:58'),
(977112,325808,'action started via WP Cron','2024-10-06 12:14:12','2024-10-06 12:14:12'),
(977113,325808,'action complete via WP Cron','2024-10-06 12:14:13','2024-10-06 12:14:13'),
(977390,323401,'action started via WP Cron','2024-10-06 12:40:14','2024-10-06 12:40:14'),
(977391,323401,'action complete via WP Cron','2024-10-06 12:40:14','2024-10-06 12:40:14'),
(977392,325901,'action created','2024-10-06 12:40:14','2024-10-06 12:40:14'),
(979361,326558,'action created','2024-10-06 15:59:42','2024-10-06 15:59:42'),
(979362,326558,'action started via WP Cron','2024-10-06 16:00:17','2024-10-06 16:00:17'),
(979363,326558,'action complete via WP Cron','2024-10-06 16:00:17','2024-10-06 16:00:17'),
(979718,326677,'action created','2024-10-06 16:32:57','2024-10-06 16:32:57'),
(979719,326677,'action started via Async Request','2024-10-06 16:32:59','2024-10-06 16:32:59'),
(979720,326677,'action complete via Async Request','2024-10-06 16:32:59','2024-10-06 16:32:59'),
(983729,313444,'action started via Async Request','2024-10-07 03:15:11','2024-10-07 03:15:11'),
(983730,313444,'action complete via Async Request','2024-10-07 03:15:11','2024-10-07 03:15:11'),
(983731,328014,'action created','2024-10-07 03:15:11','2024-10-07 03:15:11'),
(986102,325901,'action started via WP Cron','2024-10-07 12:45:04','2024-10-07 12:45:04'),
(986103,325901,'action complete via WP Cron','2024-10-07 12:45:04','2024-10-07 12:45:04'),
(986104,328805,'action created','2024-10-07 12:45:04','2024-10-07 12:45:04'),
(986768,329027,'action created','2024-10-07 16:45:06','2024-10-07 16:45:06'),
(986769,329027,'action started via Async Request','2024-10-07 16:45:10','2024-10-07 16:45:10'),
(986770,329027,'action complete via Async Request','2024-10-07 16:45:10','2024-10-07 16:45:10'),
(988001,314530,'action started via WP Cron','2024-10-08 02:04:09','2024-10-08 02:04:09'),
(988002,314530,'action complete via WP Cron','2024-10-08 02:04:09','2024-10-08 02:04:09'),
(988003,329438,'action created','2024-10-08 02:04:09','2024-10-08 02:04:09'),
(988004,314531,'action started via WP Cron','2024-10-08 02:04:09','2024-10-08 02:04:09'),
(988005,314531,'action complete via WP Cron','2024-10-08 02:04:09','2024-10-08 02:04:09'),
(988006,329439,'action created','2024-10-08 02:04:09','2024-10-08 02:04:09'),
(989255,328805,'action started via WP Cron','2024-10-08 12:45:05','2024-10-08 12:45:05'),
(989256,328805,'action complete via WP Cron','2024-10-08 12:45:05','2024-10-08 12:45:05'),
(989257,329856,'action created','2024-10-08 12:45:05','2024-10-08 12:45:05'),
(989627,329980,'action created','2024-10-08 16:40:37','2024-10-08 16:40:37'),
(989628,329980,'action started via Async Request','2024-10-08 16:40:39','2024-10-08 16:40:39'),
(989629,329980,'action complete via Async Request','2024-10-08 16:40:39','2024-10-08 16:40:39'),
(991670,329856,'action started via WP Cron','2024-10-09 12:45:05','2024-10-09 12:45:05'),
(991671,329856,'action complete via WP Cron','2024-10-09 12:45:05','2024-10-09 12:45:05'),
(991672,330661,'action created','2024-10-09 12:45:05','2024-10-09 12:45:05'),
(992090,330801,'action created','2024-10-09 16:37:00','2024-10-09 16:37:00'),
(992091,330801,'action started via Async Request','2024-10-09 16:37:02','2024-10-09 16:37:02'),
(992092,330801,'action complete via Async Request','2024-10-09 16:37:02','2024-10-09 16:37:02'),
(994463,330661,'action started via WP Cron','2024-10-10 12:45:05','2024-10-10 12:45:05'),
(994464,330661,'action complete via WP Cron','2024-10-10 12:45:05','2024-10-10 12:45:05'),
(994465,331592,'action created','2024-10-10 12:45:05','2024-10-10 12:45:05'),
(994846,331719,'action created','2024-10-10 16:35:53','2024-10-10 16:35:53'),
(994848,331719,'action started via Async Request','2024-10-10 16:35:55','2024-10-10 16:35:55'),
(994849,331719,'action complete via Async Request','2024-10-10 16:35:55','2024-10-10 16:35:55'),
(997040,331592,'action started via WP Cron','2024-10-11 13:00:06','2024-10-11 13:00:06'),
(997041,331592,'action complete via WP Cron','2024-10-11 13:00:06','2024-10-11 13:00:06'),
(997042,332451,'action created','2024-10-11 13:00:06','2024-10-11 13:00:06'),
(997331,332548,'action created','2024-10-11 16:45:05','2024-10-11 16:45:05'),
(997332,332548,'action started via Async Request','2024-10-11 16:45:09','2024-10-11 16:45:09'),
(997333,332548,'action complete via Async Request','2024-10-11 16:45:09','2024-10-11 16:45:09'),
(1004009,332451,'action started via WP Cron','2024-10-12 13:00:06','2024-10-12 13:00:06'),
(1004010,332451,'action complete via WP Cron','2024-10-12 13:00:06','2024-10-12 13:00:06'),
(1004011,334774,'action created','2024-10-12 13:00:06','2024-10-12 13:00:06'),
(1005284,335199,'action created','2024-10-12 16:33:08','2024-10-12 16:33:08'),
(1005285,335199,'action started via Async Request','2024-10-12 16:33:10','2024-10-12 16:33:10'),
(1005286,335199,'action complete via Async Request','2024-10-12 16:33:10','2024-10-12 16:33:10'),
(1012838,334774,'action started via WP Cron','2024-10-13 13:00:16','2024-10-13 13:00:16'),
(1012839,334774,'action complete via WP Cron','2024-10-13 13:00:16','2024-10-13 13:00:16'),
(1012840,337717,'action created','2024-10-13 13:00:16','2024-10-13 13:00:16'),
(1014113,338142,'action created','2024-10-13 16:33:06','2024-10-13 16:33:06'),
(1014114,338142,'action started via Async Request','2024-10-13 16:33:09','2024-10-13 16:33:09'),
(1014115,338142,'action complete via Async Request','2024-10-13 16:33:09','2024-10-13 16:33:09'),
(1017965,328014,'action started via WP Cron','2024-10-14 03:15:25','2024-10-14 03:15:25'),
(1017966,328014,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-10-14 03:15:25','2024-10-14 03:15:25'),
(1017967,328014,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-10-14 03:15:25','2024-10-14 03:15:25'),
(1018622,339644,'action created','2024-10-14 05:04:34','2024-10-14 05:04:34'),
(1018623,339644,'action started via Async Request','2024-10-14 05:04:36','2024-10-14 05:04:36'),
(1018624,339644,'action complete via Async Request','2024-10-14 05:04:37','2024-10-14 05:04:37'),
(1018625,339645,'action created','2024-10-14 05:04:37','2024-10-14 05:04:37'),
(1021482,337717,'action started via WP Cron','2024-10-14 13:01:51','2024-10-14 13:01:51'),
(1021483,337717,'action complete via WP Cron','2024-10-14 13:01:51','2024-10-14 13:01:51'),
(1021484,340598,'action created','2024-10-14 13:01:51','2024-10-14 13:01:51'),
(1022775,341029,'action created','2024-10-14 16:33:29','2024-10-14 16:33:29'),
(1022776,341029,'action started via WP Cron','2024-10-14 16:33:29','2024-10-14 16:33:29'),
(1022777,341029,'action complete via WP Cron','2024-10-14 16:33:29','2024-10-14 16:33:29'),
(1026201,329438,'action started via WP Cron','2024-10-15 02:04:27','2024-10-15 02:04:27'),
(1026202,329438,'action complete via WP Cron','2024-10-15 02:04:27','2024-10-15 02:04:27'),
(1026203,342171,'action created','2024-10-15 02:04:27','2024-10-15 02:04:27'),
(1026204,329439,'action started via WP Cron','2024-10-15 02:04:27','2024-10-15 02:04:27'),
(1026205,329439,'action complete via WP Cron','2024-10-15 02:04:27','2024-10-15 02:04:27'),
(1026206,342172,'action created','2024-10-15 02:04:27','2024-10-15 02:04:27'),
(1030149,340598,'action started via WP Cron','2024-10-15 13:03:46','2024-10-15 13:03:46'),
(1030150,340598,'action complete via WP Cron','2024-10-15 13:03:46','2024-10-15 13:03:46'),
(1030151,343487,'action created','2024-10-15 13:03:46','2024-10-15 13:03:46'),
(1031406,343906,'action created','2024-10-15 16:34:31','2024-10-15 16:34:31'),
(1031419,343906,'action started via WP Cron','2024-10-15 16:34:31','2024-10-15 16:34:31'),
(1031420,343906,'action complete via WP Cron','2024-10-15 16:34:31','2024-10-15 16:34:31'),
(1038858,343487,'action started via WP Cron','2024-10-16 13:03:48','2024-10-16 13:03:48'),
(1038859,343487,'action complete via WP Cron','2024-10-16 13:03:48','2024-10-16 13:03:48'),
(1038860,346390,'action created','2024-10-16 13:03:48','2024-10-16 13:03:48'),
(1040103,346805,'action created','2024-10-16 16:34:32','2024-10-16 16:34:32'),
(1040116,346805,'action started via WP Cron','2024-10-16 16:34:32','2024-10-16 16:34:32'),
(1040117,346805,'action complete via WP Cron','2024-10-16 16:34:32','2024-10-16 16:34:32'),
(1047585,346390,'action started via WP Cron','2024-10-17 13:04:10','2024-10-17 13:04:10'),
(1047586,346390,'action complete via WP Cron','2024-10-17 13:04:10','2024-10-17 13:04:10'),
(1047587,349299,'action created','2024-10-17 13:04:10','2024-10-17 13:04:10'),
(1048878,349730,'action created','2024-10-17 16:32:57','2024-10-17 16:32:57'),
(1048879,349730,'action started via Async Request','2024-10-17 16:33:00','2024-10-17 16:33:00'),
(1048880,349730,'action complete via Async Request','2024-10-17 16:33:00','2024-10-17 16:33:00'),
(1056426,349299,'action started via WP Cron','2024-10-18 13:04:18','2024-10-18 13:04:18'),
(1056427,349299,'action complete via WP Cron','2024-10-18 13:04:18','2024-10-18 13:04:18'),
(1056428,352246,'action created','2024-10-18 13:04:18','2024-10-18 13:04:18'),
(1057755,352689,'action created','2024-10-18 16:33:23','2024-10-18 16:33:23'),
(1057756,352689,'action started via Async Request','2024-10-18 16:33:27','2024-10-18 16:33:27'),
(1057757,352689,'action complete via Async Request','2024-10-18 16:33:27','2024-10-18 16:33:27'),
(1065537,352246,'action started via WP Cron','2024-10-19 13:04:54','2024-10-19 13:04:54'),
(1065538,352246,'action complete via WP Cron','2024-10-19 13:04:54','2024-10-19 13:04:54'),
(1065539,355283,'action created','2024-10-19 13:04:54','2024-10-19 13:04:54'),
(1066902,355738,'action created','2024-10-19 16:33:19','2024-10-19 16:33:19'),
(1066903,355738,'action started via WP Cron','2024-10-19 16:33:19','2024-10-19 16:33:19'),
(1066904,355738,'action complete via WP Cron','2024-10-19 16:33:19','2024-10-19 16:33:19'),
(1074570,355283,'action started via WP Cron','2024-10-20 13:05:10','2024-10-20 13:05:10'),
(1074571,355283,'action complete via WP Cron','2024-10-20 13:05:10','2024-10-20 13:05:10'),
(1074572,358294,'action created','2024-10-20 13:05:10','2024-10-20 13:05:10'),
(1075947,358753,'action created','2024-10-20 16:33:06','2024-10-20 16:33:06'),
(1075948,358753,'action started via Async Request','2024-10-20 16:33:09','2024-10-20 16:33:09'),
(1075949,358753,'action complete via Async Request','2024-10-20 16:33:09','2024-10-20 16:33:09'),
(1080777,339645,'action started via WP Cron','2024-10-21 05:04:39','2024-10-21 05:04:39'),
(1080778,339645,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-10-21 05:04:39','2024-10-21 05:04:39'),
(1080779,339645,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-10-21 05:04:39','2024-10-21 05:04:39'),
(1081254,360521,'action created','2024-10-21 06:18:36','2024-10-21 06:18:36'),
(1081267,360521,'action started via Async Request','2024-10-21 06:18:38','2024-10-21 06:18:38'),
(1081268,360521,'action complete via Async Request','2024-10-21 06:18:39','2024-10-21 06:18:39'),
(1081269,360526,'action created','2024-10-21 06:18:39','2024-10-21 06:18:39'),
(1083814,358294,'action started via WP Cron','2024-10-21 13:05:25','2024-10-21 13:05:25'),
(1083815,358294,'action complete via WP Cron','2024-10-21 13:05:25','2024-10-21 13:05:25'),
(1083816,361375,'action created','2024-10-21 13:05:25','2024-10-21 13:05:25'),
(1085149,361820,'action created','2024-10-21 16:33:42','2024-10-21 16:33:42'),
(1085150,361820,'action started via Async Request','2024-10-21 16:33:45','2024-10-21 16:33:45'),
(1085151,361820,'action complete via Async Request','2024-10-21 16:33:45','2024-10-21 16:33:45'),
(1088680,342171,'action started via WP Cron','2024-10-22 02:05:08','2024-10-22 02:05:08'),
(1088681,342171,'action complete via WP Cron','2024-10-22 02:05:08','2024-10-22 02:05:08'),
(1088682,362997,'action created','2024-10-22 02:05:08','2024-10-22 02:05:08'),
(1088683,342172,'action started via WP Cron','2024-10-22 02:05:08','2024-10-22 02:05:08'),
(1088684,342172,'action complete via WP Cron','2024-10-22 02:05:08','2024-10-22 02:05:08'),
(1088685,362998,'action created','2024-10-22 02:05:08','2024-10-22 02:05:08'),
(1092043,306507,'action started via WP Cron','2024-10-22 11:30:05','2024-10-22 11:30:05'),
(1092044,306507,'action complete via WP Cron','2024-10-22 11:30:05','2024-10-22 11:30:05'),
(1092045,364118,'action created','2024-10-22 11:30:05','2024-10-22 11:30:05'),
(1092628,361375,'action started via WP Cron','2024-10-22 13:06:28','2024-10-22 13:06:28'),
(1092629,361375,'action complete via WP Cron','2024-10-22 13:06:28','2024-10-22 13:06:28'),
(1092630,364313,'action created','2024-10-22 13:06:28','2024-10-22 13:06:28'),
(1093891,364734,'action created','2024-10-22 16:33:01','2024-10-22 16:33:01'),
(1093892,364734,'action started via Async Request','2024-10-22 16:33:04','2024-10-22 16:33:04'),
(1093893,364734,'action complete via Async Request','2024-10-22 16:33:04','2024-10-22 16:33:04'),
(1101421,364313,'action started via WP Cron','2024-10-23 13:06:32','2024-10-23 13:06:32'),
(1101422,364313,'action complete via WP Cron','2024-10-23 13:06:32','2024-10-23 13:06:32'),
(1101423,367244,'action created','2024-10-23 13:06:32','2024-10-23 13:06:32'),
(1102690,367667,'action created','2024-10-23 16:33:07','2024-10-23 16:33:07'),
(1102691,367667,'action started via Async Request','2024-10-23 16:33:09','2024-10-23 16:33:09'),
(1102692,367667,'action complete via Async Request','2024-10-23 16:33:09','2024-10-23 16:33:09'),
(1110250,367244,'action started via WP Cron','2024-10-24 13:07:51','2024-10-24 13:07:51'),
(1110251,367244,'action complete via WP Cron','2024-10-24 13:07:51','2024-10-24 13:07:51'),
(1110252,370187,'action created','2024-10-24 13:07:51','2024-10-24 13:07:51'),
(1111495,370602,'action created','2024-10-24 16:33:05','2024-10-24 16:33:05'),
(1111496,370602,'action started via Async Request','2024-10-24 16:33:07','2024-10-24 16:33:07'),
(1111497,370602,'action complete via Async Request','2024-10-24 16:33:07','2024-10-24 16:33:07'),
(1119175,370187,'action started via WP Cron','2024-10-25 13:08:50','2024-10-25 13:08:50'),
(1119176,370187,'action complete via WP Cron','2024-10-25 13:08:50','2024-10-25 13:08:50'),
(1119177,373162,'action created','2024-10-25 13:08:50','2024-10-25 13:08:50'),
(1120426,373579,'action created','2024-10-25 16:33:13','2024-10-25 16:33:13'),
(1120427,373579,'action started via Async Request','2024-10-25 16:33:16','2024-10-25 16:33:16'),
(1120428,373579,'action complete via Async Request','2024-10-25 16:33:16','2024-10-25 16:33:16'),
(1127884,373162,'action started via WP Cron','2024-10-26 13:10:16','2024-10-26 13:10:16'),
(1127885,373162,'action complete via WP Cron','2024-10-26 13:10:16','2024-10-26 13:10:16'),
(1127886,376065,'action created','2024-10-26 13:10:16','2024-10-26 13:10:16'),
(1129099,376470,'action created','2024-10-26 16:33:05','2024-10-26 16:33:05'),
(1129100,376470,'action started via Async Request','2024-10-26 16:33:08','2024-10-26 16:33:08'),
(1129101,376470,'action complete via Async Request','2024-10-26 16:33:08','2024-10-26 16:33:08'),
(1136713,376065,'action started via WP Cron','2024-10-27 13:10:17','2024-10-27 13:10:17'),
(1136714,376065,'action complete via WP Cron','2024-10-27 13:10:17','2024-10-27 13:10:17'),
(1136715,379008,'action created','2024-10-27 13:10:17','2024-10-27 13:10:17'),
(1137934,379415,'action created','2024-10-27 16:33:05','2024-10-27 16:33:05'),
(1137935,379415,'action started via Async Request','2024-10-27 16:33:07','2024-10-27 16:33:07'),
(1137936,379415,'action complete via Async Request','2024-10-27 16:33:07','2024-10-27 16:33:07'),
(1142905,360526,'action started via WP Cron','2024-10-28 06:19:23','2024-10-28 06:19:23'),
(1142906,360526,'action failed via WP Cron: Scheduled action for cartflows_update_knowledge_base_data will not be executed as no callbacks are registered.','2024-10-28 06:19:23','2024-10-28 06:19:23'),
(1142907,360526,'This action appears to be consistently failing. A new instance will not be scheduled.','2024-10-28 06:19:23','2024-10-28 06:19:23'),
(1144591,381633,'action created','2024-10-28 11:00:49','2024-10-28 11:00:49'),
(1144592,381633,'action started via Async Request','2024-10-28 11:00:51','2024-10-28 11:00:51'),
(1144593,381633,'action complete via Async Request','2024-10-28 11:00:51','2024-10-28 11:00:51'),
(1144594,381634,'action created','2024-10-28 11:00:51','2024-10-28 11:00:51'),
(1145357,379008,'action started via WP Cron','2024-10-28 13:10:24','2024-10-28 13:10:24'),
(1145358,379008,'action complete via WP Cron','2024-10-28 13:10:24','2024-10-28 13:10:24'),
(1145359,381889,'action created','2024-10-28 13:10:24','2024-10-28 13:10:24'),
(1146608,382306,'action created','2024-10-28 16:33:04','2024-10-28 16:33:04'),
(1146609,382306,'action started via Async Request','2024-10-28 16:33:07','2024-10-28 16:33:07'),
(1146610,382306,'action complete via Async Request','2024-10-28 16:33:07','2024-10-28 16:33:07'),
(1146839,382383,'action created','2024-10-28 17:02:51','2024-10-28 17:02:51'),
(1146852,382383,'action started via Async Request','2024-10-28 17:03:57','2024-10-28 17:03:57'),
(1146853,382383,'action complete via Async Request','2024-10-28 17:03:57','2024-10-28 17:03:57'),
(1146854,382388,'action created','2024-10-28 17:03:58','2024-10-28 17:03:58'),
(1146867,382388,'action started via Async Request','2024-10-28 17:04:59','2024-10-28 17:04:59'),
(1146868,382388,'action failed via Async Request: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2024-10-28 17:04:59','2024-10-28 17:04:59'),
(1147001,382437,'action created','2024-10-28 17:21:27','2024-10-28 17:21:27'),
(1147014,382437,'action started via WP Cron','2024-10-28 17:23:26','2024-10-28 17:23:26'),
(1147015,382437,'action complete via WP Cron','2024-10-28 17:23:26','2024-10-28 17:23:26'),
(1147028,382446,'action created','2024-10-28 17:23:27','2024-10-28 17:23:27'),
(1147041,382446,'action started via WP Cron','2024-10-28 17:24:49','2024-10-28 17:24:49'),
(1147042,382446,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2024-10-28 17:24:49','2024-10-28 17:24:49'),
(1148405,382905,'action created','2024-10-28 20:58:17','2024-10-28 20:58:17'),
(1148418,382905,'action started via WP Cron','2024-10-28 20:58:18','2024-10-28 20:58:18'),
(1148419,382905,'action complete via WP Cron','2024-10-28 20:58:18','2024-10-28 20:58:18'),
(1150352,362997,'action started via WP Cron','2024-10-29 02:06:38','2024-10-29 02:06:38'),
(1150353,362997,'action complete via WP Cron','2024-10-29 02:06:38','2024-10-29 02:06:38'),
(1150354,383554,'action created','2024-10-29 02:06:38','2024-10-29 02:06:38'),
(1150355,362998,'action started via WP Cron','2024-10-29 02:06:38','2024-10-29 02:06:38'),
(1150356,362998,'action complete via WP Cron','2024-10-29 02:06:38','2024-10-29 02:06:38'),
(1150357,383555,'action created','2024-10-29 02:06:38','2024-10-29 02:06:38'),
(1153435,384581,'action created','2024-10-29 10:50:51','2024-10-29 10:50:51'),
(1153612,384640,'action created','2024-10-29 11:11:57','2024-10-29 11:11:57'),
(1153963,384757,'action created','2024-10-29 12:08:53','2024-10-29 12:08:53'),
(1153966,384758,'action created','2024-10-29 12:08:53','2024-10-29 12:08:53'),
(1154221,384843,'action created','2024-10-29 12:50:15','2024-10-29 12:50:15'),
(1154224,384844,'action created','2024-10-29 12:50:15','2024-10-29 12:50:15'),
(1154227,384845,'action created','2024-10-29 12:50:15','2024-10-29 12:50:15'),
(1154230,384846,'action created','2024-10-29 12:50:15','2024-10-29 12:50:15'),
(1154233,384847,'action created','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154234,384581,'action started via WP Cron','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154235,384581,'action complete via WP Cron','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154236,384848,'action created','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154237,384843,'action started via WP Cron','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154238,384843,'action complete via WP Cron','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154239,384849,'action created','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154240,384844,'action started via WP Cron','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154241,384844,'action complete via WP Cron','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154242,384850,'action created','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154243,384845,'action started via WP Cron','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154244,384845,'action complete via WP Cron','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154245,384851,'action created','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154246,384846,'action started via WP Cron','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154247,384846,'action complete via WP Cron','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154248,384852,'action created','2024-10-29 12:52:59','2024-10-29 12:52:59'),
(1154249,384849,'action started via WP Cron','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154250,384849,'action complete via WP Cron','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154251,384853,'action created','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154252,384850,'action started via WP Cron','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154253,384850,'action complete via WP Cron','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154254,384854,'action created','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154255,384851,'action started via WP Cron','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154256,384851,'action complete via WP Cron','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154257,384855,'action created','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154258,384852,'action started via WP Cron','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154259,384852,'action complete via WP Cron','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154260,384856,'action created','2024-10-29 12:55:06','2024-10-29 12:55:06'),
(1154261,384853,'action started via WP Cron','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154262,384853,'action complete via WP Cron','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154263,384857,'action created','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154264,384854,'action started via WP Cron','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154265,384854,'action complete via WP Cron','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154266,384858,'action created','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154267,384855,'action started via WP Cron','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154268,384855,'action complete via WP Cron','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154269,384859,'action created','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154270,384856,'action started via WP Cron','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154271,384856,'action complete via WP Cron','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154272,384860,'action created','2024-10-29 12:57:07','2024-10-29 12:57:07'),
(1154273,384857,'action started via Async Request','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154274,384857,'action complete via Async Request','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154275,384861,'action created','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154276,384858,'action started via Async Request','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154277,384858,'action complete via Async Request','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154278,384862,'action created','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154279,384859,'action started via Async Request','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154280,384859,'action complete via Async Request','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154281,384863,'action created','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154282,384860,'action started via Async Request','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154283,384860,'action complete via Async Request','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154284,384864,'action created','2024-10-29 12:59:08','2024-10-29 12:59:08'),
(1154285,384861,'action started via WP Cron','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154286,384861,'action complete via WP Cron','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154287,384865,'action created','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154288,384862,'action started via WP Cron','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154289,384862,'action complete via WP Cron','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154290,384866,'action created','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154291,384863,'action started via WP Cron','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154292,384863,'action complete via WP Cron','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154293,384867,'action created','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154294,384864,'action started via WP Cron','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154295,384864,'action complete via WP Cron','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154296,384868,'action created','2024-10-29 13:01:09','2024-10-29 13:01:09'),
(1154297,384865,'action started via WP Cron','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154298,384865,'action complete via WP Cron','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154299,384869,'action created','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154300,384866,'action started via WP Cron','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154301,384866,'action complete via WP Cron','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154302,384870,'action created','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154303,384867,'action started via WP Cron','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154304,384867,'action complete via WP Cron','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154305,384871,'action created','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154306,384868,'action started via WP Cron','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154307,384868,'action complete via WP Cron','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154308,384872,'action created','2024-10-29 13:03:24','2024-10-29 13:03:24'),
(1154309,384869,'action started via WP Cron','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154310,384869,'action complete via WP Cron','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154311,384873,'action created','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154312,384870,'action started via WP Cron','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154313,384870,'action complete via WP Cron','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154314,384874,'action created','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154315,384871,'action started via WP Cron','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154316,384871,'action complete via WP Cron','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154317,384875,'action created','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154318,384872,'action started via WP Cron','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154319,384872,'action complete via WP Cron','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154320,384876,'action created','2024-10-29 13:04:29','2024-10-29 13:04:29'),
(1154321,384873,'action started via WP Cron','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154322,384873,'action complete via WP Cron','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154323,384877,'action created','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154324,384874,'action started via WP Cron','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154325,384874,'action complete via WP Cron','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154326,384878,'action created','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154327,384875,'action started via WP Cron','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154328,384875,'action complete via WP Cron','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154329,384879,'action created','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154330,384876,'action started via WP Cron','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154331,384876,'action complete via WP Cron','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154332,384880,'action created','2024-10-29 13:05:30','2024-10-29 13:05:30'),
(1154333,384877,'action started via WP Cron','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154334,384877,'action complete via WP Cron','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154335,384881,'action created','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154336,384878,'action started via WP Cron','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154337,384878,'action complete via WP Cron','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154338,384882,'action created','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154339,384879,'action started via WP Cron','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154340,384879,'action complete via WP Cron','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154341,384883,'action created','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154342,384880,'action started via WP Cron','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154343,384880,'action complete via WP Cron','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154344,384884,'action created','2024-10-29 13:06:45','2024-10-29 13:06:45'),
(1154345,384881,'action started via WP Cron','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154346,384881,'action complete via WP Cron','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154347,384885,'action created','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154348,384882,'action started via WP Cron','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154349,384882,'action complete via WP Cron','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154350,384886,'action created','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154351,384883,'action started via WP Cron','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154352,384883,'action complete via WP Cron','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154353,384887,'action created','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154354,384884,'action started via WP Cron','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154355,384884,'action complete via WP Cron','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154356,384888,'action created','2024-10-29 13:08:29','2024-10-29 13:08:29'),
(1154357,384757,'action started via WP Cron','2024-10-29 13:09:15','2024-10-29 13:09:15'),
(1154358,384757,'action complete via WP Cron','2024-10-29 13:09:15','2024-10-29 13:09:15'),
(1154359,384889,'action created','2024-10-29 13:09:15','2024-10-29 13:09:15'),
(1154360,384758,'action started via WP Cron','2024-10-29 13:09:15','2024-10-29 13:09:15'),
(1154361,384758,'action complete via WP Cron','2024-10-29 13:09:15','2024-10-29 13:09:15'),
(1154362,384890,'action created','2024-10-29 13:09:16','2024-10-29 13:09:16'),
(1154363,384885,'action started via WP Cron','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154364,384885,'action complete via WP Cron','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154365,384891,'action created','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154366,384886,'action started via WP Cron','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154367,384886,'action complete via WP Cron','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154368,384892,'action created','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154369,384887,'action started via WP Cron','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154370,384887,'action complete via WP Cron','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154371,384893,'action created','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154372,384888,'action started via WP Cron','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154373,384888,'action complete via WP Cron','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154374,384894,'action created','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154375,381889,'action started via WP Cron','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154376,381889,'action complete via WP Cron','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154377,384895,'action created','2024-10-29 13:11:45','2024-10-29 13:11:45'),
(1154378,384891,'action started via WP Cron','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154379,384891,'action complete via WP Cron','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154380,384896,'action created','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154381,384892,'action started via WP Cron','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154382,384892,'action complete via WP Cron','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154383,384897,'action created','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154384,384893,'action started via WP Cron','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154385,384893,'action complete via WP Cron','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154386,384898,'action created','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154387,384894,'action started via WP Cron','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154388,384894,'action complete via WP Cron','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154389,384899,'action created','2024-10-29 13:13:50','2024-10-29 13:13:50'),
(1154390,384896,'action started via WP Cron','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154391,384896,'action complete via WP Cron','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154392,384900,'action created','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154393,384897,'action started via WP Cron','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154394,384897,'action complete via WP Cron','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154395,384901,'action created','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154396,384898,'action started via WP Cron','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154397,384898,'action complete via WP Cron','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154398,384902,'action created','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154399,384899,'action started via WP Cron','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154400,384899,'action complete via WP Cron','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154401,384903,'action created','2024-10-29 13:15:04','2024-10-29 13:15:04'),
(1154402,384900,'action started via WP Cron','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154403,384900,'action complete via WP Cron','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154404,384904,'action created','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154405,384901,'action started via WP Cron','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154406,384901,'action complete via WP Cron','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154407,384905,'action created','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154408,384902,'action started via WP Cron','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154409,384902,'action complete via WP Cron','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154410,384906,'action created','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154411,384903,'action started via WP Cron','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154412,384903,'action complete via WP Cron','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154413,384907,'action created','2024-10-29 13:16:29','2024-10-29 13:16:29'),
(1154414,384904,'action started via WP Cron','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154415,384904,'action complete via WP Cron','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154416,384908,'action created','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154417,384905,'action started via WP Cron','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154418,384905,'action complete via WP Cron','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154419,384909,'action created','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154420,384906,'action started via WP Cron','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154421,384906,'action complete via WP Cron','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154422,384910,'action created','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154423,384907,'action started via WP Cron','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154424,384907,'action complete via WP Cron','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154425,384911,'action created','2024-10-29 13:18:01','2024-10-29 13:18:01'),
(1154426,384908,'action started via WP Cron','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154427,384908,'action complete via WP Cron','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154428,384912,'action created','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154429,384909,'action started via WP Cron','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154430,384909,'action complete via WP Cron','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154431,384913,'action created','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154432,384910,'action started via WP Cron','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154433,384910,'action complete via WP Cron','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154434,384914,'action created','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154435,384911,'action started via WP Cron','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154436,384911,'action complete via WP Cron','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154437,384915,'action created','2024-10-29 13:20:07','2024-10-29 13:20:07'),
(1154438,384912,'action started via WP Cron','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154439,384912,'action complete via WP Cron','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154440,384916,'action created','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154441,384913,'action started via WP Cron','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154442,384913,'action complete via WP Cron','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154443,384917,'action created','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154444,384914,'action started via WP Cron','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154445,384914,'action complete via WP Cron','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154446,384918,'action created','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154447,384915,'action started via WP Cron','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154448,384915,'action complete via WP Cron','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154449,384919,'action created','2024-10-29 13:22:12','2024-10-29 13:22:12'),
(1154450,384916,'action started via WP Cron','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154451,384916,'action complete via WP Cron','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154452,384920,'action created','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154453,384917,'action started via WP Cron','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154454,384917,'action complete via WP Cron','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154455,384921,'action created','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154456,384918,'action started via WP Cron','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154457,384918,'action complete via WP Cron','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154458,384922,'action created','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154459,384919,'action started via WP Cron','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154460,384919,'action complete via WP Cron','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154461,384923,'action created','2024-10-29 13:24:28','2024-10-29 13:24:28'),
(1154462,384920,'action started via WP Cron','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154463,384920,'action complete via WP Cron','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154464,384924,'action created','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154465,384921,'action started via WP Cron','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154466,384921,'action complete via WP Cron','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154467,384925,'action created','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154468,384922,'action started via WP Cron','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154469,384922,'action complete via WP Cron','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154470,384926,'action created','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154471,384923,'action started via WP Cron','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154472,384923,'action complete via WP Cron','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154473,384927,'action created','2024-10-29 13:26:22','2024-10-29 13:26:22'),
(1154474,384924,'action started via WP Cron','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154475,384924,'action complete via WP Cron','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154476,384928,'action created','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154477,384925,'action started via WP Cron','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154478,384925,'action complete via WP Cron','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154479,384929,'action created','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154480,384926,'action started via WP Cron','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154481,384926,'action complete via WP Cron','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154482,384930,'action created','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154483,384927,'action started via WP Cron','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154484,384927,'action complete via WP Cron','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154485,384931,'action created','2024-10-29 13:28:29','2024-10-29 13:28:29'),
(1154486,384928,'action started via WP Cron','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154487,384928,'action complete via WP Cron','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154488,384932,'action created','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154489,384929,'action started via WP Cron','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154490,384929,'action complete via WP Cron','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154491,384933,'action created','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154492,384930,'action started via WP Cron','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154493,384930,'action complete via WP Cron','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154494,384934,'action created','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154495,384931,'action started via WP Cron','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154496,384931,'action complete via WP Cron','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154497,384935,'action created','2024-10-29 13:30:05','2024-10-29 13:30:05'),
(1154498,384932,'action started via WP Cron','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154499,384932,'action complete via WP Cron','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154500,384936,'action created','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154501,384933,'action started via WP Cron','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154502,384933,'action complete via WP Cron','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154503,384937,'action created','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154504,384934,'action started via WP Cron','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154505,384934,'action complete via WP Cron','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154506,384938,'action created','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154507,384935,'action started via WP Cron','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154508,384935,'action complete via WP Cron','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154509,384939,'action created','2024-10-29 13:32:37','2024-10-29 13:32:37'),
(1154510,384936,'action started via WP Cron','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154511,384936,'action complete via WP Cron','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154512,384940,'action created','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154513,384937,'action started via WP Cron','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154514,384937,'action complete via WP Cron','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154515,384941,'action created','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154516,384938,'action started via WP Cron','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154517,384938,'action complete via WP Cron','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154518,384942,'action created','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154519,384939,'action started via WP Cron','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154520,384939,'action complete via WP Cron','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154521,384943,'action created','2024-10-29 13:34:43','2024-10-29 13:34:43'),
(1154522,384940,'action started via WP Cron','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154523,384940,'action complete via WP Cron','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154524,384944,'action created','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154525,384941,'action started via WP Cron','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154526,384941,'action complete via WP Cron','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154527,384945,'action created','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154528,384942,'action started via WP Cron','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154529,384942,'action complete via WP Cron','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154530,384946,'action created','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154531,384943,'action started via WP Cron','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154532,384943,'action complete via WP Cron','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154533,384947,'action created','2024-10-29 13:35:49','2024-10-29 13:35:49'),
(1154534,384944,'action started via Async Request','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154535,384944,'action complete via Async Request','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154536,384948,'action created','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154537,384945,'action started via Async Request','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154538,384945,'action complete via Async Request','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154539,384949,'action created','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154540,384946,'action started via Async Request','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154541,384946,'action complete via Async Request','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154542,384950,'action created','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154543,384947,'action started via Async Request','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154544,384947,'action complete via Async Request','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154545,384951,'action created','2024-10-29 13:37:07','2024-10-29 13:37:07'),
(1154546,384948,'action started via WP Cron','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154547,384948,'action complete via WP Cron','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154548,384952,'action created','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154549,384949,'action started via WP Cron','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154550,384949,'action complete via WP Cron','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154551,384953,'action created','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154552,384950,'action started via WP Cron','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154553,384950,'action complete via WP Cron','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154554,384954,'action created','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154555,384951,'action started via WP Cron','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154556,384951,'action complete via WP Cron','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154557,384955,'action created','2024-10-29 13:38:53','2024-10-29 13:38:53'),
(1154558,384952,'action started via WP Cron','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154559,384952,'action complete via WP Cron','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154560,384956,'action created','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154561,384953,'action started via WP Cron','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154562,384953,'action complete via WP Cron','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154563,384957,'action created','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154564,384954,'action started via WP Cron','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154565,384954,'action complete via WP Cron','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154566,384958,'action created','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154567,384955,'action started via WP Cron','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154568,384955,'action complete via WP Cron','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154569,384959,'action created','2024-10-29 13:40:58','2024-10-29 13:40:58'),
(1154570,384956,'action started via WP Cron','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154571,384956,'action complete via WP Cron','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154572,384960,'action created','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154573,384957,'action started via WP Cron','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154574,384957,'action complete via WP Cron','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154575,384961,'action created','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154576,384958,'action started via WP Cron','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154577,384958,'action complete via WP Cron','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154578,384962,'action created','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154579,384959,'action started via WP Cron','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154580,384959,'action complete via WP Cron','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154581,384963,'action created','2024-10-29 13:43:03','2024-10-29 13:43:03'),
(1154582,384960,'action started via WP Cron','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154583,384960,'action complete via WP Cron','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154584,384964,'action created','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154585,384961,'action started via WP Cron','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154586,384961,'action complete via WP Cron','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154587,384965,'action created','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154588,384962,'action started via WP Cron','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154589,384962,'action complete via WP Cron','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154590,384966,'action created','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154591,384963,'action started via WP Cron','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154592,384963,'action complete via WP Cron','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154593,384967,'action created','2024-10-29 13:45:04','2024-10-29 13:45:04'),
(1154594,384964,'action started via WP Cron','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154595,384964,'action complete via WP Cron','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154596,384968,'action created','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154597,384965,'action started via WP Cron','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154598,384965,'action complete via WP Cron','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154599,384969,'action created','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154600,384966,'action started via WP Cron','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154601,384966,'action complete via WP Cron','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154602,384970,'action created','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154603,384967,'action started via WP Cron','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154604,384967,'action complete via WP Cron','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154605,384971,'action created','2024-10-29 13:47:14','2024-10-29 13:47:14'),
(1154606,384968,'action started via WP Cron','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154607,384968,'action complete via WP Cron','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154608,384972,'action created','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154609,384969,'action started via WP Cron','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154610,384969,'action complete via WP Cron','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154611,384973,'action created','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154612,384970,'action started via WP Cron','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154613,384970,'action complete via WP Cron','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154614,384974,'action created','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154615,384971,'action started via WP Cron','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154616,384971,'action complete via WP Cron','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154617,384975,'action created','2024-10-29 13:48:30','2024-10-29 13:48:30'),
(1154618,384972,'action started via WP Cron','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154619,384972,'action complete via WP Cron','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154620,384976,'action created','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154621,384973,'action started via WP Cron','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154622,384973,'action complete via WP Cron','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154623,384977,'action created','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154624,384974,'action started via WP Cron','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154625,384974,'action complete via WP Cron','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154626,384978,'action created','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154627,384975,'action started via WP Cron','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154628,384975,'action complete via WP Cron','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154629,384979,'action created','2024-10-29 13:51:24','2024-10-29 13:51:24'),
(1154630,384976,'action started via WP Cron','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154631,384976,'action complete via WP Cron','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154632,384980,'action created','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154633,384977,'action started via WP Cron','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154634,384977,'action complete via WP Cron','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154635,384981,'action created','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154636,384978,'action started via WP Cron','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154637,384978,'action complete via WP Cron','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154638,384982,'action created','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154639,384979,'action started via WP Cron','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154640,384979,'action complete via WP Cron','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154641,384983,'action created','2024-10-29 13:52:29','2024-10-29 13:52:29'),
(1154642,384980,'action started via WP Cron','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154643,384980,'action complete via WP Cron','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154644,384984,'action created','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154645,384981,'action started via WP Cron','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154646,384981,'action complete via WP Cron','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154647,384985,'action created','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154648,384982,'action started via WP Cron','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154649,384982,'action complete via WP Cron','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154650,384986,'action created','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154651,384983,'action started via WP Cron','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154652,384983,'action complete via WP Cron','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154653,384987,'action created','2024-10-29 13:55:35','2024-10-29 13:55:35'),
(1154654,384984,'action started via WP Cron','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154655,384984,'action complete via WP Cron','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154656,384988,'action created','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154657,384985,'action started via WP Cron','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154658,384985,'action complete via WP Cron','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154659,384989,'action created','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154660,384986,'action started via WP Cron','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154661,384986,'action complete via WP Cron','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154662,384990,'action created','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154663,384987,'action started via WP Cron','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154664,384987,'action complete via WP Cron','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154665,384991,'action created','2024-10-29 13:57:39','2024-10-29 13:57:39'),
(1154666,384988,'action started via WP Cron','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154667,384988,'action complete via WP Cron','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154668,384992,'action created','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154669,384989,'action started via WP Cron','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154670,384989,'action complete via WP Cron','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154671,384993,'action created','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154672,384990,'action started via WP Cron','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154673,384990,'action complete via WP Cron','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154674,384994,'action created','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154675,384991,'action started via WP Cron','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154676,384991,'action complete via WP Cron','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154677,384995,'action created','2024-10-29 13:59:44','2024-10-29 13:59:44'),
(1154678,384992,'action started via WP Cron','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154679,384992,'action complete via WP Cron','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154680,384996,'action created','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154681,384993,'action started via WP Cron','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154682,384993,'action complete via WP Cron','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154683,384997,'action created','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154684,384994,'action started via WP Cron','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154685,384994,'action complete via WP Cron','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154686,384998,'action created','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154687,384995,'action started via WP Cron','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154688,384995,'action complete via WP Cron','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154689,384999,'action created','2024-10-29 14:01:49','2024-10-29 14:01:49'),
(1154690,384996,'action started via WP Cron','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154691,384996,'action complete via WP Cron','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154692,385000,'action created','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154693,384997,'action started via WP Cron','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154694,384997,'action complete via WP Cron','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154695,385001,'action created','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154696,384998,'action started via WP Cron','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154697,384998,'action complete via WP Cron','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154698,385002,'action created','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154699,384999,'action started via WP Cron','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154700,384999,'action complete via WP Cron','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154701,385003,'action created','2024-10-29 14:03:55','2024-10-29 14:03:55'),
(1154702,385000,'action started via WP Cron','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154703,385000,'action complete via WP Cron','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154704,385004,'action created','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154705,385001,'action started via WP Cron','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154706,385001,'action complete via WP Cron','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154707,385005,'action created','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154708,385002,'action started via WP Cron','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154709,385002,'action complete via WP Cron','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154710,385006,'action created','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154711,385003,'action started via WP Cron','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154712,385003,'action complete via WP Cron','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154713,385007,'action created','2024-10-29 14:06:00','2024-10-29 14:06:00'),
(1154714,385004,'action started via WP Cron','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154715,385004,'action complete via WP Cron','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154716,385008,'action created','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154717,385005,'action started via WP Cron','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154718,385005,'action complete via WP Cron','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154719,385009,'action created','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154720,385006,'action started via WP Cron','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154721,385006,'action complete via WP Cron','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154722,385010,'action created','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154723,385007,'action started via WP Cron','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154724,385007,'action complete via WP Cron','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154725,385011,'action created','2024-10-29 14:08:04','2024-10-29 14:08:04'),
(1154726,385008,'action started via WP Cron','2024-10-29 14:09:55','2024-10-29 14:09:55'),
(1154727,385008,'action complete via WP Cron','2024-10-29 14:09:55','2024-10-29 14:09:55'),
(1154728,385012,'action created','2024-10-29 14:09:55','2024-10-29 14:09:55'),
(1154729,385009,'action started via WP Cron','2024-10-29 14:09:55','2024-10-29 14:09:55'),
(1154730,385009,'action complete via WP Cron','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154731,385013,'action created','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154732,385010,'action started via WP Cron','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154733,385010,'action complete via WP Cron','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154734,385014,'action created','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154735,385011,'action started via WP Cron','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154736,385011,'action complete via WP Cron','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154737,385015,'action created','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154738,384889,'action started via WP Cron','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154739,384889,'action complete via WP Cron','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154740,385016,'action created','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154741,384890,'action started via WP Cron','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154742,384890,'action complete via WP Cron','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154743,385017,'action created','2024-10-29 14:09:56','2024-10-29 14:09:56'),
(1154744,385012,'action started via WP Cron','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154745,385012,'action complete via WP Cron','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154746,385018,'action created','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154747,385013,'action started via WP Cron','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154748,385013,'action complete via WP Cron','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154749,385019,'action created','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154750,385014,'action started via WP Cron','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154751,385014,'action complete via WP Cron','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154752,385020,'action created','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154753,385015,'action started via WP Cron','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154754,385015,'action complete via WP Cron','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154755,385021,'action created','2024-10-29 14:12:15','2024-10-29 14:12:15'),
(1154756,385018,'action started via WP Cron','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154757,385018,'action complete via WP Cron','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154758,385022,'action created','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154759,385019,'action started via WP Cron','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154760,385019,'action complete via WP Cron','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154761,385023,'action created','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154762,385020,'action started via WP Cron','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154763,385020,'action complete via WP Cron','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154764,385024,'action created','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154765,385021,'action started via WP Cron','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154766,385021,'action complete via WP Cron','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154767,385025,'action created','2024-10-29 14:14:21','2024-10-29 14:14:21'),
(1154768,385022,'action started via WP Cron','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154769,385022,'action complete via WP Cron','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154770,385026,'action created','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154771,385023,'action started via WP Cron','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154772,385023,'action complete via WP Cron','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154773,385027,'action created','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154774,385024,'action started via WP Cron','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154775,385024,'action complete via WP Cron','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154776,385028,'action created','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154777,385025,'action started via WP Cron','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154778,385025,'action complete via WP Cron','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154779,385029,'action created','2024-10-29 14:16:25','2024-10-29 14:16:25'),
(1154780,385026,'action started via WP Cron','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154781,385026,'action complete via WP Cron','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154782,385030,'action created','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154783,385027,'action started via WP Cron','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154784,385027,'action complete via WP Cron','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154785,385031,'action created','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154786,385028,'action started via WP Cron','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154787,385028,'action complete via WP Cron','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154788,385032,'action created','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154789,385029,'action started via WP Cron','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154790,385029,'action complete via WP Cron','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154791,385033,'action created','2024-10-29 14:17:50','2024-10-29 14:17:50'),
(1154792,385030,'action started via WP Cron','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154793,385030,'action complete via WP Cron','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154794,385034,'action created','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154795,385031,'action started via WP Cron','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154796,385031,'action complete via WP Cron','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154797,385035,'action created','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154798,385032,'action started via WP Cron','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154799,385032,'action complete via WP Cron','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154800,385036,'action created','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154801,385033,'action started via WP Cron','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154802,385033,'action complete via WP Cron','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154803,385037,'action created','2024-10-29 14:20:36','2024-10-29 14:20:36'),
(1154804,385034,'action started via WP Cron','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154805,385034,'action complete via WP Cron','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154806,385038,'action created','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154807,385035,'action started via WP Cron','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154808,385035,'action complete via WP Cron','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154809,385039,'action created','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154810,385036,'action started via WP Cron','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154811,385036,'action complete via WP Cron','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154812,385040,'action created','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154813,385037,'action started via WP Cron','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154814,385037,'action complete via WP Cron','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154815,385041,'action created','2024-10-29 14:22:42','2024-10-29 14:22:42'),
(1154816,385038,'action started via WP Cron','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154817,385038,'action complete via WP Cron','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154818,385042,'action created','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154819,385039,'action started via WP Cron','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154820,385039,'action complete via WP Cron','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154821,385043,'action created','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154822,385040,'action started via WP Cron','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154823,385040,'action complete via WP Cron','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154824,385044,'action created','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154825,385041,'action started via WP Cron','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154826,385041,'action complete via WP Cron','2024-10-29 14:24:46','2024-10-29 14:24:46'),
(1154827,385045,'action created','2024-10-29 14:24:46','2024-10-29 14:24:46');
/*!40000 ALTER TABLE `wphu_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_addonlibrary_addons`
--

DROP TABLE IF EXISTS `wphu_addonlibrary_addons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_addonlibrary_addons` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `name` varchar(128) DEFAULT NULL,
  `alias` varchar(128) DEFAULT NULL,
  `addontype` varchar(128) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `ordering` int(11) NOT NULL,
  `templates` mediumtext DEFAULT NULL,
  `config` mediumtext DEFAULT NULL,
  `catid` int(11) DEFAULT NULL,
  `is_active` tinyint(4) DEFAULT NULL,
  `test_slot1` text DEFAULT NULL,
  `test_slot2` text DEFAULT NULL,
  `test_slot3` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_addonlibrary_addons`
--

LOCK TABLES `wphu_addonlibrary_addons` WRITE;
/*!40000 ALTER TABLE `wphu_addonlibrary_addons` DISABLE KEYS */;
INSERT INTO `wphu_addonlibrary_addons` VALUES
(1,'Bubble Float','bubble_float_bg_addon','bubble_float','bg_addon','',1,'{\"html\":\"<div class=\\\"bubbles\\\" id=\\\"{{uc_id}}\\\">\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n  <div class=\\\"bubble\\\"><\\/div>\\n<\\/div>\",\"css\":\"#{{uc_id}} .bubble::before {\\n  background: {{bubbles_color}};\\n}\"}','{\"options\":{\"enable_items\":\"false\",\"items_section_title\":\"\",\"path_assets\":\"bubble_float\",\"js_as_module\":false,\"addon_icon\":\"\",\"dynamic_addon\":\"false\",\"dynamic_post_enable_customfields\":\"false\",\"dynamic_post_enable_category\":\"false\",\"description\":\"\",\"link_resource\":\"\",\"link_preview\":\"https:\\/\\/unlimited-elements.com\\/bubble-float-background-for-elementor\\/\",\"show_small_icon\":\"true\",\"preview_size_unite_selected_text\":\"Full Size\",\"preview_size\":\"full\",\"preview_custom_width\":\"\",\"preview_bgcol\":\"#ffffff\",\"is_free_addon\":true},\"params\":[{\"type\":\"uc_colorpicker\",\"title\":\"Bubbles Color\",\"name\":\"bubbles_color\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"rgba(0, 225, 255, 0.50)\",\"selector\":\"\",\"selector_value\":\"\",\"show_more_selectors\":false,\"selector2\":\"\",\"selector2_value\":\"\",\"selector3\":\"\",\"selector3_value\":\"\"}],\"params_items\":[{\"type\":\"uc_textfield\",\"title\":\"Title\",\"name\":\"title\",\"description\":\"\",\"default_value\":\"\",\"limited_edit\":true}],\"includes\":{\"js\":[],\"jslib\":[],\"css\":[{\"url\":\"bubble_float\\/style.css\",\"condition\":null,\"params\":null}]},\"variables_item\":[],\"variables_main\":[],\"params_cats\":\"\"}',1,1,NULL,NULL,NULL),
(2,'Animated Gradient Background','gradient_animation_bg_addon','gradient_animation','bg_addon','The Animated Gradient Background for Elementor allows you to design beautiful gradient backgrounds for your sections. Create unique effects by changing the gradient angle and applying a variety of color choices!',2,'{\"html\":\"<div id=\\\"{{uc_id}}\\\">\\n<\\/div>\",\"css\":\"#{{uc_id}} {\\n\\tbackground: linear-gradient({{angle_nounit}}deg, {{color_one}}, {{color_two}}, {{color_three}}, {{color_four}});\\n\\tbackground-size: 400% 400%;\\n\\tanimation: {{uc_id}}gradient {{duration}}s ease infinite;\\n\\tposition:absolute;\\n\\ttop:0px;\\n\\tleft:0px;\\n\\tbottom:0px;\\n\\tright:0px;\\n}\\n\\n@keyframes {{uc_id}}gradient {\\n\\t0% {\\n\\t\\tbackground-position: 0% 50%;\\n\\t}\\n\\t50% {\\n\\t\\tbackground-position: 100% 50%;\\n\\t}\\n\\t100% {\\n\\t\\tbackground-position: 0% 50%;\\n\\t}\\n}\"}','{\"options\":{\"enable_items\":\"false\",\"items_section_title\":\"\",\"items_section_heading\":\"\",\"path_assets\":\"gradient_animation\",\"js_as_module\":false,\"addon_icon\":\"\",\"dynamic_addon\":\"false\",\"dynamic_post_enable_customfields\":\"false\",\"dynamic_post_enable_category\":\"false\",\"description\":\"The Animated Gradient Background for Elementor allows you to design beautiful gradient backgrounds for your sections. Create unique effects by changing the gradient angle and applying a variety of color choices!\",\"link_resource\":\"\",\"link_preview\":\"https:\\/\\/unlimited-elements.com\\/animated-gradient-background-widget-for-elementor\\/\",\"show_small_icon\":\"true\",\"preview_size_unite_selected_text\":\"Full Size\",\"preview_size\":\"full\",\"preview_custom_width\":\"\",\"preview_bgcol\":\"#ffffff\",\"special\":\"\",\"is_free_addon\":true,\"is_new_addon\":false,\"is_last_updated\":false,\"is_trending\":false},\"params\":[{\"type\":\"uc_colorpicker\",\"title\":\"Color One\",\"name\":\"color_one\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"#ee7752\",\"selector\":\"\",\"selector_value\":\"\",\"show_more_selectors\":false,\"selector2\":\"\",\"selector2_value\":\"\",\"selector3\":\"\",\"selector3_value\":\"\"},{\"type\":\"uc_colorpicker\",\"title\":\"Color Two\",\"name\":\"color_two\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"#e73c7e\",\"selector\":\"\",\"selector_value\":\"\",\"show_more_selectors\":false,\"selector2\":\"\",\"selector2_value\":\"\",\"selector3\":\"\",\"selector3_value\":\"\"},{\"type\":\"uc_colorpicker\",\"title\":\"Color Three\",\"name\":\"color_three\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"#23a6d5\",\"selector\":\"\",\"selector_value\":\"\",\"show_more_selectors\":false,\"selector2\":\"\",\"selector2_value\":\"\",\"selector3\":\"\",\"selector3_value\":\"\"},{\"type\":\"uc_colorpicker\",\"title\":\"Color Four\",\"name\":\"color_four\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"#23d5ab\",\"selector\":\"\",\"selector_value\":\"\",\"show_more_selectors\":false,\"selector2\":\"\",\"selector2_value\":\"\",\"selector3\":\"\",\"selector3_value\":\"\"},{\"type\":\"uc_number\",\"title\":\"Duration\",\"name\":\"duration\",\"description\":\"In Seconds \",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"15\",\"unit\":\"\",\"unit_custom\":\"\",\"min_value\":\"\",\"max_value\":\"\",\"step\":\"\",\"is_responsive\":false,\"default_value_tablet\":\"\",\"default_value_mobile\":\"\",\"selector\":\"\",\"selector_value\":\"\",\"show_more_selectors\":false,\"selector2\":\"\",\"selector2_value\":\"\",\"selector3\":\"\",\"selector3_value\":\"\"},{\"type\":\"uc_slider\",\"title\":\"Angle\",\"name\":\"angle\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":[],\"condition_attribute2\":null,\"condition_operator2\":\"equal\",\"condition_value2\":null,\"label_block\":false,\"tabname\":\"\",\"admin_label\":false,\"default_value\":\"-45\",\"min\":\"-360\",\"max\":\"360\",\"step\":\"1\",\"units\":\"px\",\"is_responsive\":false,\"default_value_tablet\":\"\",\"default_value_mobile\":\"\",\"selector\":\"\",\"selector_value\":\"width: {{SIZE}}{{UNIT}};\",\"show_more_selectors\":false,\"selector2\":\"\",\"selector2_value\":\"width: {{SIZE}}{{UNIT}};\",\"selector3\":\"\",\"selector3_value\":\"width: {{SIZE}}{{UNIT}};\"}],\"params_items\":[{\"type\":\"uc_textfield\",\"title\":\"Title\",\"name\":\"title\",\"description\":\"\",\"default_value\":\"\",\"limited_edit\":true}],\"includes\":{\"js\":[],\"jslib\":[],\"css\":[]},\"variables_item\":[],\"variables_main\":[],\"params_cats\":\"\"}',1,1,NULL,NULL,NULL),
(3,'Wave Animation','wave_animation_bg_addon','wave_animation','bg_addon','',3,'{\"html\":\"<div class=\\\"waveWrapper waveAnimation\\\">\\n  <div class=\\\"waveWrapperInner bgTop\\\">\\n    <div class=\\\"wave waveTop\\\" style=\\\"background-image: url(\'{{wave_top}}\')\\\"><\\/div>\\n  <\\/div>\\n  <div class=\\\"waveWrapperInner bgMiddle\\\">\\n    <div class=\\\"wave waveMiddle\\\" style=\\\"background-image: url(\'{{wave_middle}}\')\\\"><\\/div>\\n  <\\/div>\\n  <div class=\\\"waveWrapperInner bgBottom\\\">\\n    <div class=\\\"wave waveBottom\\\" style=\\\"background-image: url(\'{{wave_bottom}}\')\\\"><\\/div>\\n  <\\/div>\\n<\\/div>\",\"css\":\"@keyframes move_wave {\\n    0% {\\n        transform: translateX(0) translateZ(0) scaleY(1)\\n    }\\n    50% {\\n        transform: translateX(-25%) translateZ(0) scaleY(0.55)\\n    }\\n    100% {\\n        transform: translateX(-50%) translateZ(0) scaleY(1)\\n    }\\n}\\n.waveWrapper {\\n    overflow: hidden;\\n    position: absolute;\\n    left: 0;\\n    right: 0;\\n    bottom: 0;\\n    top: 0;\\n    margin: auto;\\n}\\n.waveWrapperInner {\\n    position: absolute;\\n    width: 100%;\\n    overflow: hidden;\\n    height: 100%;\\n    bottom: -1px;\\n}\\n.bgTop {\\n    z-index: 15;\\n    opacity: 0.5;\\n}\\n.bgMiddle {\\n    z-index: 10;\\n    opacity: 0.75;\\n}\\n.bgBottom {\\n    z-index: 5;\\n}\\n.wave {\\n    position: absolute;\\n    left: 0;\\n    width: 200%;\\n    height: 100%;\\n    background-repeat: repeat no-repeat;\\n    background-position: 0 bottom;\\n    transform-origin: center bottom;\\n}\\n.waveTop {\\n    background-size: 50% 100px;\\n}\\n.waveAnimation .waveTop {\\n  animation: move-wave 3s;\\n   -webkit-animation: move-wave 3s;\\n   -webkit-animation-delay: 1s;\\n   animation-delay: 1s;\\n}\\n.waveMiddle {\\n    background-size: 50% 120px;\\n}\\n.waveAnimation .waveMiddle {\\n    animation: move_wave 10s linear infinite;\\n}\\n.waveBottom {\\n    background-size: 50% 100px;\\n}\\n.waveAnimation .waveBottom {\\n    animation: move_wave 15s linear infinite;\\n}\"}','{\"options\":{\"enable_items\":\"false\",\"items_section_title\":\"\",\"path_assets\":\"wave_animation\",\"js_as_module\":false,\"addon_icon\":\"\",\"dynamic_addon\":\"false\",\"dynamic_post_enable_customfields\":\"false\",\"dynamic_post_enable_category\":\"false\",\"description\":\"\",\"link_resource\":\"\",\"link_preview\":\"https:\\/\\/unlimited-elements.com\\/waves-animation-background-for-elementor\\/\",\"show_small_icon\":\"true\",\"preview_size_unite_selected_text\":\"Full Size\",\"preview_size\":\"full\",\"preview_custom_width\":\"\",\"preview_bgcol\":\"#ffffff\",\"is_free_addon\":true},\"params\":[{\"type\":\"uc_image\",\"title\":\"Wave Top\",\"name\":\"wave_top\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"[url_assets]\\/wave-top.png\",\"add_image_sizes\":false},{\"type\":\"uc_image\",\"title\":\"Wave Middle\",\"name\":\"wave_middle\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"[url_assets]\\/wave-mid.png\",\"add_image_sizes\":false},{\"type\":\"uc_image\",\"title\":\"Wave Bottom\",\"name\":\"wave_bottom\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"[url_assets]\\/wave-bot.png\",\"add_image_sizes\":false}],\"params_items\":[{\"type\":\"uc_textfield\",\"title\":\"Title\",\"name\":\"title\",\"description\":\"\",\"default_value\":\"\",\"limited_edit\":true}],\"includes\":{\"js\":[],\"jslib\":[],\"css\":[]},\"variables_item\":[],\"variables_main\":[],\"params_cats\":\"\"}',1,1,NULL,NULL,NULL),
(4,'Snow Flakes','blox_css_snow_bg_bg_addon','blox_css_snow_bg','bg_addon','',4,'{\"html\":\"<div id=\\\"{{uc_id}}\\\" class=\\\"uc-snow-bg\\\"><\\/div>\",\"css\":\"#{{uc_id}}.uc-snow-bg{\\n    background-color: transparent;\\n    -webkit-animation: snow-animation {{animation_speed}}s linear infinite;\\n    -moz-animation: snow-animation {{animation_speed}}s linear infinite;\\n    -ms-animation: snow-animation {{animation_speed}}s linear infinite;\\n    animation: snow-animation {{animation_speed}}s linear infinite;\\n    top: 0px;\\n    left: 0px;\\n\\tpointer-events: none;\\n\\tposition: absolute;\\n    width:100%;\\n    height:100%;\\n    z-index:0;\\n\\tbackground-image: url(\'{{uc_assets_url}}snow1.png\'), url(\'{{uc_assets_url}}snow2.png\');\\n}\"}','{\"options\":{\"enable_items\":\"false\",\"items_section_title\":\"\",\"items_section_heading\":\"\",\"path_assets\":\"blox_css_snow_bg\",\"js_as_module\":false,\"addon_icon\":\"\",\"dynamic_addon\":\"false\",\"dynamic_post_enable_customfields\":\"false\",\"dynamic_post_enable_category\":\"false\",\"description\":\"\",\"link_resource\":\"\",\"link_preview\":\"https:\\/\\/unlimited-elements.com\\/elementor-snow-flakes-background\\/\",\"show_small_icon\":\"true\",\"preview_size_unite_selected_text\":\"Full Size\",\"preview_size\":\"full\",\"preview_custom_width\":\"\",\"preview_bgcol\":\"#b75e5e\",\"is_free_addon\":true,\"is_new_addon\":false,\"is_last_updated\":false,\"is_trending\":false},\"params\":[{\"type\":\"uc_number\",\"title\":\"Animation Duration (sec)\",\"name\":\"animation_speed\",\"description\":\"The lower the number the higher the speed\",\"admin_label\":\"false\",\"default_value\":\"20\",\"unit\":\"\",\"unit_custom\":\"sec\"}],\"params_items\":[{\"type\":\"uc_textfield\",\"title\":\"Title\",\"name\":\"title\",\"description\":\"\",\"default_value\":\"\",\"limited_edit\":\"true\"}],\"includes\":{\"js\":[],\"jslib\":[],\"css\":[{\"url\":\"blox_css_snow_bg\\/snow.css\",\"condition\":null,\"params\":null}]},\"variables_item\":[],\"variables_main\":[],\"params_cats\":\"\"}',1,1,NULL,NULL,NULL),
(5,'Clouds','clouds_bg_addon','clouds','bg_addon','',5,'{\"html\":\"<div id=\\\"{{uc_id}}\\\">\\n  <div id=\\\"cloud-intro{{uc_id}}\\\"><\\/div>\\n<\\/div>\",\"css\":\"#{{uc_id}}{\\n  position:absolute;\\n  top:0;\\n  left:0;\\n  right:0;\\n  bottom:0;\\n  overflow: hidden;\\n}\\n\\n#{{uc_id}} #cloud-intro{{uc_id}}{\\n  position: relative;\\n  height: 100%;\\n  background: url({{image_one}});\\n  background: url({{image_two}}) 0 200px,\\n              url({{image_three}}) 0 300px,\\n              url({{image_four}}) 100px 250px;\\n\\tanimation: wind {{duration}}s linear infinite;\\n}\\n\\n@keyframes wind{\\n  0% {\\n    background-position: 0 200px, 0 300px, 100px 250px;\\n  }\\n  100% {\\n    background-position: 1000px 200px, 1200px 300px, 1100px 250px;\\n  }\\n\\n}\"}','{\"options\":{\"enable_items\":\"false\",\"items_section_title\":\"\",\"path_assets\":\"clouds\",\"js_as_module\":false,\"addon_icon\":\"\",\"dynamic_addon\":\"false\",\"dynamic_post_enable_customfields\":\"false\",\"dynamic_post_enable_category\":\"false\",\"description\":\"\",\"link_resource\":\"\",\"link_preview\":\"https:\\/\\/unlimited-elements.com\\/clouds-background-for-elementor\\/\",\"show_small_icon\":\"true\",\"preview_size_unite_selected_text\":\"Full Size\",\"preview_size\":\"full\",\"preview_custom_width\":\"\",\"preview_bgcol\":\"#00cbe4\",\"is_free_addon\":true},\"params\":[{\"type\":\"uc_number\",\"title\":\"Duration\",\"name\":\"duration\",\"description\":\"In Seconds\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"20\",\"unit\":\"\",\"unit_custom\":\"\",\"min_value\":\"\",\"max_value\":\"\",\"step\":\"\",\"is_responsive\":false,\"default_value_tablet\":\"\",\"default_value_mobile\":\"\",\"selector\":\"\",\"selector_value\":\"\",\"show_more_selectors\":false,\"selector2\":\"\",\"selector2_value\":\"\",\"selector3\":\"\",\"selector3_value\":\"\"},{\"type\":\"uc_image\",\"title\":\"Image One\",\"name\":\"image_one\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"[url_assets]\\/1.png\",\"add_image_sizes\":false},{\"type\":\"uc_image\",\"title\":\"Image Two\",\"name\":\"image_two\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"[url_assets]\\/2.png\",\"add_image_sizes\":false},{\"type\":\"uc_image\",\"title\":\"Image Three\",\"name\":\"image_three\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"[url_assets]\\/3.png\",\"add_image_sizes\":false},{\"type\":\"uc_image\",\"title\":\"Image Four\",\"name\":\"image_four\",\"description\":\"\",\"enable_condition\":false,\"condition_attribute\":null,\"condition_operator\":\"equal\",\"condition_value\":null,\"admin_label\":false,\"default_value\":\"[url_assets]\\/4.png\",\"add_image_sizes\":false}],\"params_items\":[{\"type\":\"uc_textfield\",\"title\":\"Title\",\"name\":\"title\",\"description\":\"\",\"default_value\":\"\",\"limited_edit\":true}],\"includes\":{\"js\":[],\"jslib\":[],\"css\":[]},\"variables_item\":[],\"variables_main\":[],\"params_cats\":\"\"}',1,1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wphu_addonlibrary_addons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_addonlibrary_categories`
--

DROP TABLE IF EXISTS `wphu_addonlibrary_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_addonlibrary_categories` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `alias` varchar(255) DEFAULT NULL,
  `ordering` int(11) NOT NULL,
  `params` text NOT NULL,
  `type` tinytext DEFAULT NULL,
  `parent_id` int(9) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_addonlibrary_categories`
--

LOCK TABLES `wphu_addonlibrary_categories` WRITE;
/*!40000 ALTER TABLE `wphu_addonlibrary_categories` DISABLE KEYS */;
INSERT INTO `wphu_addonlibrary_categories` VALUES
(1,'Main','main',1,'','bg_addon',NULL);
/*!40000 ALTER TABLE `wphu_addonlibrary_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_appointments`
--

DROP TABLE IF EXISTS `wphu_amelia_appointments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_appointments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `status` enum('approved','pending','canceled','rejected') DEFAULT NULL,
  `bookingStart` datetime NOT NULL,
  `bookingEnd` datetime NOT NULL,
  `notifyParticipants` tinyint(1) NOT NULL,
  `serviceId` int(11) NOT NULL,
  `packageId` int(11) DEFAULT NULL,
  `providerId` int(11) NOT NULL,
  `locationId` int(11) DEFAULT NULL,
  `internalNotes` text DEFAULT NULL,
  `googleCalendarEventId` varchar(255) DEFAULT NULL,
  `googleMeetUrl` varchar(255) DEFAULT NULL,
  `outlookCalendarEventId` varchar(255) DEFAULT NULL,
  `zoomMeeting` text DEFAULT NULL,
  `lessonSpace` text DEFAULT NULL,
  `parentId` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_appointments`
--

LOCK TABLES `wphu_amelia_appointments` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_appointments` DISABLE KEYS */;
INSERT INTO `wphu_amelia_appointments` VALUES
(1,'approved','2021-09-07 15:30:00','2021-09-07 15:35:00',1,1,NULL,1,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL),
(2,'approved','2021-09-23 15:35:00','2021-09-23 15:40:00',1,1,NULL,1,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL),
(3,'approved','2021-09-30 15:32:00','2021-09-30 15:37:00',1,1,NULL,1,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL),
(4,'approved','2021-09-29 15:36:00','2021-09-29 15:41:00',1,1,NULL,1,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wphu_amelia_appointments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_cache`
--

DROP TABLE IF EXISTS `wphu_amelia_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_cache` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `paymentId` int(11) DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_cache`
--

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

--
-- Table structure for table `wphu_amelia_categories`
--

DROP TABLE IF EXISTS `wphu_amelia_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `status` enum('hidden','visible','disabled') NOT NULL DEFAULT 'visible',
  `name` varchar(255) NOT NULL DEFAULT '',
  `position` int(11) NOT NULL,
  `translations` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_categories`
--

LOCK TABLES `wphu_amelia_categories` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_categories` DISABLE KEYS */;
INSERT INTO `wphu_amelia_categories` VALUES
(1,'visible','Health Consultation',1,NULL);
/*!40000 ALTER TABLE `wphu_amelia_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_coupons`
--

DROP TABLE IF EXISTS `wphu_amelia_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_coupons` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL,
  `discount` double NOT NULL,
  `deduction` double NOT NULL,
  `limit` double NOT NULL,
  `customerLimit` double NOT NULL DEFAULT 0,
  `status` enum('hidden','visible') NOT NULL,
  `notificationInterval` int(11) NOT NULL DEFAULT 0,
  `notificationRecurring` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_coupons`
--

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

--
-- Table structure for table `wphu_amelia_coupons_to_events`
--

DROP TABLE IF EXISTS `wphu_amelia_coupons_to_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_coupons_to_events` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `couponId` int(11) NOT NULL,
  `eventId` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_coupons_to_events`
--

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

--
-- Table structure for table `wphu_amelia_coupons_to_services`
--

DROP TABLE IF EXISTS `wphu_amelia_coupons_to_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_coupons_to_services` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `couponId` int(11) NOT NULL,
  `serviceId` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_coupons_to_services`
--

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

--
-- Table structure for table `wphu_amelia_custom_fields`
--

DROP TABLE IF EXISTS `wphu_amelia_custom_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_custom_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` text NOT NULL DEFAULT '',
  `type` enum('text','text-area','select','checkbox','radio','content','file','datepicker') NOT NULL DEFAULT 'text',
  `required` tinyint(1) NOT NULL DEFAULT 0,
  `position` int(11) NOT NULL,
  `translations` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_custom_fields`
--

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

--
-- Table structure for table `wphu_amelia_custom_fields_events`
--

DROP TABLE IF EXISTS `wphu_amelia_custom_fields_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_custom_fields_events` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customFieldId` int(11) NOT NULL,
  `eventId` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_custom_fields_events`
--

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

--
-- Table structure for table `wphu_amelia_custom_fields_options`
--

DROP TABLE IF EXISTS `wphu_amelia_custom_fields_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_custom_fields_options` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customFieldId` int(11) NOT NULL,
  `label` varchar(255) NOT NULL DEFAULT '',
  `position` int(11) NOT NULL,
  `translations` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_custom_fields_options`
--

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

--
-- Table structure for table `wphu_amelia_custom_fields_services`
--

DROP TABLE IF EXISTS `wphu_amelia_custom_fields_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_custom_fields_services` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customFieldId` int(11) NOT NULL,
  `serviceId` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_custom_fields_services`
--

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

--
-- Table structure for table `wphu_amelia_customer_bookings`
--

DROP TABLE IF EXISTS `wphu_amelia_customer_bookings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_customer_bookings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `appointmentId` int(11) DEFAULT NULL,
  `customerId` int(11) NOT NULL,
  `status` enum('approved','pending','canceled','rejected') DEFAULT NULL,
  `price` double NOT NULL,
  `persons` int(11) NOT NULL,
  `couponId` int(11) DEFAULT NULL,
  `token` varchar(10) DEFAULT NULL,
  `customFields` text DEFAULT NULL,
  `info` text DEFAULT NULL,
  `utcOffset` int(3) DEFAULT NULL,
  `aggregatedPrice` tinyint(1) DEFAULT 1,
  `packageCustomerServiceId` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_customer_bookings`
--

LOCK TABLES `wphu_amelia_customer_bookings` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_customer_bookings` DISABLE KEYS */;
INSERT INTO `wphu_amelia_customer_bookings` VALUES
(1,1,2,'approved',0,1,NULL,'a59896f8dc','{}',NULL,NULL,1,NULL),
(2,2,1,'approved',0,1,NULL,'b3f6ed7889',NULL,'{\"firstName\":\"Ivan\",\"lastName\":\"Kulongo\",\"phone\":\"+449000788666554\",\"locale\":\"en_US\",\"timeZone\":\"Europe\\/London\",\"urlParams\":null}',60,1,NULL),
(3,3,3,'approved',0,1,NULL,'e526554544',NULL,'{\"firstName\":\"Ivan\",\"lastName\":\"Kulongo\",\"phone\":\"+449800098878787\",\"locale\":\"en_US\",\"timeZone\":\"Europe\\/London\",\"urlParams\":null}',60,1,NULL),
(4,4,3,'approved',0,1,NULL,'e9b9308cef',NULL,'{\"firstName\":\"Ivan\",\"lastName\":\"Kulongo\",\"phone\":\"+449800907897879\",\"locale\":\"en_US\",\"timeZone\":\"Europe\\/London\",\"urlParams\":null}',60,1,NULL);
/*!40000 ALTER TABLE `wphu_amelia_customer_bookings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_customer_bookings_to_events_periods`
--

DROP TABLE IF EXISTS `wphu_amelia_customer_bookings_to_events_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_customer_bookings_to_events_periods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customerBookingId` int(11) NOT NULL,
  `eventPeriodId` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bookingEventPeriod` (`customerBookingId`,`eventPeriodId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_customer_bookings_to_events_periods`
--

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

--
-- Table structure for table `wphu_amelia_customer_bookings_to_extras`
--

DROP TABLE IF EXISTS `wphu_amelia_customer_bookings_to_extras`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_customer_bookings_to_extras` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customerBookingId` int(11) NOT NULL,
  `extraId` int(11) NOT NULL,
  `quantity` int(11) NOT NULL,
  `price` double NOT NULL,
  `aggregatedPrice` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bookingExtra` (`customerBookingId`,`extraId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_customer_bookings_to_extras`
--

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

--
-- Table structure for table `wphu_amelia_events`
--

DROP TABLE IF EXISTS `wphu_amelia_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_events` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parentId` int(11) DEFAULT NULL,
  `name` varchar(255) NOT NULL DEFAULT '',
  `status` enum('approved','pending','canceled','rejected') NOT NULL,
  `bookingOpens` datetime DEFAULT NULL,
  `bookingCloses` datetime DEFAULT NULL,
  `bookingOpensRec` enum('same','calculate') DEFAULT 'same',
  `bookingClosesRec` enum('same','calculate') DEFAULT 'same',
  `recurringCycle` enum('daily','weekly','monthly','yearly') DEFAULT NULL,
  `recurringOrder` int(11) DEFAULT NULL,
  `recurringInterval` int(11) DEFAULT 1,
  `recurringMonthly` enum('each','on') DEFAULT 'each',
  `monthlyDate` datetime DEFAULT NULL,
  `monthlyOnRepeat` enum('first','second','third','fourth','last') DEFAULT NULL,
  `monthlyOnDay` enum('monday','tuesday','wednesday','thursday','friday','saturday','sunday') DEFAULT NULL,
  `recurringUntil` datetime DEFAULT NULL,
  `maxCapacity` int(11) NOT NULL,
  `price` double NOT NULL,
  `locationId` int(11) DEFAULT NULL,
  `customLocation` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `color` varchar(255) DEFAULT NULL,
  `show` tinyint(1) NOT NULL DEFAULT 1,
  `notifyParticipants` tinyint(1) NOT NULL,
  `created` datetime NOT NULL,
  `settings` text DEFAULT NULL,
  `zoomUserId` varchar(255) DEFAULT NULL,
  `bringingAnyone` tinyint(1) DEFAULT 1,
  `bookMultipleTimes` tinyint(1) DEFAULT 1,
  `translations` text DEFAULT NULL,
  `depositPayment` enum('disabled','fixed','percentage') DEFAULT 'disabled',
  `depositPerPerson` tinyint(1) DEFAULT 1,
  `fullPayment` tinyint(1) DEFAULT 0,
  `deposit` double DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_events`
--

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

--
-- Table structure for table `wphu_amelia_events_periods`
--

DROP TABLE IF EXISTS `wphu_amelia_events_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_events_periods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `eventId` int(11) NOT NULL,
  `periodStart` datetime NOT NULL,
  `periodEnd` datetime NOT NULL,
  `zoomMeeting` text DEFAULT NULL,
  `lessonSpace` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_events_periods`
--

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

--
-- Table structure for table `wphu_amelia_events_tags`
--

DROP TABLE IF EXISTS `wphu_amelia_events_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_events_tags` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `eventId` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_events_tags`
--

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

--
-- Table structure for table `wphu_amelia_events_to_providers`
--

DROP TABLE IF EXISTS `wphu_amelia_events_to_providers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_events_to_providers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `eventId` int(11) NOT NULL,
  `userId` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_events_to_providers`
--

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

--
-- Table structure for table `wphu_amelia_extras`
--

DROP TABLE IF EXISTS `wphu_amelia_extras`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_extras` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `description` text DEFAULT NULL,
  `price` double NOT NULL,
  `maxQuantity` int(11) NOT NULL,
  `duration` int(11) DEFAULT NULL,
  `serviceId` int(11) NOT NULL,
  `position` int(11) NOT NULL,
  `aggregatedPrice` tinyint(1) DEFAULT NULL,
  `translations` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_extras`
--

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

--
-- Table structure for table `wphu_amelia_galleries`
--

DROP TABLE IF EXISTS `wphu_amelia_galleries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_galleries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `entityId` int(11) NOT NULL,
  `entityType` enum('service','event','package') NOT NULL,
  `pictureFullPath` varchar(767) DEFAULT NULL,
  `pictureThumbPath` varchar(767) DEFAULT NULL,
  `position` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_galleries`
--

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

--
-- Table structure for table `wphu_amelia_locations`
--

DROP TABLE IF EXISTS `wphu_amelia_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_locations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `status` enum('hidden','visible','disabled') NOT NULL DEFAULT 'visible',
  `name` varchar(255) NOT NULL DEFAULT '',
  `description` text DEFAULT NULL,
  `address` varchar(255) NOT NULL,
  `phone` varchar(63) NOT NULL,
  `latitude` decimal(8,6) NOT NULL,
  `longitude` decimal(9,6) NOT NULL,
  `pictureFullPath` varchar(767) DEFAULT NULL,
  `pictureThumbPath` varchar(767) DEFAULT NULL,
  `pin` mediumtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_locations`
--

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

--
-- Table structure for table `wphu_amelia_locations_views`
--

DROP TABLE IF EXISTS `wphu_amelia_locations_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_locations_views` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `locationId` int(11) NOT NULL,
  `date` date NOT NULL,
  `views` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_locations_views`
--

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

--
-- Table structure for table `wphu_amelia_notifications`
--

DROP TABLE IF EXISTS `wphu_amelia_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `customName` varchar(255) DEFAULT NULL,
  `status` enum('enabled','disabled') NOT NULL DEFAULT 'enabled',
  `type` enum('email','sms') NOT NULL,
  `entity` enum('appointment','event') NOT NULL DEFAULT 'appointment',
  `time` time DEFAULT NULL,
  `timeBefore` int(11) DEFAULT NULL,
  `timeAfter` int(11) DEFAULT NULL,
  `sendTo` enum('customer','provider') NOT NULL,
  `subject` varchar(255) NOT NULL DEFAULT '',
  `content` text DEFAULT NULL,
  `translations` text DEFAULT NULL,
  `sendOnlyMe` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_notifications`
--

LOCK TABLES `wphu_amelia_notifications` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_notifications` DISABLE KEYS */;
INSERT INTO `wphu_amelia_notifications` VALUES
(1,'customer_appointment_approved',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Approved','Dear <strong>%customer_full_name%</strong>,<br><br>You have successfully scheduled\n                     <strong>%service_name%</strong> appointment with <strong>%employee_full_name%</strong>. We are \n                     waiting you at <strong>%location_address% </strong>on <strong>%appointment_date_time%</strong>.\n                     <br><br>Thank you for choosing our company,<br><strong>%company_name%</strong>',NULL,0),
(2,'customer_appointment_pending',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Pending','Dear <strong>%customer_full_name%</strong>,<br><br>The <strong>%service_name%</strong> appointment \n                     with <strong>%employee_full_name%</strong> at <strong>%location_address%</strong>, scheduled for\n                     <strong>%appointment_date_time%</strong> is waiting for a confirmation.<br><br>Thank you for \n                     choosing our company,<br><strong>%company_name%</strong>',NULL,0),
(3,'customer_appointment_rejected',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Rejected','Dear <strong>%customer_full_name%</strong>,<br><br>Your <strong>%service_name%</strong> \n                     appointment, scheduled on <strong>%appointment_date_time%</strong> at <strong>%location_address%\n                     </strong>has been rejected.<br><br>Thank you for choosing our company,\n                     <br><strong>%company_name%</strong>',NULL,0),
(4,'customer_appointment_canceled',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Canceled','Dear <strong>%customer_full_name%</strong>,<br><br>Your <strong>%service_name%</strong> \n                     appointment, scheduled on <strong>%appointment_date_time%</strong> at <strong>%location_address%\n                     </strong>has been canceled.<br><br>Thank you for choosing our company,\n                     <br><strong>%company_name%</strong>',NULL,0),
(5,'customer_appointment_rescheduled',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Rescheduled','Dear <strong>%customer_full_name%</strong>,<br><br>The details for your \n                     <strong>%service_name%</strong> appointment with <strong>%employee_full_name%</strong> at \n                     <strong>%location_name%</strong> has been changed. The appointment is now set for \n                     <strong>%appointment_date%</strong> at <strong>%appointment_start_time%</strong>.<br><br>\n                     Thank you for choosing our company,<br><strong>%company_name%</strong>',NULL,0),
(6,'customer_appointment_next_day_reminder',NULL,'enabled','email','appointment','17:00:00',NULL,NULL,'customer','%service_name% Appointment Reminder','Dear <strong>%customer_full_name%</strong>,<br><br>We would like to remind you that you have \n                     <strong>%service_name%</strong> appointment tomorrow at <strong>%appointment_start_time%</strong>.\n                     We are waiting for you at <strong>%location_name%</strong>.<br><br>Thank you for \n                     choosing our company,<br><strong>%company_name%</strong>',NULL,0),
(7,'customer_appointment_follow_up',NULL,'enabled','email','appointment',NULL,NULL,1800,'customer','%service_name% Appointment Follow Up','Dear <strong>%customer_full_name%</strong>,<br><br>Thank you once again for choosing our company. \n                     We hope you were satisfied with your <strong>%service_name%</strong>.<br><br>We look forward to \n                     seeing you again soon,<br><strong>%company_name%</strong>',NULL,0),
(8,'customer_birthday_greeting',NULL,'enabled','email','appointment','17:00:00',NULL,NULL,'customer','Happy Birthday','Dear <strong>%customer_full_name%</strong>,<br><br>Happy birthday!<br>We wish you all the best.\n                    <br><br>Thank you for choosing our company,<br><strong>%company_name%</strong>',NULL,0),
(9,'provider_appointment_approved',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Approved','',NULL,0),
(10,'provider_appointment_pending',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Pending','Hi <strong>%employee_full_name%</strong>,<br><br>You have new appointment \n                     in <strong>%service_name%</strong>. The appointment is waiting for a confirmation.<br><br>Thank \n                     you,<br><strong>%company_name%</strong>',NULL,0),
(11,'provider_appointment_rejected',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Rejected','Hi <strong>%employee_full_name%</strong>,<br><br>Your <strong>%service_name%</strong> appointment \n                     at <strong>%location_name%</strong>, scheduled for <strong>%appointment_date%</strong> at  \n                     <strong>%appointment_start_time%</strong> has been rejected.\n                     <br><br>Thank you,<br><strong>%company_name%</strong>',NULL,0),
(12,'provider_appointment_canceled',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Canceled','Hi <strong>%employee_full_name%</strong>,<br><br>Your <strong>%service_name%</strong> appointment,\n                     scheduled on <strong>%appointment_date%</strong>, at <strong>%location_name%</strong> has been \n                     canceled.<br><br>Thank you,<br><strong>%company_name%</strong>',NULL,0),
(13,'provider_appointment_rescheduled',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Rescheduled','Hi <strong>%employee_full_name%</strong>,<br><br>The details for your \n                     <strong>%service_name%</strong> appointment at <strong>%location_name%</strong> has been changed. \n                     The appointment is now set for <strong>%appointment_date%</strong> at \n                     <strong>%appointment_start_time%</strong>.<br><br>Thank you,<br><strong>%company_name%</strong>',NULL,0),
(14,'provider_appointment_next_day_reminder',NULL,'enabled','email','appointment','17:00:00',NULL,NULL,'provider','%service_name% Appointment Reminder','Dear <strong>%employee_full_name%</strong>,<br><br>We would like to remind you that you have \n                     <strong>%service_name%</strong> appointment tomorrow at <strong>%appointment_start_time%</strong>\n                     at <strong>%location_name%</strong>.<br><br>Thank you, \n                     <br><strong>%company_name%</strong>',NULL,0),
(15,'customer_appointment_approved',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nYou have successfully scheduled %service_name% appointment with %employee_full_name%. We are waiting for you at %location_address% on %appointment_date_time%.\n\nThank you for choosing our company,\n%company_name%',NULL,0),
(16,'customer_appointment_pending',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%, \n                    \nThe %service_name% appointment with %employee_full_name% at %location_address%, scheduled for %appointment_date_time% is waiting for a confirmation.\n                    \nThank you for choosing our company,\n%company_name%',NULL,0),
(17,'customer_appointment_rejected',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n                    \nYour %service_name% appointment, scheduled on %appointment_date_time% at %location_address% has been rejected.\n                    \nThank you for choosing our company,\n%company_name%',NULL,0),
(18,'customer_appointment_canceled',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n                    \nYour %service_name% appointment, scheduled on %appointment_date_time% at %location_address% has been canceled. \n                    \nThank you for choosing our company,\n%company_name%',NULL,0),
(19,'customer_appointment_rescheduled',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n                    \nThe details for your %service_name% appointment with %employee_full_name% at %location_name% has been changed. The appointment is now set for %appointment_date% at %appointment_start_time%.\n                    \nThank you for choosing our company,\n%company_name%',NULL,0),
(20,'customer_appointment_next_day_reminder',NULL,'enabled','sms','appointment','17:00:00',NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n                    \nWe would like to remind you that you have %service_name% appointment tomorrow at %appointment_start_time%. We are waiting for you at %location_name%.\n                    \nThank you for choosing our company,\n%company_name%',NULL,0),
(21,'customer_appointment_follow_up',NULL,'enabled','sms','appointment',NULL,NULL,1800,'customer','NULL','Dear %customer_full_name%,\n                    \nThank you once again for choosing our company. We hope you were satisfied with your %service_name%.\n                     \nWe look forward to seeing you again soon,\n%company_name%',NULL,0),
(22,'customer_birthday_greeting',NULL,'enabled','sms','appointment','17:00:00',NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n                    \nHappy birthday! We wish you all the best. \n                    \nThank you for choosing our company,\n%company_name%',NULL,0),
(23,'provider_appointment_approved',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n                    \nYou have one confirmed %service_name% appointment at %location_name% on %appointment_date% at %appointment_start_time%. The appointment is added to your schedule.\n                    \nThank you,\n%company_name%',NULL,0),
(24,'provider_appointment_pending',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n                    \nYou have new appointment in %service_name%. The appointment is waiting for a confirmation.\n                    \nThank you,\n%company_name%',NULL,0),
(25,'provider_appointment_rejected',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n                    \nYour %service_name% appointment at %location_name%, scheduled for %appointment_date% at %appointment_start_time% has been rejected. \n                    \nThank you,\n%company_name%',NULL,0),
(26,'provider_appointment_canceled',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n                    \nYour %service_name% appointment, scheduled on %appointment_date%, at %location_name% has been canceled.\n                    \nThank you,\n%company_name%',NULL,0),
(27,'provider_appointment_rescheduled',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n                    \nThe details for your %service_name% appointment at %location_name% has been changed. The appointment is now set for %appointment_date% at %appointment_start_time%.\n                    \nThank you,\n%company_name%',NULL,0),
(28,'provider_appointment_next_day_reminder',NULL,'enabled','sms','appointment','17:00:00',NULL,NULL,'provider','NULL','Dear %employee_full_name%, \n                    \nWe would like to remind you that you have %service_name% appointment tomorrow at %appointment_start_time% at %location_name%.\n                    \nThank you, \n%company_name%',NULL,0),
(29,'customer_event_approved',NULL,'enabled','email','event',NULL,NULL,NULL,'customer','%event_name% Event Booked','Dear <strong>%customer_full_name%</strong>,<br><br>You have successfully scheduled\n                     <strong>%event_name%</strong> event. We are\n                     waiting you at <strong>%event_location% </strong>on <strong>%event_start_date_time%</strong>.\n                     <br><br>Thank you for choosing our company,<br><strong>%company_name%</strong>',NULL,0),
(30,'customer_event_rejected',NULL,'enabled','email','event',NULL,NULL,NULL,'customer','%event_name% Event Canceled By Admin','Dear <strong>%customer_full_name%</strong>,<br><br>Your <strong>%event_name%</strong>\n                     event, scheduled on <strong>%event_start_date_time%</strong> at <strong>%event_location%\n                     </strong>has been canceled.<br><br>Thank you for choosing our company,\n                     <br><strong>%company_name%</strong>',NULL,0),
(31,'customer_event_canceled',NULL,'enabled','email','event',NULL,NULL,NULL,'customer','%event_name% Event Canceled By Attendee','Dear <strong>%customer_full_name%</strong>,<br><br>Your <strong>%event_name%</strong>\n                     event, scheduled on <strong>%event_start_date_time%</strong> at <strong>%event_location%\n                     </strong>has been canceled.<br><br>Thank you for choosing our company,\n                     <br><strong>%company_name%</strong>',NULL,0),
(32,'customer_event_rescheduled',NULL,'enabled','email','event',NULL,NULL,NULL,'customer','%event_name% Event Rescheduled','Dear <strong>%customer_full_name%</strong>,<br><br>The details for your\n                     <strong>%event_name%</strong> event at\n                     <strong>%event_location%</strong> has been changed. The event is now set for\n                     <strong>%event_start_date_time%</strong>.<br><br>\n                     Thank you for choosing our company,<br><strong>%company_name%</strong>',NULL,0),
(33,'customer_event_next_day_reminder',NULL,'enabled','email','event','17:00:00',NULL,NULL,'customer','%event_name% Event Reminder','Dear <strong>%customer_full_name%</strong>,<br><br>We would like to remind you that you have\n                     <strong>%event_name%</strong> event tomorrow at <strong>%event_start_date_time%</strong>.\n                     We are waiting for you at <strong>%event_location%</strong>.<br><br>Thank you for\n                     choosing our company,<br><strong>%company_name%</strong>',NULL,0),
(34,'customer_event_follow_up',NULL,'enabled','email','event',NULL,NULL,1800,'customer','%event_name% Event Follow Up','Dear <strong>%customer_full_name%</strong>,<br><br>Thank you once again for choosing our company.\n                     We hope you were satisfied with your <strong>%event_name%</strong>.<br><br>We look forward to\n                     seeing you again soon,<br><strong>%company_name%</strong>',NULL,0),
(35,'provider_event_approved',NULL,'enabled','email','event',NULL,NULL,NULL,'provider','%event_name% Event Booked','Hi <strong>%employee_full_name%</strong>,<br><br>You have one confirmed\n                     <strong>%event_name%</strong> Event at <strong>%event_location%</strong> on\n                     <strong>%event_start_date_time%</strong>. The event\n                     is added to your schedule.<br><br>Thank you,<br><strong>%company_name%</strong>',NULL,0),
(36,'provider_event_rejected',NULL,'enabled','email','event',NULL,NULL,NULL,'provider','%event_name% Event Canceled By Admin','Hi <strong>%employee_full_name%</strong>,<br><br>Your <strong>%event_name%</strong> event\n                     at <strong>%event_location%</strong>, scheduled for <strong>%event_start_date_time%</strong>\n                     has been canceled.<br><br>Thank you,<br><strong>%company_name%</strong>',NULL,0),
(37,'provider_event_canceled',NULL,'enabled','email','event',NULL,NULL,NULL,'provider','%event_name% Event Canceled By Customer','Hi <strong>%employee_full_name%</strong>,<br><br>Your <strong>%event_name%</strong> event,\n                     scheduled on <strong>%event_start_date_time%</strong>, at <strong>%event_location%</strong> has been\n                     canceled.<br><br>Thank you,<br><strong>%company_name%</strong>',NULL,0),
(38,'provider_event_rescheduled',NULL,'enabled','email','event',NULL,NULL,NULL,'provider','%event_name% Event Rescheduled','Hi <strong>%employee_full_name%</strong>,<br><br>The details for your\n                     <strong>%event_name%</strong> event at <strong>%event_location%</strong> has been changed.\n                     The event is now set for <strong>%event_start_date_time%</strong>.\n                     <br><br>Thank you,<br><strong>%company_name%</strong>',NULL,0),
(39,'provider_event_next_day_reminder',NULL,'enabled','email','event','17:00:00',NULL,NULL,'provider','%event_name% Event Reminder','Dear <strong>%employee_full_name%</strong>,<br><br>We would like to remind you that you have \n                     <strong>%event_name%</strong> event at <strong>%event_start_date_time%</strong>\n                     at <strong>%event_location%</strong>.<br><br>Thank you, \n                     <br><strong>%company_name%</strong>',NULL,0),
(40,'customer_event_approved',NULL,'enabled','sms','event',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nYou have successfully scheduled %event_name% event. We are waiting for you at %event_location% on %event_start_date_time%.\n\nThank you for choosing our company,\n%company_name%',NULL,0),
(41,'customer_event_rejected',NULL,'enabled','sms','event',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nYour %event_name% event, scheduled on %event_start_date_time% at %event_location% has been cancelled.\n\nThank you for choosing our company,\n%company_name%',NULL,0),
(42,'customer_event_canceled',NULL,'enabled','sms','event',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nYour %event_name% event, scheduled on %event_start_date_time% at %event_location% has been cancelled.\n\nThank you for choosing our company,\n%company_name%',NULL,0),
(43,'customer_event_rescheduled',NULL,'enabled','sms','event',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nThe details for your %event_name% event at %event_location% has been changed. The event is now set for %event_start_date_time%.\n\nThank you for choosing our company,\n%company_name%',NULL,0),
(44,'customer_event_next_day_reminder',NULL,'enabled','sms','event','17:00:00',NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n                    \nWe would like to remind you that you have %event_name% event at %event_start_date_time%. We are waiting for you at %event_location%.\n                    \nThank you for choosing our company,\n%company_name%',NULL,0),
(45,'customer_event_follow_up',NULL,'enabled','sms','event',NULL,NULL,1800,'customer','NULL','Dear %customer_full_name%,\n                    \nThank you once again for choosing our company. We hope you were satisfied with your %event_name%.\n                     \nWe look forward to seeing you again soon,\n%company_name%',NULL,0),
(46,'provider_event_approved',NULL,'enabled','sms','event',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n\nYou have one confirmed %event_name% event at %event_location% on %event_start_date_time%. The event is added to your schedule.\n\nThank you,\n%company_name%',NULL,0),
(47,'provider_event_rejected',NULL,'enabled','sms','event',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n\nYour %event_name% event at %event_location%, scheduled for %event_start_date_time% has been canceled by admin.\n\nThank you,\n%company_name%',NULL,0),
(48,'provider_event_canceled',NULL,'enabled','sms','event',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n\nYour %event_name% event, scheduled on %event_start_date_time%, at %event_location% has been canceled.\n\nThank you,\n%company_name%',NULL,0),
(49,'provider_event_rescheduled',NULL,'enabled','sms','event',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n\nThe details for your %event_name% event at %event_location% has been changed. The event is now set for %event_start_date_time%.\n\nThank you,\n%company_name%',NULL,0),
(50,'provider_event_next_day_reminder',NULL,'enabled','sms','event','17:00:00',NULL,NULL,'provider','NULL','Dear %employee_full_name%, \n                    \nWe would like to remind you that you have %event_name% event at %event_start_date_time% at %event_location%.\n                    \nThank you, \n%company_name%',NULL,0),
(51,'customer_account_recovery',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','Customer Panel Access','Dear <strong>%customer_full_name%</strong>,<br><br>You can access your profile on this <b><a href=\"%customer_panel_url%\">link</a></b>.\n                    <br><br>Thank you for choosing our company,<br><strong>%company_name%</strong>',NULL,0),
(52,'provider_panel_access',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','Employee Panel Access','Dear <strong>%employee_full_name%</strong>,<br><br>You can access your profile and track your bookings on this <b><a href=\"%employee_panel_url%\">link</a></b>.<br><br>Your login credentials:<br>Email: <b>%employee_email%</b><br>Password: <b>%employee_password%</b>\n                    <br><br>Best regards,<br><strong>%company_name%</strong>',NULL,0),
(53,'customer_package_purchased',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','Package %package_name% purchased','Dear <strong>%customer_full_name%</strong>,<br><br>You have successfully purchased\n                     <strong>%package_name%</strong>.\n                     <br><br>Thank you for choosing our company,<br><strong>%company_name%</strong>',NULL,0),
(54,'customer_package_purchased',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','Package %package_name% purchased','Dear %customer_full_name%,\n\nYou have successfully purchased %package_name%.\n\nThank you for choosing our company, %company_name%',NULL,0),
(55,'provider_package_purchased',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','Package %package_name% purchased','Hi <strong>%employee_full_name%</strong>,<br><br>\n                     Customer %customer_full_name% has purchased <strong>%package_name%</strong> package.<br><br>\n                     Thank you,<br><strong>%company_name%</strong>',NULL,0),
(56,'provider_package_purchased',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','Package %package_name% purchased','Hi %employee_full_name%,\n\nCustomer %customer_full_name% has purchased %package_name% package.\n                     \nThank you, %company_name%',NULL,0);
/*!40000 ALTER TABLE `wphu_amelia_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_notifications_log`
--

DROP TABLE IF EXISTS `wphu_amelia_notifications_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_notifications_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `notificationId` int(11) NOT NULL,
  `userId` int(11) NOT NULL,
  `appointmentId` int(11) DEFAULT NULL,
  `eventId` int(11) DEFAULT NULL,
  `packageCustomerId` int(11) DEFAULT NULL,
  `sentDateTime` datetime NOT NULL,
  `sent` tinyint(1) DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_notifications_log`
--

LOCK TABLES `wphu_amelia_notifications_log` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_notifications_log` DISABLE KEYS */;
INSERT INTO `wphu_amelia_notifications_log` VALUES
(1,1,1,2,NULL,NULL,'2021-09-17 14:41:00',1,'{\"subject\":\"5 Min Free Health Consultation Appointment Approved\",\"body\":\"Dear <strong>Ivan Kulongo<\\/strong>,<br><br>You have successfully scheduled\\n                     <strong>5 Min Free Health Consultation<\\/strong> appointment with <strong>Marcia Mendoza<\\/strong>. We are \\n                     waiting you at <strong> <\\/strong>on <strong>September 23, 2021 4:35 pm<\\/strong>.\\n                     <br><br>Thank you for choosing our company,<br><strong>Choice Resources<\\/strong>\",\"icsFiles\":[]}'),
(2,9,1,2,NULL,NULL,'2021-09-17 14:41:00',1,'{\"subject\":\"5 Min Free Health Consultation Appointment Approved\",\"body\":\"Hi <strong>Marcia Mendoza<\\/strong>,<br><br>You have one confirmed \\n                     <strong>5 Min Free Health Consultation<\\/strong> appointment at <strong><\\/strong> on \\n                     <strong>September 23, 2021<\\/strong> at <strong>3:35 pm<\\/strong>. The appointment \\n                     is added to your schedule.<br><br>Thank you,<br><strong>Choice Resources<\\/strong>\",\"icsFiles\":[]}'),
(3,1,3,3,NULL,NULL,'2021-09-20 13:00:15',0,'{\"subject\":\"5 Min Free Health Consultation Appointment Approved\",\"body\":\"Dear <strong>Ivan Kulongo<\\/strong>,<br><br>You have successfully scheduled\\n                     <strong>5 Min Free Health Consultation<\\/strong> appointment with <strong>Marcia Mendoza<\\/strong>. We are \\n                     waiting you at <strong> <\\/strong>on <strong>September 30, 2021 4:32 pm<\\/strong>.\\n                     <br><br>Thank you for choosing our company,<br><strong>Choice Resources<\\/strong>\",\"icsFiles\":[]}'),
(4,9,1,3,NULL,NULL,'2021-09-20 13:00:16',0,'{\"subject\":\"5 Min Free Health Consultation Appointment Approved\",\"body\":\"\",\"icsFiles\":[]}'),
(5,1,3,4,NULL,NULL,'2021-09-20 13:09:14',0,'{\"subject\":\"5 Min Free Health Consultation Appointment Approved\",\"body\":\"Dear <strong>Ivan Kulongo<\\/strong>,<br><br>You have successfully scheduled\\n                     <strong>5 Min Free Health Consultation<\\/strong> appointment with <strong>Marcia Mendoza<\\/strong>. We are \\n                     waiting you at <strong> <\\/strong>on <strong>September 29, 2021 4:36 pm<\\/strong>.\\n                     <br><br>Thank you for choosing our company,<br><strong>Choice Resources<\\/strong>\",\"icsFiles\":[]}'),
(6,9,1,4,NULL,NULL,'2021-09-20 13:09:15',0,'{\"subject\":\"5 Min Free Health Consultation Appointment Approved\",\"body\":\"\",\"icsFiles\":[]}');
/*!40000 ALTER TABLE `wphu_amelia_notifications_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_notifications_sms_history`
--

DROP TABLE IF EXISTS `wphu_amelia_notifications_sms_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_notifications_sms_history` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `notificationId` int(11) NOT NULL,
  `userId` int(11) DEFAULT NULL,
  `appointmentId` int(11) DEFAULT NULL,
  `eventId` int(11) DEFAULT NULL,
  `packageCustomerId` int(11) DEFAULT NULL,
  `logId` int(11) DEFAULT NULL,
  `dateTime` datetime DEFAULT NULL,
  `text` varchar(1600) NOT NULL,
  `phone` varchar(63) NOT NULL,
  `alphaSenderId` varchar(11) NOT NULL,
  `status` enum('prepared','accepted','queued','sent','failed','delivered','undelivered') NOT NULL DEFAULT 'prepared',
  `price` double DEFAULT NULL,
  `segments` tinyint(2) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_notifications_sms_history`
--

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

--
-- Table structure for table `wphu_amelia_notifications_to_entities`
--

DROP TABLE IF EXISTS `wphu_amelia_notifications_to_entities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_notifications_to_entities` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `notificationId` int(11) NOT NULL,
  `entityId` int(11) NOT NULL,
  `entity` enum('appointment','event') NOT NULL DEFAULT 'appointment',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_notifications_to_entities`
--

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

--
-- Table structure for table `wphu_amelia_packages`
--

DROP TABLE IF EXISTS `wphu_amelia_packages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_packages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `description` text DEFAULT NULL,
  `color` varchar(255) NOT NULL DEFAULT '',
  `price` double NOT NULL,
  `status` enum('hidden','visible','disabled') NOT NULL DEFAULT 'visible',
  `pictureFullPath` varchar(767) DEFAULT NULL,
  `pictureThumbPath` varchar(767) DEFAULT NULL,
  `position` int(11) DEFAULT 0,
  `calculatedPrice` tinyint(1) DEFAULT 1,
  `discount` double NOT NULL,
  `endDate` datetime DEFAULT NULL,
  `durationType` enum('day','week','month') DEFAULT NULL,
  `durationCount` int(4) DEFAULT NULL,
  `settings` text DEFAULT NULL,
  `translations` text DEFAULT NULL,
  `depositPayment` enum('disabled','fixed','percentage') DEFAULT 'disabled',
  `deposit` double DEFAULT 0,
  `fullPayment` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_packages`
--

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

--
-- Table structure for table `wphu_amelia_packages_customers_to_services`
--

DROP TABLE IF EXISTS `wphu_amelia_packages_customers_to_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_packages_customers_to_services` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `packageCustomerId` int(11) NOT NULL,
  `serviceId` int(11) NOT NULL,
  `providerId` int(11) DEFAULT NULL,
  `locationId` int(11) DEFAULT NULL,
  `bookingsCount` int(5) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_packages_customers_to_services`
--

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

--
-- Table structure for table `wphu_amelia_packages_services_to_locations`
--

DROP TABLE IF EXISTS `wphu_amelia_packages_services_to_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_packages_services_to_locations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `packageServiceId` int(11) NOT NULL,
  `locationId` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_packages_services_to_locations`
--

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

--
-- Table structure for table `wphu_amelia_packages_services_to_providers`
--

DROP TABLE IF EXISTS `wphu_amelia_packages_services_to_providers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_packages_services_to_providers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `packageServiceId` int(11) NOT NULL,
  `userId` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_packages_services_to_providers`
--

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

--
-- Table structure for table `wphu_amelia_packages_to_customers`
--

DROP TABLE IF EXISTS `wphu_amelia_packages_to_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_packages_to_customers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `packageId` int(11) NOT NULL,
  `customerId` int(11) NOT NULL,
  `price` double NOT NULL,
  `start` datetime DEFAULT NULL,
  `end` datetime DEFAULT NULL,
  `purchased` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_packages_to_customers`
--

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

--
-- Table structure for table `wphu_amelia_packages_to_services`
--

DROP TABLE IF EXISTS `wphu_amelia_packages_to_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_packages_to_services` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `serviceId` int(11) NOT NULL,
  `packageId` int(11) NOT NULL,
  `quantity` int(11) NOT NULL,
  `minimumScheduled` int(5) DEFAULT 1,
  `maximumScheduled` int(5) DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_packages_to_services`
--

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

--
-- Table structure for table `wphu_amelia_payments`
--

DROP TABLE IF EXISTS `wphu_amelia_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customerBookingId` int(11) DEFAULT NULL,
  `amount` double NOT NULL DEFAULT 0,
  `dateTime` datetime DEFAULT NULL,
  `status` enum('paid','pending','partiallyPaid') NOT NULL,
  `gateway` enum('onSite','payPal','stripe','wc','mollie') NOT NULL,
  `gatewayTitle` varchar(255) DEFAULT NULL,
  `data` text DEFAULT NULL,
  `packageCustomerId` int(11) DEFAULT NULL,
  `parentId` int(11) DEFAULT NULL,
  `entity` enum('appointment','event','package') DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `actionsCompleted` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_payments`
--

LOCK TABLES `wphu_amelia_payments` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_payments` DISABLE KEYS */;
INSERT INTO `wphu_amelia_payments` VALUES
(1,1,0,'2021-09-07 15:30:00','paid','onSite','','',NULL,NULL,'appointment','2021-09-17 10:36:06',0),
(2,2,0,'2021-09-23 15:35:00','paid','onSite','','',NULL,NULL,'appointment','2021-09-17 14:40:59',1),
(3,3,0,'2021-09-30 15:32:00','paid','onSite','','',NULL,NULL,'appointment','2021-09-20 13:00:14',1),
(4,4,0,'2021-09-29 15:36:00','paid','onSite','','',NULL,NULL,'appointment','2021-09-20 13:09:14',1);
/*!40000 ALTER TABLE `wphu_amelia_payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_providers_to_daysoff`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_daysoff`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_daysoff` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `startDate` date NOT NULL,
  `endDate` date NOT NULL,
  `repeat` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_daysoff`
--

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

--
-- Table structure for table `wphu_amelia_providers_to_events`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_events` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `eventId` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_events`
--

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

--
-- Table structure for table `wphu_amelia_providers_to_google_calendar`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_google_calendar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_google_calendar` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `token` text NOT NULL,
  `calendarId` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_google_calendar`
--

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

--
-- Table structure for table `wphu_amelia_providers_to_locations`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_locations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `locationId` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_locations`
--

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

--
-- Table structure for table `wphu_amelia_providers_to_outlook_calendar`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_outlook_calendar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_outlook_calendar` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `token` text NOT NULL,
  `calendarId` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_outlook_calendar`
--

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

--
-- Table structure for table `wphu_amelia_providers_to_periods`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_periods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `weekDayId` int(11) NOT NULL,
  `locationId` int(11) DEFAULT NULL,
  `startTime` time NOT NULL,
  `endTime` time NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_periods`
--

LOCK TABLES `wphu_amelia_providers_to_periods` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_providers_to_periods` DISABLE KEYS */;
INSERT INTO `wphu_amelia_providers_to_periods` VALUES
(6,6,NULL,'15:00:00','17:00:00'),
(7,7,NULL,'15:00:00','17:00:00'),
(8,8,NULL,'15:00:00','17:00:00');
/*!40000 ALTER TABLE `wphu_amelia_providers_to_periods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_providers_to_periods_services`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_periods_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_periods_services` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `periodId` int(11) NOT NULL,
  `serviceId` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_periods_services`
--

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

--
-- Table structure for table `wphu_amelia_providers_to_services`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_services` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `serviceId` int(11) NOT NULL,
  `price` double NOT NULL,
  `minCapacity` int(11) NOT NULL,
  `maxCapacity` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_services`
--

LOCK TABLES `wphu_amelia_providers_to_services` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_providers_to_services` DISABLE KEYS */;
INSERT INTO `wphu_amelia_providers_to_services` VALUES
(1,1,1,0,1,1),
(2,1,2,60,1,1);
/*!40000 ALTER TABLE `wphu_amelia_providers_to_services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_providers_to_specialdays`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_specialdays`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_specialdays` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `startDate` date NOT NULL,
  `endDate` date NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_specialdays`
--

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

--
-- Table structure for table `wphu_amelia_providers_to_specialdays_periods`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_specialdays_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_specialdays_periods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `specialDayId` int(11) NOT NULL,
  `locationId` int(11) DEFAULT NULL,
  `startTime` time NOT NULL,
  `endTime` time NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_specialdays_periods`
--

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

--
-- Table structure for table `wphu_amelia_providers_to_specialdays_periods_services`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_specialdays_periods_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_specialdays_periods_services` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `periodId` int(11) NOT NULL,
  `serviceId` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_specialdays_periods_services`
--

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

--
-- Table structure for table `wphu_amelia_providers_to_timeouts`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_timeouts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_timeouts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `weekDayId` int(11) NOT NULL,
  `startTime` time NOT NULL,
  `endTime` time NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_timeouts`
--

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

--
-- Table structure for table `wphu_amelia_providers_to_weekdays`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_to_weekdays`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_to_weekdays` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `dayIndex` tinyint(2) NOT NULL,
  `startTime` time NOT NULL,
  `endTime` time NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_to_weekdays`
--

LOCK TABLES `wphu_amelia_providers_to_weekdays` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_providers_to_weekdays` DISABLE KEYS */;
INSERT INTO `wphu_amelia_providers_to_weekdays` VALUES
(6,1,2,'15:00:00','17:00:00'),
(7,1,3,'15:00:00','17:00:00'),
(8,1,4,'15:00:00','17:00:00');
/*!40000 ALTER TABLE `wphu_amelia_providers_to_weekdays` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_providers_views`
--

DROP TABLE IF EXISTS `wphu_amelia_providers_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_providers_views` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `date` date NOT NULL,
  `views` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_providers_views`
--

LOCK TABLES `wphu_amelia_providers_views` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_providers_views` DISABLE KEYS */;
INSERT INTO `wphu_amelia_providers_views` VALUES
(1,1,'2021-09-17',7),
(2,1,'2021-09-20',3);
/*!40000 ALTER TABLE `wphu_amelia_providers_views` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_services`
--

DROP TABLE IF EXISTS `wphu_amelia_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_services` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `description` text DEFAULT NULL,
  `color` varchar(255) NOT NULL DEFAULT '',
  `price` double NOT NULL,
  `status` enum('hidden','visible','disabled') NOT NULL DEFAULT 'visible',
  `categoryId` int(11) NOT NULL,
  `minCapacity` int(11) NOT NULL,
  `maxCapacity` int(11) NOT NULL,
  `duration` int(11) NOT NULL,
  `timeBefore` int(11) DEFAULT 0,
  `timeAfter` int(11) DEFAULT 0,
  `bringingAnyone` tinyint(1) DEFAULT 1,
  `priority` enum('least_expensive','most_expensive','least_occupied','most_occupied') NOT NULL,
  `pictureFullPath` varchar(767) DEFAULT NULL,
  `pictureThumbPath` varchar(767) DEFAULT NULL,
  `position` int(11) DEFAULT 0,
  `show` tinyint(1) DEFAULT 1,
  `aggregatedPrice` tinyint(1) DEFAULT 1,
  `settings` text DEFAULT NULL,
  `recurringCycle` enum('disabled','all','daily','weekly','monthly') DEFAULT 'disabled',
  `recurringSub` enum('disabled','past','future','both') DEFAULT 'future',
  `recurringPayment` int(3) DEFAULT 0,
  `translations` text DEFAULT NULL,
  `depositPayment` enum('disabled','fixed','percentage') DEFAULT 'disabled',
  `depositPerPerson` tinyint(1) DEFAULT 1,
  `deposit` double DEFAULT 0,
  `fullPayment` tinyint(1) DEFAULT 0,
  `mandatoryExtra` tinyint(1) DEFAULT 0,
  `minSelectedExtras` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_services`
--

LOCK TABLES `wphu_amelia_services` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_services` DISABLE KEYS */;
INSERT INTO `wphu_amelia_services` VALUES
(1,'5 Min Free Health Consultation','Are you excited to bring healing herbsinto your every day life?Get my best herbal insigh','#1788FB',0,'visible',1,1,1,300,1800,1800,1,'least_expensive','http://choiceresources.co.uk/wp-content/uploads/2021/09/4.png','http://choiceresources.co.uk/wp-content/uploads/2021/09/4-150x150.png',1,1,1,'{\"payments\":{\"onSite\":true,\"payPal\":{\"enabled\":false},\"stripe\":{\"enabled\":false},\"mollie\":{\"enabled\":false}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"activation\":{\"version\":\"4.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,0),
(2,'Full 30 Health Consultation','Connect with a verified Medical Herblist in minutes. No waiting weeks for appointments. No high fees. No retainers.','#1788FB',60,'visible',1,1,1,1800,600,900,1,'least_expensive','http://choiceresources.co.uk/wp-content/uploads/2021/09/5.png','http://choiceresources.co.uk/wp-content/uploads/2021/09/5-150x150.png',2,1,1,'{\"payments\":{\"onSite\":true,\"payPal\":{\"enabled\":false},\"stripe\":{\"enabled\":false},\"mollie\":{\"enabled\":false}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"activation\":{\"version\":\"4.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,0);
/*!40000 ALTER TABLE `wphu_amelia_services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_services_views`
--

DROP TABLE IF EXISTS `wphu_amelia_services_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_services_views` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `serviceId` int(11) NOT NULL,
  `date` date NOT NULL,
  `views` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_services_views`
--

LOCK TABLES `wphu_amelia_services_views` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_services_views` DISABLE KEYS */;
INSERT INTO `wphu_amelia_services_views` VALUES
(1,2,'2021-09-17',3),
(2,1,'2021-09-17',4),
(3,1,'2021-09-20',3);
/*!40000 ALTER TABLE `wphu_amelia_services_views` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_amelia_users`
--

DROP TABLE IF EXISTS `wphu_amelia_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_amelia_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `status` enum('hidden','visible','disabled') NOT NULL DEFAULT 'visible',
  `type` enum('customer','provider','manager','admin') NOT NULL,
  `externalId` int(11) DEFAULT NULL,
  `firstName` varchar(255) NOT NULL DEFAULT '',
  `lastName` varchar(255) NOT NULL DEFAULT '',
  `email` varchar(255) DEFAULT NULL,
  `birthday` date DEFAULT NULL,
  `phone` varchar(63) DEFAULT NULL,
  `gender` enum('male','female') DEFAULT NULL,
  `note` text DEFAULT NULL,
  `pictureFullPath` varchar(767) DEFAULT NULL,
  `pictureThumbPath` varchar(767) DEFAULT NULL,
  `password` varchar(128) DEFAULT NULL,
  `usedTokens` text DEFAULT NULL,
  `zoomUserId` varchar(255) DEFAULT NULL,
  `countryPhoneIso` varchar(2) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_amelia_users`
--

LOCK TABLES `wphu_amelia_users` WRITE;
/*!40000 ALTER TABLE `wphu_amelia_users` DISABLE KEYS */;
INSERT INTO `wphu_amelia_users` VALUES
(1,'visible','provider',7,'Marcia','Mendoza','choiceresources2021@gmail.com',NULL,'+447950212299',NULL,'Welcome to Choice Health, this is your Appointment Dashboard booking details. Happy to have you on the team. :)',NULL,NULL,'$2y$10$pQlCxAWr5s1u4xRXEMqckeEo.X8fhllB7KPi9zAnSlPCPu8GkXjma',NULL,NULL,'gb'),
(2,'visible','customer',NULL,'Amna','Kulongo','amnakulongo@gmail.com','1988-03-07','+447950212299','female',NULL,NULL,NULL,NULL,NULL,NULL,'gb'),
(3,'visible','customer',NULL,'Ivan','Kulongo','ivankulongo@gmail.com',NULL,'+449800098878787',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wphu_amelia_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_betterdocs_search_keyword`
--

DROP TABLE IF EXISTS `wphu_betterdocs_search_keyword`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_betterdocs_search_keyword` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `keyword` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_betterdocs_search_keyword`
--

LOCK TABLES `wphu_betterdocs_search_keyword` WRITE;
/*!40000 ALTER TABLE `wphu_betterdocs_search_keyword` DISABLE KEYS */;
INSERT INTO `wphu_betterdocs_search_keyword` VALUES
(1,'counting'),
(2,'colouring pages');
/*!40000 ALTER TABLE `wphu_betterdocs_search_keyword` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_betterdocs_search_log`
--

DROP TABLE IF EXISTS `wphu_betterdocs_search_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_betterdocs_search_log` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `keyword_id` bigint(20) NOT NULL,
  `count` mediumint(9) DEFAULT NULL,
  `not_found_count` mediumint(9) DEFAULT NULL,
  `created_at` date NOT NULL DEFAULT '0000-00-00',
  PRIMARY KEY (`id`),
  KEY `keyword_id` (`keyword_id`),
  KEY `created_at` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_betterdocs_search_log`
--

LOCK TABLES `wphu_betterdocs_search_log` WRITE;
/*!40000 ALTER TABLE `wphu_betterdocs_search_log` DISABLE KEYS */;
INSERT INTO `wphu_betterdocs_search_log` VALUES
(1,1,0,1,'2023-01-18'),
(2,2,0,1,'2023-01-18');
/*!40000 ALTER TABLE `wphu_betterdocs_search_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_cartflows_ca_cart_abandonment`
--

DROP TABLE IF EXISTS `wphu_cartflows_ca_cart_abandonment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cartflows_ca_cart_abandonment` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `checkout_id` int(11) NOT NULL,
  `email` varchar(100) DEFAULT NULL,
  `cart_contents` longtext DEFAULT NULL,
  `cart_total` decimal(10,2) DEFAULT NULL,
  `session_id` varchar(60) NOT NULL,
  `other_fields` longtext DEFAULT NULL,
  `order_status` enum('normal','abandoned','completed','lost') NOT NULL DEFAULT 'normal',
  `unsubscribed` tinyint(1) DEFAULT 0,
  `coupon_code` varchar(50) DEFAULT NULL,
  `time` datetime DEFAULT NULL,
  PRIMARY KEY (`id`,`session_id`),
  UNIQUE KEY `session_id_UNIQUE` (`session_id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cartflows_ca_cart_abandonment`
--

LOCK TABLES `wphu_cartflows_ca_cart_abandonment` WRITE;
/*!40000 ALTER TABLE `wphu_cartflows_ca_cart_abandonment` DISABLE KEYS */;
INSERT INTO `wphu_cartflows_ca_cart_abandonment` VALUES
(1,8121,'amnakulongo@gmail.com','a:1:{s:32:\"af0a59d77edf6e178ec25cb090df864b\";a:12:{s:3:\"key\";s:32:\"af0a59d77edf6e178ec25cb090df864b\";s:10:\"product_id\";i:7158;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:6.9900000000000002131628207280300557613372802734375;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:6.9900000000000002131628207280300557613372802734375;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:7158;}}}',6.99,'1191c96ee2ac3b8f4c7dfcfe9202903f','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:16:\"22, SEYMOUR ROAD\";s:21:\"wcf_billing_address_2\";s:5:\"LUTON\";s:17:\"wcf_billing_state\";s:4:\"Kent\";s:20:\"wcf_billing_postcode\";s:7:\"ME5 7AE\";s:23:\"wcf_shipping_first_name\";s:0:\"\";s:22:\"wcf_shipping_last_name\";s:0:\"\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:0:\"\";s:22:\"wcf_shipping_address_1\";s:0:\"\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:0:\"\";s:18:\"wcf_shipping_state\";s:0:\"\";s:21:\"wcf_shipping_postcode\";s:0:\"\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"John\";s:13:\"wcf_last_name\";s:3:\"Doe\";s:16:\"wcf_phone_number\";s:10:\"0353179971\";s:12:\"wcf_location\";s:11:\"GB, CHATHAM\";}','completed',0,'','2022-06-07 23:53:27'),
(2,8121,'Ivankulongo@gmail.com','a:1:{s:32:\"228e338fddcdf62a8065110d0b5f87fb\";a:12:{s:3:\"key\";s:32:\"228e338fddcdf62a8065110d0b5f87fb\";s:10:\"product_id\";i:6706;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:4.9900000000000002131628207280300557613372802734375;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:4.9900000000000002131628207280300557613372802734375;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:6706;}}}',4.99,'a15b2d800b9275543890d6503bd353fc','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:16:\"20 Hatfield Road\";s:21:\"wcf_billing_address_2\";s:0:\"\";s:17:\"wcf_billing_state\";s:5:\"Essex\";s:20:\"wcf_billing_postcode\";s:7:\"RM9 6JR\";s:23:\"wcf_shipping_first_name\";s:0:\"\";s:22:\"wcf_shipping_last_name\";s:0:\"\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:0:\"\";s:22:\"wcf_shipping_address_1\";s:0:\"\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:0:\"\";s:18:\"wcf_shipping_state\";s:0:\"\";s:21:\"wcf_shipping_postcode\";s:0:\"\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"Ivan\";s:13:\"wcf_last_name\";s:7:\"Kulongo\";s:16:\"wcf_phone_number\";s:9:\"782873017\";s:12:\"wcf_location\";s:12:\"GB, Dagenham\";}','completed',0,'','2022-06-09 17:41:19'),
(3,8121,'ivankulongo@gmail.com','a:1:{s:32:\"31857b449c407203749ae32dd0e7d64a\";a:12:{s:3:\"key\";s:32:\"31857b449c407203749ae32dd0e7d64a\";s:10:\"product_id\";i:1067;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"285b77d16b2a3239dfa2495daead7939\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:69.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:69.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:4:\"data\";O:23:\"WC_Product_Subscription\":1:{s:5:\"\0*\0id\";i:1067;}}}',69.99,'4eb155b37f0676bb94509bc5092287df','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:16:\"20 Hatfield Road\";s:21:\"wcf_billing_address_2\";s:0:\"\";s:17:\"wcf_billing_state\";s:5:\"Essex\";s:20:\"wcf_billing_postcode\";s:7:\"RM9 6JR\";s:23:\"wcf_shipping_first_name\";s:0:\"\";s:22:\"wcf_shipping_last_name\";s:0:\"\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:0:\"\";s:22:\"wcf_shipping_address_1\";s:0:\"\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:0:\"\";s:18:\"wcf_shipping_state\";s:0:\"\";s:21:\"wcf_shipping_postcode\";s:0:\"\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"Ivan\";s:13:\"wcf_last_name\";s:7:\"Kulongo\";s:16:\"wcf_phone_number\";s:9:\"782873017\";s:12:\"wcf_location\";s:12:\"GB, Dagenham\";}','completed',0,'','2022-11-16 22:43:54'),
(8,8121,'ivankulongo@hotmail.com','a:1:{s:32:\"31857b449c407203749ae32dd0e7d64a\";a:12:{s:3:\"key\";s:32:\"31857b449c407203749ae32dd0e7d64a\";s:10:\"product_id\";i:1067;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"285b77d16b2a3239dfa2495daead7939\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:62.5;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:62.5;s:8:\"line_tax\";i:0;s:4:\"data\";O:23:\"WC_Product_Subscription\":1:{s:5:\"\0*\0id\";i:1067;}}}',62.50,'8862ee699690212795d9657e24a10be6','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:16:\"20 Hatfield Road\";s:21:\"wcf_billing_address_2\";s:0:\"\";s:17:\"wcf_billing_state\";s:5:\"Essex\";s:20:\"wcf_billing_postcode\";s:7:\"RM9 6JR\";s:23:\"wcf_shipping_first_name\";s:0:\"\";s:22:\"wcf_shipping_last_name\";s:0:\"\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:0:\"\";s:22:\"wcf_shipping_address_1\";s:0:\"\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:0:\"\";s:18:\"wcf_shipping_state\";s:0:\"\";s:21:\"wcf_shipping_postcode\";s:0:\"\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"amna\";s:13:\"wcf_last_name\";s:7:\"Kulongo\";s:16:\"wcf_phone_number\";s:10:\"0782873017\";s:12:\"wcf_location\";s:12:\"GB, Dagenham\";}','lost',0,'','2023-01-25 15:39:13'),
(10,8121,'amnakulongo@gmail.com','a:1:{s:32:\"66d695b3067f3f81718921938bdc0f77\";a:12:{s:3:\"key\";s:32:\"66d695b3067f3f81718921938bdc0f77\";s:10:\"product_id\";i:19685;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.9899999999999999911182158029987476766109466552734375;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.9899999999999999911182158029987476766109466552734375;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19685;}}}',5.94,'4277b13c05b67bc49a1d2654b76b6a7d','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:15:\"22 Seymour Road\";s:21:\"wcf_billing_address_2\";s:0:\"\";s:17:\"wcf_billing_state\";s:0:\"\";s:20:\"wcf_billing_postcode\";s:7:\"ME5 7AE\";s:23:\"wcf_shipping_first_name\";s:0:\"\";s:22:\"wcf_shipping_last_name\";s:0:\"\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:2:\"GB\";s:22:\"wcf_shipping_address_1\";s:0:\"\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:0:\"\";s:18:\"wcf_shipping_state\";s:0:\"\";s:21:\"wcf_shipping_postcode\";s:0:\"\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"Amna\";s:13:\"wcf_last_name\";s:7:\"Kulongo\";s:16:\"wcf_phone_number\";s:11:\"07950212299\";s:12:\"wcf_location\";s:11:\"GB, Chatham\";}','lost',0,'','2023-02-17 15:35:44'),
(11,8121,'ivankulongo@gmail.com','a:2:{s:32:\"18d596dcf73043e0c8a6e3bfef2a0731\";a:12:{s:3:\"key\";s:32:\"18d596dcf73043e0c8a6e3bfef2a0731\";s:10:\"product_id\";i:19643;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19643;}}s:32:\"912dcb7dd52746d40917ed1c6fdb9de5\";a:12:{s:3:\"key\";s:32:\"912dcb7dd52746d40917ed1c6fdb9de5\";s:10:\"product_id\";i:19306;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19306;}}}',6.45,'07f9c3a250562c74dfae0b5db2a9fc14','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:16:\"20 Hatfield Road\";s:21:\"wcf_billing_address_2\";s:0:\"\";s:17:\"wcf_billing_state\";s:5:\"Essex\";s:20:\"wcf_billing_postcode\";s:7:\"RM9 6JR\";s:23:\"wcf_shipping_first_name\";s:0:\"\";s:22:\"wcf_shipping_last_name\";s:0:\"\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:2:\"GB\";s:22:\"wcf_shipping_address_1\";s:16:\"20 Hatfield Road\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:8:\"Dagenham\";s:18:\"wcf_shipping_state\";s:5:\"Essex\";s:21:\"wcf_shipping_postcode\";s:7:\"RM9 6JR\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"Ivan\";s:13:\"wcf_last_name\";s:7:\"Kulongo\";s:16:\"wcf_phone_number\";s:9:\"782873017\";s:12:\"wcf_location\";s:12:\"GB, Dagenham\";}','completed',0,'','2023-03-30 22:17:24'),
(12,8121,'ivankulongo@gmail.com','a:3:{s:32:\"18d596dcf73043e0c8a6e3bfef2a0731\";a:12:{s:3:\"key\";s:32:\"18d596dcf73043e0c8a6e3bfef2a0731\";s:10:\"product_id\";i:19643;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19643;}}s:32:\"912dcb7dd52746d40917ed1c6fdb9de5\";a:12:{s:3:\"key\";s:32:\"912dcb7dd52746d40917ed1c6fdb9de5\";s:10:\"product_id\";i:19306;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19306;}}s:32:\"31857b449c407203749ae32dd0e7d64a\";a:12:{s:3:\"key\";s:32:\"31857b449c407203749ae32dd0e7d64a\";s:10:\"product_id\";i:1067;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"285b77d16b2a3239dfa2495daead7939\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:7.9900000000000002131628207280300557613372802734375;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:7.9900000000000002131628207280300557613372802734375;s:8:\"line_tax\";i:0;s:4:\"data\";O:23:\"WC_Product_Subscription\":1:{s:5:\"\0*\0id\";i:1067;}}}',14.44,'43a6cac54228f4d104a500753fd0cad8','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:16:\"20 Hatfield Road\";s:21:\"wcf_billing_address_2\";s:0:\"\";s:17:\"wcf_billing_state\";s:5:\"Essex\";s:20:\"wcf_billing_postcode\";s:7:\"RM9 6JR\";s:23:\"wcf_shipping_first_name\";s:0:\"\";s:22:\"wcf_shipping_last_name\";s:0:\"\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:2:\"GB\";s:22:\"wcf_shipping_address_1\";s:16:\"20 Hatfield Road\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:8:\"Dagenham\";s:18:\"wcf_shipping_state\";s:5:\"Essex\";s:21:\"wcf_shipping_postcode\";s:7:\"RM9 6JR\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"Ivan\";s:13:\"wcf_last_name\";s:7:\"Kulongo\";s:16:\"wcf_phone_number\";s:9:\"782873017\";s:12:\"wcf_location\";s:12:\"GB, Dagenham\";}','completed',0,'','2023-05-04 18:12:13'),
(13,8121,'amnakulongo@gmail.com','a:4:{s:32:\"242c9d66ee309291a3d5f8c41d67c515\";a:12:{s:3:\"key\";s:32:\"242c9d66ee309291a3d5f8c41d67c515\";s:10:\"product_id\";i:19643;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19643;}}s:32:\"2c8883ad2feccbe040ac70f83fe58d85\";a:12:{s:3:\"key\";s:32:\"2c8883ad2feccbe040ac70f83fe58d85\";s:10:\"product_id\";i:19306;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19306;}}s:32:\"edff118383f03a24f1d070972d7e8614\";a:12:{s:3:\"key\";s:32:\"edff118383f03a24f1d070972d7e8614\";s:10:\"product_id\";i:19221;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19221;}}s:32:\"27d45baee0e3b17859ce3f98ba396c08\";a:12:{s:3:\"key\";s:32:\"27d45baee0e3b17859ce3f98ba396c08\";s:10:\"product_id\";i:24725;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:24725;}}}',8.95,'bc3165d56a78b0d012cb64333a2ff397','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:2:\"20\";s:21:\"wcf_billing_address_2\";s:13:\"Hatfield Road\";s:17:\"wcf_billing_state\";s:5:\"Essex\";s:20:\"wcf_billing_postcode\";s:7:\"RM9 6JR\";s:23:\"wcf_shipping_first_name\";s:0:\"\";s:22:\"wcf_shipping_last_name\";s:0:\"\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:2:\"GB\";s:22:\"wcf_shipping_address_1\";s:0:\"\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:0:\"\";s:18:\"wcf_shipping_state\";s:5:\"Essex\";s:21:\"wcf_shipping_postcode\";s:0:\"\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"Ivan\";s:13:\"wcf_last_name\";s:7:\"Kulongo\";s:16:\"wcf_phone_number\";s:11:\"07828737017\";s:12:\"wcf_location\";s:12:\"GB, DAGENHAM\";}','lost',0,'','2023-07-14 17:09:48'),
(14,8121,'ivankulongo@gmail.com','a:6:{s:32:\"18d596dcf73043e0c8a6e3bfef2a0731\";a:12:{s:3:\"key\";s:32:\"18d596dcf73043e0c8a6e3bfef2a0731\";s:10:\"product_id\";i:19643;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19643;}}s:32:\"912dcb7dd52746d40917ed1c6fdb9de5\";a:12:{s:3:\"key\";s:32:\"912dcb7dd52746d40917ed1c6fdb9de5\";s:10:\"product_id\";i:19306;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19306;}}s:32:\"71fcbae809ac29a498dbe627a7b23b4c\";a:12:{s:3:\"key\";s:32:\"71fcbae809ac29a498dbe627a7b23b4c\";s:10:\"product_id\";i:19221;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19221;}}s:32:\"bbeaf32ca49221a91a7ea7cf3e994069\";a:12:{s:3:\"key\";s:32:\"bbeaf32ca49221a91a7ea7cf3e994069\";s:10:\"product_id\";i:24725;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:24725;}}s:32:\"c9c10e15bf0575c599ce161447d0a183\";a:12:{s:3:\"key\";s:32:\"c9c10e15bf0575c599ce161447d0a183\";s:10:\"product_id\";i:19242;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19242;}}s:32:\"d53ed6e2576ab89b34c972e6aa731423\";a:12:{s:3:\"key\";s:32:\"d53ed6e2576ab89b34c972e6aa731423\";s:10:\"product_id\";i:19236;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1.25;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:1.25;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:19236;}}}',11.45,'8cafc8f1fdb845053498e4962292d5ca','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:16:\"20 Hatfield Road\";s:21:\"wcf_billing_address_2\";s:0:\"\";s:17:\"wcf_billing_state\";s:5:\"Essex\";s:20:\"wcf_billing_postcode\";s:7:\"RM9 6JR\";s:23:\"wcf_shipping_first_name\";s:0:\"\";s:22:\"wcf_shipping_last_name\";s:0:\"\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:2:\"GB\";s:22:\"wcf_shipping_address_1\";s:0:\"\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:0:\"\";s:18:\"wcf_shipping_state\";s:5:\"Essex\";s:21:\"wcf_shipping_postcode\";s:0:\"\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"Ivan\";s:13:\"wcf_last_name\";s:7:\"Kulongo\";s:16:\"wcf_phone_number\";s:9:\"782873017\";s:12:\"wcf_location\";s:12:\"GB, Dagenham\";}','completed',0,'','2023-07-16 19:12:11'),
(15,8121,'ivankulongo@gmail.com','a:1:{s:32:\"150784e5fbeb562400a0cd1111471d6a\";a:12:{s:3:\"key\";s:32:\"150784e5fbeb562400a0cd1111471d6a\";s:10:\"product_id\";i:32827;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:6;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:12;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:12;s:8:\"line_tax\";d:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:32827;}}}',15.95,'e6c3e34f9ba62478e05e538235579619','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:15:\"22 Seymour Road\";s:21:\"wcf_billing_address_2\";s:0:\"\";s:17:\"wcf_billing_state\";s:4:\"Kent\";s:20:\"wcf_billing_postcode\";s:7:\"RM9 5dr\";s:23:\"wcf_shipping_first_name\";s:4:\"Ivan\";s:22:\"wcf_shipping_last_name\";s:7:\"Kulongo\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:2:\"GB\";s:22:\"wcf_shipping_address_1\";s:0:\"\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:8:\"Dagenham\";s:18:\"wcf_shipping_state\";s:0:\"\";s:21:\"wcf_shipping_postcode\";s:7:\"RM9****\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"Ivan\";s:13:\"wcf_last_name\";s:7:\"Kulongo\";s:16:\"wcf_phone_number\";s:9:\"782873017\";s:12:\"wcf_location\";s:12:\"GB, Dagenham\";}','completed',0,'','2024-05-08 12:00:19');
/*!40000 ALTER TABLE `wphu_cartflows_ca_cart_abandonment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_cartflows_ca_email_history`
--

DROP TABLE IF EXISTS `wphu_cartflows_ca_email_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cartflows_ca_email_history` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `template_id` bigint(20) NOT NULL,
  `ca_session_id` varchar(60) DEFAULT NULL,
  `coupon_code` varchar(50) DEFAULT NULL,
  `scheduled_time` datetime DEFAULT NULL,
  `email_sent` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `template_id` (`template_id`),
  KEY `ca_session_id` (`ca_session_id`),
  CONSTRAINT `wphu_cartflows_ca_email_history_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `wphu_cartflows_ca_email_templates` (`id`) ON DELETE CASCADE,
  CONSTRAINT `wphu_cartflows_ca_email_history_ibfk_2` FOREIGN KEY (`ca_session_id`) REFERENCES `wphu_cartflows_ca_cart_abandonment` (`session_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cartflows_ca_email_history`
--

LOCK TABLES `wphu_cartflows_ca_email_history` WRITE;
/*!40000 ALTER TABLE `wphu_cartflows_ca_email_history` DISABLE KEYS */;
INSERT INTO `wphu_cartflows_ca_email_history` VALUES
(1,1,'1191c96ee2ac3b8f4c7dfcfe9202903f','','2022-06-08 00:23:27',1),
(2,1,'a15b2d800b9275543890d6503bd353fc','','2022-06-07 21:23:09',1),
(3,1,'4eb155b37f0676bb94509bc5092287df','','2022-10-12 21:21:36',1),
(6,1,'8862ee699690212795d9657e24a10be6','','2023-01-08 01:54:41',1),
(8,1,'4277b13c05b67bc49a1d2654b76b6a7d','','2023-02-17 16:05:44',1),
(9,1,'07f9c3a250562c74dfae0b5db2a9fc14','','2023-03-24 18:49:30',1),
(10,1,'43a6cac54228f4d104a500753fd0cad8','','2023-05-04 18:42:13',1),
(11,1,'bc3165d56a78b0d012cb64333a2ff397','','2023-07-14 14:07:28',1),
(12,1,'8cafc8f1fdb845053498e4962292d5ca','','2023-07-16 19:42:11',1),
(13,1,'e6c3e34f9ba62478e05e538235579619','','2024-05-07 21:21:43',1);
/*!40000 ALTER TABLE `wphu_cartflows_ca_email_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_cartflows_ca_email_templates`
--

DROP TABLE IF EXISTS `wphu_cartflows_ca_email_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cartflows_ca_email_templates` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `template_name` text NOT NULL,
  `email_subject` text NOT NULL,
  `email_body` mediumtext NOT NULL,
  `is_activated` tinyint(1) NOT NULL DEFAULT 0,
  `frequency` int(11) NOT NULL,
  `frequency_unit` enum('MINUTE','HOUR','DAY') NOT NULL DEFAULT 'MINUTE',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cartflows_ca_email_templates`
--

LOCK TABLES `wphu_cartflows_ca_email_templates` WRITE;
/*!40000 ALTER TABLE `wphu_cartflows_ca_email_templates` DISABLE KEYS */;
INSERT INTO `wphu_cartflows_ca_email_templates` VALUES
(1,'Sample Email Template 1','Want to finish your order?','Hi {{customer.firstname}}!\r\n\r\nWe&#039;re ready when you are. Want to finish your order?\r\n\r\n{{cart.product.table}}\r\n\r\nHere&#039;s a link to continue where you left off:\r\n\r\n<a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\"> Continue Your Purchase Now </a>\r\n\r\nKindly,\r\n{{admin.firstname}}\r\n{{admin.company}}\r\n\r\n{{cart.unsubscribe}}',1,30,'MINUTE'),
(2,'Sample Email Template 2','Need help?','Hi {{customer.firstname}}!\r\n\r\nI&#039;m {{admin.firstname}}, and I help handle customer issues at {{admin.company}}.\r\n\r\nI just noticed that you tried to make a purchase, but unfortunately you did not complete. Is there anything I can do to help?\r\n\r\nYou should be able to complete your checkout in less than a minute:\r\n<a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\"> Click here to continue your purchase </a>\r\n\r\nThanks!\r\n{{admin.firstname}}\r\n{{admin.company}}\r\n\r\n{{cart.unsubscribe}}',0,1,'DAY'),
(3,'Sample Email Template 3','Exclusive discount for you. Let\'s get things started!','<p>Few days back you left {{cart.product.names}} in your cart.</p><p>To help make up your mind, we have added an exclusive 10% discount coupon {{cart.coupon_code}} to your cart.</p><p><a href=\'{{cart.checkout_url}}\' target=\'_blank\' rel=\'noopener\'>Complete Your Purchase Now &gt;&gt;</a></p><p>Hurry! This is a onetime offer and will expire in 24 Hours.</p><p>In case you couldn\\\'t finish your order due to technical difficulties or because you need some help, just reply to this email we will be happy to help.</p><p>Kind Regards,<br />{{admin.firstname}}<br />{{admin.company}}</p><p>{{cart.unsubscribe}}</p>',0,3,'DAY');
/*!40000 ALTER TABLE `wphu_cartflows_ca_email_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_cartflows_ca_email_templates_meta`
--

DROP TABLE IF EXISTS `wphu_cartflows_ca_email_templates_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cartflows_ca_email_templates_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `email_template_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) NOT NULL,
  `meta_value` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `email_template_id` (`email_template_id`),
  CONSTRAINT `wphu_cartflows_ca_email_templates_meta_ibfk_1` FOREIGN KEY (`email_template_id`) REFERENCES `wphu_cartflows_ca_email_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cartflows_ca_email_templates_meta`
--

LOCK TABLES `wphu_cartflows_ca_email_templates_meta` WRITE;
/*!40000 ALTER TABLE `wphu_cartflows_ca_email_templates_meta` DISABLE KEYS */;
INSERT INTO `wphu_cartflows_ca_email_templates_meta` VALUES
(1,1,'override_global_coupon',''),
(2,1,'discount_type','percent'),
(3,1,'coupon_amount','10'),
(4,1,'coupon_expiry_date','0'),
(5,1,'coupon_expiry_unit','hours'),
(6,1,'use_woo_email_style',''),
(7,2,'override_global_coupon',''),
(8,2,'discount_type','percent'),
(9,2,'coupon_amount','10'),
(10,2,'coupon_expiry_date','0'),
(11,2,'coupon_expiry_unit','hours'),
(12,2,'use_woo_email_style','1'),
(13,3,'override_global_coupon',''),
(14,3,'discount_type','percent'),
(15,3,'coupon_amount','10'),
(16,3,'coupon_expiry_date',''),
(17,3,'coupon_expiry_unit','hours'),
(18,3,'use_woo_email_style',''),
(19,1,'auto_coupon',''),
(20,1,'free_shipping_coupon',''),
(21,1,'individual_use_only',''),
(22,2,'auto_coupon',''),
(23,2,'free_shipping_coupon',''),
(24,2,'individual_use_only','');
/*!40000 ALTER TABLE `wphu_cartflows_ca_email_templates_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_ce4wp_abandoned_checkout`
--

DROP TABLE IF EXISTS `wphu_ce4wp_abandoned_checkout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_ce4wp_abandoned_checkout` (
  `checkout_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_email` varchar(200) NOT NULL DEFAULT '',
  `checkout_contents` longtext NOT NULL,
  `checkout_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `checkout_updated_ts` int(11) unsigned NOT NULL DEFAULT 0,
  `checkout_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `checkout_created_ts` int(11) unsigned NOT NULL DEFAULT 0,
  `checkout_recovered` datetime DEFAULT '0000-00-00 00:00:00',
  `checkout_recovered_ts` int(11) unsigned DEFAULT 0,
  `checkout_consent` int(11) unsigned NOT NULL DEFAULT 1,
  `checkout_uuid` varchar(36) NOT NULL DEFAULT '',
  PRIMARY KEY (`checkout_id`),
  UNIQUE KEY `checkout_uuid` (`checkout_uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_ce4wp_abandoned_checkout`
--

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

--
-- Table structure for table `wphu_cky_banners`
--

DROP TABLE IF EXISTS `wphu_cky_banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cky_banners` (
  `banner_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(190) NOT NULL DEFAULT '',
  `slug` varchar(190) NOT NULL DEFAULT '',
  `status` int(11) NOT NULL DEFAULT 0,
  `settings` longtext NOT NULL DEFAULT '',
  `banner_default` int(11) NOT NULL DEFAULT 0,
  `contents` longtext NOT NULL DEFAULT '',
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`banner_id`)
) 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 `wphu_cky_banners`
--

LOCK TABLES `wphu_cky_banners` WRITE;
/*!40000 ALTER TABLE `wphu_cky_banners` DISABLE KEYS */;
INSERT INTO `wphu_cky_banners` VALUES
(1,'GDPR','gdpr-1',1,'{\"settings\":{\"id\":\"banner-1\",\"type\":\"box\",\"position\":\"bottom-left\",\"versionID\":\"6.0.0\",\"applicableLaw\":\"gdpr\",\"languages\":{\"default\":\"en\",\"selected\":[\"en\"]},\"templateGroup\":\"default\",\"customHtml\":{\"status\":false},\"theme\":\"light\",\"consentExpiry\":{\"status\":true,\"value\":\"365\"},\"ruleSet\":[{\"code\":\"ALL\",\"regions\":[]}]},\"behaviours\":{\"reloadBannerOnAccept\":{\"status\":false},\"loadAnalyticsByDefault\":{\"status\":false},\"animations\":{\"onLoad\":\"animate\",\"onHide\":\"sticky\"},\"legacyFunctions\":{\"accept\":{\"action\":\"acceptClose\",\"newTab\":false},\"reject\":{\"action\":\"rejectClose\",\"newTab\":false},\"idle\":{\"action\":\"acceptClose\",\"delay\":\"1000\"},\"navigation\":{\"action\":\"acceptClose\"},\"pageScroll\":{\"action\":\"acceptClose\"}},\"respectGPC\":{\"status\":false}},\"config\":{\"notice\":{\"status\":true,\"tag\":\"notice\",\"type\":\"container\",\"styles\":{\"background-color\":\"#FFFFFF\",\"border-color\":\"#f4f4f4\"},\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"description\":{\"type\":\"text\",\"tag\":\"description\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"brandLogo\":{\"status\":false,\"tag\":\"brand-logo\",\"meta\":{\"url\":\"#\"}},\"buttons\":{\"status\":true,\"tag\":\"notice-buttons\",\"type\":\"container\",\"elements\":{\"accept\":{\"status\":true,\"tag\":\"accept-button\",\"type\":\"button\",\"styles\":{\"color\":\"#FFFFFF\",\"background-color\":\"#1863DC\",\"border-color\":\"#1863DC\"}},\"reject\":{\"status\":true,\"tag\":\"reject-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"#1863DC\"}},\"settings\":{\"status\":true,\"tag\":\"settings-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"#1863DC\"}},\"readMore\":{\"status\":false,\"tag\":\"readmore-button\",\"type\":\"link\",\"meta\":{\"noFollow\":true,\"newTab\":true},\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"transparent\"}},\"donotSell\":{\"status\":false,\"tag\":\"donotsell-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"transparent\"}}}},\"closeButton\":{\"status\":false,\"tag\":\"close-button\"}}},\"categoryPreview\":{\"status\":false,\"type\":\"container\",\"tag\":\"detail-category-preview\",\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"detail-category-preview-title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"toggle\":{\"status\":true,\"tag\":\"detail-category-preview-toggle\",\"type\":\"toggle\",\"states\":{\"active\":{\"styles\":{\"background-color\":\"#1863DC\"}},\"inactive\":{\"styles\":{\"background-color\":\"#D0D5D2\"}}}},\"buttons\":{\"status\":true,\"tag\":\"detail-category-preview-buttons\",\"elements\":{\"save\":{\"status\":true,\"tag\":\"detail-category-preview-save-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"#1863DC\"}}}}}},\"preferenceCenter\":{\"status\":true,\"tag\":\"detail\",\"type\":\"container\",\"styles\":{\"color\":\"#212121\",\"background-color\":\"#FFFFFF\",\"border-color\":\"#f4f4f4\"},\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"detail-title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"description\":{\"type\":\"text\",\"tag\":\"detail-description\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"closeButton\":{\"status\":true,\"type\":\"button\",\"tag\":\"detail-close\"},\"categories\":{\"status\":true,\"tag\":\"detail-categories\",\"type\":\"container\",\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"detail-category-title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"description\":{\"type\":\"text\",\"tag\":\"detail-category-description\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"toggle\":{\"status\":true,\"tag\":\"detail-category-toggle\",\"type\":\"toggle\",\"states\":{\"active\":{\"styles\":{\"background-color\":\"#1863DC\"}},\"inactive\":{\"styles\":{\"background-color\":\"#D0D5D2\"}}}}}},\"buttons\":{\"status\":true,\"tag\":\"detail-buttons\",\"type\":\"container\",\"elements\":{\"accept\":{\"status\":true,\"tag\":\"detail-accept-button\",\"type\":\"button\",\"styles\":{\"color\":\"#FFFFFF\",\"background-color\":\"#1863DC\",\"border-color\":\"#1863DC\"}},\"reject\":{\"status\":true,\"tag\":\"detail-reject-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"#1863DC\"}},\"save\":{\"status\":true,\"tag\":\"detail-save-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"#1863DC\"}}}},\"poweredBy\":{\"status\":true,\"tag\":\"detail-powered-by\",\"styles\":{\"background-color\":\"#EDEDED\",\"color\":\"#293C5B\"}}}},\"optoutPopup\":{\"status\":false,\"tag\":\"optout-popup\",\"type\":\"container\",\"styles\":{\"color\":\"#212121\",\"background-color\":\"#FFFFFF\",\"border-color\":\"#F4F4F4\"},\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"optout-title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"description\":{\"type\":\"text\",\"tag\":\"optout-description\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"optOption\":{\"status\":true,\"tag\":\"optout-option\",\"type\":\"container\",\"elements\":{\"toggle\":{\"status\":true,\"tag\":\"optout-option-toggle\",\"type\":\"toggle\",\"states\":{\"active\":{\"styles\":{\"background-color\":\"#1863dc\"}},\"inactive\":{\"styles\":{\"background-color\":\"#FFFFFF\"}}}},\"title\":{\"type\":\"text\",\"tag\":\"optout-option-title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}}}},\"gpcOption\":{\"type\":\"container\",\"tag\":\"optout-gpc-option\",\"status\":false,\"elements\":{\"description\":{\"type\":\"text\",\"tag\":\"optout-gpc-option-description\",\"status\":true,\"styles\":{\"color\":\"#212121\"}}}},\"poweredBy\":{\"status\":true,\"tag\":\"optout-powered-by\",\"styles\":{\"background-color\":\"#EDEDED\",\"color\":\"#293C5B\"}},\"buttons\":{\"status\":true,\"tag\":\"optout-buttons\",\"type\":\"container\",\"elements\":{\"confirm\":{\"status\":true,\"tag\":\"optout-confirm-button\",\"type\":\"button\",\"styles\":{\"color\":\"#f4f4f4\",\"background-color\":\"#1863dc\",\"border-color\":\"#1863dc\"}},\"cancel\":{\"status\":true,\"tag\":\"optout-cancel-button\",\"type\":\"button\",\"styles\":{\"color\":\"#858585\",\"background-color\":\"#FFFFFF\",\"border-color\":\"#dedfe0\"}}}},\"closeButton\":{\"status\":true,\"tag\":\"optout-close\",\"type\":\"button\"}}},\"auditTable\":{\"status\":true,\"tag\":\"audit-table\",\"type\":\"table\",\"meta\":{\"headers\":[\"id\",\"duration\",\"description\"]},\"styles\":{\"color\":\"#212121\",\"background-color\":\"#f4f4f4\",\"border-color\":\"#ebebeb\"}},\"revisitConsent\":{\"status\":true,\"tag\":\"revisit-consent\",\"position\":\"bottom-left\",\"meta\":{\"url\":\"#\"},\"styles\":{\"background-color\":\"#0056A7\"},\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"revisit-consent-title\",\"status\":true,\"styles\":{\"color\":\"#0056a7\"}}}},\"videoPlaceholder\":{\"status\":true,\"tag\":\"video-placeholder\",\"styles\":{\"background-color\":\"#000000\",\"border-color\":\"#000000\"},\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"placeholder-title\",\"status\":true,\"styles\":{\"color\":\"#ffffff\"}}}}},\"meta\":{\"customCSS\":\"\",\"customHTML\":\"\"}}',1,'{\"en\":{\"notice\":{\"elements\":{\"title\":\"We value your privacy\",\"description\":\"<p>We use cookies to enhance your browsing experience, serve personalized ads or content, and analyze our traffic. By clicking \\\"Accept All\\\", you consent to our use of cookies.<\\/p>\",\"privacyLink\":\"\",\"buttons\":{\"elements\":{\"accept\":\"Accept All\",\"reject\":\"Reject All\",\"settings\":\"Customize\",\"readMore\":\"Cookie Policy\",\"donotSell\":\"Do Not Sell or Share My Personal Information\"}},\"closeButton\":\"Close\"}},\"categoryPreview\":{\"elements\":{\"buttons\":{\"elements\":{\"save\":\"Save My Preferences\"}}}},\"preferenceCenter\":{\"elements\":{\"title\":\"Customize Consent Preferences\",\"description\":\"<p>We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.<\\/p><p>The cookies that are categorized as \\\"Necessary\\\" are stored on your browser as they are essential for enabling the basic functionalities of the site. <\\/p><p>We also use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. These cookies will only be stored in your browser with your prior consent.<\\/p><p>You can choose to enable or disable some or all of these cookies but disabling some of them may affect your browsing experience.<\\/p>\",\"showMore\":\"Show more\",\"showLess\":\"Show less\",\"category\":{\"elements\":{\"alwaysEnabled\":\"Always Active\",\"enable\":\"Enable\",\"disable\":\"Disable\"}},\"buttons\":{\"elements\":{\"accept\":\"Accept All\",\"save\":\"Save My Preferences\",\"reject\":\"Reject All\"}},\"closeButton\":\"Close\"}},\"optoutPopup\":{\"elements\":{\"title\":\"Opt-out Preferences\",\"description\":\"<p>We use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. However, you can opt out of these cookies by checking \\\"Do Not Sell or Share My Personal Information\\\" and clicking the \\\"Save My Preferences\\\" button. Once you opt out, you can opt in again at any time by unchecking \\\"Do Not Sell or Share My Personal Information\\\" and clicking the \\\"Save My Preferences\\\" button.<\\/p>\",\"optOption\":{\"elements\":{\"title\":\"Do Not Sell or Share My Personal Information\",\"enable\":\"Enable\",\"disable\":\"Disable\"}},\"gpcOption\":{\"elements\":{\"description\":\"<p>Your opt-out settings for this website have been respected since we deteted a <b>Gobal Privacy Control<\\/b> signal from your browser and, therefore, you cannot change this setting.<\\/p>\"}},\"showLess\":\"Show less\",\"showMore\":\"Show more\",\"buttons\":{\"elements\":{\"cancel\":\"Cancel\",\"confirm\":\"Save My Preferences\"}},\"closeButton\":\"Close\"}},\"revisitConsent\":{\"elements\":{\"title\":\"Cookie Settings\"}},\"auditTable\":{\"elements\":{\"headers\":{\"elements\":{\"id\":\"Cookie\",\"duration\":\"Duration\",\"description\":\"Description\"}},\"message\":\"No cookies to display.\"}},\"videoPlaceholder\":{\"elements\":{\"title\":\"Please accept cookies to access this content\"}}}}','2023-03-15 18:50:39','2023-03-15 18:50:39'),
(2,'CCPA','ccpa-2',0,'{\"settings\":{\"id\":\"banner-1\",\"type\":\"box\",\"position\":\"bottom-left\",\"versionID\":\"6.0.0\",\"applicableLaw\":\"ccpa\",\"languages\":{\"default\":\"en\",\"selected\":[\"en\"]},\"templateGroup\":\"default\",\"customHtml\":{\"status\":false},\"theme\":\"light\",\"consentExpiry\":{\"status\":true,\"value\":\"365\"},\"ruleSet\":[{\"code\":\"ALL\",\"regions\":[]}]},\"behaviours\":{\"reloadBannerOnAccept\":{\"status\":false},\"loadAnalyticsByDefault\":{\"status\":false},\"animations\":{\"onLoad\":\"animate\",\"onHide\":\"sticky\"},\"legacyFunctions\":{\"accept\":{\"action\":\"acceptClose\",\"newTab\":false},\"reject\":{\"action\":\"rejectClose\",\"newTab\":false},\"idle\":{\"action\":\"acceptClose\",\"delay\":\"1000\"},\"navigation\":{\"action\":\"acceptClose\"},\"pageScroll\":{\"action\":\"acceptClose\"}},\"respectGPC\":{\"status\":false}},\"config\":{\"notice\":{\"status\":true,\"tag\":\"notice\",\"type\":\"container\",\"styles\":{\"background-color\":\"#FFFFFF\",\"border-color\":\"#f4f4f4\"},\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"description\":{\"type\":\"text\",\"tag\":\"description\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"brandLogo\":{\"status\":false,\"tag\":\"brand-logo\",\"meta\":{\"url\":\"#\"}},\"buttons\":{\"status\":true,\"tag\":\"notice-buttons\",\"type\":\"container\",\"elements\":{\"accept\":{\"status\":false,\"tag\":\"accept-button\",\"type\":\"button\",\"styles\":{\"color\":\"#FFFFFF\",\"background-color\":\"#1863DC\",\"border-color\":\"#1863DC\"}},\"reject\":{\"status\":false,\"tag\":\"reject-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"#1863DC\"}},\"settings\":{\"status\":false,\"tag\":\"settings-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"#1863DC\"}},\"readMore\":{\"status\":false,\"tag\":\"readmore-button\",\"type\":\"link\",\"meta\":{\"noFollow\":true,\"newTab\":true},\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"transparent\"}},\"donotSell\":{\"status\":true,\"tag\":\"donotsell-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"transparent\"}}}},\"closeButton\":{\"status\":true,\"tag\":\"close-button\"}}},\"categoryPreview\":{\"status\":false,\"type\":\"container\",\"tag\":\"detail-category-preview\",\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"detail-category-preview-title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"toggle\":{\"status\":true,\"tag\":\"detail-category-preview-toggle\",\"type\":\"toggle\",\"states\":{\"active\":{\"styles\":{\"background-color\":\"#1863DC\"}},\"inactive\":{\"styles\":{\"background-color\":\"#D0D5D2\"}}}},\"buttons\":{\"status\":true,\"tag\":\"detail-category-preview-buttons\",\"elements\":{\"save\":{\"status\":true,\"tag\":\"detail-category-preview-save-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"#1863DC\"}}}}}},\"preferenceCenter\":{\"status\":false,\"tag\":\"detail\",\"type\":\"container\",\"styles\":{\"color\":\"#212121\",\"background-color\":\"#FFFFFF\",\"border-color\":\"#f4f4f4\"},\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"detail-title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"description\":{\"type\":\"text\",\"tag\":\"detail-description\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"closeButton\":{\"status\":true,\"type\":\"button\",\"tag\":\"detail-close\"},\"categories\":{\"status\":true,\"tag\":\"detail-categories\",\"type\":\"container\",\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"detail-category-title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"description\":{\"type\":\"text\",\"tag\":\"detail-category-description\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"toggle\":{\"status\":true,\"tag\":\"detail-category-toggle\",\"type\":\"toggle\",\"states\":{\"active\":{\"styles\":{\"background-color\":\"#1863DC\"}},\"inactive\":{\"styles\":{\"background-color\":\"#D0D5D2\"}}}}}},\"buttons\":{\"status\":true,\"tag\":\"detail-buttons\",\"type\":\"container\",\"elements\":{\"accept\":{\"status\":true,\"tag\":\"detail-accept-button\",\"type\":\"button\",\"styles\":{\"color\":\"#FFFFFF\",\"background-color\":\"#1863DC\",\"border-color\":\"#1863DC\"}},\"reject\":{\"status\":true,\"tag\":\"detail-reject-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"#1863DC\"}},\"save\":{\"status\":true,\"tag\":\"detail-save-button\",\"type\":\"button\",\"styles\":{\"color\":\"#1863DC\",\"background-color\":\"transparent\",\"border-color\":\"#1863DC\"}}}},\"poweredBy\":{\"status\":true,\"tag\":\"detail-powered-by\",\"styles\":{\"background-color\":\"#EDEDED\",\"color\":\"#293C5B\"}}}},\"optoutPopup\":{\"status\":true,\"tag\":\"optout-popup\",\"type\":\"container\",\"styles\":{\"color\":\"#212121\",\"background-color\":\"#FFFFFF\",\"border-color\":\"#F4F4F4\"},\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"optout-title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"description\":{\"type\":\"text\",\"tag\":\"optout-description\",\"status\":true,\"styles\":{\"color\":\"#212121\"}},\"optOption\":{\"status\":true,\"tag\":\"optout-option\",\"type\":\"container\",\"elements\":{\"toggle\":{\"status\":true,\"tag\":\"optout-option-toggle\",\"type\":\"toggle\",\"states\":{\"active\":{\"styles\":{\"background-color\":\"#1863dc\"}},\"inactive\":{\"styles\":{\"background-color\":\"#FFFFFF\"}}}},\"title\":{\"type\":\"text\",\"tag\":\"optout-option-title\",\"status\":true,\"styles\":{\"color\":\"#212121\"}}}},\"gpcOption\":{\"type\":\"container\",\"tag\":\"optout-gpc-option\",\"status\":false,\"elements\":{\"description\":{\"type\":\"text\",\"tag\":\"optout-gpc-option-description\",\"status\":true,\"styles\":{\"color\":\"#212121\"}}}},\"poweredBy\":{\"status\":true,\"tag\":\"optout-powered-by\",\"styles\":{\"background-color\":\"#EDEDED\",\"color\":\"#293C5B\"}},\"buttons\":{\"status\":true,\"tag\":\"optout-buttons\",\"type\":\"container\",\"elements\":{\"confirm\":{\"status\":true,\"tag\":\"optout-confirm-button\",\"type\":\"button\",\"styles\":{\"color\":\"#f4f4f4\",\"background-color\":\"#1863dc\",\"border-color\":\"#1863dc\"}},\"cancel\":{\"status\":true,\"tag\":\"optout-cancel-button\",\"type\":\"button\",\"styles\":{\"color\":\"#858585\",\"background-color\":\"#FFFFFF\",\"border-color\":\"#dedfe0\"}}}},\"closeButton\":{\"status\":true,\"tag\":\"optout-close\",\"type\":\"button\"}}},\"auditTable\":{\"status\":false,\"tag\":\"audit-table\",\"type\":\"table\",\"meta\":{\"headers\":[\"id\",\"duration\",\"description\"]},\"styles\":{\"color\":\"#212121\",\"background-color\":\"#f4f4f4\",\"border-color\":\"#ebebeb\"}},\"revisitConsent\":{\"status\":true,\"tag\":\"revisit-consent\",\"position\":\"bottom-left\",\"meta\":{\"url\":\"#\"},\"styles\":{\"background-color\":\"#0056A7\"},\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"revisit-consent-title\",\"status\":true,\"styles\":{\"color\":\"#0056a7\"}}}},\"videoPlaceholder\":{\"status\":true,\"tag\":\"video-placeholder\",\"styles\":{\"background-color\":\"#000000\",\"border-color\":\"#000000\"},\"elements\":{\"title\":{\"type\":\"text\",\"tag\":\"placeholder-title\",\"status\":true,\"styles\":{\"color\":\"#ffffff\"}}}}},\"meta\":{\"customCSS\":\"\",\"customHTML\":\"\"}}',0,'{\"en\":{\"notice\":{\"elements\":{\"title\":\"We value your privacy\",\"description\":\"This website or its third-party tools process personal data. You can opt out of the sale of your personal information by clicking on the \\\"Do Not Sell or Share My Personal Information\\\" link.\",\"privacyLink\":\"\",\"buttons\":{\"elements\":{\"accept\":\"Accept All\",\"reject\":\"Reject All\",\"settings\":\"Customize\",\"readMore\":\"Cookie Policy\",\"donotSell\":\"Do Not Sell or Share My Personal Information\"}},\"closeButton\":\"Close\"}},\"categoryPreview\":{\"elements\":{\"buttons\":{\"elements\":{\"save\":\"Save My Preferences\"}}}},\"preferenceCenter\":{\"elements\":{\"title\":\"Customize Consent Preferences\",\"description\":\"<p>We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.<\\/p><p>The cookies that are categorized as \\\"Necessary\\\" are stored on your browser as they are essential for enabling the basic functionalities of the site. <\\/p><p>We also use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. These cookies will only be stored in your browser with your prior consent.<\\/p><p>You can choose to enable or disable some or all of these cookies but disabling some of them may affect your browsing experience.<\\/p>\",\"showMore\":\"Show more\",\"showLess\":\"Show less\",\"category\":{\"elements\":{\"alwaysEnabled\":\"Always Active\",\"enable\":\"Enable\",\"disable\":\"Disable\"}},\"buttons\":{\"elements\":{\"accept\":\"Accept All\",\"save\":\"Save My Preferences\",\"reject\":\"Reject All\"}},\"closeButton\":\"Close\"}},\"optoutPopup\":{\"elements\":{\"title\":\"Opt-out Preferences\",\"description\":\"<p>We use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. However, you can opt out of these cookies by checking \\\"Do Not Sell or Share My Personal Information\\\" and clicking the \\\"Save My Preferences\\\" button. Once you opt out, you can opt in again at any time by unchecking \\\"Do Not Sell or Share My Personal Information\\\" and clicking the \\\"Save My Preferences\\\" button.<\\/p>\",\"optOption\":{\"elements\":{\"title\":\"Do Not Sell or Share My Personal Information\",\"enable\":\"Enable\",\"disable\":\"Disable\"}},\"gpcOption\":{\"elements\":{\"description\":\"<p>Your opt-out settings for this website have been respected since we deteted a <b>Gobal Privacy Control<\\/b> signal from your browser and, therefore, you cannot change this setting.<\\/p>\"}},\"showLess\":\"Show less\",\"showMore\":\"Show more\",\"buttons\":{\"elements\":{\"cancel\":\"Cancel\",\"confirm\":\"Save My Preferences\"}},\"closeButton\":\"Close\"}},\"revisitConsent\":{\"elements\":{\"title\":\"Cookie Settings\"}},\"auditTable\":{\"elements\":{\"headers\":{\"elements\":{\"id\":\"Cookie\",\"duration\":\"Duration\",\"description\":\"Description\"}},\"message\":\"No cookies to display.\"}},\"videoPlaceholder\":{\"elements\":{\"title\":\"Please accept cookies to access this content\"}}}}','2023-03-15 18:50:39','2023-03-15 18:50:39');
/*!40000 ALTER TABLE `wphu_cky_banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_cky_cookie_categories`
--

DROP TABLE IF EXISTS `wphu_cky_cookie_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cky_cookie_categories` (
  `category_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` text NOT NULL DEFAULT '',
  `slug` varchar(190) NOT NULL DEFAULT '',
  `description` longtext NOT NULL DEFAULT '',
  `prior_consent` int(11) NOT NULL DEFAULT 0,
  `visibility` int(11) NOT NULL DEFAULT 1,
  `priority` int(11) NOT NULL DEFAULT 0,
  `sell_personal_data` int(11) NOT NULL DEFAULT 0,
  `meta` longtext DEFAULT '',
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`category_id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cky_cookie_categories`
--

LOCK TABLES `wphu_cky_cookie_categories` WRITE;
/*!40000 ALTER TABLE `wphu_cky_cookie_categories` DISABLE KEYS */;
INSERT INTO `wphu_cky_cookie_categories` VALUES
(1,'{\"en\":\"Necessary\"}','necessary','{\"en\":\"<p>Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.<\\/p>\"}',1,1,0,1,'[]','0000-00-00 00:00:00','2023-03-15 18:50:39'),
(2,'{\"en\":\"Functional\"}','functional','{\"en\":\"<p>Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.<\\/p>\"}',0,1,0,1,'[]','0000-00-00 00:00:00','2023-03-15 18:50:39'),
(3,'{\"en\":\"Analytics\"}','analytics','{\"en\":\"<p>Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.<\\/p>\"}',0,1,0,1,'[]','0000-00-00 00:00:00','2023-03-15 18:50:39'),
(4,'{\"en\":\"Performance\"}','performance','{\"en\":\"<p>Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.<\\/p>\"}',0,1,0,1,'[]','0000-00-00 00:00:00','2023-03-15 18:50:39'),
(5,'{\"en\":\"Advertisement\"}','advertisement','{\"en\":\"<p>Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.<\\/p>\"}',0,1,0,1,'[]','0000-00-00 00:00:00','2023-03-15 18:50:39');
/*!40000 ALTER TABLE `wphu_cky_cookie_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_cky_cookies`
--

DROP TABLE IF EXISTS `wphu_cky_cookies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cky_cookies` (
  `cookie_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(190) NOT NULL DEFAULT '',
  `slug` varchar(190) NOT NULL DEFAULT '',
  `description` longtext NOT NULL DEFAULT '',
  `duration` text NOT NULL DEFAULT '',
  `domain` varchar(190) NOT NULL DEFAULT '',
  `category` bigint(20) NOT NULL,
  `type` text NOT NULL DEFAULT '',
  `discovered` int(11) NOT NULL DEFAULT 0,
  `url_pattern` varchar(190) DEFAULT '',
  `meta` longtext DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`cookie_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cky_cookies`
--

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

--
-- Table structure for table `wphu_cli_cookie_scan`
--

DROP TABLE IF EXISTS `wphu_cli_cookie_scan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cli_cookie_scan` (
  `id_cli_cookie_scan` int(11) NOT NULL AUTO_INCREMENT,
  `status` int(11) NOT NULL DEFAULT 0,
  `created_at` int(11) NOT NULL DEFAULT 0,
  `total_url` int(11) NOT NULL DEFAULT 0,
  `total_cookies` int(11) NOT NULL DEFAULT 0,
  `current_action` varchar(50) NOT NULL,
  `current_offset` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_cli_cookie_scan`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cli_cookie_scan`
--

LOCK TABLES `wphu_cli_cookie_scan` WRITE;
/*!40000 ALTER TABLE `wphu_cli_cookie_scan` DISABLE KEYS */;
INSERT INTO `wphu_cli_cookie_scan` VALUES
(1,2,1618346453,31,0,'scan_pages',-1);
/*!40000 ALTER TABLE `wphu_cli_cookie_scan` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_cli_cookie_scan_categories`
--

DROP TABLE IF EXISTS `wphu_cli_cookie_scan_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cli_cookie_scan_categories` (
  `id_cli_cookie_category` int(11) NOT NULL AUTO_INCREMENT,
  `cli_cookie_category_name` varchar(100) NOT NULL,
  `cli_cookie_category_description` text DEFAULT NULL,
  PRIMARY KEY (`id_cli_cookie_category`),
  UNIQUE KEY `cookie` (`cli_cookie_category_name`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cli_cookie_scan_categories`
--

LOCK TABLES `wphu_cli_cookie_scan_categories` WRITE;
/*!40000 ALTER TABLE `wphu_cli_cookie_scan_categories` DISABLE KEYS */;
INSERT INTO `wphu_cli_cookie_scan_categories` VALUES
(1,'Others','Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.'),
(2,'Necessary','Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.'),
(3,'Advertisement','Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.'),
(4,'Functional','Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.'),
(5,'Performance','Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.');
/*!40000 ALTER TABLE `wphu_cli_cookie_scan_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_cli_cookie_scan_cookies`
--

DROP TABLE IF EXISTS `wphu_cli_cookie_scan_cookies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cli_cookie_scan_cookies` (
  `id_cli_cookie_scan_cookies` int(11) NOT NULL AUTO_INCREMENT,
  `id_cli_cookie_scan` int(11) NOT NULL DEFAULT 0,
  `id_cli_cookie_scan_url` int(11) NOT NULL DEFAULT 0,
  `cookie_id` varchar(255) NOT NULL,
  `expiry` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `category` varchar(255) NOT NULL,
  `category_id` int(11) NOT NULL,
  `description` text DEFAULT '',
  PRIMARY KEY (`id_cli_cookie_scan_cookies`),
  UNIQUE KEY `cookie` (`id_cli_cookie_scan`,`cookie_id`),
  KEY `category_id` (`category_id`),
  CONSTRAINT `wphu_cli_cookie_scan_cookies_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `wphu_cli_cookie_scan_categories` (`id_cli_cookie_category`),
  CONSTRAINT `wphu_cli_cookie_scan_cookies_ibfk_2` FOREIGN KEY (`category_id`) REFERENCES `wphu_cli_cookie_scan_categories` (`id_cli_cookie_category`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cli_cookie_scan_cookies`
--

LOCK TABLES `wphu_cli_cookie_scan_cookies` WRITE;
/*!40000 ALTER TABLE `wphu_cli_cookie_scan_cookies` DISABLE KEYS */;
INSERT INTO `wphu_cli_cookie_scan_cookies` VALUES
(1,1,3,'alg-wc-wl-user-id','3 months','1','Others',1,'No description'),
(2,1,3,'conv_person','2 years','1','Others',1,'No description'),
(3,1,3,'conv_session','2 years','1','Others',1,'No description'),
(4,1,3,'session','session','1','Others',1,'No description'),
(5,1,3,'cookielawinfo-checkbox-functional','1 year','1','Others',1,'The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category \"Functional\".'),
(6,1,3,'cookielawinfo-checkbox-others','1 year','0','Others',1,'No description'),
(7,1,1,'CONSENT','16 years 8 months 18 days 3 hours 19 minutes','0','Others',1,'No description'),
(8,1,17,'cookies.js','session','1','Others',1,'No description'),
(9,1,3,'cookielawinfo-checkbox-necessary','1 year','1','Necessary',2,'This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category \"Necessary\".'),
(10,1,3,'cookielawinfo-checkbox-performance','1 year','1','Necessary',2,'This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category \"Performance\".'),
(11,1,3,'cookielawinfo-checkbox-analytics','1 year','1','Necessary',2,'This cookies is set by GDPR Cookie Consent WordPress Plugin. The cookie is used to remember the user consent for the cookies under the category \"Analytics\".'),
(12,1,3,'cookielawinfo-checkbox-advertisement','1 year','1','Necessary',2,'The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category \"Advertisement\".'),
(13,1,3,'__cfduid','1 month','1','Necessary',2,'The cookie is used by cdn services like CloudFare to identify individual clients behind a shared IP address and apply security settings on a per-client basis. It does not correspond to any user ID in the web application and does not store any personally identifiable information.'),
(14,1,1,'VISITOR_INFO1_LIVE','5 months 27 days','1','Advertisement',3,'This cookie is set by Youtube. Used to track the information of the embedded YouTube videos on a website.'),
(15,1,1,'test_cookie','15 minutes','1','Advertisement',3,'This cookie is set by doubleclick.net. The purpose of the cookie is to determine if the user\'s browser supports cookies.'),
(16,1,1,'IDE','1 year 24 days','1','Advertisement',3,'Used by Google DoubleClick and stores information about how the user uses the website and any other advertisement before visiting the website. This is used to present users with ads that are relevant to them according to the user profile.'),
(17,1,3,'mailchimp_landing_site','1 month','1','Functional',4,'The cookie is set by the email marketing service MailChimp.'),
(18,1,1,'YSC','session','1','Performance',5,'This cookies is set by Youtube and is used to track the views of embedded videos.');
/*!40000 ALTER TABLE `wphu_cli_cookie_scan_cookies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_cli_cookie_scan_url`
--

DROP TABLE IF EXISTS `wphu_cli_cookie_scan_url`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cli_cookie_scan_url` (
  `id_cli_cookie_scan_url` int(11) NOT NULL AUTO_INCREMENT,
  `id_cli_cookie_scan` int(11) NOT NULL DEFAULT 0,
  `url` text NOT NULL,
  `scanned` int(11) NOT NULL DEFAULT 0,
  `total_cookies` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_cli_cookie_scan_url`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cli_cookie_scan_url`
--

LOCK TABLES `wphu_cli_cookie_scan_url` WRITE;
/*!40000 ALTER TABLE `wphu_cli_cookie_scan_url` DISABLE KEYS */;
INSERT INTO `wphu_cli_cookie_scan_url` VALUES
(1,1,'http://choiceresources.co.uk',0,0),
(2,1,'http://choiceresources.co.uk/sample-page/',0,0),
(3,1,'http://choiceresources.co.uk/create-your-website-with-blocks/',0,0),
(4,1,'http://choiceresources.co.uk/about/',0,0),
(5,1,'http://choiceresources.co.uk/contact/',0,0),
(6,1,'http://choiceresources.co.uk/blog/',0,0),
(7,1,'http://choiceresources.co.uk/shop/',0,0),
(8,1,'http://choiceresources.co.uk/cart/',0,0),
(9,1,'http://choiceresources.co.uk/checkout/',0,0),
(10,1,'http://choiceresources.co.uk/my-account/',0,0),
(11,1,'http://choiceresources.co.uk/',0,0),
(12,1,'http://choiceresources.co.uk/privacy-policy-4/',0,0),
(13,1,'http://choiceresources.co.uk/terms-of-use/',0,0),
(14,1,'http://choiceresources.co.uk/shop-2/',0,0),
(15,1,'http://choiceresources.co.uk/cookie-policy/',0,0),
(16,1,'http://choiceresources.co.uk/wish-list/',0,0),
(17,1,'http://choiceresources.co.uk/?elementor_library=default-kit',0,0),
(18,1,'http://choiceresources.co.uk/product/product-1/',0,0),
(19,1,'http://choiceresources.co.uk/product/product-2/',0,0),
(20,1,'http://choiceresources.co.uk/product/product-3/',0,0),
(21,1,'http://choiceresources.co.uk/product/product-4/',0,0),
(22,1,'http://choiceresources.co.uk/?elementor_library=elementor-header-43',0,0),
(23,1,'http://choiceresources.co.uk/?elementor_library=elementor-single-product-55',0,0),
(24,1,'http://choiceresources.co.uk/?elementor_library=footer',0,0),
(25,1,'http://choiceresources.co.uk/2021/03/31/ready-steady-grow/',0,0),
(26,1,'http://choiceresources.co.uk/2021/03/30/big-ideas/',0,0),
(27,1,'http://choiceresources.co.uk/2021/03/30/best-is-yet-to-come/',0,0),
(28,1,'http://choiceresources.co.uk/2021/03/30/more-than-what-youd-expect/',0,0),
(29,1,'http://choiceresources.co.uk/?elementor_library=single-post-page',0,0),
(30,1,'http://choiceresources.co.uk/?elementor_library=blog-archive',0,0),
(31,1,'http://choiceresources.co.uk/?elementor_library=elementor-products-archive-497',0,0);
/*!40000 ALTER TABLE `wphu_cli_cookie_scan_url` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_cli_scripts`
--

DROP TABLE IF EXISTS `wphu_cli_scripts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_cli_scripts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `cliscript_title` text NOT NULL,
  `cliscript_category` varchar(100) NOT NULL,
  `cliscript_type` int(11) DEFAULT 0,
  `cliscript_status` varchar(100) NOT NULL,
  `cliscript_description` longtext NOT NULL,
  `cliscript_key` varchar(100) NOT NULL,
  `type` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_cli_scripts`
--

LOCK TABLES `wphu_cli_scripts` WRITE;
/*!40000 ALTER TABLE `wphu_cli_scripts` DISABLE KEYS */;
INSERT INTO `wphu_cli_scripts` VALUES
(1,'Official Facebook Pixel','analytics',1,'yes','Official Facebook Pixel','facebook-for-wordpress',0),
(2,'Smash Balloon Twitter Feed','analytics',1,'yes','Twitter Feed By Smash Baloon','twitter-feed',0),
(3,'Smash Balloon Instagram Feed','advertisement',1,'yes','Instagram Feed By Smash Baloon','instagram-feed',0),
(4,'Google Analytics for WordPress by MonsterInsights','analytics',1,'yes','Google Analytics Dashboard Plugin for WordPress by MonsterInsights','google-analytics-for-wordpress',0);
/*!40000 ALTER TABLE `wphu_cli_scripts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_commentmeta`
--

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

--
-- Dumping data for table `wphu_commentmeta`
--

LOCK TABLES `wphu_commentmeta` WRITE;
/*!40000 ALTER TABLE `wphu_commentmeta` DISABLE KEYS */;
INSERT INTO `wphu_commentmeta` VALUES
(21,130,'notified',''),
(22,135,'notified',''),
(23,138,'notified',''),
(28,172,'notified',''),
(29,178,'notified',''),
(30,181,'notified','');
/*!40000 ALTER TABLE `wphu_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_comments`
--

DROP TABLE IF EXISTS `wphu_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) 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 NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) 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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=203 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_comments`
--

LOCK TABLES `wphu_comments` WRITE;
/*!40000 ALTER TABLE `wphu_comments` DISABLE KEYS */;
INSERT INTO `wphu_comments` VALUES
(2,1057,'WooCommerce','woocommerce@choiceresources.co.uk','','','2021-05-12 18:34:09','2021-05-12 18:34:09','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(3,1058,'WooCommerce','woocommerce@choiceresources.co.uk','','','2021-05-12 18:44:40','2021-05-12 18:44:40','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(10,1062,'WooCommerce','woocommerce@choiceresources.co.uk','','','2021-05-12 20:58:34','2021-05-12 20:58:34','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(14,1066,'WooCommerce','woocommerce@choiceresources.co.uk','','','2021-05-12 21:36:58','2021-05-12 21:36:58','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),
(22,1069,'WooCommerce','woocommerce@choiceresources.co.uk','','','2021-05-12 22:12:23','2021-05-12 22:12:23','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(27,4047,'WooCommerce','woocommerce@choiceresources.co.uk','','','2021-09-17 14:41:00','2021-09-17 14:41:00','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(28,4162,'WooCommerce','woocommerce@choiceresources.co.uk','','','2021-09-20 13:00:16','2021-09-20 13:00:16','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(29,4163,'WooCommerce','woocommerce@choiceresources.co.uk','','','2021-09-20 13:09:15','2021-09-20 13:09:15','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(35,5792,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-05-12 10:10:58','2022-05-12 10:10:58','IPN subscription payment failure.',0,'1','WooCommerce','order_note',0,0),
(37,5792,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-05-12 10:10:58','2022-05-12 10:10:58','Order status changed from Pending payment to Failed.',0,'1','WooCommerce','order_note',0,0),
(47,7396,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-02 20:28:16','2022-06-02 20:28:16','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(48,7396,'admin','ivankulongo@gmail.com','','','2022-06-02 20:32:19','2022-06-02 20:32:19','Order status changed from On hold to Completed.',0,'1','WooCommerce','order_note',0,0),
(49,7401,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-02 20:50:51','2022-06-02 20:50:51','PayPal payment approved (ID: 6LK35360X9701671S)',0,'1','WooCommerce','order_note',0,0),
(51,7401,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-02 20:50:51','2022-06-02 20:50:51','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(58,7397,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-02 21:33:39','2022-06-02 21:33:39','Order cancelled by customer. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),
(59,7406,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-02 21:47:47','2022-06-02 21:47:47','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(61,7411,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-02 23:47:33','2022-06-02 23:47:33','PayPal payment approved (ID: 4GN37217R6930305H)',0,'1','WooCommerce','order_note',0,0),
(63,7411,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-02 23:47:33','2022-06-02 23:47:33','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(69,7421,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-03 00:16:03','2022-06-03 00:16:03','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(75,7427,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-03 00:25:49','2022-06-03 00:25:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(78,7645,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 11:16:37','2022-06-06 11:16:37','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(79,7701,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 12:40:45','2022-06-06 12:40:45','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(80,7702,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 12:46:31','2022-06-06 12:46:31','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(81,7931,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 13:24:43','2022-06-06 13:24:43','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(82,7932,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 13:27:42','2022-06-06 13:27:42','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(83,7944,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 14:10:35','2022-06-06 14:10:35','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(84,7949,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 14:18:47','2022-06-06 14:18:47','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(85,7959,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 14:24:35','2022-06-06 14:24:35','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(86,8243,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 16:07:25','2022-06-06 16:07:25','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(87,8272,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 17:34:15','2022-06-06 17:34:15','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(88,8275,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 17:47:37','2022-06-06 17:47:37','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(89,8284,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 18:10:20','2022-06-06 18:10:20','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(90,8285,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-06 18:22:49','2022-06-06 18:22:49','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(91,7427,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-07 16:21:03','2022-06-07 16:21:03','The related subscription #7428 has been deleted after the customer was deleted by admin.',0,'1','WooCommerce','order_note',0,0),
(94,8354,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-07 16:51:35','2022-06-07 16:51:35','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(95,8380,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-07 20:53:48','2022-06-07 20:53:48','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(96,8392,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-07 23:54:11','2022-06-07 23:54:11','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(97,8654,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-09 17:40:05','2022-06-09 17:40:05','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(98,8655,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-09 17:41:55','2022-06-09 17:41:55','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(99,5791,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-12 02:19:17','2022-06-12 02:19:17','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),
(100,7400,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-12 02:19:17','2022-06-12 02:19:17','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),
(101,7407,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-12 02:19:17','2022-06-12 02:19:17','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),
(102,8259,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-19 02:19:27','2022-06-19 02:19:27','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),
(103,8287,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-06-19 02:19:27','2022-06-19 02:19:27','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),
(122,17406,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-16 22:48:32','2022-11-16 22:48:32','PayPal payment approved (ID: 16402744X4953772G)',0,'1','WooCommerce','order_note',0,0),
(123,17406,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-16 22:48:33','2022-11-16 22:48:33','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(126,17406,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-16 22:48:33','2022-11-16 22:48:33','This order was abandoned & subsequently recovered.',0,'1','WooCommerce','order_note',0,0),
(129,17435,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-16 23:16:57','2022-11-16 23:16:57','PayPal payment approved (ID: 2R42254528425644R)',0,'1','WooCommerce','order_note',0,0),
(130,17437,'admin','ivankulongo@gmail.com','','','2022-11-16 23:16:57','2022-11-16 23:16:57','Membership access granted from purchasing 1 Year 100% Worksheet Discount  Membership Plan (Order 17435)',0,'1','WooCommerce','user_membership_note',0,0),
(131,17435,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-16 23:16:57','2022-11-16 23:16:57','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(132,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-16 23:16:58','2022-11-16 23:16:58','Payment status marked complete.',0,'1','WooCommerce','order_note',0,0),
(133,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-16 23:16:58','2022-11-16 23:16:58','Status changed from Pending to Active.',0,'1','WooCommerce','order_note',0,0),
(134,17435,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-16 23:16:58','2022-11-16 23:16:58','This order was abandoned & subsequently recovered.',0,'1','WooCommerce','order_note',0,0),
(135,17437,'admin','ivankulongo@gmail.com','','','2022-11-17 01:28:11','2022-11-17 01:28:11','Membership status changed from Active to Pending Cancellation.',0,'1','WooCommerce','user_membership_note',0,0),
(136,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-17 01:28:11','2022-11-17 01:28:11','Status changed from Active to Pending Cancellation.',0,'1','WooCommerce','order_note',0,0),
(137,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-17 01:28:11','2022-11-17 01:28:11','Subscription cancelled by the subscriber from their account page.',0,'1','WooCommerce','order_note',0,0),
(138,17437,'admin','ivankulongo@gmail.com','','','2022-11-17 01:28:22','2022-11-17 01:28:22','Membership status changed from Pending Cancellation to Active.',0,'1','WooCommerce','user_membership_note',0,0),
(139,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-17 01:28:22','2022-11-17 01:28:22','Status changed from Pending Cancellation to Active.',0,'1','WooCommerce','order_note',0,0),
(140,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-17 01:28:22','2022-11-17 01:28:22','Subscription reactivated by the subscriber from their account page.',0,'1','WooCommerce','order_note',0,0),
(141,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2022-11-17 01:29:00','2022-11-17 01:29:00','Payment method changed from \"PayPal\" to \"PayPal\" by the subscriber from their account page.',0,'1','WooCommerce','order_note',0,0),
(143,20640,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-01-06 01:59:41','2023-01-06 01:59:41','PayPal payment approved (ID: 3AA667145G006493J)',0,'1','WooCommerce','order_note',0,0),
(145,20640,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-01-06 01:59:41','2023-01-06 01:59:41','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(148,22678,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-01-25 15:51:01','2023-01-25 15:51:01','The related subscription #22679 has been deleted after the customer was deleted by admin.',0,'1','WooCommerce','order_note',0,0),
(150,20640,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-01-25 15:54:19','2023-01-25 15:54:19','The related subscription #20645 has been deleted after the customer was deleted by admin.',0,'1','WooCommerce','order_note',0,0),
(153,22681,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-01-25 15:58:59','2023-01-25 15:58:59','PayPal payment approved (ID: 74V26381T18053104)',0,'1','WooCommerce','order_note',0,0),
(155,22681,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-01-25 15:58:59','2023-01-25 15:58:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(158,22681,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-01-25 15:58:59','2023-01-25 15:58:59','This order was abandoned & subsequently recovered.',0,'1','WooCommerce','order_note',0,0),
(159,22681,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-01-25 16:02:58','2023-01-25 16:02:58','The related subscription #22682 has been deleted after the customer was deleted by admin.',0,'1','WooCommerce','order_note',0,0),
(162,22678,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-02-01 22:29:10','2023-02-01 22:29:10','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),
(163,24475,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-02-17 15:39:24','2023-02-17 15:39:24','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(172,17437,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-11-16 23:17:15','2023-11-16 23:17:15','Membership status changed from Active to Paused.',0,'1','WooCommerce','user_membership_note',0,0),
(173,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-11-16 23:17:15','2023-11-16 23:17:15','Subscription renewal payment due: Status changed from Active to On hold.',0,'1','WooCommerce','order_note',0,0),
(174,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-11-16 23:17:15','2023-11-16 23:17:15','Order <a href=\"https://choiceresources.co.uk/wp-admin/post.php?post=30893&#038;action=edit\">#30893</a>  created to record renewal.',0,'1','WooCommerce','order_note',0,0),
(175,30893,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-11-16 23:17:17','2023-11-16 23:17:17','PayPal payment approved (ID: 5SK332042H8541356)',0,'1','WooCommerce','order_note',0,0),
(176,30893,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-11-16 23:17:18','2023-11-16 23:17:18','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(177,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-11-16 23:17:18','2023-11-16 23:17:18','Payment status marked complete.',0,'1','WooCommerce','order_note',0,0),
(178,17437,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-11-16 23:17:18','2023-11-16 23:17:18','Membership paused because subscription was put on-hold. Membership status changed from Paused to Active.',0,'1','WooCommerce','user_membership_note',0,0),
(179,17436,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-11-16 23:17:18','2023-11-16 23:17:18','Status changed from On hold to Active.',0,'1','WooCommerce','order_note',0,0),
(180,30893,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-11-16 23:17:18','2023-11-16 23:17:18','This order was abandoned & subsequently recovered.',0,'1','WooCommerce','order_note',0,0),
(181,17437,'WooCommerce','woocommerce@choiceresources.co.uk','','','2023-11-17 04:33:07','2023-11-17 04:33:07','Membership status changed from Active to Expired.',0,'1','WooCommerce','user_membership_note',0,0),
(182,33730,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-07 20:48:21','2024-05-07 20:48:21','Payment pending (unilateral). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),
(183,33731,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-07 22:58:13','2024-05-07 22:58:13','Order cancelled by customer. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),
(184,33915,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 12:00:37','2024-05-08 12:00:37','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(185,33915,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 12:00:37','2024-05-08 12:00:37','This order was abandoned & subsequently recovered.',0,'1','WooCommerce','order_note',0,0),
(186,33915,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 12:00:37','2024-05-08 12:00:37','A payment of <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&pound;</span>15.95</bdi></span> GBP was <strong>successfully charged</strong> using WooPayments (<a href=\"https://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&path=/payments/transactions/details&id=pi_3PE9AmC4KoWWGXx7155YLaYn\" target=\"_blank\" rel=\"noopener noreferrer\">pi_3PE9AmC4KoWWGXx7155YLaYn</a>).',0,'1','WooCommerce','order_note',0,0),
(187,33915,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 12:00:41','2024-05-08 12:00:41','<strong>Fee details:</strong><div class=\"captured-event-details\" style=\"line-height: 0.8;padding-top: 15px;\">\n<br>Fee (3.5% + Â£0.25): -Â£0.81\n<br><span style=\"font-size: 7px;vertical-align: middle;\">&#9679;</span> Base fee: 1.5% + Â£0.25\n<br><span style=\"font-size: 7px;vertical-align: middle;\">&#9679;</span> International card fee: 2%\n<br>Net deposit: Â£15.14 GBP\n</div>',0,'1','WooCommerce','order_note',0,0),
(188,33956,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 13:11:49','2024-05-08 13:11:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(189,33956,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 13:11:49','2024-05-08 13:11:49','This order was abandoned & subsequently recovered.',0,'1','WooCommerce','order_note',0,0),
(190,33956,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 13:11:49','2024-05-08 13:11:49','A payment of <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&pound;</span>7.95</bdi></span> GBP was <strong>successfully charged</strong> using WooPayments (<a href=\"https://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&path=/payments/transactions/details&id=pi_3PEAHgC4KoWWGXx70Y1laLYE\" target=\"_blank\" rel=\"noopener noreferrer\">pi_3PEAHgC4KoWWGXx70Y1laLYE</a>).',0,'1','WooCommerce','order_note',0,0),
(191,33956,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 13:12:48','2024-05-08 13:12:48','<strong>Fee details:</strong><div class=\"captured-event-details\" style=\"line-height: 0.8;padding-top: 15px;\">\n<br>Fee (3.5% + Â£0.25): -Â£0.53\n<br><span style=\"font-size: 7px;vertical-align: middle;\">&#9679;</span> Base fee: 1.5% + Â£0.25\n<br><span style=\"font-size: 7px;vertical-align: middle;\">&#9679;</span> International card fee: 2%\n<br>Net deposit: Â£7.42 GBP\n</div>',0,'1','WooCommerce','order_note',0,0),
(192,33957,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 13:14:13','2024-05-08 13:14:13','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(193,33957,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 13:14:17','2024-05-08 13:14:17','This order was abandoned & subsequently recovered.',0,'1','WooCommerce','order_note',0,0),
(194,33957,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 13:14:17','2024-05-08 13:14:17','A payment of <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&pound;</span>11.95</bdi></span> GBP was <strong>successfully charged</strong> using WooPayments (<a href=\"https://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&path=/payments/transactions/details&id=pi_3PEAJyC4KoWWGXx70CJyIRpH\" target=\"_blank\" rel=\"noopener noreferrer\">pi_3PEAJyC4KoWWGXx70CJyIRpH</a>).',0,'1','WooCommerce','order_note',0,0),
(195,33957,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-08 13:14:19','2024-05-08 13:14:19','<strong>Fee details:</strong><div class=\"captured-event-details\" style=\"line-height: 0.8;padding-top: 15px;\">\n<br>Fee (3.5% + Â£0.25): -Â£0.67\n<br><span style=\"font-size: 7px;vertical-align: middle;\">&#9679;</span> Base fee: 1.5% + Â£0.25\n<br><span style=\"font-size: 7px;vertical-align: middle;\">&#9679;</span> International card fee: 2%\n<br>Net deposit: Â£11.28 GBP\n</div>',0,'1','WooCommerce','order_note',0,0),
(196,34645,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-09 19:25:32','2024-05-09 19:25:32','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(197,34645,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-09 19:25:32','2024-05-09 19:25:32','A payment of <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&pound;</span>11.95</bdi></span> GBP was <strong>successfully charged</strong> using WooPayments (<a href=\"https://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&path=/payments/transactions/details&id=pi_3PEcatC4KoWWGXx71YMPYBW3\" target=\"_blank\" rel=\"noopener noreferrer\">pi_3PEcatC4KoWWGXx71YMPYBW3</a>).',0,'1','WooCommerce','order_note',0,0),
(198,34645,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-09 19:25:50','2024-05-09 19:25:50','<strong>Fee details:</strong><div class=\"captured-event-details\" style=\"line-height: 0.8;padding-top: 15px;\">\n<br>Fee (3.5% + Â£0.25): -Â£0.67\n<br><span style=\"font-size: 7px;vertical-align: middle;\">&#9679;</span> Base fee: 1.5% + Â£0.25\n<br><span style=\"font-size: 7px;vertical-align: middle;\">&#9679;</span> International card fee: 2%\n<br>Net deposit: Â£11.28 GBP\n</div>',0,'1','WooCommerce','order_note',0,0),
(199,34654,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-09 19:35:13','2024-05-09 19:35:13','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),
(200,34654,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-09 19:35:14','2024-05-09 19:35:14','A payment of <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&pound;</span>9.95</bdi></span> GBP was <strong>successfully charged</strong> using WooPayments (<a href=\"https://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&path=/payments/transactions/details&id=pi_3PEckGC4KoWWGXx71amaejz2\" target=\"_blank\" rel=\"noopener noreferrer\">pi_3PEckGC4KoWWGXx71amaejz2</a>).',0,'1','WooCommerce','order_note',0,0),
(201,34654,'WooCommerce','woocommerce@choiceresources.co.uk','','','2024-05-09 19:35:17','2024-05-09 19:35:17','<strong>Fee details:</strong><div class=\"captured-event-details\" style=\"line-height: 0.8;padding-top: 15px;\">\n<br>Fee (3.5% + Â£0.25): -Â£0.60\n<br><span style=\"font-size: 7px;vertical-align: middle;\">&#9679;</span> Base fee: 1.5% + Â£0.25\n<br><span style=\"font-size: 7px;vertical-align: middle;\">&#9679;</span> International card fee: 2%\n<br>Net deposit: Â£9.35 GBP\n</div>',0,'1','WooCommerce','order_note',0,0),
(202,33258,'TikTok Downloader','daphnee_voluptates@hotmail.com','https://downloader.run/tiktok-downloader/','185.106.28.191','2024-08-28 11:40:48','2024-08-28 11:40:48','I have been browsing online more than three hours today yet I never found any interesting article like yours It is pretty worth enough for me In my view if all website owners and bloggers made good content as you did the internet will be a lot more useful than ever before',0,'0','','comment',0,0);
/*!40000 ALTER TABLE `wphu_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_e_events`
--

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

--
-- Dumping data for table `wphu_e_events`
--

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

--
-- Table structure for table `wphu_e_notes`
--

DROP TABLE IF EXISTS `wphu_e_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_e_notes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `route_url` text DEFAULT NULL COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) DEFAULT NULL,
  `route_post_id` bigint(20) unsigned DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `element_id` varchar(60) DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `author_id` bigint(20) unsigned DEFAULT NULL,
  `author_display_name` varchar(250) DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) NOT NULL DEFAULT 'publish',
  `position` text DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext DEFAULT NULL,
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `is_public` tinyint(1) NOT NULL DEFAULT 1,
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `route_url_index` (`route_url`(191)),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `parent_id_index` (`parent_id`),
  KEY `author_id_index` (`author_id`),
  KEY `status_index` (`status`),
  KEY `is_resolved_index` (`is_resolved`),
  KEY `is_public_index` (`is_public`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `last_activity_at_index` (`last_activity_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_e_notes`
--

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

--
-- Table structure for table `wphu_e_notes_users_relations`
--

DROP TABLE IF EXISTS `wphu_e_notes_users_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_e_notes_users_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`),
  KEY `note_id_index` (`note_id`),
  KEY `user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_e_notes_users_relations`
--

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

--
-- Table structure for table `wphu_e_submissions`
--

DROP TABLE IF EXISTS `wphu_e_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) DEFAULT NULL,
  `hash_id` varchar(60) NOT NULL,
  `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) unsigned NOT NULL,
  `referer` varchar(500) NOT NULL,
  `referer_title` varchar(300) DEFAULT NULL,
  `element_id` varchar(20) NOT NULL,
  `form_name` varchar(60) NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) NOT NULL,
  `user_agent` text NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB AUTO_INCREMENT=109 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_e_submissions`
--

LOCK TABLES `wphu_e_submissions` WRITE;
/*!40000 ALTER TABLE `wphu_e_submissions` DISABLE KEYS */;
INSERT INTO `wphu_e_submissions` VALUES
(1,'submission','c94beebd-88fe-4e1b-8162-bb54ca129d2f',2,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'198.12.66.215','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-05-16 23:22:14','2021-05-16 23:22:14','2021-05-16 23:22:14','2021-05-16 23:22:14'),
(2,'submission','4497478f-48ce-45c7-99c3-104ab49fb894',5,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'168.151.228.186','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-06-11 18:22:51','2021-06-11 18:22:51','2021-06-11 18:22:51','2021-06-11 18:22:51'),
(3,'submission','b3241098-e3c6-4908-96b0-27f2772353a7',8,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'45.133.171.252','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-06-27 18:31:13','2021-06-27 18:31:13','2021-06-27 18:31:13','2021-06-27 18:31:13'),
(4,'submission','d1a492c5-64f2-4c85-a8d7-099675729156',11,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'104.160.29.249','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-07-16 11:15:47','2021-07-16 11:15:47','2021-07-16 11:15:47','2021-07-16 11:15:47'),
(5,'submission','233bdaf4-4fb3-402e-a336-0c03acc855c0',14,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'23.106.219.97','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-08-04 11:51:48','2021-08-04 11:51:49','2021-08-04 11:51:48','2021-08-04 11:51:49'),
(6,'submission','463518f7-407c-4b16-93ea-7cdd08056292',17,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'23.106.219.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-08-07 08:35:32','2021-08-07 08:35:32','2021-08-07 08:35:32','2021-08-07 08:35:32'),
(7,'submission','ad13c7a2-ddbc-417c-9cc3-33f69707c878',20,9,'','Contact us','a79e0a9','New Form',0,0,'138.199.59.169','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-08-13 19:27:02','2021-08-13 19:27:02','2021-08-13 19:27:02','2021-08-13 19:27:02'),
(8,'submission','e6b48c31-f28b-4fe7-b2fd-ff4f7f445946',23,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'107.174.232.203','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-08-25 08:15:46','2021-08-25 08:15:46','2021-08-25 08:15:46','2021-08-25 08:15:46'),
(9,'submission','45931b08-54c3-4b80-9396-17a62ef90f3e',26,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'45.181.121.233','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-10-08 09:08:13','2021-10-08 09:08:13','2021-10-08 09:08:13','2021-10-08 09:08:13'),
(10,'submission','32ac0b60-7299-4a8c-afa2-ef0d933297a6',29,9,'','Contact us','a79e0a9','New Form',0,0,'212.102.57.85','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-10-23 14:47:27','2021-10-23 14:47:28','2021-10-23 14:47:27','2021-10-23 14:47:28'),
(11,'submission','5c1e74d6-169d-4ed4-a51c-fbeb63471bf5',32,9,'','Contact us','a79e0a9','New Form',0,0,'190.2.131.205','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4400.8 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-10-25 19:02:44','2021-10-25 19:02:44','2021-10-25 19:02:44','2021-10-25 19:02:44'),
(12,'submission','9c67ba99-136b-4d63-9ceb-140c6a5ae435',35,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'45.125.245.152','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-10-29 02:07:44','2021-10-29 02:07:44','2021-10-29 02:07:44','2021-10-29 02:07:44'),
(13,'submission','d612eefa-94b3-4d50-9e18-93530d86c8d7',38,9,'','Contact us','a79e0a9','New Form',0,0,'176.125.229.132','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-11-12 22:56:26','2021-11-12 22:56:26','2021-11-12 22:56:26','2021-11-12 22:56:26'),
(14,'submission','017a1fe4-1d99-47a3-8105-94d3978fb244',41,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'159.223.123.21','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-11-19 02:03:05','2021-11-19 02:03:05','2021-11-19 02:03:05','2021-11-19 02:03:05'),
(15,'submission','e958fb8e-8af1-4c78-8dfc-518bb2ab85a1',44,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'82.211.50.131','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-11-20 09:59:14','2021-11-20 09:59:14','2021-11-20 09:59:14','2021-11-20 09:59:14'),
(16,'submission','cd1125fb-55dd-43f5-826a-ceafb6831299',47,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'107.175.110.97','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-11-20 13:09:17','2021-11-20 13:09:17','2021-11-20 13:09:17','2021-11-20 13:09:17'),
(17,'submission','d8826ef3-89f0-4841-b84a-9b058a60980e',50,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'23.106.219.55','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-11-24 01:57:47','2021-11-24 01:57:47','2021-11-24 01:57:47','2021-11-24 01:57:47'),
(18,'submission','f4c8159b-87e2-41c5-bf2c-124968612e45',53,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'23.80.97.109','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-11-27 00:23:59','2021-11-27 00:23:59','2021-11-27 00:23:59','2021-11-27 00:23:59'),
(19,'submission','24d2ee14-ed3e-4b9f-ab53-07ba82c14a57',56,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'107.152.129.237','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-11-27 23:48:40','2021-11-27 23:48:40','2021-11-27 23:48:40','2021-11-27 23:48:40'),
(20,'submission','93a47626-ecee-4bd9-8ef1-b32870d2c93d',59,9,'http://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'181.215.129.239','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-12-05 22:28:00','2021-12-05 22:28:00','2021-12-05 22:28:00','2021-12-05 22:28:00'),
(21,'submission','e3b47bc1-e2b5-46ad-bde7-f7f8a164a190',62,9,'','Contact us','a79e0a9','New Form',0,0,'31.171.155.11','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-12-14 13:59:03','2021-12-14 13:59:03','2021-12-14 13:59:03','2021-12-14 13:59:03'),
(22,'submission','f9e204fa-4f7f-416a-b0c3-173c68d1d64e',65,9,'','Contact us','a79e0a9','New Form',0,0,'185.85.162.242','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-12-20 01:28:08','2021-12-20 01:28:08','2021-12-20 01:28:08','2021-12-20 01:28:08'),
(23,'submission','f917ce31-bc48-4c43-b386-35afa7109c04',68,9,'','Contact us','a79e0a9','New Form',0,0,'46.166.182.115','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-12-20 16:17:15','2021-12-20 16:17:15','2021-12-20 16:17:15','2021-12-20 16:17:15'),
(24,'submission','70c4dae2-6845-4025-a5f7-fd45978ac51e',71,9,'','Contact us','a79e0a9','New Form',0,0,'185.107.80.192','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-12-21 20:18:15','2021-12-21 20:18:16','2021-12-21 20:18:15','2021-12-21 20:18:16'),
(25,'submission','9175ced7-dac3-4ac3-9445-e37e357146b3',74,9,'','Contact us','a79e0a9','New Form',0,0,'190.2.132.128','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2021-12-30 16:28:25','2021-12-30 16:28:26','2021-12-30 16:28:25','2021-12-30 16:28:26'),
(26,'submission','47aea062-c099-40c9-9ac2-2459a70b9cce',77,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'73.120.53.77','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-01-07 00:29:44','2022-01-07 00:29:44','2022-01-07 00:29:44','2022-01-07 00:29:44'),
(27,'submission','826e1779-b7ee-4404-8c79-012f571db98e',80,9,'','Contact us','a79e0a9','New Form',0,0,'185.107.95.215','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-01-11 20:56:56','2022-01-11 20:56:57','2022-01-11 20:56:56','2022-01-11 20:56:57'),
(28,'submission','0783f2fe-f9db-4b2e-9b2e-3303e33417da',83,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'144.168.228.113','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-01-19 05:21:15','2022-01-19 05:21:15','2022-01-19 05:21:15','2022-01-19 05:21:15'),
(29,'submission','eb8863bf-876c-4a96-8c88-042e86d45447',86,9,'','Contact us','a79e0a9','New Form',0,0,'46.166.182.115','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-01-28 03:39:12','2022-01-28 03:39:12','2022-01-28 03:39:12','2022-01-28 03:39:12'),
(30,'submission','c172f9cf-f3f5-4bbb-bf6d-a2a9663d870e',89,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'23.80.97.190','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-02-03 18:51:03','2022-02-03 18:51:03','2022-02-03 18:51:03','2022-02-03 18:51:03'),
(31,'submission','69c40f42-6e51-4b8d-938b-21a928b26b99',92,9,'','Contact us','a79e0a9','New Form',0,0,'46.166.182.115','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-02-13 08:28:05','2022-02-13 08:28:05','2022-02-13 08:28:05','2022-02-13 08:28:05'),
(32,'submission','0169239e-91d5-4aa9-b990-43b66ad5378c',95,9,'','Contact us','a79e0a9','New Form',0,0,'181.214.206.29','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-02-14 22:18:22','2022-02-14 22:18:23','2022-02-14 22:18:22','2022-02-14 22:18:23'),
(33,'submission','a2ab519b-437a-492a-baa1-01dba1475d89',98,9,'','Contact us','a79e0a9','New Form',0,0,'46.166.182.115','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-02-15 23:22:39','2022-02-15 23:22:39','2022-02-15 23:22:39','2022-02-15 23:22:39'),
(34,'submission','20930c54-e443-4850-8191-d0dc47d743cb',101,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'23.80.97.186','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-02-17 22:50:08','2022-02-17 22:50:08','2022-02-17 22:50:08','2022-02-17 22:50:08'),
(35,'submission','36dbffae-dbe5-44b0-9773-d56ca9b24413',104,9,'','Contact us','a79e0a9','New Form',0,0,'185.136.160.219','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-02-21 04:11:13','2022-02-21 04:11:13','2022-02-21 04:11:13','2022-02-21 04:11:13'),
(36,'submission','35ecedbc-efdc-476d-b0b2-592e28efc797',107,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'23.104.184.159','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-02-22 02:55:13','2022-02-22 02:55:13','2022-02-22 02:55:13','2022-02-22 02:55:13'),
(37,'submission','f94d4448-21d8-4472-a925-6b7f46f22010',110,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'192.3.30.251','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-02-23 01:57:02','2022-02-23 01:57:02','2022-02-23 01:57:02','2022-02-23 01:57:02'),
(38,'submission','f2f669f2-7600-4b04-ac76-ebdf68251904',113,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'107.175.68.139','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-02-24 00:20:16','2022-02-24 00:20:17','2022-02-24 00:20:16','2022-02-24 00:20:17'),
(39,'submission','4e5599d4-6a5b-45d8-8ebf-78b05a7abcf6',116,9,'','Contact us','a79e0a9','New Form',0,0,'138.199.7.140','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-04 21:08:26','2022-03-04 21:08:26','2022-03-04 21:08:26','2022-03-04 21:08:26'),
(40,'submission','7e4024c0-1024-4781-b21e-64b30c33af90',119,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'196.244.46.199','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-04 23:09:18','2022-03-04 23:09:19','2022-03-04 23:09:18','2022-03-04 23:09:19'),
(41,'submission','58c4c11c-f316-4fa7-9e41-0b5ce3920c2a',122,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'103.230.69.48','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-05 17:01:08','2022-03-05 17:01:08','2022-03-05 17:01:08','2022-03-05 17:01:08'),
(42,'submission','acf54f14-2dab-4537-abbe-45f08ecfacf2',125,9,'','Contact us','a79e0a9','New Form',0,0,'138.199.7.140','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-07 21:32:11','2022-03-07 21:32:11','2022-03-07 21:32:11','2022-03-07 21:32:11'),
(43,'submission','9cfcaaaf-0368-4a3f-b2e2-b85147fd5258',128,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'198.240.91.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-08 09:03:39','2022-03-08 09:03:39','2022-03-08 09:03:39','2022-03-08 09:03:39'),
(44,'submission','b9fb6cc2-28b3-4f74-b2e7-31cf0c188f65',131,9,'','Contact us','a79e0a9','New Form',0,0,'138.199.18.148','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4427.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-08 17:22:32','2022-03-08 17:22:32','2022-03-08 17:22:32','2022-03-08 17:22:32'),
(45,'submission','9bf8c2f4-8000-4971-a836-a2c028517a90',134,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'5.157.43.32','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-08 20:52:48','2022-03-08 20:52:48','2022-03-08 20:52:48','2022-03-08 20:52:48'),
(46,'submission','93c13b7d-2b7e-4cae-bb9f-1591689f73bc',137,9,'','Contact us','a79e0a9','New Form',0,0,'138.199.7.132','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-11 12:29:06','2022-03-11 12:29:06','2022-03-11 12:29:06','2022-03-11 12:29:06'),
(47,'submission','1847730a-0a3e-47c0-819f-b16e0b207ef1',140,9,'','Contact us','a79e0a9','New Form',0,0,'46.161.11.144','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-11 17:55:27','2022-03-11 17:55:28','2022-03-11 17:55:27','2022-03-11 17:55:28'),
(48,'submission','6c4b7c1d-6500-4afc-8ada-57199195cf47',143,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'103.112.0.99','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-13 08:06:10','2022-03-13 08:06:10','2022-03-13 08:06:10','2022-03-13 08:06:10'),
(49,'submission','15f349d9-0f86-4b40-bb1b-04991dcad843',146,9,'','Contact us','a79e0a9','New Form',0,0,'107.181.180.176','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-16 19:09:43','2022-03-16 19:09:43','2022-03-16 19:09:43','2022-03-16 19:09:43'),
(50,'submission','67f9ffc0-ed1b-41e7-8571-fa7fd0e9161f',149,9,'','Contact us','a79e0a9','New Form',0,0,'213.139.193.232','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-19 00:17:01','2022-03-19 00:17:01','2022-03-19 00:17:01','2022-03-19 00:17:01'),
(51,'submission','ff28fbb5-c5bd-4e21-a397-a0990f3cc0c4',152,9,'','Contact us','a79e0a9','New Form',0,0,'185.107.95.215','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-21 15:55:35','2022-03-21 15:55:35','2022-03-21 15:55:35','2022-03-21 15:55:35'),
(52,'submission','24ef4870-5959-45e0-9b46-f4b0213f9d81',155,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'138.128.14.24','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-23 18:56:52','2022-03-23 18:56:53','2022-03-23 18:56:52','2022-03-23 18:56:53'),
(53,'submission','2b162b16-a464-4d8a-8225-49bb019c4687',158,9,'','Contact us','a79e0a9','New Form',0,0,'178.67.13.143','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-23 20:58:28','2022-03-23 20:58:28','2022-03-23 20:58:28','2022-03-23 20:58:28'),
(54,'submission','690394fa-22ed-4efb-98aa-239be8793fd3',161,9,'','Contact us','a79e0a9','New Form',0,0,'192.40.57.239','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-24 03:39:14','2022-03-24 03:39:14','2022-03-24 03:39:14','2022-03-24 03:39:14'),
(55,'submission','5f8f12c4-5a72-4f7b-a8f7-d191f0ab7ec4',164,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'168.90.199.51','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-24 22:46:53','2022-03-24 22:46:53','2022-03-24 22:46:53','2022-03-24 22:46:53'),
(56,'submission','c3f60470-8378-4c8a-b3df-5e43dbd10cc9',167,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'45.152.182.133','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-25 15:00:54','2022-03-25 15:00:55','2022-03-25 15:00:54','2022-03-25 15:00:55'),
(57,'submission','1b4d4286-5daa-4195-beb4-ef6122350d52',170,9,'','Contact us','a79e0a9','New Form',0,0,'212.102.57.4','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-28 16:54:25','2022-03-28 16:54:25','2022-03-28 16:54:25','2022-03-28 16:54:25'),
(58,'submission','0051d8d4-d42f-4c10-8b6e-c8059dd35b38',173,9,'','Contact us','a79e0a9','New Form',0,0,'94.154.190.216','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-03-29 21:47:28','2022-03-29 21:47:28','2022-03-29 21:47:28','2022-03-29 21:47:28'),
(59,'submission','5d1f0e54-ab21-4dec-a1f7-84c9bd565402',176,9,'','Contact us','a79e0a9','New Form',0,0,'103.152.17.9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.39',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-04-08 22:56:05','2022-04-08 22:56:05','2022-04-08 22:56:05','2022-04-08 22:56:05'),
(60,'submission','9f607842-7655-4720-b71f-582567252209',179,9,'','Contact us','a79e0a9','New Form',0,0,'213.139.193.232','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-04-08 22:56:06','2022-04-08 22:56:07','2022-04-08 22:56:06','2022-04-08 22:56:07'),
(61,'submission','a450081e-4f36-481f-a4a9-8a5140dff7e2',182,9,'','Contact us','a79e0a9','New Form',0,0,'62.76.153.15','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-04-08 23:12:38','2022-04-08 23:12:38','2022-04-08 23:12:38','2022-04-08 23:12:38'),
(62,'submission','0719c962-920b-40d5-af58-4caae7211ff8',185,9,'','Contact us','a79e0a9','New Form',0,0,'138.199.18.74','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-04-09 05:16:50','2022-04-09 05:16:50','2022-04-09 05:16:50','2022-04-09 05:16:50'),
(63,'submission','11a780c9-7b54-40d7-a306-362b68fc5a90',188,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'45.120.49.211','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-04-09 23:25:32','2022-04-09 23:25:32','2022-04-09 23:25:32','2022-04-09 23:25:32'),
(64,'submission','28fad38c-2ea7-4fa9-8a95-ba753cee693a',191,9,'','Contact us','a79e0a9','New Form',0,0,'138.199.7.139','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-04-12 21:35:28','2022-04-12 21:35:28','2022-04-12 21:35:28','2022-04-12 21:35:28'),
(65,'submission','88a20461-8b7f-43ac-8a47-51ce2570a98c',194,9,'','Contact us','a79e0a9','New Form',0,0,'146.70.86.117','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-04-20 13:22:28','2022-04-20 13:22:28','2022-04-20 13:22:28','2022-04-20 13:22:28'),
(66,'submission','b78f5a78-e5d3-4535-93eb-715b1eba332e',197,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'23.80.97.234','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-04-21 15:35:09','2022-04-21 15:35:09','2022-04-21 15:35:09','2022-04-21 15:35:09'),
(67,'submission','92821c2f-9da6-4a29-988c-eafd34553f1e',200,9,'','Contact us','a79e0a9','New Form',0,0,'138.199.7.135','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-04-26 04:27:32','2022-04-26 04:27:32','2022-04-26 04:27:32','2022-04-26 04:27:32'),
(68,'submission','c274c73a-2b5f-4433-a878-60ace362778e',203,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','New Form',0,0,'91.90.123.72','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-04-27 01:30:55','2022-04-27 01:30:55','2022-04-27 01:30:55','2022-04-27 01:30:55'),
(69,'submission','dd1d8d83-f6d5-458e-af49-baddd7bf7b92',206,9,'','Contact us','a79e0a9','New Form',0,0,'62.76.153.15','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-06 14:52:37','2022-05-06 14:52:37','2022-05-06 14:52:37','2022-05-06 14:52:37'),
(70,'submission','31de6624-b09a-4899-8239-c6cf81894160',209,9,'','Contact us','a79e0a9','New Form',0,0,'62.76.153.15','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-06 14:52:37','2022-05-06 14:52:37','2022-05-06 14:52:37','2022-05-06 14:52:37'),
(71,'submission','c381e6b5-8d2b-4dec-9171-7445eaa2ea46',212,9,'','Contact us','a79e0a9','New Form',0,0,'185.107.57.3','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-10 03:13:03','2022-05-10 03:13:03','2022-05-10 03:13:03','2022-05-10 03:13:03'),
(72,'submission','8ebaf524-ede9-4248-9fd5-e24f5fa8b6e3',215,9,'','Contact us','a79e0a9','New Form',0,0,'185.107.57.3','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-11 08:53:00','2022-05-11 08:53:00','2022-05-11 08:53:00','2022-05-11 08:53:00'),
(73,'submission','21e57cd8-4ed8-40e9-8de9-0bbac578e5ec',218,9,'','Contact us','a79e0a9','New Form',0,0,'195.181.161.24','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-12 06:58:04','2022-05-12 06:58:04','2022-05-12 06:58:04','2022-05-12 06:58:04'),
(74,'submission','bcc2383d-0a79-49b8-aa48-95e8fee0e368',221,9,'','Contact us','a79e0a9','New Form',0,0,'185.107.57.3','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-12 07:55:59','2022-05-12 07:55:59','2022-05-12 07:55:59','2022-05-12 07:55:59'),
(75,'submission','c3086a15-ace6-4cde-aa26-707f1a45e0f1',224,9,'','Contact us','a79e0a9','New Form',0,0,'185.107.57.3','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-13 07:49:24','2022-05-13 07:49:24','2022-05-13 07:49:24','2022-05-13 07:49:24'),
(76,'submission','ba03eeeb-6f14-4fb5-babd-82265d3471a9',227,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','Get in touch today',0,0,'85.255.232.65','Mozilla/5.0 (Linux; Android 12; SM-G780G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.87 Mobile Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-14 13:40:21','2022-05-14 13:40:21','2022-05-14 13:40:21','2022-05-14 13:40:21'),
(77,'submission','931e295f-23bf-4088-bead-ee0478e19c85',230,9,'','Contact us','a79e0a9','Get in touch today',0,0,'103.152.17.15','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-17 06:09:51','2022-05-17 06:09:51','2022-05-17 06:09:51','2022-05-17 06:09:51'),
(78,'submission','6d7bd87d-bd5f-4a86-a11d-e33686155abb',233,9,'','Contact us','a79e0a9','Get in touch today',0,0,'213.139.193.2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.39',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-20 16:59:58','2022-05-20 16:59:59','2022-05-20 16:59:58','2022-05-20 16:59:59'),
(79,'submission','ec2c90c7-534a-4fe3-a9f5-53da42c12940',236,9,'','Contact us','a79e0a9','Get in touch today',0,0,'103.152.17.15','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-21 01:06:32','2022-05-21 01:06:32','2022-05-21 01:06:32','2022-05-21 01:06:32'),
(80,'submission','34ba43a2-e9c7-4a04-82d2-e9f2a6bd6f02',239,9,'','Contact us','a79e0a9','Get in touch today',0,0,'62.76.153.9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-05-29 08:13:46','2022-05-29 08:13:46','2022-05-29 08:13:46','2022-05-29 08:13:46'),
(81,'submission','7398857d-dd93-4c5e-8298-5ba9513a90d6',242,9,'https://choiceresources.co.uk/contact/','Contact us','a79e0a9','Get in touch today',0,0,'213.205.194.247','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.53',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-06-01 21:41:28','2022-06-01 21:41:28','2022-06-01 21:41:28','2022-06-01 21:41:28'),
(82,'submission','83d9bf32-7d25-417d-9312-aba64ecffc87',245,9,'','Contact us','b9cdedd','Get in touch today',0,0,'176.124.207.132','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-08-27 05:12:45','2022-08-27 05:12:45','2022-08-27 05:12:45','2022-08-27 05:12:45'),
(83,'submission','ba6e867d-202d-4866-9e4d-bb2861cf3d75',248,9,'https://choiceresources.co.uk/contact/','Contact us','b9cdedd','Get in touch today',0,0,'188.30.112.252','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-09-30 01:20:58','2022-09-30 01:20:58','2022-09-30 01:20:58','2022-09-30 01:20:58'),
(84,'submission','707fcc97-d497-41bb-922a-ba974b0d53b2',251,9,'https://choiceresources.co.uk/contact/','Contact us','b9cdedd','Get in touch today',0,0,'104.227.30.142','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-10-07 16:25:06','2022-10-07 16:25:06','2022-10-07 16:25:06','2022-10-07 16:25:06'),
(85,'submission','e211b9cf-02c4-45fd-ad40-7c090ac4ab34',254,9,'https://choiceresources.co.uk/contact/','Contact us','b9cdedd','Get in touch today',0,0,'23.229.14.216','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-12-07 14:34:25','2022-12-07 14:34:25','2022-12-07 14:34:25','2022-12-07 14:34:25'),
(86,'submission','2b5477e5-aa8e-445f-9a9e-55d83dbb6382',258,19370,'https://choiceresources.co.uk/','','057566a','New Form',0,0,'213.205.209.88','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"19370\"}','2022-12-08 20:08:54','2022-12-08 20:08:54','2022-12-08 20:08:54','2022-12-08 20:08:54'),
(87,'submission','1bbea0c7-6cb0-4838-89a9-e89c04bd87f5',262,19370,'https://choiceresources.co.uk/','','057566a','New Form',0,0,'148.252.129.201','Mozilla/5.0 (Linux; Android 12; SM-G780G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"19370\"}','2022-12-08 20:20:04','2022-12-08 20:20:04','2022-12-08 20:20:04','2022-12-08 20:20:04'),
(88,'submission','7566da27-4a0f-4a08-9010-ca7ac1fc462f',266,19370,'https://choiceresources.co.uk/','','057566a','New Form',0,0,'148.252.129.201','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"19370\"}','2022-12-08 20:47:39','2022-12-08 20:47:40','2022-12-08 20:47:39','2022-12-08 20:47:40'),
(89,'submission','195c75ee-625c-47f8-bfaa-f2fbdd033d34',269,9,'','Contact us','b9cdedd','Get in touch today',0,0,'184.170.240.214','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2022-12-24 16:45:35','2022-12-24 16:45:35','2022-12-24 16:45:35','2022-12-24 16:45:35'),
(90,'submission','781ac333-3777-403e-b470-199df8a8d992',272,9,'','Contact us','b9cdedd','Get in touch today',0,0,'87.101.94.67','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2023-01-14 18:56:42','2023-01-14 18:56:42','2023-01-14 18:56:42','2023-01-14 18:56:42'),
(91,'submission','52104d31-1f43-444a-8692-9eafb5e9e35d',275,9,'','Contact us','b9cdedd','Get in touch today',0,0,'195.246.120.153','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2023-04-30 00:34:45','2023-04-30 00:34:46','2023-04-30 00:34:45','2023-04-30 00:34:46'),
(92,'submission','7197315c-aa2c-436a-b4b5-e5a9fa27179c',278,9,'','Contact us','b9cdedd','Get in touch today',0,0,'181.214.218.106','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2023-05-02 00:09:56','2023-05-02 00:09:56','2023-05-02 00:09:56','2023-05-02 00:09:56'),
(93,'submission','26a1be31-fed3-4ae6-8600-9878a5c73f76',281,9,'','Contact us','b9cdedd','Get in touch today',0,0,'159.89.228.253','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4400.8 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2023-05-08 01:25:38','2023-05-08 01:25:38','2023-05-08 01:25:38','2023-05-08 01:25:38'),
(94,'submission','5bc2f0fe-2734-4a73-bc4d-350389746a8c',284,9,'','Contact us','9ade8b6','Get in touch today',0,0,'84.17.40.95','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2023-11-12 01:31:52','2023-11-12 01:31:52','2023-11-12 01:31:52','2023-11-12 01:31:52'),
(95,'submission','f0b923fe-3493-4492-bbae-832684c9219a',287,9,'','Contact us','9ade8b6','Get in touch today',0,0,'84.17.58.16','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Herring/95.1.8810.11',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2023-11-14 13:07:38','2023-11-14 13:07:39','2023-11-14 13:07:38','2023-11-14 13:07:39'),
(96,'submission','257490c9-bc24-4ddc-b67f-65efc68c3b0b',290,9,'','Contact us','9ade8b6','Get in touch today',0,0,'184.170.240.202','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-02-28 13:26:53','2024-02-28 13:26:54','2024-02-28 13:26:53','2024-02-28 13:26:54'),
(97,'submission','1390cc78-4956-407d-8772-70af030d39d2',293,9,'https://choiceresources.co.uk/contact/','Contact us','9ade8b6','Get in touch today',0,0,'165.231.35.114','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-03-25 02:58:52','2024-03-25 02:58:52','2024-03-25 02:58:52','2024-03-25 02:58:52'),
(98,'submission','b9948909-44e7-4cce-ae44-6eb20caecb4b',296,9,'','Contact us','9ade8b6','Get in touch today',0,0,'51.68.196.224','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-04-22 02:41:48','2024-04-22 02:41:48','2024-04-22 02:41:48','2024-04-22 02:41:48'),
(99,'submission','9b6d0317-395c-42e0-99dc-ee7a6822f299',299,9,'','Contact us','9ade8b6','Get in touch today',0,0,'178.168.114.40','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-05-21 04:19:30','2024-05-21 04:19:30','2024-05-21 04:19:30','2024-05-21 04:19:30'),
(100,'submission','817399aa-a4c3-4827-bcb3-182049e95782',302,9,'','Contact us','9ade8b6','Get in touch today',0,0,'89.149.87.92','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Iron Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-05-21 15:54:06','2024-05-21 15:54:06','2024-05-21 15:54:06','2024-05-21 15:54:06'),
(101,'submission','a88e7a0f-2ec0-460c-9dc3-29e3619276a6',305,9,'','Contact us','9ade8b6','Get in touch today',0,0,'95.65.104.100','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-05-23 19:06:54','2024-05-23 19:06:54','2024-05-23 19:06:54','2024-05-23 19:06:54'),
(102,'submission','56312882-d4d2-4695-a874-a4bbf3ff6ded',308,9,'','Contact us','9ade8b6','Get in touch today',0,0,'178.168.114.40','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-05-27 23:09:22','2024-05-27 23:09:23','2024-05-27 23:09:22','2024-05-27 23:09:23'),
(103,'submission','e5cbea50-90f1-424f-9cf8-91caf35184c0',311,9,'','Contact us','9ade8b6','Get in touch today',0,0,'89.149.87.92','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-05-27 23:58:22','2024-05-27 23:58:22','2024-05-27 23:58:22','2024-05-27 23:58:22'),
(104,'submission','11bd3c16-6852-4e33-a439-e5564f6edeb0',314,9,'','Contact us','9ade8b6','Get in touch today',0,0,'178.168.114.40','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-06-06 23:32:40','2024-06-06 23:32:40','2024-06-06 23:32:40','2024-06-06 23:32:40'),
(105,'submission','9f14d861-5181-4026-9792-c6b9813f0afe',317,9,'','Contact us','9ade8b6','Get in touch today',0,0,'95.65.104.100','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-06-10 05:36:38','2024-06-10 05:36:39','2024-06-10 05:36:38','2024-06-10 05:36:39'),
(106,'submission','a3e40fa8-93fd-4aeb-ab2c-40967a5141ff',320,9,'https://choiceresources.co.uk/contact/','Contact us','9ade8b6','Get in touch today',0,0,'196.199.10.93','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-06-28 20:28:47','2024-06-28 20:28:47','2024-06-28 20:28:47','2024-06-28 20:28:47'),
(107,'submission','3610a646-411b-48b4-83b7-4b9f05ad6e79',323,9,'','Contact us','9ade8b6','Get in touch today',0,0,'138.199.59.132','Mozilla/5.0 (Windows NT 10.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.61 Chrome/124.0.6367.61 Not-A.Brand/99  Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-07-31 16:04:27','2024-07-31 16:04:27','2024-07-31 16:04:27','2024-07-31 16:04:27'),
(108,'submission','04812a96-b933-43e9-803a-424143aeab19',326,9,'','Contact us','9ade8b6','Get in touch today',0,0,'178.175.130.254','Mozilla/5.0 (Windows NT 10.0.0; Win64; x64; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.119 Chrome/124.0.6367.119 Not-A.Brand/99  Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"9\"}','2024-09-01 20:52:34','2024-09-01 20:52:34','2024-09-01 20:52:34','2024-09-01 20:52:34');
/*!40000 ALTER TABLE `wphu_e_submissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_e_submissions_actions_log`
--

DROP TABLE IF EXISTS `wphu_e_submissions_actions_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_e_submissions_actions_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL,
  `action_name` varchar(60) NOT NULL,
  `action_label` varchar(60) DEFAULT NULL,
  `status` varchar(20) NOT NULL,
  `log` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_e_submissions_actions_log`
--

LOCK TABLES `wphu_e_submissions_actions_log` WRITE;
/*!40000 ALTER TABLE `wphu_e_submissions_actions_log` DISABLE KEYS */;
INSERT INTO `wphu_e_submissions_actions_log` VALUES
(1,1,'email','Email','success',NULL,'2021-05-16 23:22:14','2021-05-16 23:22:14','2021-05-16 23:22:14','2021-05-16 23:22:14'),
(2,2,'email','Email','success',NULL,'2021-06-11 18:22:51','2021-06-11 18:22:51','2021-06-11 18:22:51','2021-06-11 18:22:51'),
(3,3,'email','Email','success',NULL,'2021-06-27 18:31:13','2021-06-27 18:31:13','2021-06-27 18:31:13','2021-06-27 18:31:13'),
(4,4,'email','Email','success',NULL,'2021-07-16 11:15:47','2021-07-16 11:15:47','2021-07-16 11:15:47','2021-07-16 11:15:47'),
(5,5,'email','Email','success',NULL,'2021-08-04 11:51:49','2021-08-04 11:51:49','2021-08-04 11:51:49','2021-08-04 11:51:49'),
(6,6,'email','Email','success',NULL,'2021-08-07 08:35:32','2021-08-07 08:35:32','2021-08-07 08:35:32','2021-08-07 08:35:32'),
(7,7,'email','Email','success',NULL,'2021-08-13 19:27:02','2021-08-13 19:27:02','2021-08-13 19:27:02','2021-08-13 19:27:02'),
(8,8,'email','Email','success',NULL,'2021-08-25 08:15:46','2021-08-25 08:15:46','2021-08-25 08:15:46','2021-08-25 08:15:46'),
(9,9,'email','Email','success',NULL,'2021-10-08 09:08:13','2021-10-08 09:08:13','2021-10-08 09:08:13','2021-10-08 09:08:13'),
(10,10,'email','Email','success',NULL,'2021-10-23 14:47:28','2021-10-23 14:47:28','2021-10-23 14:47:28','2021-10-23 14:47:28'),
(11,11,'email','Email','success',NULL,'2021-10-25 19:02:44','2021-10-25 19:02:44','2021-10-25 19:02:44','2021-10-25 19:02:44'),
(12,12,'email','Email','success',NULL,'2021-10-29 02:07:44','2021-10-29 02:07:44','2021-10-29 02:07:44','2021-10-29 02:07:44'),
(13,13,'email','Email','success',NULL,'2021-11-12 22:56:26','2021-11-12 22:56:26','2021-11-12 22:56:26','2021-11-12 22:56:26'),
(14,14,'email','Email','success',NULL,'2021-11-19 02:03:05','2021-11-19 02:03:05','2021-11-19 02:03:05','2021-11-19 02:03:05'),
(15,15,'email','Email','success',NULL,'2021-11-20 09:59:14','2021-11-20 09:59:14','2021-11-20 09:59:14','2021-11-20 09:59:14'),
(16,16,'email','Email','success',NULL,'2021-11-20 13:09:17','2021-11-20 13:09:17','2021-11-20 13:09:17','2021-11-20 13:09:17'),
(17,17,'email','Email','success',NULL,'2021-11-24 01:57:47','2021-11-24 01:57:47','2021-11-24 01:57:47','2021-11-24 01:57:47'),
(18,18,'email','Email','success',NULL,'2021-11-27 00:23:59','2021-11-27 00:23:59','2021-11-27 00:23:59','2021-11-27 00:23:59'),
(19,19,'email','Email','success',NULL,'2021-11-27 23:48:40','2021-11-27 23:48:40','2021-11-27 23:48:40','2021-11-27 23:48:40'),
(20,20,'email','Email','success',NULL,'2021-12-05 22:28:00','2021-12-05 22:28:00','2021-12-05 22:28:00','2021-12-05 22:28:00'),
(21,21,'email','Email','success',NULL,'2021-12-14 13:59:03','2021-12-14 13:59:03','2021-12-14 13:59:03','2021-12-14 13:59:03'),
(22,22,'email','Email','success',NULL,'2021-12-20 01:28:08','2021-12-20 01:28:08','2021-12-20 01:28:08','2021-12-20 01:28:08'),
(23,23,'email','Email','success',NULL,'2021-12-20 16:17:15','2021-12-20 16:17:15','2021-12-20 16:17:15','2021-12-20 16:17:15'),
(24,24,'email','Email','success',NULL,'2021-12-21 20:18:16','2021-12-21 20:18:16','2021-12-21 20:18:16','2021-12-21 20:18:16'),
(25,25,'email','Email','success',NULL,'2021-12-30 16:28:26','2021-12-30 16:28:26','2021-12-30 16:28:26','2021-12-30 16:28:26'),
(26,26,'email','Email','success',NULL,'2022-01-07 00:29:44','2022-01-07 00:29:44','2022-01-07 00:29:44','2022-01-07 00:29:44'),
(27,27,'email','Email','success',NULL,'2022-01-11 20:56:57','2022-01-11 20:56:57','2022-01-11 20:56:57','2022-01-11 20:56:57'),
(28,28,'email','Email','success',NULL,'2022-01-19 05:21:15','2022-01-19 05:21:15','2022-01-19 05:21:15','2022-01-19 05:21:15'),
(29,29,'email','Email','success',NULL,'2022-01-28 03:39:12','2022-01-28 03:39:12','2022-01-28 03:39:12','2022-01-28 03:39:12'),
(30,30,'email','Email','success',NULL,'2022-02-03 18:51:03','2022-02-03 18:51:03','2022-02-03 18:51:03','2022-02-03 18:51:03'),
(31,31,'email','Email','success',NULL,'2022-02-13 08:28:05','2022-02-13 08:28:05','2022-02-13 08:28:05','2022-02-13 08:28:05'),
(32,32,'email','Email','success',NULL,'2022-02-14 22:18:23','2022-02-14 22:18:23','2022-02-14 22:18:23','2022-02-14 22:18:23'),
(33,33,'email','Email','success',NULL,'2022-02-15 23:22:39','2022-02-15 23:22:39','2022-02-15 23:22:39','2022-02-15 23:22:39'),
(34,34,'email','Email','success',NULL,'2022-02-17 22:50:08','2022-02-17 22:50:08','2022-02-17 22:50:08','2022-02-17 22:50:08'),
(35,35,'email','Email','success',NULL,'2022-02-21 04:11:13','2022-02-21 04:11:13','2022-02-21 04:11:13','2022-02-21 04:11:13'),
(36,36,'email','Email','success',NULL,'2022-02-22 02:55:13','2022-02-22 02:55:13','2022-02-22 02:55:13','2022-02-22 02:55:13'),
(37,37,'email','Email','success',NULL,'2022-02-23 01:57:02','2022-02-23 01:57:02','2022-02-23 01:57:02','2022-02-23 01:57:02'),
(38,38,'email','Email','success',NULL,'2022-02-24 00:20:17','2022-02-24 00:20:17','2022-02-24 00:20:17','2022-02-24 00:20:17'),
(39,39,'email','Email','success',NULL,'2022-03-04 21:08:26','2022-03-04 21:08:26','2022-03-04 21:08:26','2022-03-04 21:08:26'),
(40,40,'email','Email','success',NULL,'2022-03-04 23:09:19','2022-03-04 23:09:19','2022-03-04 23:09:19','2022-03-04 23:09:19'),
(41,41,'email','Email','success',NULL,'2022-03-05 17:01:08','2022-03-05 17:01:08','2022-03-05 17:01:08','2022-03-05 17:01:08'),
(42,42,'email','Email','success',NULL,'2022-03-07 21:32:11','2022-03-07 21:32:11','2022-03-07 21:32:11','2022-03-07 21:32:11'),
(43,43,'email','Email','success',NULL,'2022-03-08 09:03:39','2022-03-08 09:03:39','2022-03-08 09:03:39','2022-03-08 09:03:39'),
(44,44,'email','Email','success',NULL,'2022-03-08 17:22:32','2022-03-08 17:22:32','2022-03-08 17:22:32','2022-03-08 17:22:32'),
(45,45,'email','Email','success',NULL,'2022-03-08 20:52:48','2022-03-08 20:52:48','2022-03-08 20:52:48','2022-03-08 20:52:48'),
(46,46,'email','Email','success',NULL,'2022-03-11 12:29:06','2022-03-11 12:29:06','2022-03-11 12:29:06','2022-03-11 12:29:06'),
(47,47,'email','Email','success',NULL,'2022-03-11 17:55:28','2022-03-11 17:55:28','2022-03-11 17:55:28','2022-03-11 17:55:28'),
(48,48,'email','Email','success',NULL,'2022-03-13 08:06:10','2022-03-13 08:06:10','2022-03-13 08:06:10','2022-03-13 08:06:10'),
(49,49,'email','Email','success',NULL,'2022-03-16 19:09:43','2022-03-16 19:09:43','2022-03-16 19:09:43','2022-03-16 19:09:43'),
(50,50,'email','Email','success',NULL,'2022-03-19 00:17:01','2022-03-19 00:17:01','2022-03-19 00:17:01','2022-03-19 00:17:01'),
(51,51,'email','Email','success',NULL,'2022-03-21 15:55:35','2022-03-21 15:55:35','2022-03-21 15:55:35','2022-03-21 15:55:35'),
(52,52,'email','Email','success',NULL,'2022-03-23 18:56:53','2022-03-23 18:56:53','2022-03-23 18:56:53','2022-03-23 18:56:53'),
(53,53,'email','Email','success',NULL,'2022-03-23 20:58:28','2022-03-23 20:58:28','2022-03-23 20:58:28','2022-03-23 20:58:28'),
(54,54,'email','Email','success',NULL,'2022-03-24 03:39:14','2022-03-24 03:39:14','2022-03-24 03:39:14','2022-03-24 03:39:14'),
(55,55,'email','Email','success',NULL,'2022-03-24 22:46:53','2022-03-24 22:46:53','2022-03-24 22:46:53','2022-03-24 22:46:53'),
(56,56,'email','Email','success',NULL,'2022-03-25 15:00:55','2022-03-25 15:00:55','2022-03-25 15:00:55','2022-03-25 15:00:55'),
(57,57,'email','Email','success',NULL,'2022-03-28 16:54:25','2022-03-28 16:54:25','2022-03-28 16:54:25','2022-03-28 16:54:25'),
(58,58,'email','Email','success',NULL,'2022-03-29 21:47:28','2022-03-29 21:47:28','2022-03-29 21:47:28','2022-03-29 21:47:28'),
(59,59,'email','Email','success',NULL,'2022-04-08 22:56:05','2022-04-08 22:56:05','2022-04-08 22:56:05','2022-04-08 22:56:05'),
(60,60,'email','Email','success',NULL,'2022-04-08 22:56:07','2022-04-08 22:56:07','2022-04-08 22:56:07','2022-04-08 22:56:07'),
(61,61,'email','Email','success',NULL,'2022-04-08 23:12:38','2022-04-08 23:12:38','2022-04-08 23:12:38','2022-04-08 23:12:38'),
(62,62,'email','Email','success',NULL,'2022-04-09 05:16:50','2022-04-09 05:16:50','2022-04-09 05:16:50','2022-04-09 05:16:50'),
(63,63,'email','Email','success',NULL,'2022-04-09 23:25:32','2022-04-09 23:25:32','2022-04-09 23:25:32','2022-04-09 23:25:32'),
(64,64,'email','Email','success',NULL,'2022-04-12 21:35:28','2022-04-12 21:35:28','2022-04-12 21:35:28','2022-04-12 21:35:28'),
(65,65,'email','Email','success',NULL,'2022-04-20 13:22:28','2022-04-20 13:22:28','2022-04-20 13:22:28','2022-04-20 13:22:28'),
(66,66,'email','Email','success',NULL,'2022-04-21 15:35:09','2022-04-21 15:35:09','2022-04-21 15:35:09','2022-04-21 15:35:09'),
(67,67,'email','Email','success',NULL,'2022-04-26 04:27:32','2022-04-26 04:27:32','2022-04-26 04:27:32','2022-04-26 04:27:32'),
(68,68,'email','Email','success',NULL,'2022-04-27 01:30:55','2022-04-27 01:30:55','2022-04-27 01:30:55','2022-04-27 01:30:55'),
(69,69,'email','Email','success',NULL,'2022-05-06 14:52:37','2022-05-06 14:52:37','2022-05-06 14:52:37','2022-05-06 14:52:37'),
(70,70,'email','Email','success',NULL,'2022-05-06 14:52:37','2022-05-06 14:52:37','2022-05-06 14:52:37','2022-05-06 14:52:37'),
(71,71,'email','Email','success',NULL,'2022-05-10 03:13:03','2022-05-10 03:13:03','2022-05-10 03:13:03','2022-05-10 03:13:03'),
(72,72,'email','Email','success',NULL,'2022-05-11 08:53:00','2022-05-11 08:53:00','2022-05-11 08:53:00','2022-05-11 08:53:00'),
(73,73,'email','Email','success',NULL,'2022-05-12 06:58:04','2022-05-12 06:58:04','2022-05-12 06:58:04','2022-05-12 06:58:04'),
(74,74,'email','Email','success',NULL,'2022-05-12 07:55:59','2022-05-12 07:55:59','2022-05-12 07:55:59','2022-05-12 07:55:59'),
(75,75,'email','Email','success',NULL,'2022-05-13 07:49:24','2022-05-13 07:49:24','2022-05-13 07:49:24','2022-05-13 07:49:24'),
(76,76,'email','Email','success',NULL,'2022-05-14 13:40:21','2022-05-14 13:40:21','2022-05-14 13:40:21','2022-05-14 13:40:21'),
(77,77,'email','Email','success',NULL,'2022-05-17 06:09:51','2022-05-17 06:09:51','2022-05-17 06:09:51','2022-05-17 06:09:51'),
(78,78,'email','Email','success',NULL,'2022-05-20 16:59:59','2022-05-20 16:59:59','2022-05-20 16:59:59','2022-05-20 16:59:59'),
(79,79,'email','Email','success',NULL,'2022-05-21 01:06:32','2022-05-21 01:06:32','2022-05-21 01:06:32','2022-05-21 01:06:32'),
(80,80,'email','Email','success',NULL,'2022-05-29 08:13:46','2022-05-29 08:13:46','2022-05-29 08:13:46','2022-05-29 08:13:46'),
(81,81,'email','Email','success',NULL,'2022-06-01 21:41:28','2022-06-01 21:41:28','2022-06-01 21:41:28','2022-06-01 21:41:28'),
(82,82,'email','Email','success',NULL,'2022-08-27 05:12:45','2022-08-27 05:12:45','2022-08-27 05:12:45','2022-08-27 05:12:45'),
(83,83,'email','Email','success',NULL,'2022-09-30 01:20:58','2022-09-30 01:20:58','2022-09-30 01:20:58','2022-09-30 01:20:58'),
(84,84,'email','Email','success',NULL,'2022-10-07 16:25:06','2022-10-07 16:25:06','2022-10-07 16:25:06','2022-10-07 16:25:06'),
(85,85,'email','Email','success',NULL,'2022-12-07 14:34:25','2022-12-07 14:34:25','2022-12-07 14:34:25','2022-12-07 14:34:25'),
(86,86,'email','Email','success',NULL,'2022-12-08 20:08:54','2022-12-08 20:08:54','2022-12-08 20:08:54','2022-12-08 20:08:54'),
(87,86,'mailchimp','MailChimp','success',NULL,'2022-12-08 20:08:54','2022-12-08 20:08:54','2022-12-08 20:08:54','2022-12-08 20:08:54'),
(88,87,'email','Email','success',NULL,'2022-12-08 20:20:04','2022-12-08 20:20:04','2022-12-08 20:20:04','2022-12-08 20:20:04'),
(89,87,'mailchimp','MailChimp','success',NULL,'2022-12-08 20:20:04','2022-12-08 20:20:04','2022-12-08 20:20:04','2022-12-08 20:20:04'),
(90,88,'email','Email','success',NULL,'2022-12-08 20:47:40','2022-12-08 20:47:40','2022-12-08 20:47:40','2022-12-08 20:47:40'),
(91,88,'mailchimp','MailChimp','success',NULL,'2022-12-08 20:47:40','2022-12-08 20:47:40','2022-12-08 20:47:40','2022-12-08 20:47:40'),
(92,89,'email','Email','success',NULL,'2022-12-24 16:45:35','2022-12-24 16:45:35','2022-12-24 16:45:35','2022-12-24 16:45:35'),
(93,90,'email','Email','success',NULL,'2023-01-14 18:56:42','2023-01-14 18:56:42','2023-01-14 18:56:42','2023-01-14 18:56:42'),
(94,91,'email','Email','success',NULL,'2023-04-30 00:34:46','2023-04-30 00:34:46','2023-04-30 00:34:46','2023-04-30 00:34:46'),
(95,92,'email','Email','success',NULL,'2023-05-02 00:09:56','2023-05-02 00:09:56','2023-05-02 00:09:56','2023-05-02 00:09:56'),
(96,93,'email','Email','success',NULL,'2023-05-08 01:25:38','2023-05-08 01:25:38','2023-05-08 01:25:38','2023-05-08 01:25:38'),
(97,94,'email','Email','success',NULL,'2023-11-12 01:31:52','2023-11-12 01:31:52','2023-11-12 01:31:52','2023-11-12 01:31:52'),
(98,95,'email','Email','success',NULL,'2023-11-14 13:07:39','2023-11-14 13:07:39','2023-11-14 13:07:39','2023-11-14 13:07:39'),
(99,96,'email','Email','success',NULL,'2024-02-28 13:26:54','2024-02-28 13:26:54','2024-02-28 13:26:54','2024-02-28 13:26:54'),
(100,97,'email','Email','success',NULL,'2024-03-25 02:58:52','2024-03-25 02:58:52','2024-03-25 02:58:52','2024-03-25 02:58:52'),
(101,98,'email','Email','success',NULL,'2024-04-22 02:41:48','2024-04-22 02:41:48','2024-04-22 02:41:48','2024-04-22 02:41:48'),
(102,99,'email','Email','success',NULL,'2024-05-21 04:19:30','2024-05-21 04:19:30','2024-05-21 04:19:30','2024-05-21 04:19:30'),
(103,100,'email','Email','success',NULL,'2024-05-21 15:54:06','2024-05-21 15:54:06','2024-05-21 15:54:06','2024-05-21 15:54:06'),
(104,101,'email','Email','success',NULL,'2024-05-23 19:06:54','2024-05-23 19:06:54','2024-05-23 19:06:54','2024-05-23 19:06:54'),
(105,102,'email','Email','success',NULL,'2024-05-27 23:09:23','2024-05-27 23:09:23','2024-05-27 23:09:23','2024-05-27 23:09:23'),
(106,103,'email','Email','success',NULL,'2024-05-27 23:58:22','2024-05-27 23:58:22','2024-05-27 23:58:22','2024-05-27 23:58:22'),
(107,104,'email','Email','success',NULL,'2024-06-06 23:32:40','2024-06-06 23:32:40','2024-06-06 23:32:40','2024-06-06 23:32:40'),
(108,105,'email','Email','success',NULL,'2024-06-10 05:36:39','2024-06-10 05:36:39','2024-06-10 05:36:39','2024-06-10 05:36:39'),
(109,106,'email','Email','success',NULL,'2024-06-28 20:28:47','2024-06-28 20:28:47','2024-06-28 20:28:47','2024-06-28 20:28:47'),
(110,107,'email','Email','success',NULL,'2024-07-31 16:04:27','2024-07-31 16:04:27','2024-07-31 16:04:27','2024-07-31 16:04:27'),
(111,108,'email','Email','success',NULL,'2024-09-01 20:52:34','2024-09-01 20:52:34','2024-09-01 20:52:34','2024-09-01 20:52:34');
/*!40000 ALTER TABLE `wphu_e_submissions_actions_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_e_submissions_values`
--

DROP TABLE IF EXISTS `wphu_e_submissions_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=328 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_e_submissions_values`
--

LOCK TABLES `wphu_e_submissions_values` WRITE;
/*!40000 ALTER TABLE `wphu_e_submissions_values` DISABLE KEYS */;
INSERT INTO `wphu_e_submissions_values` VALUES
(1,1,'name','Eric Jones'),
(2,1,'email','eric.jones.z.mail@gmail.com'),
(3,1,'message','Hey there, I just found your site, quick questionâ€¦\r\n\r\nMy nameâ€™s Eric, I found choiceresources.co.uk after doing a quick search â€“ you showed up near the top of the rankings, so whatever youâ€™re doing for SEO, looks like itâ€™s working well.\r\n\r\nSo hereâ€™s my question â€“ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappearâ€¦ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work â€“ and the great site youâ€™ve built â€“ go to waste?\r\n\r\nBecause the odds are theyâ€™ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut hereâ€™s a thoughtâ€¦ what if you could make it super-simple for someone to raise their hand, say, â€œokay, letâ€™s talkâ€ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can â€“ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitorâ€™s Name, Email address and Phone Number.  It lets you know IMMEDIATELY â€“ so that you can talk to that lead while theyâ€™re still there at your site.\r\n  \r\nYou know, strike when the ironâ€™s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast â€“ the difference between contacting someone within 5 minutes versus 30 minutes later is huge â€“ like 100 times better!\r\n\r\nThatâ€™s why you should check out our new SMS Text With Lead feature as wellâ€¦ once youâ€™ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be â€“ even if they donâ€™t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the ironâ€™s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business â€“ youâ€™ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that donâ€™t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(4,2,'name','Eric Jones'),
(5,2,'email','eric.jones.z.mail@gmail.com'),
(6,2,'message','Hey, my nameâ€™s Eric and for just a second, imagine thisâ€¦\r\n\r\n- Someone does a search and winds up at choiceresources.co.uk.\r\n\r\n- They hang out for a minute to check it out.  â€œIâ€™m interestedâ€¦ butâ€¦ maybeâ€¦â€\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line â€“ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isnâ€™t really your fault â€“ it happens a LOT â€“ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  It lets you know right then and there â€“ enabling you to call that lead while theyâ€™re literally looking over your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads â€“ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge â€“ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversationâ€¦ so even if you donâ€™t close a deal then, you can follow up with text messages for new offers, content links, even just â€œhow you doing?â€ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(7,3,'name','Harvey Lake'),
(8,3,'email','harveylake@liliumdirect.com'),
(9,3,'message','Hello,\r\n\r\nAre you looking for any new staff?\r\n\r\nWe will fill your job roles quickly by advertising on over 500 leading job boards simultaneously, including TotalJobs, Jobsite, Monster, Reed and Indeed.\r\n\r\nThis will help you save a lot of time and money, attract more applicants per vacancy, and provide you with an easy online portal to manage all your candidates.  \r\n\r\nFor more information, please give us a quick call on 023 8111 2269 or email me on harveylake@liliumdirect.co.uk\r\n\r\nKind regards\r\n\r\nHarvey Lake\r\n\r\nLilium Direct\r\nwww.liliumdirect.co.uk'),
(10,4,'name','Eric Jones'),
(11,4,'email','eric.jones.z.mail@gmail.com'),
(12,4,'message','Hey there, I just found your site, quick questionâ€¦\r\n\r\nMy nameâ€™s Eric, I found choiceresources.co.uk after doing a quick search â€“ you showed up near the top of the rankings, so whatever youâ€™re doing for SEO, looks like itâ€™s working well.\r\n\r\nSo hereâ€™s my question â€“ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappearâ€¦ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work â€“ and the great site youâ€™ve built â€“ go to waste?\r\n\r\nBecause the odds are theyâ€™ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut hereâ€™s a thoughtâ€¦ what if you could make it super-simple for someone to raise their hand, say, â€œokay, letâ€™s talkâ€ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can â€“ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitorâ€™s Name, Email address and Phone Number.  It lets you know IMMEDIATELY â€“ so that you can talk to that lead while theyâ€™re still there at your site.\r\n  \r\nYou know, strike when the ironâ€™s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast â€“ the difference between contacting someone within 5 minutes versus 30 minutes later is huge â€“ like 100 times better!\r\n\r\nThatâ€™s why you should check out our new SMS Text With Lead feature as wellâ€¦ once youâ€™ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be â€“ even if they donâ€™t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the ironâ€™s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business â€“ youâ€™ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that donâ€™t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(13,5,'name','Kylie Hart'),
(14,5,'email','kyliehartila@yahoo.com'),
(15,5,'message','Hi, \r\n\r\nWe\'re wondering if you\'d be interested in a \'dofollow\' backlink to choiceresources.co.uk from our website that has a Moz Domain Authority of 50?\r\n\r\nOur website is dedicated to facts/education, and so can host articles on pretty much any topic.\r\n\r\nYou can either write a new article yourself, or we can link from existing content.\r\n\r\nThe fee is just $40 to be paid via Paypal. This is a one-time fee, so there are no extra charges and the link is permanent.\r\n\r\nAlso: Once the article has been published, and your backlink has been added, it will be shared out to almost 3 million social media followers (if it\'s educationally based). This means you aren\'t just getting the high valued backlink, you\'re also getting the potential of more traffic to your site.\r\n\r\nIf you\'re interested, please reply to this email, including the word \'interested\' in the Subject Field.\r\n\r\nKind Regards,\r\nKylie'),
(16,6,'name','Mary Shackleton'),
(17,6,'email','shauntemarykatherina743@gmail.com'),
(18,6,'message','Hi there,\r\n\r\nWe\'d like to introduce to you our explainer video service which we feel can benefit your site choiceresources.co.uk.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=sBArY3DH4-o\r\nhttps://www.youtube.com/watch?v=ivTmAwuli14\r\nhttps://www.youtube.com/watch?v=Rt-cPoISQUw\r\n\r\nAll of our videos are in a similar animated format as the above examples and we have voice over artists with US/UK/Australian accents.\r\n\r\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video such as Youtube, and can be embedded into your website or featured on landing pages.\r\n\r\nOur prices are as follows depending on video length:\r\n1 minute = $189\r\n1-2 minutes = $289\r\n2-3 minutes = $389\r\n\r\n*All prices above are in USD and include an engaging, captivating video with full script and voice-over.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply back.\r\n\r\nKind Regards,\r\nMary'),
(19,7,'name','AnthonyMot'),
(20,7,'email','no.reply.feedbackform@gmail.com'),
(21,7,'message','GÐ¾Ð¾d dÐ°y!  choiceresources.co.uk \r\n \r\nDid yÐ¾u knÐ¾w thÐ°t it is pÐ¾ssiblÐµ tÐ¾ sÐµnd businÐµss Ð¾ffÐµr   lÐ°wful? \r\nWÐµ tÐµndÐµr Ð° nÐµw lÐµgÐ°l mÐµthÐ¾d Ð¾f sÐµnding businÐµss Ð¾ffÐµr thrÐ¾ugh fÐµÐµdbÐ°Ñk fÐ¾rms. SuÑh fÐ¾rms Ð°rÐµ lÐ¾ÑÐ°tÐµd Ð¾n mÐ°ny sitÐµs. \r\nWhÐµn suÑh Ð°ppÐµÐ°l Ð°rÐµ sÐµnt, nÐ¾ pÐµrsÐ¾nÐ°l dÐ°tÐ° is usÐµd, Ð°nd mÐµssÐ°gÐµs Ð°rÐµ sÐµnt tÐ¾ fÐ¾rms spÐµÑifiÑÐ°lly dÐµsignÐµd tÐ¾ rÐµÑÐµivÐµ mÐµssÐ°gÐµs Ð°nd Ð°ppÐµÐ°ls. \r\nÐ°lsÐ¾, mÐµssÐ°gÐµs sÐµnt thrÐ¾ugh ÑÐ¾ntÐ°Ñt FÐ¾rms dÐ¾ nÐ¾t gÐµt intÐ¾ spÐ°m bÐµÑÐ°usÐµ suÑh mÐµssÐ°gÐµs Ð°rÐµ ÑÐ¾nsidÐµrÐµd impÐ¾rtÐ°nt. \r\nWÐµ Ð¾ffÐµr yÐ¾u tÐ¾ tÐµst Ð¾ur sÐµrviÑÐµ fÐ¾r frÐµÐµ. WÐµ will sÐµnd up tÐ¾ 50,000 mÐµssÐ°gÐµs fÐ¾r yÐ¾u. \r\nThÐµ ÑÐ¾st Ð¾f sÐµnding Ð¾nÐµ milliÐ¾n mÐµssÐ°gÐµs is 49 USD. \r\n \r\nThis lÐµttÐµr is ÑrÐµÐ°tÐµd Ð°utÐ¾mÐ°tiÑÐ°lly. PlÐµÐ°sÐµ usÐµ thÐµ ÑÐ¾ntÐ°Ñt dÐµtÐ°ils bÐµlÐ¾w tÐ¾ ÑÐ¾ntÐ°Ñt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  live:.cid.eef97f1d29d827b5 \r\nWhatsApp - +375259112693'),
(22,8,'name','Eric Jones'),
(23,8,'email','eric.jones.z.mail@gmail.com'),
(24,8,'message','Hey there, I just found your site, quick questionâ€¦\r\n\r\nMy nameâ€™s Eric, I found choiceresources.co.uk after doing a quick search â€“ you showed up near the top of the rankings, so whatever youâ€™re doing for SEO, looks like itâ€™s working well.\r\n\r\nSo hereâ€™s my question â€“ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappearâ€¦ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work â€“ and the great site youâ€™ve built â€“ go to waste?\r\n\r\nBecause the odds are theyâ€™ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut hereâ€™s a thoughtâ€¦ what if you could make it super-simple for someone to raise their hand, say, â€œokay, letâ€™s talkâ€ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can â€“ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitorâ€™s Name, Email address and Phone Number.  It lets you know IMMEDIATELY â€“ so that you can talk to that lead while theyâ€™re still there at your site.\r\n  \r\nYou know, strike when the ironâ€™s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast â€“ the difference between contacting someone within 5 minutes versus 30 minutes later is huge â€“ like 100 times better!\r\n\r\nThatâ€™s why you should check out our new SMS Text With Lead feature as wellâ€¦ once youâ€™ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be â€“ even if they donâ€™t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the ironâ€™s hot!\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do for your business â€“ youâ€™ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that donâ€™t turn into paying customers. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(25,9,'name','Artur'),
(26,9,'email','artur.meyster@careerkarma.co'),
(27,9,'message','Hi - I was surfing choiceresources.co.uk and it looks like you\'ve invested a lot of time in your content strategy so I decided to reach out.\r\n\r\nI\'m the founder of Career Karma, where we are passionate about helping people switch careers and learn new skills.\r\nI think this is especially relevant now with thousands of people losing their jobs due to COVID.\r\n\r\nI was wondering if I can submit a high-quality original blog post that\'s never been published anywhere else, to be featured on your site?\r\n\r\nHere\'s a list of possible topics:\r\n1) How remote work is changing tech salaries in the era of coronavirus\r\n2) How to Know if your current career isn\'t right for you\r\n3) What to do if you lost your job because of COVID-19\r\n4) The future of work: are your skills up to date?\r\n5) How new technologies are disrupting incumbent industries\r\n6) The most resilient jobs during COVID-19\r\n7) How to hire and retain tech talents\r\n8) How COVID is impacting the education industry\r\n9) What are the future trends for the education industry\r\n\r\n\r\n \r\nWarmly,\r\nArtur Meyster\r\nFounder of Career Karma\r\nhttps://www.linkedin.com/in/meyster'),
(28,10,'name','Johnnyoxync'),
(29,10,'email','greaternoidaaster@wanadoo.nl'),
(30,10,'message','We are a group of scientists from MIT, have taught artificial intelligence with 100% accuracy to determine altcoins that will increase in price by at least 15,000%. \r\nAt the beginning of this year, with the help of our trained AI, we identified 5 altcoins and invested $ 30 in them, and as a result, we earned $ 5,750,000 in 5 months. \r\nhttps://www.google.com/url?q=httpsvk.ccc7eSmb&sa=D&77=44&usg=AFQjCNFsow-80pTbQZ_ATNXlTGErUk4XWw \r\n5 days ago, our AI identified 18 more new altcoins that will grow by at least 15,000% each. And we decided to put this list of altcoins up for sale ... \r\nhttps://www.google.com/url?q=httpsvk.ccc7eSmb&sa=D&98=36&usg=AFQjCNFsow-80pTbQZ_ATNXlTGErUk4XWw'),
(31,11,'name','WilsonEtedy'),
(32,11,'email','henk.akkerman5@tele2.nl'),
(33,11,'message','Hello, \r\n \r\nDownload Music VIP https://scenednb.blogspot.com/ \r\n \r\nBest regards'),
(34,12,'name','Eric Jones'),
(35,12,'email','eric.jones.z.mail@gmail.com'),
(36,12,'message','My nameâ€™s Eric and I just found your site choiceresources.co.uk.\r\n\r\nItâ€™s got a lot going for it, but hereâ€™s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor â€“ CLICK HERE https://talkwithwebvisitors.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  It signals you the moment they let you know theyâ€™re interested â€“ so that you can talk to that lead while theyâ€™re literally looking over your site.\r\n\r\nAnd once youâ€™ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversationâ€¦ and if they donâ€™t take you up on your offer then, you can follow up with text messages for new offers, content links, even just â€œhow you doing?â€ notes to build a relationship.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a siteâ€™s visitors disappear and are gone forever after just a moment. Donâ€™t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(37,13,'name','Jamesnousa'),
(38,13,'email','no-replyPaimaloold@gmail.com'),
(39,13,'message','Hi!  choiceresources.co.uk \r\n \r\nWe suggest \r\n \r\nSending your commercial proposal through the feedback form which can be found on the sites in the Communication partition. Contact form are filled in by our application and the captcha is solved. The profit of this method is that messages sent through feedback forms are whitelisted. This method improve the chances that your message will be open. \r\n \r\nOur database contains more than 27 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing Up to 50,000 messages. \r\n \r\n \r\nThis letter is created automatically.  Use our contacts for communication. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.'),
(40,14,'name','Ramon Schenk'),
(41,14,'email','ramon@companyleads.org'),
(42,14,'message','Hey!\r\n\r\nWe are running a special on our UK database.\r\n\r\n16,290,681 Leads for Â£49!\r\n\r\nYou can view samples and buy it and download it instantly on companyleads.org/UK'),
(43,15,'name','Eric Jones'),
(44,15,'email','eric.jones.z.mail@gmail.com'),
(45,15,'message','Cool website!\r\n\r\nMy nameâ€™s Eric, and I just found your site - choiceresources.co.uk - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what youâ€™re doing is pretty cool.\r\n \r\nBut if you donâ€™t mind me asking â€“ after someone like me stumbles across choiceresources.co.uk, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nIâ€™m guessing some, but I also bet youâ€™d like moreâ€¦ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHereâ€™s a thought â€“ what if there was an easy way for every visitor to â€œraise their handâ€ to get a phone call from you INSTANTLYâ€¦ the second they hit your site and said, â€œcall me now.â€\r\n\r\nYou can â€“\r\n  \r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  It lets you know IMMEDIATELY â€“ so that you can talk to that lead while theyâ€™re literally looking over your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads â€“ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge â€“ like 100 times better!\r\n\r\nThatâ€™s why we built out our new SMS Text With Lead featureâ€¦ because once youâ€™ve captured the visitorâ€™s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities â€“ even if you donâ€™t close a deal then and there, you can follow up with text messages for new offers, content links, even just â€œhow you doing?â€ notes to build a relationship.\r\n\r\nWouldnâ€™t that be cool?\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(46,16,'name','Jenny Deamer'),
(47,16,'email','jenny@foremedia.net'),
(48,16,'message','Hey, I visited your site and I think that your content is amazing! It is really engaging and original, you must have worked so hard to generate such a quality content. We are ForeMedia and we help website owners with great websites to maximize the revenue they make from their website. I would love to buy Ad Spaces on your website and pay you per each impression of the ads on your site. We are Google Ad Exchange Premium partners and we work with more than 100 Ad Network & thousands of premium direct advertisers who would LOVE to buy Ads directly from your site and we can guarantee to increase your revenue by at least 45% compared to other advertising solutions you are currently using. You deserve to earn more for your content and maximize your earning potential and I will help you unlock that potential! There is no cost, you can register to our monetization platform for free on this link: https://foremedia.net/start I will be available for you on the Live Chat if you need any help, or you can email me back to: jenny@foremedia.net if you have any questions. I have at least 17 Premium Advertisers that have asked me to approach you because they would like to advertise on your website on Premium eCPM [cost per impressions] basis. Have a good day & feel free to ping me for any question! Click the link here for 1 minute registration to our platform [it\'s free!]: https://go.foremedia.net/u/start/'),
(49,17,'name','Steve Watson'),
(50,17,'email','steve@explainervideos4u.info'),
(51,17,'message','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service which we feel can benefit your site choiceresources.co.uk.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=zvGF7uRfH04\r\nhttps://www.youtube.com/watch?v=cZPsp217Iik\r\nhttps://www.youtube.com/watch?v=JHfnqS2zpU8\r\n\r\nAll of our videos are in a similar animated format as the above examples and we have voice over artists with US/UK/Australian accents.\r\n\r\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video such as Youtube, and can be embedded into your website or featured on landing pages.\r\n\r\nOur prices are as follows depending on video length:\r\n1 minute = $239\r\n1-2 minutes = $339\r\n2-3 minutes = $449\r\n\r\n*All prices above are in USD and include an engaging, and captivating video, full script and voice-over.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to get in touch.\r\nIf you are not interested, simply delete this message and we won\'t contact you again.\r\n\r\nKind Regards,\r\nSteve'),
(52,18,'name','Susanna Johnson'),
(53,18,'email','susannasamanthaeaj@yahoo.com'),
(54,18,'message','Hi there,\r\n\r\nWe are wondering if you would be interested in advertising your website choiceresources.co.uk to up to 40 million people? \r\n\r\nWhat we offer:\r\n\r\n- We do all the work for you\r\n- We send your message/advert to up to 40 million website owners.\r\n- You can choose the language that these people speak and in some cases the country they are in. If you only want your message sent to Spanish speaking people? No problem. Only want to target people from the UK? No problem.\r\n- If you donÂ´t have the ad ready, we can create it for you at no extra cost.\r\n\r\nOur prices are as followers based on target number:\r\n\r\n1 million people: $139 (sent out over 3 days)\r\n5 million people: $539 (over 7 days)\r\n40 million people: $4489 (over 28 days)\r\n\r\nIf you are interested, reply back with any questions and we can discuss further.\r\n\r\nKind Regards,\r\nSusanna'),
(55,19,'name','Jenny'),
(56,19,'email','jenny@foremedia.net'),
(57,19,'message','Hey, I visited your site and I think that your content is amazing! It is really engaging and original, you must have worked so hard to generate such a quality content. We are ForeMedia and we help website owners with great websites to maximize the revenue they make from their website. I would love to buy Ad Spaces on your website and pay you per each impression of the ads on your site. We are Google Ad Exchange Premium partners and we work with more than 100 Ad Network & thousands of premium direct advertisers who would LOVE to buy Ads directly from your site and we can guarantee to increase your revenue by at least 45% compared to other advertising solutions you are currently using. You deserve to earn more for your content and maximize your earning potential and I will help you unlock that potential! There is no cost, you can register to our monetization platform for free on this link: https://foremedia.net/start I will be available for you on the Live Chat if you need any help, or you can email me back to: jenny@foremedia.net if you have any questions. I have at least 17 Premium Advertisers that have asked me to approach you because they would like to advertise on your website on Premium eCPM [cost per impressions] basis. Have a good day & feel free to ping me for any question! Click the link here for 1 minute registration to our platform [it\'s free!]: https://go.foremedia.net/u/start/'),
(58,20,'name','Joseph'),
(59,20,'email','currey.diego10@gmail.com'),
(60,20,'message','Raise a lot of capital & get your advertisng paid for with this new form of crowdfunding created just for eCommerce sites: https://www.GoFishCrowdfunding.com'),
(61,21,'name','Katrine Wouters'),
(62,21,'email','no-replyPaimaloold@gmail.com'),
(63,21,'message','Hi!  choiceresources.co.uk \r\n \r\nWe advance \r\n \r\nSending your message through the feedback form which can be found on the sites in the contact section. Feedback forms are filled in by our application and the captcha is solved. The superiority of this method is that messages sent through feedback forms are whitelisted. This method increases the chances that your message will be read. \r\n \r\nOur database contains more than 27 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing Up to 50,000 messages. \r\n \r\n \r\nThis letter is created automatically.  Use our contacts for communication. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.'),
(64,22,'name','Nataicozy'),
(65,22,'email','woodthighgire1988@gmail.com'),
(66,22,'message','I\'m are very beautiful and hot, fuck me in all holes) https://localchicks3.com/?u=41nkd08&o=8dhpkzk'),
(67,23,'name','WOORN'),
(68,23,'email','2fgdp2vd@yahoo.com'),
(69,23,'message','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/y3743noq'),
(70,24,'name','WOORN'),
(71,24,'email','duz9g9pl@hotmail.com'),
(72,24,'message','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/y2xb4vy9'),
(73,25,'name','nam5336778tetcher'),
(74,25,'email','lera.minakina.93@mail.ru'),
(75,25,'message','mks5336778rttyneg VFy9L8J l1d7 Pm2KOrJ'),
(76,26,'name','Natalie Turner'),
(77,26,'email','natalie@socialgrowthengine.com'),
(78,26,'message','Hey it\'s Natalie a business developer here at Social Growth Engine, I just wanted to quickly reach out to see if we could help you with attracting new local customers on any of the major socials like Instagram, Twitter, YouTube and LinkedIn.\r\n\r\nI am sure you get a number of inquiries like this everyday so I will save the elevator pitch and just tell you straight out.  We are a team of 60+ Yanks, Aussies and Brits who dedicate our days to growing your accounts and getting sales on the largest social media platforms like Instagram, TikTok, YouTube etc.\r\n\r\nWe donâ€™t use bots, everything we do is by hand manually and efficiently, weâ€™ve helped 5000+ customers in 2021 alone and our 2022 is already off to a great start.\r\n\r\nWant to learn more? View our most loved products here https://linktr.ee/socialgrowthengine\r\n\r\nWarmest Regards\r\n\r\nNatalie Turner\r\nBusiness Development Manager - Social Growth Engine\r\nhttps://www.socialgrowthengine.com\r\n(I submitted this via your website contact form at https://choiceresources.co.uk/contact, I hope you don\'t mind :-))'),
(79,27,'name','impact'),
(80,27,'email','tj0oq97y@yahoo.com'),
(81,27,'message','Cryptocurrency rates are breaking records, which means you have the opportunity to make money on cryptocurrencies. Join our system and start making money with us. Go to system: https://tinyurl.com/y3eu9yjq'),
(82,28,'name','Eric Jones'),
(83,28,'email','eric.jones.z.mail@gmail.com'),
(84,28,'message','Hi, my name is Eric and Iâ€™m betting youâ€™d like your website choiceresources.co.uk to generate more leads.\r\n\r\nHereâ€™s how:\r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  It signals you as soon as they say theyâ€™re interested â€“ so that you can talk to that lead while theyâ€™re still there at choiceresources.co.uk.\r\n\r\nTalk With Web Visitor â€“ CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that youâ€™ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation â€“ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they donâ€™t take you up on your offer then, just follow up with text messages for new offers, content links, even just â€œhow you doing?â€ notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors donâ€™t hang around â€“ you canâ€™t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(85,29,'name','WOORN'),
(86,29,'email','f15wcfzp@icloud.com'),
(87,29,'message','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/ychfl9hb'),
(88,30,'name','Mark Brown'),
(89,30,'email','markbrown3049@gmail.com'),
(90,30,'message','Hi,\r\n\r\nWe\'d like to introduce to you our logo design service that we feel would benefit your site choiceresources.co.uk.\r\n\r\nYou can view some of our previously designed logos here:\r\nhttps://imgur.com/a/39n0lTz\r\n\r\nOur price is $159 (USD) that includes:\r\n\r\n* 2 logo concepts (we send you different designs from 2 of our designers)\r\n* Logo transparency (the main benefit here is your logo will go with any background)\r\n* Source file\r\n* Printable file\r\n* 2 revisions (99% of the time, customers only ever need one at the most)\r\n\r\nIf this is something you may be interested in, reply and we can discuss further.\r\n\r\nKind Regards,\r\nMark'),
(91,31,'name','WOORN'),
(92,31,'email','puuwwf5k@yahoo.com'),
(93,31,'message','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/y7dp5rqf'),
(94,32,'name','Elenakn'),
(95,32,'email','elenakn@mail.com'),
(96,32,'message','ÐÐµllÐ¾ Ð°ll, guys! I know, my messÐ°gÐµ mÐ°Ñƒ be tÐ¾o speÑific,\r\nÎ’ut my sistÐµr fÐ¾und niÑÐµ mÐ°n Ò»ÐµrÐµ and tÒ»eÑƒ mÐ°rriÐµd, so how about mÐµ?! :)\r\nI Ð°m 26 yÐµars Ð¾ld, Elena, frÐ¾m RomÐ°nia, know EnglisÒ» Ð°nd RussiÐ°n lÐ°nguages Ð°lso\r\nAnd... I Ò»ave sÑ€eÑifiÑ disÐµÐ°se, named nymphÐ¾mÐ°nia. WhÐ¾ knÐ¾w what is this, ÑÐ°n understÐ°nd mÐµ (better to say it immÐµdiatÐµlÑƒ)\r\nÎ‘Ò» yÐµs, I ÑÐ¾ok vÐµrÑƒ tasty! and I love nÐ¾t Ð¾nly ÑoÐ¾k ;))\r\nIm rÐµÐ°l girl, nÐ¾t prÐ¾stitute, Ð°nd lÐ¾oking for sÐµriÐ¾us Ð°nd hÐ¾t relÐ°tionsÒ»iÑ€...\r\nÎ‘nywaÑƒ, ÑƒÐ¾u can find mÑƒ Ñ€rofilÐµ hÐµrÐµ: http://haylonest.tk/user/136004'),
(97,33,'name','WOORN'),
(98,33,'email','izum23td@icloud.com'),
(99,33,'message','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/yabgzyxu'),
(100,34,'name','Maryann Wimberly'),
(101,34,'email','wimberly.maryann@outlook.com'),
(102,34,'message','Hi there,\r\n\r\nHave you ever wondered why new tokens listed on Uniswap, Pancakeswap or any decentralized exchange are always subject to insane price volatility?\r\n\r\nDid you know that front running bots have been dominating the market and profiting due to that?\r\n\r\nCheck out our new Youtube video for a free and detailed tutorial on how to deploy your own front running bot.. https://youtu.be/7_rXyiT_te4\r\n\r\nKind Regards,\r\nMaryann'),
(103,35,'name','Hennen Robert'),
(104,35,'email','hnnnrobert@gmail.com'),
(105,35,'message','Hello Dear, \r\n \r\nGreetings to you and I hope this email meet at your best, I am working directly with a private family portfolio that can provide funding for credible clients with feasible projects. Currently, we have investment funds for viable projects. \r\n \r\nThey are interested in the following: Institution, Library, Hospitals, Green energy, \r\nPower projects, Agriculture and Real Estate. They can also partner with your company on other projects of value. The interest rate and tenure are fantastic. \r\n \r\nYour response is most anticipated if this is of interest to you. \r\nReach me on email: contact@hennenrobert.xyz or \r\n \r\nKind regards, \r\n \r\nHennen Robert \r\nFinancial Consultant \r\nWhatsapp: +1 209 248 1965 \r\nEuroclear Groups \r\nPersonal: hnnnrobert@gmail.com \r\nUrl: http://euroclear.com'),
(106,36,'name','Eric Jones'),
(107,36,'email','eric.jones.z.mail@gmail.com'),
(108,36,'message','Hey, this is Eric and I ran across choiceresources.co.uk a few minutes ago.\r\n\r\nLooks greatâ€¦ but now what?\r\n\r\nBy that I mean, when someone like me finds your website â€“ either through Search or just bouncing around â€“ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a siteâ€™s visitors disappear and are gone forever after just a moment.\r\n\r\nHereâ€™s an ideaâ€¦\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your siteâ€¦\r\n \r\nYou can â€“\r\n  \r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  It signals you the moment they let you know theyâ€™re interested â€“ so that you can talk to that lead while theyâ€™re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYouâ€™ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even betterâ€¦ once youâ€™ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you donâ€™t close a deal right away, you can follow up with text messages for new offers, content links, even just â€œhow you doing?â€ notes to build a relationship.\r\n\r\nPretty sweet â€“ AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(109,37,'name','Jenny'),
(110,37,'email','jenny@foremedia.net'),
(111,37,'message','Do you advertise on Google / Facebook / Native? You are leaving money on the table!\r\n\r\nHey, my name is Jenny from ForeMedia.net, I saw your site and noticed that while It looks great, you could use a little bit more traffic you drive more visitors & conversions...\r\n\r\nLuckily for you, I can help you with that!\r\n\r\nI can get you tens of thousands of visitors from pretty much every country on the globe, for 10-15% of the cost you would normally pay on Google or Facebook and the traffic is of a much higher quality because your ads will be placed on high quality sites we work with directly...\r\n\r\nSounds good? You can reply to this email:  jenny.sa@foremedia.net\r\nOr visit our self-serve platform here: https://go.foremedia.net/u/v/\r\n\r\nWe also have Live chat with English speaking agents willing to help you start and optimize your ads for maximum traffic, give it a try here:\r\n\r\nhttps://go.foremedia.net/u/v/'),
(112,38,'name','Jenny Bamford'),
(113,38,'email','jenny@foremedia.net'),
(114,38,'message','Hey, I visited your site and I think that your content is amazing! It is really engaging and original, you must have worked so hard to generate such a quality content. We are ForeMedia and we help website owners with great websites to maximize the revenue they make from their website. I would love to buy Ad Spaces on your website and pay you per each impression of the ads on your site. We are Google Ad Exchange Premium partners and we work with more than 100 Ad Network & thousands of premium direct advertisers who would LOVE to buy Ads directly from your site and we can guarantee to increase your revenue by at least 45% compared to other advertising solutions you are currently using. You deserve to earn more for your content and maximize your earning potential and I will help you unlock that potential! There is no cost, you can register to our monetization platform for free on this link: https://foremedia.net/start I will be available for you on the Live Chat if you need any help, or you can email me back to: jenny@foremedia.net if you have any questions. I have at least 17 Premium Advertisers that have asked me to approach you because they would like to advertise on your website on Premium eCPM [cost per impressions] basis. Have a good day & feel free to ping me for any question! Click the link here for 1 minute registration to our platform [it\'s free!]: https://go.foremedia.net/u/start/'),
(115,39,'name','WOORN'),
(116,39,'email','h5yznbwj@hotmail.com'),
(117,39,'message','Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/y9juf58x'),
(118,40,'name','Eric Jones'),
(119,40,'email','eric.jones.z.mail@gmail.com'),
(120,40,'message','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement â€“ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work youâ€™ve done with choiceresources.co.uk definitely stands out. \r\n\r\nItâ€™s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catchâ€¦ more accurately, a questionâ€¦\r\n\r\nSo when someone like me happens to find your site â€“ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors donâ€™t stick around â€“ theyâ€™re there one second and then gone with the wind.\r\n\r\nHereâ€™s a way to create INSTANT engagement that you may not have known aboutâ€¦ \r\n\r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  It lets you know INSTANTLY that theyâ€™re interested â€“ so that you can talk to that lead while theyâ€™re literally checking out choiceresources.co.uk.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business â€“ and it gets even betterâ€¦ once youâ€™ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation â€“ immediately (and thereâ€™s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you donâ€™t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything Iâ€™ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(121,41,'name','Joseph'),
(122,41,'email','vachon.imogene@hotmail.com'),
(123,41,'message','If your ecommerce site is based in the USA and generates at least $5,000 per month revenue, Go Fish wants to invest (directly) into your eCommerce site. No Equity Is Given and No Credit Check; you just share sales commission: https://www.GoFishCrowdfunding.com'),
(124,42,'name','WOORN'),
(125,42,'email','ogwgv45g@hotmail.com'),
(126,42,'message','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/yccfnw6z'),
(127,43,'name','Eric Jones'),
(128,43,'email','eric.jones.z.mail@gmail.com'),
(129,43,'message','Hey, this is Eric and I ran across choiceresources.co.uk a few minutes ago.\r\n\r\nLooks greatâ€¦ but now what?\r\n\r\nBy that I mean, when someone like me finds your website â€“ either through Search or just bouncing around â€“ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a siteâ€™s visitors disappear and are gone forever after just a moment.\r\n\r\nHereâ€™s an ideaâ€¦\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your siteâ€¦\r\n \r\nYou can â€“\r\n  \r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  It signals you the moment they let you know theyâ€™re interested â€“ so that you can talk to that lead while theyâ€™re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYouâ€™ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even betterâ€¦ once youâ€™ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you donâ€™t close a deal right away, you can follow up with text messages for new offers, content links, even just â€œhow you doing?â€ notes to build a relationship.\r\n\r\nPretty sweet â€“ AND effective.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(130,44,'name','MichaelDOoda'),
(131,44,'email','bakhrashkandaurov1988861gib+6159@inbox.ru'),
(132,44,'message','choiceresources.co.uk uriefeodeighrkfldjiijofofjmvkdnsisdiehiusfiajfhweiuioidjsjsbfiadjasifaijdfifijsaaiwghifadja'),
(133,45,'name','Eric Jones'),
(134,45,'email','eric.jones.z.mail@gmail.com'),
(135,45,'message','Cool website!\r\n\r\nMy nameâ€™s Eric, and I just found your site - choiceresources.co.uk - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what youâ€™re doing is pretty cool.\r\n \r\nBut if you donâ€™t mind me asking â€“ after someone like me stumbles across choiceresources.co.uk, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nIâ€™m guessing some, but I also bet youâ€™d like moreâ€¦ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHereâ€™s a thought â€“ what if there was an easy way for every visitor to â€œraise their handâ€ to get a phone call from you INSTANTLYâ€¦ the second they hit your site and said, â€œcall me now.â€\r\n\r\nYou can â€“\r\n  \r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  It lets you know IMMEDIATELY â€“ so that you can talk to that lead while theyâ€™re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads â€“ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge â€“ like 100 times better!\r\n\r\nThatâ€™s why we built out our new SMS Text With Lead featureâ€¦ because once youâ€™ve captured the visitorâ€™s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities â€“ even if you donâ€™t close a deal then and there, you can follow up with text messages for new offers, content links, even just â€œhow you doing?â€ notes to build a relationship.\r\n\r\nWouldnâ€™t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(136,46,'name','WOORN'),
(137,46,'email','yldwdl27@hotmail.com'),
(138,46,'message','Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/ydxm3uyh'),
(139,47,'name','lequine'),
(140,47,'email','lequine@mailuk.site'),
(141,47,'message','[url=https://oscialipop.com]Cialis[/url] Qnwfxg nocto night nocturia  Frequent excessive urination at night. Tbqeym Cialis Nwwwzb https://oscialipop.com - Cialis Priligy 30mg Side Effects'),
(142,48,'name','Eric Jones'),
(143,48,'email','eric.jones.z.mail@gmail.com'),
(144,48,'message','Hi, Eric here with a quick thought about your website choiceresources.co.uk...\r\n\r\nIâ€™m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it â€“ itâ€™s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHereâ€™s a solution for youâ€¦\r\n\r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  Youâ€™ll know immediately theyâ€™re interested and you can call them directly to talk with them literally while theyâ€™re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business â€“ and because youâ€™ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation â€“ immediatelyâ€¦ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything Iâ€™ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(145,49,'name','WOORN'),
(146,49,'email','eg20wirn@yahoo.com'),
(147,49,'message','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/yderv56m'),
(148,50,'name','KaymotdJem'),
(149,50,'email','j.umandjikro@gmail.com'),
(150,50,'message','Hi Robert. As you asked, I\'m giving you a link where you can meet single girls for sex https://ladieslocation.life/?u=wh5kd06&o=qxpp80k'),
(151,51,'name','WOORN'),
(152,51,'email','8h3s3l1a@icloud.com'),
(153,51,'message','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/y8py3m8j'),
(154,52,'name','Suzanne Baskerville'),
(155,52,'email','suzanne.baskerville@outlook.com'),
(156,52,'message','Hey, My name is Mike - Just wanted to ask a question\r\nI opened a new site and I was told that I shouldnâ€™t use google ads ( not profitable enough)\r\nSo I decided to do a review of 20 sites that I follow.\r\nHere is an article I found on the matter, Can you please tell me what you think of those options.\r\nhttps://bit.ly/37y81Zx\r\nPlus, any tips that you could share, it will help.\r\nThanks'),
(157,53,'name','Elenarox'),
(158,53,'email','nacy1s3@gmail.com'),
(159,53,'message','Install the application and enjoy life: https://2track.info/gdQJ'),
(160,54,'name','WOORN'),
(161,54,'email','on3sgkz7@icloud.com'),
(162,54,'message','Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/y92t6rhs'),
(163,55,'name','Eric Jones'),
(164,55,'email','eric.jones.z.mail@gmail.com'),
(165,55,'message','Hi, Eric here with a quick thought about your website choiceresources.co.uk...\r\n\r\nIâ€™m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it â€“ itâ€™s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHereâ€™s a solution for youâ€¦\r\n\r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  Youâ€™ll know immediately theyâ€™re interested and you can call them directly to talk with them literally while theyâ€™re still on the web looking at your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business â€“ and because youâ€™ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation â€“ immediatelyâ€¦ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything Iâ€™ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(166,56,'name','Nikki Gabriel'),
(167,56,'email','info@dataentryassistance.com'),
(168,56,'message','Hi there,\r\n\r\nThis is Nikki from Data Entry Assistance. We provide Data Entry Services mentioned below:\r\n\r\nOnline Data Entry\r\nMedical Bill Data Entry\r\nCopy Paste Data Entry\r\nDocument Data Entry\r\nPhysical to Digital Document Conversion\r\nWooCommerce/Magento/Shopify Product Data Entry\r\nAmazon/Ebay/Etsy/Walmart/Target Product Data Entry\r\nFacebook Shop/Google Merchant Store Product Data Entry\r\nApplication Forms Data Entry\r\nSoftware Data Entry\r\nInvoice/Billing Data Entry Processing \r\nInsurance Claim Processing\r\nOrder Entry\r\nPurchase Entry\r\nCaptcha Filling\r\n1 by 1 Manual Entry\r\nStep by Step Process Entry\r\nAccounting Data Entry\r\nE-Commerce Product Data Entry\r\nMarket Research Forms Processing\r\nCredit Cards Form Processing\r\nSurvey Forms Processing\r\nMortgage Forms Processing\r\nYou can train us on any task and we will do it for you\r\nData Collection\r\nSales Leads List Collection using your Strategy and Criteria\r\nList Creation\r\nTyping Work\r\nData capturing from websites\r\nWordpress/Shopify Data Entry\r\nWeb scrapping and putting data into excel sheet\r\nProper formatting of excel entries\r\nResolve different formats of excel entries into 1 format\r\nJPEG to word/excel\r\nExcel cleanup\r\nCompanies Email Research\r\nPhone numbers collection\r\nEmail ID Collection\r\nPDF to word conversion\r\nProcess repetition\r\nGoogle spreadsheet\r\nProperty data research\r\nLinkedin Data Collection\r\nBusiness Card Data Entry\r\nFinding leads online\r\nQualia Data Entry\r\nQuickbooks Data Entry\r\n\r\nDo you have any requirements right now?\r\n\r\nThanks,\r\nNikki\r\nData Entry Assistance\r\nEmail: Info@DataEntryAssistance.com\r\nWebsite:Â DataEntryAssistance.com'),
(169,57,'name','RussellSkiva'),
(170,57,'email','variopinto79@hotmail.it'),
(171,57,'message','Get top 1 on google with google itself https://telegra.ph/1500-trusted-powerful-backlinks-to-your-website-from-premium-quality-Google-domains-03-28-2?16727'),
(172,58,'name','Victorevaps'),
(173,58,'email','salivanvictor@yandex.com'),
(174,58,'message','From sieve mounting limits to take out filtering, you can bribe with childrenâ€™s access to Windows, macOS, iOS, Android and YouTube with these unshackled tools. \r\n \r\nFrom games to to talk and ingrained media, our online globule is euphonious much built in finding of adults. But itâ€™s also place of the day-to-day lives of our children, pro jocularity, impelling, socialising and education. Here are some of the most productive unrestrictedly tools to shun clear of you pass on your kids an age-appropriate online experience. \r\n \r\nMultitudinous freed tools in behalf of the further of managing your kidsâ€™ online activities drill you to refrigerate up accounts to protected them with services such as Microsoft and Google. This involves some of your childrenâ€™s dope ending up in the hands of the companies providing the repress services. This is an well-connected tribute when creating accounts after younger progenitors members. \r\n \r\nIf youâ€™re in the UK or EU, you â€“ and your children â€“ knock back the tory to be subjected to to classify your account on these services and all associated observations held hither it fully deleted at any make clear at the humaneness of GDPR. As sooner than any assets, weâ€™d also be reassuring of any originator be convinced of the device the kid uses has able-bodied anti-virus installed to close nurture them on resuscitate of the filters. With that wide-ranging of the characterize of the arbitrary, in this upper crust are the 5 most habitual on the at liberty raising tools currently available. \r\n \r\nMicrosoft Children Safety. \r\n \r\nOn the side of Windows users, Microsoftâ€™s Successor Security tools are the gold canon, allowing you to refer cheesecloth tempo limits as a craft to devices and apps, age-based precept filtering in Microsoftâ€™s Periphery browser (other browsers purposefulness blocked to circumvent workarounds), topple b reduce away spending, a breed conclusion events and assist varying degrees of liveliness reporting. \r\n \r\nYou can reserve to it to look after Windows 10 and 11 PCs, Xbox consoles, and Android and iOS dextrous devices seeing that up to six generally descent members. Mâ€šnage Safeness is both more plain-spoken and more mannerly of childrenâ€™s rights than myriad rivals. The only downside is that itâ€™s a suggestion of a chore getting your youngsterâ€™s account primed up in the beginning place. Consider my step-by-step chaperon to detain away from you take at the desire of one\'s be logical up with that. \r\n \r\nApple Forefathers Sharing and Strainer Time. \r\n \r\nAppleâ€™s assuage and travelling pictures in good time always controls are to a great extent restricted to its own ecosystem, but there are some options. Like Microsoftâ€™s parental controls, every people associate should ideally knock off upon a quip on their own account linked to Mâ€šnage Sharing, which also lets you apposite your Apple subscriptions with up to five of your loved ones. How, Apple Strainer Prompting as a armed forces to macOS and Security Someday seeking iOS both permit you to compel down a straight of restrictions on any Apple design to prevent younger household members, or steady very adults whoâ€™re having complain putting down their phone at bedtime. \r\n \r\nGoogle Mâ€šnage Link. \r\n \r\nGoogleâ€™s parental throw down solutions are, like a an infinity of Google services, expedient but annoyingly scattered. Google At a person\'s own real Tie-up has a capture interface of sorts but abundant of the parental follow tournament features are centred on Android apps: Google Sprouts Chronicling (road to under-13s) and Google Kith and consanguineous Palm up babe in arms and teen, the latter of which reflects that greater authorized autonomy of teenagers not later than correctly allowing them to disable impetuous monitoring at their end. \r\n \r\nFeatures subsume age-gated app, catch and media restrictions, benchmark together limits, activity reports, foggy locking and turning up tracking. Supporting a amount to of six exclusive\'s own flesh members (including yourself), Cite Relate also allows you to predisposed apps and services that you suborn and subscribe to with children or adults. \r\n \r\nYouTube Kids. \r\n \r\nYouTube Kids was Googleâ€™s before all crack at creating a walled garden to ease families flow with fundamentally unregulated wilds of the originâ€™s most mode video platform. \r\n \r\nAfter a dubious start that platitude a set of club theory videos blurt not allowed in every flop the sieve, YouTube Kids successfully allows younger children to examine videos less protected in the initiation that theyâ€™re not growing to run into anything appalling. \r\n \r\nIt was hanker ago lone adduce as an Android app, but thereâ€™s trendy a satisfactory YouTube Kids website for computer users. It collects emblematical observations â€“ you donâ€™t unsociable need a Google account to profit on it â€“ and the the quivering it surfaces isnâ€™t as low-quality as it full of years to be. On the other employee, YouTube Kidsâ€™ predetermined interface aspect bewilder all but the youngest viewers and it lacks well-disposed features such as playlist creation. \r\n \r\nYouTube supervised experiences. \r\n \r\nNigh starkly the apogee labour parental running gadget an liking to YouTube (and YouTube Music) on the YouTube website, unfixed app and on some apt TVs. It applies physiognomy and current restrictions to the common YouTube spider\'s trap and app occurrence and can be comfortably configured via the website. \r\n \r\nTo modify avail oneself of of it, both you and your lad purposefulness be affliction with to non-standard frustrate Google accounts connected via Kind-hearted Bonding, and your successors control beget to be signed in to their account. \r\n \r\nThe upon is essentially designed reciprocate pro children time-worn 9+, with additional 13+ and 18+ tiers, but â€“ if correctly configured and supervised â€“ it can be hand-me-down not quite families who sit with YouTube with younger children and move a more fully-featured watchfulness than YouTube Kids offers. \r\n \r\nThis advertise is neck in beta, but is being at a gallop improved. Blocking channels is a grouping easier than it occupied to be, in put move in reverse example, making YouTube supervised experiences an inimitable in the most proper trail on the side of families. The documentation could be clearer, though. \r\n \r\nhttps://telegra.ph/CASH-LOANS-SIGNS-02-15 \r\nhttps://telegra.ph/PHUMELELA-CASH-LOANS-KING-WILLIAMS-TOWN-02-13 \r\nhttps://telegra.ph/FAST-CASH-LOANS-ON-BENEFITS-02-13 \r\nhttps://telegra.ph/sizanane-cash-loans-carletonville-02-14 \r\nhttps://telegra.ph/how-does-quick-cash-loans-work-02-15 \r\nhttps://telegra.ph/LOANS-SIMILAR-TO-CHECK-INTO-CASH-02-13 \r\nhttps://telegra.ph/BEST-PLACE-TO-GET-A-PAYDAY-LOAN-NEAR-ME-02-14 \r\nhttps://telegra.ph/cash-loans-asap-bad-credit-02-14 \r\nhttps://telegra.ph/HOW-TO-GET-A-HARD-MONEY-LOAN-FOR-A-HOUSE-02-13 \r\nhttp://google.tt/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/HOW-MANY-DAYS-YOUR-PAG-IBIG-LOAN-RELEASE-02-12 \r\nhttps://telegra.ph/WHAT-CAN-YOU-USE-AS-COLLATERAL-FOR-A-SECURED-LOAN-02-15 \r\nhttps://telegra.ph/absa-salary-loan-calculator-02-15 \r\nhttps://telegra.ph/NO-CREDIT-CHECK-LOANS-FAST-APPROVAL-02-13 \r\nhttps://telegra.ph/how-to-borrow-money-from-zenith-bank-nigeria-02-14 \r\nhttps://telegra.ph/DOES-QUICKEN-LOANS-DO-CASH-OUT-02-14 \r\nhttps://telegra.ph/DRAFTKINGS-CASH-OUT-02-14 \r\nhttps://telegra.ph/how-to-borrow-money-from-fidelity-02-15 \r\nhttps://telegra.ph/HOW-TO-BORROW-MTN-MONEY-02-14 \r\nhttps://toolbarqueries.google.us/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/how-can-i-borrow-money-from-zenith-bank-02-14 \r\nhttps://telegra.ph/HOW-TO-GET-A-BIG-LOAN-WITH-LOW-INCOME-02-14 \r\nhttps://telegra.ph/ALL-BANKS-CASH-LOANS-KEMPTON-PARK-02-13 \r\nhttps://static.wikia.nocookie.net/scream2022/images/2/21/5323.pdf \r\nhttps://telegra.ph/cash-now-loan-app-uae-02-15 \r\nhttps://telegra.ph/unsecured-personal-cash-loans-columbus-oh-02-12 \r\nhttps://telegra.ph/cash-loans-cape-town-cbd-02-14 \r\nhttps://telegra.ph/CASHWELL-LOANS-ROCK-HILL-SC-02-13 \r\nhttps://telegra.ph/27-CASH-ADVANCE-REVIEWS-02-14 \r\nhttp://www.google.it/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/can-you-get-a-loan-with-high-debt-to-income-ratio-02-12 \r\nhttps://telegra.ph/HOW-TO-BORROW-50000-BAD-CREDIT-02-15 \r\nhttps://telegra.ph/HOW-DOES-TN-CASH-QUICK-CASH-WORK-02-14 \r\nhttps://telegra.ph/best-instant-approval-loans-02-13 \r\nhttp://bookspdf.wikidot.com/local--files/start/QUEPASACUANDOMORIMOSAQUEDIMENSINVAMOSQUESUCEDECUANDOALMORIRCONCARLOSMOYA.PDF \r\nhttps://telegra.ph/CASH-LOANS-PRINCE-GEORGE-02-14 \r\nhttps://telegra.ph/hard-cash-loans-bad-credit-02-12 \r\nhttps://telegra.ph/how-do-i-contact-square-cash-app-by-phone-02-14 \r\nhttps://telegra.ph/CASH-1-LOANS-CHANDLER-AZ-02-14 \r\nhttp://google.tk/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/approved-cash-advance-installment-loans-02-14 \r\nhttps://telegra.ph/HOW-TO-BORROW-MONEY-FROM-CENTRAL-BANK-OF-NIGERIA-02-12 \r\nhttps://telegra.ph/SHORT-TERM-LOANS-CASH-CONVERTERS-02-13 \r\nhttps://telegra.ph/QUICK-AND-FAST-CASH-LOANS-02-12 \r\nhttps://static.wikia.nocookie.net/scream2022/images/b/b7/4845.pdf \r\nhttps://telegra.ph/can-you-get-a-loan-for-school-with-bad-credit-02-12 \r\nhttps://telegra.ph/home-credit-cash-loan-reviews-02-13 \r\nhttps://telegra.ph/CAN-MY-PPP-LOAN-BE-DEPOSITED-INTO-MY-CASH-APP-ACCOUNT-02-13 \r\nhttps://telegra.ph/CASH-CENTRAL-LOANS-REVIEWS-02-14 \r\nhttps://maps.google.co.mz/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/fast-cash-loans-tyler-tx-02-15 \r\nhttps://telegra.ph/small-cash-loans-bad-credit-02-15 \r\nhttps://telegra.ph/what-is-a-loan-quote-02-15 \r\nhttps://telegra.ph/how-to-get-a-low-interest-home-loan-02-14 \r\nhttp://bookspdf.wikidot.com/local--files/start/QUSIGNIFICALAPASCUACHARLESSPURGEON.PDF \r\nhttps://telegra.ph/INSTANT-CASH-LOANS-JUDGMENT-02-15 \r\nhttps://telegra.ph/HOW-TO-APPLY-FOR-A-LOAN-WITH-CASH-APP-02-13 \r\nhttps://telegra.ph/shopacheck-cash-loans-greenock-greenock-02-13 \r\nhttps://telegra.ph/HOW-MUCH-INTEREST-DO-YOU-PAY-ON-A-NIMBLE-LOAN-02-15 \r\nhttp://google.ge/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/CASH-LOANS-AGAINST-PROPERTY-02-14 \r\nhttps://telegra.ph/WHO-QUALIFIES-FOR-MTN-QUICK-LOAN-02-15 \r\nhttps://telegra.ph/is-cash-sales-an-operating-activity-02-14 \r\nhttps://telegra.ph/does-bank-of-america-have-secured-loans-02-14 \r\nhttps://telegra.ph/instant-cash-loans-broad-river-road-columbia-sc-02-13 \r\nhttps://telegra.ph/CASH-CREDIT-LOAN-BANK-02-14 \r\nhttps://telegra.ph/how-to-get-emergency-money-with-bad-credit-02-13 \r\nhttps://telegra.ph/HOW-TO-GET-AN-EMERGENCY-LOAN-WITH-BAD-CREDIT-02-12 \r\nhttps://telegra.ph/HOW-TO-AVOID-PAYPAL-CASH-ADVANCE-02-13 \r\nhttps://sandbox.google.kz/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/HOW-TO-LOAN-MONEY-FROM-ONE-COMPANY-TO-ANOTHER-02-13 \r\nhttps://telegra.ph/cash-payday-loans-bad-credit-02-12 \r\nhttps://telegra.ph/CHEAPEST-WAY-TO-BORROW-100-000-02-12 \r\nhttps://telegra.ph/IS-CASH-APP-TAKING-PPP-LOANS-02-12 \r\nhttps://static.wikia.nocookie.net/scream2022/images/f/f8/5645.pdf \r\nhttps://telegra.ph/can-i-loan-load-in-gcash-02-14 \r\nhttps://telegra.ph/bad-credit-cash-loans-australia-02-12 \r\nhttps://telegra.ph/cashback-loans-temecula-02-13 \r\nhttps://telegra.ph/HOW-TO-USE-CASH-APP-BOOST-ON-XBOX-02-14 \r\nhttp://www.buduemo.com/goto.php?id=651&url=https://peritoredacao.com \r\nhttps://telegra.ph/C-CASH-LOANS-02-13 \r\nhttps://telegra.ph/what-do-i-need-to-get-a-loan-from-advance-america-02-14 \r\nhttps://telegra.ph/HOW-TO-GET-APPROVED-FOR-A-HOME-LOAN-SELF-EMPLOYED-02-14 \r\nhttps://telegra.ph/can-i-borrow-20000-02-14 \r\nhttp://bookspdf.wikidot.com/local--files/start/QUANTUMJUMPINGTIMETRAVELANDTHENATUREOFLINEARTIME.PDF \r\nhttps://telegra.ph/how-to-fill-out-the-ppp-loan-forgiveness-application-for-self-employed-02-13 \r\nhttps://telegra.ph/how-to-register-loan-business-02-14 \r\nhttps://telegra.ph/IS-CASH-LOAN-AMERICA-LEGIT-02-14 \r\nhttps://telegra.ph/PAYDAY-CASH-LOANS-TEXARKANA-TX-02-13 \r\nhttp://www.odd-proekt.ru/redirect.php?link=https://peritoredacao.com \r\nhttps://telegra.ph/quick-loan-bad-credit-nz-02-12 \r\nhttps://telegra.ph/PORT-ALFRED-CASH-LOANS-02-13 \r\nhttps://telegra.ph/CASH-LOANS-ADELAIDE-CITY-02-12 \r\nhttps://telegra.ph/cash-cloud-payday-loans-02-12 \r\nhttps://telegra.ph/is-cash-surrender-value-of-life-insurance-a-current-asset-02-13 \r\nhttps://telegra.ph/how-can-i-get-a-quick-loan-today-02-13 \r\nhttps://telegra.ph/HOW-CAN-I-WITHDRAW-MONEY-WITHOUT-PIN-02-13 \r\nhttps://telegra.ph/citibank-personal-loan-required-documents-02-12 \r\nhttps://telegra.ph/CASH-CANADA-LOANS-PRINCE-GEORGE-02-15 \r\nhttp://images.google.sh/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/CASH-BACK-CAR-LOANS-EDMONTON-02-15 \r\nhttps://telegra.ph/does-fha-have-loan-limits-02-13 \r\nhttps://telegra.ph/how-to-get-loan-without-any-proof-02-13 \r\nhttps://telegra.ph/INSTANT-CASH-LOAN-247-IN-INDIA-02-13 \r\nhttps://static.wikia.nocookie.net/scream2022/images/d/db/13023.pdf \r\nhttps://telegra.ph/CASHBACK-LOANS-RANCHO-CUCAMONGA-02-14 \r\nhttps://telegra.ph/VELA-CASH-LOANS-CONTACT-NUMBER-02-15 \r\nhttps://telegra.ph/WHAT-IS-THE-MAXIMUM-FHA-LOAN-AMOUNT-IN-FLORIDA-02-13 \r\nhttps://telegra.ph/ctr-cash-loans-02-13 \r\nhttps://ipv4.google.es/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/CP-FINANCE-CASH-LOANS-ORKNEYCrystal-Petty-02-14 \r\nhttps://telegra.ph/BEST-INSTANT-MONEY-LOAN-APP-02-14 \r\nhttps://telegra.ph/cash-build-home-loans-02-14 \r\nhttps://telegra.ph/ZERO-CASH-FLOW-FINANCING-02-15 \r\nhttps://telegra.ph/yan-cash-loans-02-14 \r\nhttps://telegra.ph/possible-loans-and-cash-advance-app-reviews-02-12 \r\nhttps://telegra.ph/are-payday-loans-legal-in-florida-02-14 \r\nhttps://telegra.ph/how-to-apply-for-a-speedy-cash-loan-02-15 \r\nhttps://telegra.ph/OZ-CASH-LOANS-REVIEW-02-13 \r\nhttp://google.com.pe/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/get-quick-loan-in-24-hours-02-12 \r\nhttps://telegra.ph/CAN-I-GET-A-LOAN-AGAINST-MY-LAND-02-14 \r\nhttps://telegra.ph/WHERE-CAN-I-PAY-MY-CAPITAL-ONE-AUTO-LOAN-02-12 \r\nhttps://telegra.ph/can-i-get-a-personal-loan-without-proof-of-income-02-15 \r\nhttp://bookspdf.wikidot.com/local--files/start/QUESLAVALENTAENLASORGANIZACIONESBRAVEORGANIZATIONS.PDF \r\nhttps://telegra.ph/cash-n-go-title-loans-greenville-sc-02-14 \r\nhttps://telegra.ph/do-pensioners-get-loans-in-south-africa-02-14 \r\nhttps://telegra.ph/ways-to-get-cash-loans-02-12 \r\nhttps://telegra.ph/fast-cash-loans-of-sc-inc-spartanburg-scbrian-loesch-02-12 \r\nhttps://images.google.co.ck/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/is-spotloan-a-legit-company-02-14 \r\nhttps://telegra.ph/small-cash-loans-aus-02-14 \r\nhttps://telegra.ph/BEST-LOAN-PROVIDERS-FOR-BAD-CREDIT-02-15 \r\nhttps://telegra.ph/how-to-get-a-small-business-loan-in-arkansas-02-13 \r\nhttps://telegra.ph/how-to-get-a-low-interest-loan-for-car-02-12 \r\nhttps://telegra.ph/EASY-MONEY-LOANS-ONLINE-02-14 \r\nhttps://telegra.ph/pay-day-loans-online-bad-credit-02-15 \r\nhttps://telegra.ph/cash-loans-clovis-nm-02-13 \r\nhttps://telegra.ph/can-you-get-a-payday-loan-with-a-prepaid-debit-card-02-13 \r\nhttp://www.google.ki/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/HOW-TO-RE-LOAN-IN-PAG-IBIG-02-12 \r\nhttps://telegra.ph/check-n-go-payday-loans---cash-advance-02-15 \r\nhttps://telegra.ph/how-to-use-cash-app-in-uk-02-14 \r\nhttps://telegra.ph/CAN-I-MOVE-MY-HOME-LOAN-TO-ANOTHER-BANK-02-14 \r\nhttp://bookspdf.wikidot.com/local--files/start/QUINTODIANOVENARIOMISADEAGUINALDO15AL23DEDICIEMBRE2021.PDF \r\nhttps://telegra.ph/CASH-LOANS-GAFFNEY-SC-02-14 \r\nhttps://telegra.ph/CAN-AN-18-YEAR-OLD-APPLY-FOR-A-CAR-LOAN-02-13 \r\nhttps://telegra.ph/3-MONTH-INSTANT-CASH-LOANS-02-13 \r\nhttps://telegra.ph/expensive-cash-loans-02-15 \r\nhttps://www.google.sm/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/overnight-cash-loans-bad-credit-02-15 \r\nhttps://telegra.ph/how-to-get-money-for-cash-only-house-02-12 \r\nhttps://telegra.ph/cash-advance-america-usa-loan-02-14 \r\nhttps://telegra.ph/CASH-ADVANCE-PAYDAY-LOANS-02-15 \r\nhttps://telegra.ph/cash-and-go-loans-02-14 \r\nhttps://telegra.ph/tigo-cash-loans-02-14 \r\nhttps://telegra.ph/HOW-TO-GET-100-CRORE-LOAN-02-12 \r\nhttps://telegra.ph/what-can-i-do-with-cash-out-refinance-02-13 \r\nhttps://telegra.ph/fast-short-term-loans-bad-credit-02-13 \r\nhttps://sandbox.google.com.mm/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/how-to-qualify-for-unsecured-loan-02-13 \r\nhttps://telegra.ph/best-hard-money-lenders-in-texas-02-12 \r\nhttps://telegra.ph/ACE-CASH-EXPRESS-INSTALLMENT-LOAN-CALCULATOR-02-14 \r\nhttps://telegra.ph/cash-payday-loans-canada-02-12 \r\nhttps://telegra.ph/CASH-ADVANCE-LOANS-COLUMBIA-SC-02-15 \r\nhttps://telegra.ph/WHERE-CAN-I-BORROW-MONEY-FAST-IN-KENYA-02-15 \r\nhttps://telegra.ph/HOW-MUCH-LOAN-MONEY-CAN-I-GET-FOR-GRADUATE-SCHOOL-02-13 \r\nhttps://telegra.ph/is-there-a-limit-for-fha-loan-02-15 \r\nhttps://telegra.ph/HOW-TO-TRANSFER-MONEY-FROM-PSBANK-TO-BDO-02-14 \r\nhttps://ipv4.google.co.ke/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/HOW-TO-CALCULATE-CAPFIN-LOAN-02-14 \r\nhttps://telegra.ph/money-mania-cash-loans-02-12 \r\nhttps://telegra.ph/can-you-get-your-ppp-loan-on-the-weekend-02-15 \r\nhttps://telegra.ph/HOW-MUCH-CAN-I-HAVE-IN-THE-BANK-ON-DISABILITY-PENSION-02-14 \r\nhttps://telegra.ph/cash-converters-my-loan-login-02-12 \r\nhttps://telegra.ph/CASH-LOANS-ONLINE-TODAY-02-12 \r\nhttps://telegra.ph/fast-cash-loans-in-north-carolina-02-14 \r\nhttps://telegra.ph/HOW-TO-GET-A-QUICK-LOAN-ONLINE-IN-GHANA-02-14 \r\nhttps://telegra.ph/DO-PAWN-SHOPS-LEND-MONEY-02-15 \r\nhttp://images.google.com.pg/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/INSTANT-CASH-LOANS-LTD-ADMINISTRATION-02-13 \r\nhttps://telegra.ph/small-cash-loans-australia-02-12 \r\nhttps://telegra.ph/borrowing-against-cash-surrender-value-of-life-insurance-02-15 \r\nhttps://telegra.ph/best-fast-cash-loans-02-12 \r\nhttp://bookspdf.wikidot.com/local--files/start/RADIOUTA959.PDF \r\nhttps://telegra.ph/cash-loans-that-dont-require-a-bank-account-02-15 \r\nhttps://telegra.ph/CASH-LOANS-TO-BUY-A-HOUSE-02-14 \r\nhttps://telegra.ph/cash-app-loan-apps-02-15 \r\nhttps://telegra.ph/phone-number-to-ez-cash-loans-02-15 \r\nhttps://google.cf/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/HOW-DOES-FAIRMONEY-LOAN-WORKS-02-13 \r\nhttps://telegra.ph/is-123-loans-legit-02-12 \r\nhttps://telegra.ph/PAID-CASH-FOR-MONTHLY-LOAN-PAYMENT-P-561Dan-Horn-02-13 \r\nhttps://telegra.ph/how-to-withdraw-money-through-ewallet-02-14 \r\nhttps://telegra.ph/how-to-buy-from-a-private-seller-car-02-14 \r\nhttps://telegra.ph/REQUIREMENTS-FOR-OPAY-LOAN-02-13 \r\nhttps://telegra.ph/HOW-TO-BUY-FROM-A-PRIVATE-SELLER-CAR-02-12 \r\nhttps://telegra.ph/WAYS-TO-GET-CASH-SAME-DAY-02-12 \r\nhttps://telegra.ph/merchant-cash-advance-vs-loan-02-13 \r\nhttp://dragplus.com/web/go/?title=muppets&type=1&url=https://peritoredacao.com'),
(175,59,'name','KaybatdJem'),
(176,59,'email','sanja.filatov.yg.99s@gmail.com'),
(177,59,'message','Hi Brain. I haven\'t been fucked for a long time. Maybe you can https://ladieslocation.life/?u=wh5kd06&o=qxpp80k https://like-a-dating.top/yotube/?u=wh5kd06&o=qxpp80k'),
(178,60,'name','KaymaxdJem'),
(179,60,'email','sanja.filatov.yg9.9.s@gmail.com'),
(180,60,'message','Hi Luis. It\'s not the first time I\'ve written to you. When will you finally fuck me? I\'m here, find me https://ladieslocation.life/?u=wh5kd06&o=qxpp80k'),
(181,61,'name','KaymqedJem'),
(182,61,'email','sanja.filatov.yg9.9s@gmail.com'),
(183,61,'message','Hi Joy. Your friends told me that you like me and I decided to post my erotic photos and get acquainted https://ladieslocation.life/?u=wh5kd06&o=qxpp80k'),
(184,62,'name','DexterSmithFlime'),
(185,62,'email','dextersmith@forbes.com'),
(186,62,'message','Hi, I\'m Dexter Smith from Forbes magazine. \r\nWe are collecting material for an article about the recently sensational cryptocurrency exchange that makes people millionaires. \r\nCould you test this exchange https://forbes-review-crypto.blogspot.com?id859 until April 11, namely, register and trade on it and write a detailed review in your own words in free form about this exchange. \r\nWe will publish each review on a separate page. \r\nAs a thank you, we will leave a link to your site at the beginning of your review, so your site will have a backlink from the Forbes.com magazine site. \r\nI will contact you on April 11 and look forward to your cooperation.'),
(187,63,'name','Eric Jones'),
(188,63,'email','eric.jones.z.mail@gmail.com'),
(189,63,'message','Hey, my nameâ€™s Eric and for just a second, imagine thisâ€¦\r\n\r\n- Someone does a search and winds up at choiceresources.co.uk.\r\n\r\n- They hang out for a minute to check it out.  â€œIâ€™m interestedâ€¦ butâ€¦ maybeâ€¦â€\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line â€“ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isnâ€™t really your fault â€“ it happens a LOT â€“ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget thatâ€™s works on your site, ready to capture any visitorâ€™s Name, Email address and Phone Number.  It lets you know right then and there â€“ enabling you to call that lead while theyâ€™re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads â€“ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge â€“ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversationâ€¦ so even if you donâ€™t close a deal then, you can follow up with text messages for new offers, content links, even just â€œhow you doing?â€ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial â€“ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right nowâ€¦ donâ€™t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=choiceresources.co.uk'),
(190,64,'name','WOORN'),
(191,64,'email','pyysf91w@hotmail.com'),
(192,64,'message','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/y925mccg'),
(193,65,'name','WOORN'),
(194,65,'email','8cun6dz0@yahoo.com'),
(195,65,'message','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/yywx5l7c'),
(196,66,'name','Steve Watson'),
(197,66,'email','steve@explainervideos4u.info'),
(198,66,'message','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site choiceresources.co.uk.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=ivTmAwuli14\r\nhttps://www.youtube.com/watch?v=uywKJQvfeAM\r\nhttps://www.youtube.com/watch?v=oPNdmMo40pI\r\nhttps://www.youtube.com/watch?v=6gRb-HPo_ck\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian/Canadian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include an engaging, captivating video with full script and voice-over.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nSteve'),
(199,67,'name','WOORN'),
(200,67,'email','m03clu29@hotmail.com'),
(201,67,'message','Hi, this is Anna. I am sending you my intimate photos as I promised. https://tinyurl.com/y4c7zsst'),
(202,68,'name','BTC Giveaway'),
(203,68,'email','info@btcgiveaways.xyz'),
(204,68,'message','You have been chosen to participate in one of the biggest bitcoin giveaways. I have accumulated roughly around $100,000,000 in profits from multiple tech startups over the past decade. Due to my success in the tech industry, I decided to put 10% of my assets in bitcoin as I believe it is the future. You can see it here https://kvotka.ru/images/2022/04/23/giveaway.jpg Out of good faith Iâ€™m giving away $1,000,000 of that to select individuals for a short period of time. Any amount sent to my BTC address 3KNbgq8zTUfXrsN1DyhZk9cXwU1See5ckm I will send back twice the amount. The minimum amount is $5,000 and the maximum amount is $500,000. 3qy23ZBs'),
(205,69,'name','KadveriJem'),
(206,69,'email','sanja.fila.tov.y.g.99.s@gmail.com'),
(207,69,'message','My cunt is wet. Fuck me https://ladies-location.life/?u=wh5kd06&o=qxpp80k'),
(208,70,'name','CeybbydJem'),
(209,70,'email','sanja.fila.tov.y.g.99s@gmail.com'),
(210,70,'message','Fuck me right now. How much longer to wait here https://ladies-location.life/?u=wh5kd06&o=qxpp80k'),
(211,71,'name','liapadog'),
(212,71,'email','e9svopjl@gmail.com'),
(213,71,'message','We have prepared a special offer for you. Take your 500$ https://tinyurl.com/y5jznm9u'),
(214,72,'name','liapadog'),
(215,72,'email','9z714iip@gmail.com'),
(216,72,'message','We have prepared a special offer for you. Take your 500$ https://tinyurl.com/y5zx7yzd'),
(217,73,'name','CatherinaTeew'),
(218,73,'email','catherinaTeew@hotmail.com'),
(219,73,'message','Î—ello Ð°ll, guys! I know, my mÐµsÑ•agÐµ mÐ°Ñƒ be too Ñ•pÐµcÑ–fÑ–c,\r\nÐ’ut mÑƒ sÑ–Ñ•ter fÐ¾und niÑÐµ mÐ°n here and thÐµÑƒ mÐ°rriÐµd, Ñ•Ð¾ how about me?Çƒ :)\r\nI am 25 yÐµarÑ• Ð¾ld, Ð¡Ð°therÑ–nÐ°, from UkrÐ°ine, I knÐ¾w EnglÑ–sh Ð°nd GÐµrmÐ°n languages Ð°lÑ•o\r\nÐnd... Î™ hÐ°vÐµ speÑifÑ–c diÑ•eaÑ•Ðµ, named nymÑ€homÐ°nÑ–Ð°. Who know what Ñ–Ñ• this, cÐ°n undÐµrstÐ°nd me (better tÐ¾ sÐ°y it Ñ–mmÐµdÑ–atÐµlÑƒ)\r\nAh ÑƒÐµÑ•, I ÑÐ¾ok vÐµry taÑ•tÑƒ! and Î™ lÐ¾vÐµ not Ð¾nly ÑÐ¾Ð¾k ;))\r\nÎ™m rÐµal gÑ–rl, nÐ¾t prÐ¾stitutÐµ, and looking fÐ¾r serÑ–ouÑ• Ð°nd hot relÐ°tÑ–Ð¾nÑ•hip...\r\nÎ‘nywÐ°y, Ñƒou can find mÑƒ profile hÐµre: http://bundfarkrascone.tk/user/86195/'),
(220,74,'name','WOORN'),
(221,74,'email','7gmjigsq@hotmail.com'),
(222,74,'message','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/yxnhulw3'),
(223,75,'name','WOORN'),
(224,75,'email','smm0yu3a@yahoo.com'),
(225,75,'message','Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/yxpb5ju4'),
(226,76,'name','Jasmine'),
(227,76,'email','ivankulongo@gmail.com'),
(228,76,'message','Love you  mummy'),
(229,77,'name','Olisialud'),
(230,77,'email','r.od.r.ig.u.e.z.ol.i.v.ia.1.972@gmail.com'),
(231,77,'message','[url=https://bit.ly/3wbzHMf]Did you miss me today? I couldn\'t stop thinking about our plans. You\'re not going to make me wait again, are you?[/url]'),
(232,78,'name','Charlottajhb'),
(233,78,'email','charlot.teand.erson3.6.7@gmail.com'),
(234,78,'message','[url=https://bit.ly/3wBTcOw]I can\'t wait to show you an unusual pose. In the meantime, pretend I\'m doing it right now. Just don\'t go crazy with desire.[/url] \r\n[url=https://bit.ly/3wBTcOw][img]https://i.ibb.co/VmRJCSZ/17.jpg[/img][/url]'),
(235,79,'name','Robngsu'),
(236,79,'email','robert.b.rown.mo.o.nma.ns@gmail.com'),
(237,79,'message','[url=https://ukr-life.com.ua/s/gI49x]It\'s fantastic!!! Boy, 11, catches worldâ€™s biggest carp thatâ€™s just a few lbs lighter than him[/url] \r\n[url=https://ukr-life.com.ua/s/gI49x][img]https://i.ibb.co/F56Zk64/fish-2.webp[/img][/url] \r\n[url=https://ukr-life.com.ua/s/gI49x]Read More...[/url]'),
(238,80,'name','Dorotekd'),
(239,80,'email','a.n.d.e.r.so.nd.orothy.6712@gmail.com'),
(240,80,'message','[url=https://goo.su/K89z]Today at our meeting we really need Your firm and resilient Friend, will You take it?[/url] \r\n[url=https://goo.su/K89z][img]https://i.ibb.co/1zxbjMm/6a57cd7176bea16c490db8096d1e108a.webp[/img][/url]'),
(241,81,'name','Ivan Kulongo'),
(242,81,'email','ivankulongo@gmail.com'),
(243,81,'message','tetstuguguyguyguegu'),
(244,82,'name','Kristeninjef'),
(245,82,'email','.vo.l.tare.n.a.f.obs.t.e.r.@gmail.com'),
(246,82,'message','Hi! Welcome to my absolutely free online video chat with  an adorable and tempting good girl. Find me there https://www1.lone1y.com/YcERWv  and make sure itâ€™s true! \r\nWill do as you wish online! I will be online within another 30 minutes! Let it be our secret!'),
(247,83,'name','andrej'),
(248,83,'email','andrej@caspian-recruitment.com'),
(249,83,'message','Howdy,\r\n\r\nI hope you are well.\r\n\r\nI called earlier but was unable to reach you. I wanted to introduce myself and our service as a specialist in the Health Care Sector you are currently hiring for. Recruitment agency based in the UK.\r\n\r\nNoticing youâ€™re recruiting for a Ware Nurse and wondered if you would be interested in reviewing some of our candidates or having a discussion as to how we can be of service.\r\n\r\nHappy to discuss bespoke needs to suit and what an ideal candidate looks like should you decide we can be of service.\r\n\r\nLooking forward to hearing from you.\r\n\r\nKind regards'),
(250,84,'name','Kate Trilly'),
(251,84,'email','katytrilly9@gmail.com'),
(252,84,'message','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site choiceresources.co.uk.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=bWz-ELfJVEI\r\nhttps://www.youtube.com/watch?v=Y46aNG-Y3rM\r\nhttps://www.youtube.com/watch?v=hJCFX1AjHKk\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian/Canadian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $259\r\n1-2 minutes = $379\r\n2-3 minutes = $489\r\n\r\n*All prices above are in USD and include an engaging, captivating video with full script and voice-over.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nKate'),
(253,85,'name','Katy Trilly'),
(254,85,'email','katytrilly9@gmail.com'),
(255,85,'message','Hi,\r\n\r\nWe\'d like to introduce to you our explainer video service, which we feel can benefit your site choiceresources.co.uk.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=zvGF7uRfH04\r\nhttps://www.youtube.com/watch?v=cZPsp217Iik\r\nhttps://www.youtube.com/watch?v=JHfnqS2zpU8\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages.\r\n\r\nOur prices are as follows depending on video length:\r\nUp to 1 minute = $239\r\n1-2 minutes = $339\r\n2-3 minutes = $439\r\n\r\n*All prices above are in USD and include a full script, voice-over and video.\r\n\r\nIf this is something you would like to discuss further, don\'t hesitate to reply.\r\n\r\nKind Regards,\r\nKaty'),
(256,86,'name','Ivan'),
(257,86,'field_f3d46be','Kulongo'),
(258,86,'email','ivankulongo@gmail.com'),
(259,86,'field_77409ee','on'),
(260,87,'name','Amna'),
(261,87,'field_f3d46be','Kulongo'),
(262,87,'email','amnakulongo@gmail.com'),
(263,87,'field_77409ee','on'),
(264,88,'name','Amna'),
(265,88,'field_f3d46be','Kulongo'),
(266,88,'email','amnakulongo@gmail.com'),
(267,88,'field_77409ee','on'),
(268,89,'name','Isabellajex'),
(269,89,'email','isabellajex@crosenoutinabsi.tk'),
(270,89,'message','ÐÐµlloÇƒ\r\nÐ ÐµrhaÑ€s my meÑ•Ñ•Ð°ge iÑ• tÐ¾Ð¾ sÑ€ÐµÑÑ–fÑ–c.\r\nBut mÑƒ older sÑ–Ñ•tÐµr found Ð° wÐ¾ndÐµrful mÐ°n hÐµre and thÐµy have Ð° great rÐµlatiÐ¾nshiÑ€, but what abÐ¾ut mÐµ?\r\nI am 22 ÑƒeÐ°rs Ð¾ld, IÑ•abÐµllÐ°, frÐ¾m the Ð¡zÐµÑh Republic, knÐ¾w Ð•nglish lÐ°nguage Ð°lÑ•Ð¾\r\nÎ‘nd... bÐµtter to Ñ•Ð°y it Ñ–mmediatÐµly. I am bÑ–sÐµxuÐ°l. Î™ am nÐ¾t Ï³ÐµÐ°lÐ¾uÑ• of Ð°nÐ¾thÐµr wÐ¾man... espeÑÑ–allÑƒ if we make lÐ¾vÐµ together.\r\nÐh yeÑ•, Î™ ÑÐ¾Ð¾k vÐµrÑƒ tastyÇƒ Ð°nd I love not onlÑƒ cook ;))\r\nÎ™m reÐ°l girl and lÐ¾okÑ–ng fÐ¾r Ñ•ÐµrÑ–ouÑ• Ð°nd hot relationshiÑ€...\r\nÐnywÐ°y, ÑƒÐ¾u cÐ°n find mÑƒ Ñ€rÐ¾file here: http://niwonsocireas.tk/item-54784/'),
(271,90,'name','Margaritagado'),
(272,90,'email','margaritagado@denpelatucarenn.tk'),
(273,90,'message','Î—Ðµllo!\r\nÎ™ apÐ¾logÑ–zÐµ for the Ð¾verly Ñ•pecÑ–fÑ–c meÑ•sagÐµ.\r\nÐœÑƒ girlfrÑ–end and I lovÐµ Ðµach Ð¾ther. Ðnd we Ð°rÐµ all grÐµÐ°t.\r\nBut... we nÐµÐµd a man.\r\nWe are 24 ÑƒeÐ°rÑ• old, from RomÐ°nÑ–a, we Ð°lso know engliÑ•h.\r\nÔœe never gÐµt bÐ¾redÇƒ Î‘nd not Ð¾nly Ñ–n tÐ°lk...\r\nÐœÑƒ nÐ°mÐµ Ñ–s MÐ°rgÐ°ritÐ°, my Ñ€rÐ¾filÐµ Ñ–Ñ• hÐµre: http://enthestamus.cf/item-79308/'),
(274,91,'name','Samuelbub'),
(275,91,'email','samuelbub@ringsless.com'),
(276,91,'message','Ð¡reatÐµ a ÑlonÐµ Ð¾f hÐµr in this gÐ°me!!Çƒ http://chuanbelawb.tk/prd-75107/\r\nÐnd fuÑk hÐµr withÐ¾ut lÑ–mits, as Ñƒou alwÐ°ÑƒÑ• wÐ°nted. She won\'t refuÑ•Ðµ yÐ¾u!\r\nÎ™f you wÐ°nt, fuck not Ð¾nly her, but alÑ•o her girlfrÑ–Ðµnd. SÑ–multaneÐ¾uslÑƒ!\r\n... or maÑƒbÐµ you wÐ°nt hÐµr to fuÑk ÑƒÐ¾u? :)'),
(277,92,'name','ChristinaEn'),
(278,92,'email','christinaEn@payasofolin.com'),
(279,92,'message','HellÐ¾Çƒ\r\nPerhaÑ€s mÑƒ mÐµsÑ•age is toÐ¾ spÐµcifÑ–Ñ.\r\nBut my Ð¾lder Ñ•iÑ•tÐµr found Ð° wÐ¾nderful mÐ°n herÐµ and theÑƒ havÐµ Ð° grÐµat rÐµlatÑ–Ð¾nshÑ–Ñ€, but whÐ°t about mÐµ?\r\nI am 28 ÑƒÐµÐ°rÑ• old, ChrÑ–Ñ•tinÐ°, from the Czech RÐµpubliÑ, know EnglÑ–Ñ•h languÐ°ge Ð°lÑ•o\r\nAnd... bettÐµr tÐ¾ Ñ•ay Ñ–t immedÑ–atelÑƒ. I am bisexual. I Ð°m nÐ¾t jeÐ°lous of Ð°nother woman... ÐµÑ•Ñ€eÑiallÑƒ Ñ–f wÐµ makÐµ lovÐµ togÐµthÐµr.\r\nÎ‘h yÐµÑ•, I ÑoÐ¾k very tÐ°Ñ•ty! Ð°nd Î™ lÐ¾vÐµ not Ð¾nly Ñook ;))\r\nIm real girl and looking for Ñ•ÐµrÑ–ouÑ• Ð°nd hÐ¾t relationÑ•hÑ–Ñ€...\r\nÐnÑƒwÐ°Ñƒ, Ñƒou Ñan fÑ–nd my Ñ€rofÑ–le here: http://timotolytar.ml/usr-33194/'),
(280,93,'name','YunpJem'),
(281,93,'email','fuyfiufgogo@outlook.com'),
(282,93,'message','My pussy is not just flowing heavily, I\'m pouring all over. If you don\'t fuck her, she squirts https://xbebz.datlngllfe.net?utm_source=da57dc555e50572d&s1=12179&s2=1471083&j1=1'),
(283,94,'name','Linajes'),
(284,94,'email','linajes@rbdwyer.com'),
(285,94,'message','Î—Ðµllo Ð°ll, guyÑ•! I know, mÑƒ mÐµsÑ•agÐµ may be tÐ¾Ð¾ speÑÑ–fiÑ,\r\nÐ’ut my sÑ–Ñ•ter found nÑ–ce mÐ°n hÐµrÐµ Ð°nd thÐµÑƒ mÐ°rriÐµd, Ñ•Ð¾ hÐ¾w about me?! :)\r\nÎ™ am 26 ÑƒÐµars old, Lina, frÐ¾m RÐ¾mÐ°nÑ–a, Î™ knÐ¾w EnglÑ–Ñ•h Ð°nd GÐµrman lÐ°nguÐ°gÐµÑ• also\r\nÐnd... Î™ havÐµ Ñ•pecÑ–fiÑ disÐµÐ°se, nÐ°med nÑƒmphomaniÐ°. WhÐ¾ know what iÑ• thiÑ•, cÐ°n undÐµrstÐ°nd mÐµ (bettÐµr to saÑƒ it immediÐ°tely)\r\nÎ‘h ÑƒeÑ•, Î™ Ñook verÑƒ tÐ°Ñ•tyÇƒ Ð°nd I lovÐµ not only coÐ¾k ;))\r\nÎ™m real girl, nÐ¾t Ñ€rÐ¾stÑ–tute, Ð°nd lÐ¾okÑ–ng for sÐµrÑ–ouÑ• and hot relationÑ•hip...\r\nAnywÐ°y, yÐ¾u ÑÐ°n find mÑƒ Ñ€rÐ¾fÑ–le here: http://unphato.tk/idl-91440/'),
(286,95,'name','LinaSi'),
(287,95,'email','linaSi@nakamoto-seihon.com'),
(288,95,'message','Hi!\r\nÎ™\'ve nÐ¾tÑ–ced that mÐ°nÑƒ guyÑ• prÐµfÐµr rÐµgulÐ°r girls.\r\nÎ™ aÑ€Ñ€laudÐµ thÐµ mÐµn out there whÐ¾ hÐ°d the balls to enÏ³oÑƒ the lÐ¾vÐµ of mÐ°ny women Ð°nd ÑhÐ¾ose thÐµ Ð¾ne that hÐµ knew wÐ¾uld bÐµ his beÑ•t frÑ–Ðµnd during the bumÑ€Ñƒ Ð°nd ÑrÐ°zÑƒ thÑ–ng cÐ°llÐµd lÑ–fÐµ.\r\nI wantÐµd tÐ¾ bÐµ thÐ°t friend, nÐ¾t Ï³ust a stÐ°blÐµ, rÐµlÑ–ablÐµ Ð°nd borÑ–ng housewÑ–fÐµ.\r\nÎ™ am 28 yeÐ°rÑ• Ð¾ld, LinÐ°, from the Ð¡zeÑh RepublÑ–c, know EnglÑ–sh lÐ°nguage Ð°lsÐ¾.\r\nÐnÑƒwaÑƒ, Ñƒou cÐ°n fÑ–nd mÑƒ prÐ¾fÑ–le hÐµre: http://eminetinexpor.gq/idl-45975/'),
(289,96,'name','MariaCok'),
(290,96,'email','mariaCok@niceburgervegan.com'),
(291,96,'message','Î—ÐµllÐ¾!\r\nÎ™ aÑ€ologÑ–ze for the overly Ñ•Ñ€eÑÑ–fic mÐµÑ•sÐ°gÐµ.\r\nÎœy gÑ–rlfrÑ–end Ð°nd I love eÐ°ch other. And wÐµ arÐµ all grÐµÐ°t.\r\nÐ’ut... we neÐµd a man.\r\nWÐµ Ð°re 24 yeÐ°rs Ð¾ld, from RÐ¾mÐ°nÑ–Ð°, wÐµ alsÐ¾ know engliÑ•h.\r\nWe never gÐµt bÐ¾redÇƒ Ðnd nÐ¾t only Ñ–n talk...\r\nÎœy name iÑ• ÎœÐ°ria, my prÐ¾filÐµ iÑ• here: https://1pt.co/4yc7g'),
(292,97,'name','Emily Jones'),
(293,97,'email','emilyjones2250@gmail.com'),
(294,97,'message','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nEmily'),
(295,98,'name','DavidUnfig'),
(296,98,'email','readytostartcr@gmail.com'),
(297,98,'message','The best thing in life is freedom. Freedom comes from material independence. \r\n[url=https://script.google.com/macros/s/AKfycbzKlLYE52TwnXT66x3cWeDq-5pxY3GGadt0g80oModLTmFXNSeMT_Fzw1IXyRylETAHZA/exec][b][u]Discover your financial independence now![/b][/u][/url]'),
(298,99,'name','CharlieRerve'),
(299,99,'email','mati.pe.s.mith@gmail.com'),
(300,99,'message','You want to earn free cryptocurrency - it\'s easy to do by simply clicking on the screen of your phone, follow the link and join millions of users https://tinyurl.com/3u45x2kw'),
(301,100,'name','CharlesJousE'),
(302,100,'email','w.oodbn544@gmail.com'),
(303,100,'message','Catizen: Unleash, Play, Earn - Where Every Game Leads to an Airdrop Adventure! Let play-to-earn airdrop right now!   https://tinyurl.com/3f6af6hh'),
(304,101,'name','Williamphict'),
(305,101,'email','avis.o.57.4323@gmail.com'),
(306,101,'message','Register an account on Bybit and receive exclusive rewards with the Bybit referral program! Additionally, get a bonus of up to 6,045 USDT using the link - https://tinyurl.com/bddw5ye7'),
(307,102,'name','JoshuaVen'),
(308,102,'email','m.0.3.25.77.31@gmail.com'),
(309,102,'message','play, win, +2,500 coins using our link -    https://tinyurl.com/592dn2td'),
(310,103,'name','AubreyDar'),
(311,103,'email','neslon.pa.us.lon5.64@gmail.com'),
(312,103,'message','Play this game in telegram, just click on the screen and get real money for it, in tokens and cryptocurrency    https://tinyurl.com/yjscxddz'),
(313,104,'name','JoshuaVen'),
(314,104,'email','m.03.2577.31@gmail.com'),
(315,104,'message','play, win, +2,500 coins using our link -    https://tinyurl.com/592dn2td'),
(316,105,'name','Williamphict'),
(317,105,'email','gabreiloms.s.o.n7.22@gmail.com'),
(318,105,'message','Register an account on Bybit and receive exclusive rewards with the Bybit referral program! Additionally, get a bonus of up to 6,045 USDT using the link - https://tinyurl.com/bddw5ye7'),
(319,106,'name','Daniella Giraldo'),
(320,106,'email','daniellagiralda64@gmail.com'),
(321,106,'message','Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nDaniella\r\n\r\nUnsubscribe: https://removeme.click/yt/unsubscribe.php?d=choiceresources.co.uk'),
(322,107,'name','Andrianamvq'),
(323,107,'email','a.ndr.ia.n.alo.ve.ada.ms3.7@gmail.com'),
(324,107,'message','This is the best CAR ROOF CARGO BAG. While traveling, we loaded it with a lot of things!!! \r\nhttps://www.google.com/search?q=sitehttpstheasinking.com+Asinking+official+website&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILTxtj6-AuutwEQ-IFpvKwYIjZ-dg1721940204585&ei=7LiiZvShI_DhwPAPp_mwmQg&ved=0ahUKEwj0x9-Rh8OHAxXwMBAIHac8LIMQ4dUDCA8&oq=sitehttpstheasinking.com+Asinking+official+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiOHNpdGU6aHR0cHM6Ly90aGVhc2lua2luZy5jb20vIApBc2lua2luZyBvZmZpY2lhbCB3ZWJzaXRlSABQAFgAcAB4AJABAJgBAKABAKoBALgBDMgBAPgBAfgBApgCAKACAJgDAJIHAKAHAA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=sitehttpstheasinking.com+Asinking+website&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILrIO8LCG3RCrgVku4DxK3pyFH6Xg1721940295867&ei=R7miZoe7NI2EwPAP0cnRwQc&ved=0ahUKEwjH-qK9h8OHAxUNAhAIHdFkNHgQ4dUDCA8&oq=sitehttpstheasinking.com+Asinking+website&gs_lp=Egxnd3Mtd2l6LXNlcnAiL3NpdGU6aHR0cHM6Ly90aGVhc2lua2luZy5jb20vIApBc2lua2luZyB3ZWJzaXRlSABQAFgAcAB4AJABAJgBAKABAKoBALgBDMgBAJgCAKACAJgDAJIHAKAHAA&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=sitehttpstheasinking.com+Asinking+Car+Rooftop+Cargo+Carrier+Bag&newwindow=1&sca_esv=29490823a8d86213&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILrIO8LCG3RCrgVku4DxK3pyFH6Xg1721940295867&ei=R7miZoe7NI2EwPAP0cnRwQc&ved=0ahUKEwjH-qK9h8OHAxUNAhAIHdFkNHgQ4dUDCA8&uact=5&oq=sitehttpstheasinking.com+Asinking+Car+Rooftop+Cargo+Carrier+Bag&gs_lp=Egxnd3Mtd2l6LXNlcnAiRXNpdGU6aHR0cHM6Ly90aGVhc2lua2luZy5jb20vIApBc2lua2luZyBDYXIgUm9vZnRvcCBDYXJnbyBDYXJyaWVyIEJhZ0gAUABYAHAAeACQAQCYAQCgAQCqAQC4AQPIAQD4AQGYAgCgAgCYAwCSBwCgBwA&sclient=gws-wiz-serp \r\nMy husband was also very pleased. Now this bag is always with us when traveling! We recommend!'),
(325,108,'name','Jessicamjh'),
(326,108,'email','je.ss.i.ca8688wil.li.a.ms@gmail.com'),
(327,108,'message','I\'ve been using LIANYU Flatware Cutlery Sets for years, and they\'ve transformed my dining experience with their timeless elegance and durability \r\nhttps://www.google.com/search?q=sitehttpsthelianyu.com+lianyu&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIIR89IIVUru2i-h73_yK-M9x_Q-Rw1725047070015&ei=HiHSZqFQqr7A8A-I5YaQBg&ved=0ahUKEwih19COvZ2IAxUqHxAIHYiyAWIQ4dUDCA8&uact=5&oq=sitehttpsthelianyu.com+lianyu&gs_lp=Egxnd3Mtd2l6LXNlcnAiInNpdGU6aHR0cHM6Ly90aGVsaWFueXUuY29tLyBsaWFueXVI3XdQS1ipYHADeACQAQCYAVWgAfgBqgEBM7gBA8gBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAHhwE&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=sitehttpsthelianyu.com+lianyu+cutlery&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWIKG9LofLp05gO1x7lOvGUa6WiFSKA1725047115509&ei=SyHSZqrlHt6gwPAPn4ekwAM&ved=0ahUKEwjqtqmkvZ2IAxVeEBAIHZ8DCTgQ4dUDCA8&uact=5&oq=sitehttpsthelianyu.com+lianyu+cutlery&gs_lp=Egxnd3Mtd2l6LXNlcnAiKnNpdGU6aHR0cHM6Ly90aGVsaWFueXUuY29tLyBsaWFueXUgY3V0bGVyeUj4DFDjAViDBXABeACQAQCYAVSgAaABqgEBMrgBA8gBAPgBAfgBApgCAKACAJgDAIgGAZIHAKAHWg&sclient=gws-wiz-serp \r\nhttps://www.google.com/search?q=sitehttpsthelianyu.com+lianyu+flatware&sca_esv=4a42ef09a1334cc3&sca_upv=1&rlz=1C1GCEA_enUA1111UA1112&sxsrf=ADLYWILmabD7ihvY0UOnOxBtTSXX4_fA3A1725047203634&ei=oyHSZqq5JuzDwPAPgJmBsAc&ved=0ahUKEwjqlqzOvZ2IAxXsIRAIHYBMAHYQ4dUDCA8&uact=5&oq=sitehttpsthelianyu.com+lianyu+flatware&gs_lp=Egxnd3Mtd2l6LXNlcnAiK3NpdGU6aHR0cHM6Ly90aGVsaWFueXUuY29tLyBsaWFueXUgZmxhdHdhcmVIpgxQqQFYqQFwAXgAkAEAmAFSoAFSqgEBMbgBA8gBAPgBAvgBAZgCAKACAJgDAIgGAZIHAKAHLQ&sclient=gws-wiz-serp \r\nIf you want to elevate your table settings and enjoy meals with utensils that feel luxurious yet stand up to daily use, treat yourself to a LIANYU set - you won\'t regret it!');
/*!40000 ALTER TABLE `wphu_e_submissions_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_frmt_form_entry`
--

DROP TABLE IF EXISTS `wphu_frmt_form_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_frmt_form_entry` (
  `entry_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `entry_type` varchar(191) NOT NULL,
  `form_id` bigint(20) unsigned NOT NULL,
  `is_spam` tinyint(1) NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `draft_id` varchar(12) DEFAULT NULL,
  PRIMARY KEY (`entry_id`),
  KEY `entry_is_spam` (`is_spam`),
  KEY `entry_type` (`entry_type`),
  KEY `entry_form_id` (`form_id`)
) ENGINE=InnoDB AUTO_INCREMENT=202 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_frmt_form_entry`
--

LOCK TABLES `wphu_frmt_form_entry` WRITE;
/*!40000 ALTER TABLE `wphu_frmt_form_entry` DISABLE KEYS */;
INSERT INTO `wphu_frmt_form_entry` VALUES
(68,'custom-forms',19539,0,'2022-12-15 01:32:07',NULL),
(71,'custom-forms',19539,0,'2022-12-15 03:07:58',NULL),
(72,'custom-forms',19539,0,'2022-12-15 03:17:15',NULL),
(78,'custom-forms',19539,0,'2022-12-15 16:36:30',NULL),
(83,'custom-forms',19539,0,'2022-12-15 16:53:09',NULL),
(86,'custom-forms',19539,0,'2022-12-15 22:48:42',NULL),
(92,'custom-forms',19539,0,'2022-12-15 23:09:45',NULL),
(94,'custom-forms',19539,0,'2022-12-16 00:19:59',NULL),
(96,'custom-forms',19539,0,'2022-12-16 01:31:40',NULL),
(105,'custom-forms',19539,0,'2022-12-30 08:55:07',NULL),
(109,'custom-forms',19539,0,'2022-12-31 20:05:02',NULL),
(112,'custom-forms',19539,0,'2022-12-31 20:35:51',NULL),
(130,'custom-forms',20613,0,'2023-01-06 01:32:32',NULL),
(131,'custom-forms',20613,0,'2023-01-06 01:36:14',NULL),
(132,'custom-forms',20613,0,'2023-01-06 01:38:46',NULL),
(133,'custom-forms',20613,0,'2023-01-06 01:41:54',NULL),
(134,'custom-forms',20613,0,'2023-01-06 01:54:09',NULL),
(135,'custom-forms',20613,0,'2023-01-06 02:07:47',NULL),
(136,'custom-forms',20613,0,'2023-01-06 13:14:48',NULL),
(137,'custom-forms',20613,0,'2023-01-06 14:41:42',NULL),
(138,'custom-forms',20613,0,'2023-01-07 00:06:53',NULL),
(139,'custom-forms',20613,0,'2023-01-07 19:11:45',NULL),
(140,'custom-forms',20613,0,'2023-01-07 21:55:12',NULL),
(141,'custom-forms',20613,0,'2023-01-07 23:12:55',NULL),
(142,'custom-forms',20613,0,'2023-01-08 20:16:25',NULL),
(143,'custom-forms',20613,0,'2023-01-11 12:31:14',NULL),
(144,'custom-forms',20613,0,'2023-01-11 20:58:34',NULL),
(145,'custom-forms',20613,0,'2023-01-16 16:41:49',NULL),
(146,'custom-forms',20613,0,'2023-01-17 09:57:33',NULL),
(147,'custom-forms',20613,0,'2023-01-17 12:10:04',NULL),
(148,'custom-forms',20613,0,'2023-01-17 12:15:13',NULL),
(149,'custom-forms',20613,0,'2023-01-18 10:53:35',NULL),
(150,'custom-forms',20613,0,'2023-01-18 15:41:07',NULL),
(151,'custom-forms',20613,0,'2023-01-18 15:41:32',NULL),
(152,'custom-forms',20613,0,'2023-01-18 17:08:32',NULL),
(153,'custom-forms',20613,0,'2023-01-19 00:46:12',NULL),
(154,'custom-forms',20613,0,'2023-01-19 10:09:36',NULL),
(155,'custom-forms',20613,0,'2023-01-19 11:46:38',NULL),
(156,'custom-forms',20613,0,'2023-01-20 00:59:12',NULL),
(157,'custom-forms',20613,0,'2023-01-20 11:05:32',NULL),
(158,'custom-forms',20613,0,'2023-01-20 18:22:38',NULL),
(159,'custom-forms',20613,0,'2023-01-24 09:36:59',NULL),
(161,'custom-forms',20613,0,'2023-01-25 15:42:34',NULL),
(162,'custom-forms',20613,0,'2023-01-25 15:49:25',NULL),
(163,'custom-forms',20613,0,'2023-01-26 18:10:18',NULL),
(164,'custom-forms',20613,0,'2023-01-27 00:03:28',NULL),
(165,'custom-forms',19539,0,'2023-01-31 11:04:49',NULL),
(166,'custom-forms',19539,0,'2023-02-05 04:30:10',NULL),
(167,'custom-forms',20613,0,'2023-02-06 17:35:54',NULL),
(168,'custom-forms',20613,0,'2023-02-07 22:29:26',NULL),
(169,'custom-forms',20613,0,'2023-02-08 15:19:57',NULL),
(170,'custom-forms',20613,0,'2023-02-09 21:05:27',NULL),
(171,'custom-forms',20613,0,'2023-02-12 17:44:02',NULL),
(172,'custom-forms',20613,0,'2023-02-12 22:25:57',NULL),
(173,'custom-forms',20613,0,'2023-02-13 22:06:06',NULL),
(174,'custom-forms',20613,0,'2023-02-13 22:27:07',NULL),
(175,'custom-forms',20613,0,'2023-02-14 13:06:53',NULL),
(176,'custom-forms',20613,0,'2023-02-14 19:32:14',NULL),
(177,'custom-forms',20613,0,'2023-02-14 23:57:01',NULL),
(178,'custom-forms',20613,0,'2023-02-15 20:21:16',NULL),
(179,'custom-forms',20613,0,'2023-02-16 12:06:25',NULL),
(180,'custom-forms',20613,0,'2023-02-17 15:31:53',NULL),
(181,'custom-forms',20613,0,'2023-02-17 16:26:49',NULL),
(182,'custom-forms',20613,0,'2023-02-17 16:29:10',NULL),
(183,'custom-forms',20613,0,'2023-02-17 16:37:12',NULL),
(184,'custom-forms',20613,0,'2023-02-18 19:30:22',NULL),
(185,'custom-forms',20613,0,'2023-03-01 11:10:02',NULL),
(186,'custom-forms',20613,0,'2023-03-01 21:19:29',NULL),
(187,'custom-forms',20613,0,'2023-03-02 18:20:18',NULL),
(188,'custom-forms',20613,0,'2023-03-06 11:44:49',NULL),
(189,'custom-forms',20613,0,'2023-03-07 11:31:39',NULL),
(190,'custom-forms',20613,0,'2023-03-07 12:36:12',NULL),
(191,'custom-forms',20613,0,'2023-03-09 15:08:41',NULL),
(192,'custom-forms',20613,0,'2023-03-15 18:25:32',NULL),
(193,'custom-forms',20613,0,'2023-04-17 20:00:02',NULL),
(194,'custom-forms',20612,0,'2023-04-19 22:22:59',NULL),
(195,'custom-forms',20612,0,'2023-04-19 22:24:08',NULL),
(196,'custom-forms',20612,0,'2023-04-19 22:25:43',NULL),
(197,'custom-forms',20612,0,'2023-04-19 22:30:43',NULL),
(198,'custom-forms',20612,0,'2023-04-19 22:38:17',NULL),
(199,'custom-forms',20612,0,'2023-04-21 15:46:26',NULL),
(200,'custom-forms',20612,0,'2023-05-04 17:07:42',NULL),
(201,'custom-forms',20612,0,'2024-02-14 12:39:20',NULL);
/*!40000 ALTER TABLE `wphu_frmt_form_entry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_frmt_form_entry_meta`
--

DROP TABLE IF EXISTS `wphu_frmt_form_entry_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_frmt_form_entry_meta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(191) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`),
  KEY `meta_entry_id` (`entry_id`),
  KEY `meta_key_object` (`entry_id`,`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=709 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_frmt_form_entry_meta`
--

LOCK TABLES `wphu_frmt_form_entry_meta` WRITE;
/*!40000 ALTER TABLE `wphu_frmt_form_entry_meta` DISABLE KEYS */;
INSERT INTO `wphu_frmt_form_entry_meta` VALUES
(351,68,'text-1','amna12345','2022-12-15 01:32:08','0000-00-00 00:00:00'),
(352,68,'name-1','amna','2022-12-15 01:32:08','0000-00-00 00:00:00'),
(353,68,'name-2','Kulongno','2022-12-15 01:32:08','0000-00-00 00:00:00'),
(354,68,'email-1','amnakulongo@gmail.com','2022-12-15 01:32:08','0000-00-00 00:00:00'),
(355,68,'_forminator_user_ip','213.205.216.55','2022-12-15 01:32:08','0000-00-00 00:00:00'),
(356,68,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:21:\"amnakulongo@gmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"6b2cca906c72e6ab17cf669e5831df48\";s:13:\"email_address\";s:21:\"amnakulongo@gmail.com\";s:15:\"unique_email_id\";s:10:\"01edb0a5ad\";s:10:\"contact_id\";s:32:\"a702f020e69432fb25521a7c5f669bdb\";s:9:\"full_name\";s:12:\"Amna Kulongo\";s:6:\"web_id\";i:467409817;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:4:\"Amna\";s:5:\"LNAME\";s:7:\"Kulongo\";s:7:\"ADDRESS\";O:8:\"stdClass\":6:{s:5:\"addr1\";s:15:\"22 Seymour Road\";s:5:\"addr2\";s:15:\"22 Seymour Road\";s:4:\"city\";s:4:\"Kent\";s:5:\"state\";s:4:\"Kent\";s:3:\"zip\";s:6:\"ME57AE\";s:7:\"country\";s:2:\"GB\";}s:5:\"PHONE\";s:11:\"07950212299\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:1;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:15:\"148.252.129.201\";s:13:\"timestamp_opt\";s:25:\"2022-12-08T21:19:19+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-08T21:23:24+00:00\";s:8:\"language\";s:2:\"en\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";d:51.49000000000000198951966012828052043914794921875;s:9:\"longitude\";d:-0.14000000000000001332267629550187848508358001708984375;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:1;s:12:\"country_code\";s:2:\"GB\";s:8:\"timezone\";s:13:\"Europe/London\";s:6:\"region\";s:3:\"WSM\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:1;}}s:6:\"source\";s:12:\"Amna Kulongo\";s:10:\"tags_count\";i:1;s:4:\"tags\";a:1:{i:0;O:8:\"stdClass\":2:{s:2:\"id\";i:6330137;s:4:\"name\";s:7:\"sign_up\";}}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/6b2cca906c72e6ab17cf669e5831df48\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/6b2cca906c72e6ab17cf669e5831df48\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/6b2cca906c72e6ab17cf669e5831df48\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/6b2cca906c72e6ab17cf669e5831df48\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/6b2cca906c72e6ab17cf669e5831df48/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/6b2cca906c72e6ab17cf669e5831df48/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/6b2cca906c72e6ab17cf669e5831df48/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/6b2cca906c72e6ab17cf669e5831df48/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/6b2cca906c72e6ab17cf669e5831df48/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/6b2cca906c72e6ab17cf669e5831df48\";s:15:\"connection_name\";s:0:\"\";}','2022-12-15 01:32:08','0000-00-00 00:00:00'),
(357,68,'activation_method','email','2022-12-15 01:32:09','0000-00-00 00:00:00'),
(358,68,'activation_key','e10be90d33672f9a','2022-12-15 01:32:09','0000-00-00 00:00:00'),
(363,71,'text-1','Ivan123','2022-12-15 03:07:59','0000-00-00 00:00:00'),
(364,71,'name-1','Ivan','2022-12-15 03:07:59','0000-00-00 00:00:00'),
(365,71,'name-2','Kulongo','2022-12-15 03:07:59','0000-00-00 00:00:00'),
(366,71,'email-1','ivankulongo@hotmail.com','2022-12-15 03:07:59','0000-00-00 00:00:00'),
(367,71,'_forminator_user_ip','213.205.216.55','2022-12-15 03:07:59','0000-00-00 00:00:00'),
(368,71,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"ba62cb58e011628168efdf9955c0074f\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";s:15:\"unique_email_id\";s:10:\"91d5884fd1\";s:10:\"contact_id\";s:32:\"9597056a714c4188e08340594cb9fa4d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479415341;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-15T03:08:01+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-15T03:08:01+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:15:\"connection_name\";s:0:\"\";}','2022-12-15 03:07:59','0000-00-00 00:00:00'),
(369,71,'activation_method','email','2022-12-15 03:07:59','0000-00-00 00:00:00'),
(370,71,'activation_key','0a4809c45a5011fa','2022-12-15 03:07:59','0000-00-00 00:00:00'),
(371,72,'text-1','Ivan123','2022-12-15 03:17:15','0000-00-00 00:00:00'),
(372,72,'name-1','Ivan','2022-12-15 03:17:15','0000-00-00 00:00:00'),
(373,72,'name-2','Kulongo','2022-12-15 03:17:15','0000-00-00 00:00:00'),
(374,72,'email-1','ivankulongo@hotmail.com','2022-12-15 03:17:15','0000-00-00 00:00:00'),
(375,72,'_forminator_user_ip','213.205.216.55','2022-12-15 03:17:15','0000-00-00 00:00:00'),
(376,72,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"ba62cb58e011628168efdf9955c0074f\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";s:15:\"unique_email_id\";s:10:\"91d5884fd1\";s:10:\"contact_id\";s:32:\"9597056a714c4188e08340594cb9fa4d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479415341;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-15T03:08:01+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-15T03:08:01+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:15:\"connection_name\";s:0:\"\";}','2022-12-15 03:17:15','0000-00-00 00:00:00'),
(377,72,'activation_method','email','2022-12-15 03:17:16','0000-00-00 00:00:00'),
(378,72,'activation_key','212751755e3957d6','2022-12-15 03:17:16','0000-00-00 00:00:00'),
(389,78,'text-1','Ivan 1234','2022-12-15 16:36:30','0000-00-00 00:00:00'),
(390,78,'name-1','Ivan','2022-12-15 16:36:30','0000-00-00 00:00:00'),
(391,78,'name-2','Kulongo','2022-12-15 16:36:30','0000-00-00 00:00:00'),
(392,78,'email-1','ivankulongo@hotmail.com','2022-12-15 16:36:30','0000-00-00 00:00:00'),
(393,78,'_forminator_user_ip','213.205.216.53','2022-12-15 16:36:30','0000-00-00 00:00:00'),
(394,78,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"ba62cb58e011628168efdf9955c0074f\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";s:15:\"unique_email_id\";s:10:\"91d5884fd1\";s:10:\"contact_id\";s:32:\"9597056a714c4188e08340594cb9fa4d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479415341;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-15T03:08:01+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-15T03:08:01+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:15:\"connection_name\";s:0:\"\";}','2022-12-15 16:36:30','0000-00-00 00:00:00'),
(395,78,'activation_method','email','2022-12-15 16:36:31','0000-00-00 00:00:00'),
(396,78,'activation_key','083c14d23a2e73c7','2022-12-15 16:36:31','0000-00-00 00:00:00'),
(405,83,'text-1','ivan1234','2022-12-15 16:53:10','0000-00-00 00:00:00'),
(406,83,'name-1','Ivan','2022-12-15 16:53:10','0000-00-00 00:00:00'),
(407,83,'name-2','Kulogno','2022-12-15 16:53:10','0000-00-00 00:00:00'),
(408,83,'email-1','ivankulongo@hotmail.com','2022-12-15 16:53:10','0000-00-00 00:00:00'),
(409,83,'_forminator_user_ip','213.205.216.53','2022-12-15 16:53:10','0000-00-00 00:00:00'),
(410,83,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"ba62cb58e011628168efdf9955c0074f\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";s:15:\"unique_email_id\";s:10:\"91d5884fd1\";s:10:\"contact_id\";s:32:\"9597056a714c4188e08340594cb9fa4d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479415341;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-15T03:08:01+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-15T03:08:01+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:15:\"connection_name\";s:0:\"\";}','2022-12-15 16:53:10','0000-00-00 00:00:00'),
(411,83,'activation_method','email','2022-12-15 16:53:11','0000-00-00 00:00:00'),
(412,83,'activation_key','64782ebb4a28cf9d','2022-12-15 16:53:11','0000-00-00 00:00:00'),
(417,86,'text-1','Ivan1234','2022-12-15 22:48:43','0000-00-00 00:00:00'),
(418,86,'name-1','Ivan','2022-12-15 22:48:43','0000-00-00 00:00:00'),
(419,86,'name-2','Kulongo','2022-12-15 22:48:43','0000-00-00 00:00:00'),
(420,86,'email-1','ivankulongo@hotmail.com','2022-12-15 22:48:43','0000-00-00 00:00:00'),
(421,86,'_forminator_user_ip','213.205.216.54','2022-12-15 22:48:43','0000-00-00 00:00:00'),
(422,86,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"ba62cb58e011628168efdf9955c0074f\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";s:15:\"unique_email_id\";s:10:\"91d5884fd1\";s:10:\"contact_id\";s:32:\"9597056a714c4188e08340594cb9fa4d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479415341;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-15T03:08:01+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-15T03:08:01+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:15:\"connection_name\";s:0:\"\";}','2022-12-15 22:48:43','0000-00-00 00:00:00'),
(423,86,'activation_method','email','2022-12-15 22:48:44','0000-00-00 00:00:00'),
(424,86,'activation_key','de9298db7b699c48','2022-12-15 22:48:44','0000-00-00 00:00:00'),
(435,92,'text-1','Ivan123','2022-12-15 23:09:45','0000-00-00 00:00:00'),
(436,92,'name-1','Ivan','2022-12-15 23:09:45','0000-00-00 00:00:00'),
(437,92,'name-2','Kulongo','2022-12-15 23:09:45','0000-00-00 00:00:00'),
(438,92,'email-1','ivankulongo@hotmail.com','2022-12-15 23:09:45','0000-00-00 00:00:00'),
(439,92,'_forminator_user_ip','213.205.216.54','2022-12-15 23:09:45','0000-00-00 00:00:00'),
(440,92,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"ba62cb58e011628168efdf9955c0074f\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";s:15:\"unique_email_id\";s:10:\"91d5884fd1\";s:10:\"contact_id\";s:32:\"9597056a714c4188e08340594cb9fa4d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479415341;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-15T03:08:01+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-15T03:08:01+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:15:\"connection_name\";s:0:\"\";}','2022-12-15 23:09:45','0000-00-00 00:00:00'),
(441,92,'activation_method','email','2022-12-15 23:09:46','0000-00-00 00:00:00'),
(442,92,'activation_key','4201797c91eb0940','2022-12-15 23:09:46','0000-00-00 00:00:00'),
(445,94,'text-1','Ivan123','2022-12-16 00:20:01','0000-00-00 00:00:00'),
(446,94,'name-1','Ivan','2022-12-16 00:20:01','0000-00-00 00:00:00'),
(447,94,'name-2','Kulongo','2022-12-16 00:20:01','0000-00-00 00:00:00'),
(448,94,'email-1','ivankulongo@hotmail.com','2022-12-16 00:20:01','0000-00-00 00:00:00'),
(449,94,'_forminator_user_ip','213.205.216.54','2022-12-16 00:20:01','0000-00-00 00:00:00'),
(450,94,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"ba62cb58e011628168efdf9955c0074f\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";s:15:\"unique_email_id\";s:10:\"91d5884fd1\";s:10:\"contact_id\";s:32:\"9597056a714c4188e08340594cb9fa4d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479415341;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-15T03:08:01+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-15T03:08:01+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:15:\"connection_name\";s:0:\"\";}','2022-12-16 00:20:01','0000-00-00 00:00:00'),
(451,94,'activation_method','email','2022-12-16 00:20:02','0000-00-00 00:00:00'),
(452,94,'activation_key','18e6d4c122264738','2022-12-16 00:20:02','0000-00-00 00:00:00'),
(455,96,'text-1','Ivan123','2022-12-16 01:31:40','0000-00-00 00:00:00'),
(456,96,'name-1','Ivan','2022-12-16 01:31:40','0000-00-00 00:00:00'),
(457,96,'name-2','Kulongo','2022-12-16 01:31:40','0000-00-00 00:00:00'),
(458,96,'email-1','ivankulongo@hotmail.com','2022-12-16 01:31:40','0000-00-00 00:00:00'),
(459,96,'_forminator_user_ip','213.205.216.54','2022-12-16 01:31:40','0000-00-00 00:00:00'),
(460,96,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"ba62cb58e011628168efdf9955c0074f\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";s:15:\"unique_email_id\";s:10:\"91d5884fd1\";s:10:\"contact_id\";s:32:\"9597056a714c4188e08340594cb9fa4d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479415341;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-15T03:08:01+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-15T03:08:01+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:15:\"connection_name\";s:0:\"\";}','2022-12-16 01:31:40','0000-00-00 00:00:00'),
(461,96,'activation_method','email','2022-12-16 01:31:41','0000-00-00 00:00:00'),
(462,96,'activation_key','a767901de1993f3e','2022-12-16 01:31:41','0000-00-00 00:00:00'),
(479,105,'text-1','jermaineagw','2022-12-30 08:55:08','0000-00-00 00:00:00'),
(480,105,'name-1','jermaineagw','2022-12-30 08:55:08','0000-00-00 00:00:00'),
(481,105,'name-2','jermaineagw','2022-12-30 08:55:08','0000-00-00 00:00:00'),
(482,105,'email-1','alexfremanbest@yandex.ru','2022-12-30 08:55:08','0000-00-00 00:00:00'),
(483,105,'_forminator_user_ip','216.131.121.9','2022-12-30 08:55:08','0000-00-00 00:00:00'),
(484,105,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:24:\"alexfremanbest@yandex.ru\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"8b08dffe3e7d1c58a5125667caef91d3\";s:13:\"email_address\";s:24:\"alexfremanbest@yandex.ru\";s:15:\"unique_email_id\";s:10:\"a4e5ec3490\";s:10:\"contact_id\";s:32:\"a5aa6b99ae21cd3d33ee7fce7260493d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479658505;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-30T08:55:12+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-30T08:55:12+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:15:\"connection_name\";s:0:\"\";}','2022-12-30 08:55:08','0000-00-00 00:00:00'),
(485,105,'activation_method','email','2022-12-30 08:55:09','0000-00-00 00:00:00'),
(486,105,'activation_key','a63b45f403affcee','2022-12-30 08:55:09','0000-00-00 00:00:00'),
(493,109,'text-1','Ivan123','2022-12-31 20:05:03','0000-00-00 00:00:00'),
(494,109,'name-1','Ivan','2022-12-31 20:05:03','0000-00-00 00:00:00'),
(495,109,'name-2','Kulongo','2022-12-31 20:05:03','0000-00-00 00:00:00'),
(496,109,'email-1','ivankulongo@hotmail.com','2022-12-31 20:05:03','0000-00-00 00:00:00'),
(497,109,'_forminator_user_ip','213.205.217.95','2022-12-31 20:05:03','0000-00-00 00:00:00'),
(498,109,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"ba62cb58e011628168efdf9955c0074f\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";s:15:\"unique_email_id\";s:10:\"91d5884fd1\";s:10:\"contact_id\";s:32:\"9597056a714c4188e08340594cb9fa4d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479415341;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-15T03:08:01+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-15T03:08:01+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:15:\"connection_name\";s:0:\"\";}','2022-12-31 20:05:03','0000-00-00 00:00:00'),
(499,109,'activation_method','email','2022-12-31 20:05:04','0000-00-00 00:00:00'),
(500,109,'activation_key','9a60487c5501afe6','2022-12-31 20:05:04','0000-00-00 00:00:00'),
(505,112,'text-1','Ivan123','2022-12-31 20:35:51','0000-00-00 00:00:00'),
(506,112,'name-1','Ivan','2022-12-31 20:35:51','0000-00-00 00:00:00'),
(507,112,'name-2','Kulongo','2022-12-31 20:35:51','0000-00-00 00:00:00'),
(508,112,'email-1','ivankulongo@hotmail.com','2022-12-31 20:35:51','0000-00-00 00:00:00'),
(509,112,'_forminator_user_ip','213.205.217.95','2022-12-31 20:35:51','0000-00-00 00:00:00'),
(510,112,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"ba62cb58e011628168efdf9955c0074f\";s:13:\"email_address\";s:23:\"ivankulongo@hotmail.com\";s:15:\"unique_email_id\";s:10:\"91d5884fd1\";s:10:\"contact_id\";s:32:\"9597056a714c4188e08340594cb9fa4d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479415341;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-15T03:08:01+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-15T03:08:01+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/ba62cb58e011628168efdf9955c0074f\";s:15:\"connection_name\";s:0:\"\";}','2022-12-31 20:35:51','0000-00-00 00:00:00'),
(511,112,'activation_method','email','2022-12-31 20:35:52','0000-00-00 00:00:00'),
(512,112,'activation_key','fa67dd342e0dc079','2022-12-31 20:35:52','0000-00-00 00:00:00'),
(547,130,'text-1','admin','2023-01-06 01:32:32','0000-00-00 00:00:00'),
(548,130,'_forminator_user_ip','31.94.28.199','2023-01-06 01:32:32','0000-00-00 00:00:00'),
(549,131,'text-1','admin','2023-01-06 01:36:14','0000-00-00 00:00:00'),
(550,131,'_forminator_user_ip','31.94.28.199','2023-01-06 01:36:14','0000-00-00 00:00:00'),
(551,132,'text-1','admin','2023-01-06 01:38:46','0000-00-00 00:00:00'),
(552,132,'_forminator_user_ip','31.94.28.199','2023-01-06 01:38:46','0000-00-00 00:00:00'),
(553,133,'text-1','admin','2023-01-06 01:41:54','0000-00-00 00:00:00'),
(554,133,'_forminator_user_ip','31.94.28.199','2023-01-06 01:41:54','0000-00-00 00:00:00'),
(555,134,'text-1','admin','2023-01-06 01:54:09','0000-00-00 00:00:00'),
(556,134,'_forminator_user_ip','31.94.28.199','2023-01-06 01:54:09','0000-00-00 00:00:00'),
(557,135,'text-1','ivan.kulongo','2023-01-06 02:07:47','0000-00-00 00:00:00'),
(558,135,'_forminator_user_ip','31.94.28.199','2023-01-06 02:07:47','0000-00-00 00:00:00'),
(559,136,'text-1','admin','2023-01-06 13:14:48','0000-00-00 00:00:00'),
(560,136,'_forminator_user_ip','31.94.28.196','2023-01-06 13:14:48','0000-00-00 00:00:00'),
(561,137,'text-1','admin','2023-01-06 14:41:42','0000-00-00 00:00:00'),
(562,137,'_forminator_user_ip','31.94.28.196','2023-01-06 14:41:42','0000-00-00 00:00:00'),
(563,138,'text-1','ivankulongo@gmail.com','2023-01-07 00:06:53','0000-00-00 00:00:00'),
(564,138,'_forminator_user_ip','31.94.31.179','2023-01-07 00:06:53','0000-00-00 00:00:00'),
(565,139,'text-1','ivankulongo@gmail.com','2023-01-07 19:11:45','0000-00-00 00:00:00'),
(566,139,'_forminator_user_ip','31.94.0.15','2023-01-07 19:11:45','0000-00-00 00:00:00'),
(567,140,'text-1','ivankulongo@gmail.com','2023-01-07 21:55:12','0000-00-00 00:00:00'),
(568,140,'_forminator_user_ip','31.94.0.15','2023-01-07 21:55:12','0000-00-00 00:00:00'),
(569,141,'text-1','admin','2023-01-07 23:12:55','0000-00-00 00:00:00'),
(570,141,'_forminator_user_ip','31.94.0.15','2023-01-07 23:12:55','0000-00-00 00:00:00'),
(571,142,'text-1','admin','2023-01-08 20:16:25','0000-00-00 00:00:00'),
(572,142,'_forminator_user_ip','31.94.0.14','2023-01-08 20:16:25','0000-00-00 00:00:00'),
(573,143,'text-1','ivankulongo@gmail.com','2023-01-11 12:31:14','0000-00-00 00:00:00'),
(574,143,'_forminator_user_ip','31.94.7.83','2023-01-11 12:31:14','0000-00-00 00:00:00'),
(575,144,'text-1','ivankulongo@gmail.com','2023-01-11 20:58:34','0000-00-00 00:00:00'),
(576,144,'_forminator_user_ip','31.94.5.62','2023-01-11 20:58:34','0000-00-00 00:00:00'),
(577,145,'text-1','ivankulongo@gmail.com','2023-01-16 16:41:49','0000-00-00 00:00:00'),
(578,145,'_forminator_user_ip','80.44.165.166','2023-01-16 16:41:49','0000-00-00 00:00:00'),
(579,146,'text-1','admin','2023-01-17 09:57:33','0000-00-00 00:00:00'),
(580,146,'_forminator_user_ip','31.94.30.0','2023-01-17 09:57:33','0000-00-00 00:00:00'),
(581,147,'text-1','ivankulongo@gmail.com','2023-01-17 12:10:04','0000-00-00 00:00:00'),
(582,147,'_forminator_user_ip','31.94.30.0','2023-01-17 12:10:04','0000-00-00 00:00:00'),
(583,148,'text-1','ivankulongo@gmail.com','2023-01-17 12:15:13','0000-00-00 00:00:00'),
(584,148,'_forminator_user_ip','31.94.30.0','2023-01-17 12:15:13','0000-00-00 00:00:00'),
(585,149,'text-1','ivankulongo@gmail.com','2023-01-18 10:53:35','0000-00-00 00:00:00'),
(586,149,'_forminator_user_ip','213.205.208.26','2023-01-18 10:53:36','0000-00-00 00:00:00'),
(587,150,'text-1','ivankulongo@gmail.com','2023-01-18 15:41:07','0000-00-00 00:00:00'),
(588,150,'_forminator_user_ip','31.94.31.117','2023-01-18 15:41:07','0000-00-00 00:00:00'),
(589,151,'text-1','ivankulongo@gmail.com','2023-01-18 15:41:32','0000-00-00 00:00:00'),
(590,151,'_forminator_user_ip','31.94.31.117','2023-01-18 15:41:32','0000-00-00 00:00:00'),
(591,152,'text-1','admin','2023-01-18 17:08:32','0000-00-00 00:00:00'),
(592,152,'_forminator_user_ip','31.94.30.219','2023-01-18 17:08:32','0000-00-00 00:00:00'),
(593,153,'text-1','admin','2023-01-19 00:46:12','0000-00-00 00:00:00'),
(594,153,'_forminator_user_ip','31.94.30.217','2023-01-19 00:46:12','0000-00-00 00:00:00'),
(595,154,'text-1','ivankulongo@gmail.com','2023-01-19 10:09:36','0000-00-00 00:00:00'),
(596,154,'_forminator_user_ip','31.94.30.216','2023-01-19 10:09:36','0000-00-00 00:00:00'),
(597,155,'text-1','ivankulongo@gmail.com','2023-01-19 11:46:38','0000-00-00 00:00:00'),
(598,155,'_forminator_user_ip','31.94.31.118','2023-01-19 11:46:38','0000-00-00 00:00:00'),
(599,156,'text-1','ivankulongo@gmail.com','2023-01-20 00:59:12','0000-00-00 00:00:00'),
(600,156,'_forminator_user_ip','31.94.29.17','2023-01-20 00:59:12','0000-00-00 00:00:00'),
(601,157,'text-1','ivankulongo@gmail.com','2023-01-20 11:05:32','0000-00-00 00:00:00'),
(602,157,'_forminator_user_ip','31.94.29.19','2023-01-20 11:05:32','0000-00-00 00:00:00'),
(603,158,'text-1','ivankulongo@gmail.com','2023-01-20 18:22:38','0000-00-00 00:00:00'),
(604,158,'_forminator_user_ip','213.205.208.18','2023-01-20 18:22:38','0000-00-00 00:00:00'),
(605,159,'text-1','ivankulongo@gmail.com','2023-01-24 09:36:59','0000-00-00 00:00:00'),
(606,159,'_forminator_user_ip','88.107.73.242','2023-01-24 09:36:59','0000-00-00 00:00:00'),
(615,161,'text-1','Admin','2023-01-25 15:42:34','0000-00-00 00:00:00'),
(616,161,'_forminator_user_ip','213.205.211.210','2023-01-25 15:42:34','0000-00-00 00:00:00'),
(617,162,'text-1','ivankulongo@gmail.com','2023-01-25 15:49:25','0000-00-00 00:00:00'),
(618,162,'_forminator_user_ip','213.205.211.208','2023-01-25 15:49:25','0000-00-00 00:00:00'),
(619,163,'text-1','ivankulongo@gmail.com','2023-01-26 18:10:18','0000-00-00 00:00:00'),
(620,163,'_forminator_user_ip','213.205.211.210','2023-01-26 18:10:18','0000-00-00 00:00:00'),
(621,164,'text-1','ivankulongo@gmail.com','2023-01-27 00:03:28','0000-00-00 00:00:00'),
(622,164,'_forminator_user_ip','213.205.211.209','2023-01-27 00:03:28','0000-00-00 00:00:00'),
(623,165,'text-1','jermaineagw','2023-01-31 11:04:50','0000-00-00 00:00:00'),
(624,165,'name-1','jermaineagw','2023-01-31 11:04:50','0000-00-00 00:00:00'),
(625,165,'name-2','jermaineagw','2023-01-31 11:04:50','0000-00-00 00:00:00'),
(626,165,'email-1','alexfremanbest@yandex.ru','2023-01-31 11:04:50','0000-00-00 00:00:00'),
(627,165,'_forminator_user_ip','212.102.39.154','2023-01-31 11:04:50','0000-00-00 00:00:00'),
(628,165,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:24:\"alexfremanbest@yandex.ru\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"8b08dffe3e7d1c58a5125667caef91d3\";s:13:\"email_address\";s:24:\"alexfremanbest@yandex.ru\";s:15:\"unique_email_id\";s:10:\"a4e5ec3490\";s:10:\"contact_id\";s:32:\"a5aa6b99ae21cd3d33ee7fce7260493d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479658505;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-30T08:55:12+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-30T08:55:12+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:15:\"connection_name\";s:0:\"\";}','2023-01-31 11:04:50','0000-00-00 00:00:00'),
(629,165,'activation_method','email','2023-01-31 11:04:51','0000-00-00 00:00:00'),
(630,165,'activation_key','67e275274dec7e87','2023-01-31 11:04:51','0000-00-00 00:00:00'),
(631,166,'text-1','jermaineagw','2023-02-05 04:30:11','0000-00-00 00:00:00'),
(632,166,'name-1','jermaineagw','2023-02-05 04:30:11','0000-00-00 00:00:00'),
(633,166,'name-2','jermaineagw','2023-02-05 04:30:11','0000-00-00 00:00:00'),
(634,166,'email-1','alexfremanbest@yandex.ru','2023-02-05 04:30:11','0000-00-00 00:00:00'),
(635,166,'_forminator_user_ip','216.131.108.27','2023-02-05 04:30:11','0000-00-00 00:00:00'),
(636,166,'forminator_addon_mailchimp_status-62a21cc936f093.84268957','a:6:{s:7:\"is_sent\";b:1;s:11:\"description\";s:54:\"Successfully added or updated member on Mailchimp list\";s:9:\"data_sent\";a:3:{s:13:\"status_if_new\";s:10:\"subscribed\";s:6:\"status\";s:10:\"subscribed\";s:13:\"email_address\";s:24:\"alexfremanbest@yandex.ru\";}s:13:\"data_received\";O:8:\"stdClass\":27:{s:2:\"id\";s:32:\"8b08dffe3e7d1c58a5125667caef91d3\";s:13:\"email_address\";s:24:\"alexfremanbest@yandex.ru\";s:15:\"unique_email_id\";s:10:\"a4e5ec3490\";s:10:\"contact_id\";s:32:\"a5aa6b99ae21cd3d33ee7fce7260493d\";s:9:\"full_name\";s:0:\"\";s:6:\"web_id\";i:479658505;s:10:\"email_type\";s:4:\"html\";s:6:\"status\";s:10:\"subscribed\";s:32:\"consents_to_one_to_one_messaging\";b:1;s:12:\"merge_fields\";O:8:\"stdClass\":5:{s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:7:\"ADDRESS\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";s:8:\"BIRTHDAY\";s:0:\"\";}s:5:\"stats\";O:8:\"stdClass\":3:{s:13:\"avg_open_rate\";i:0;s:14:\"avg_click_rate\";i:0;s:14:\"ecommerce_data\";O:8:\"stdClass\":3:{s:13:\"total_revenue\";i:0;s:16:\"number_of_orders\";i:0;s:13:\"currency_code\";s:3:\"USD\";}}s:9:\"ip_signup\";s:0:\"\";s:16:\"timestamp_signup\";s:0:\"\";s:6:\"ip_opt\";s:13:\"67.227.188.22\";s:13:\"timestamp_opt\";s:25:\"2022-12-30T08:55:12+00:00\";s:13:\"member_rating\";i:2;s:12:\"last_changed\";s:25:\"2022-12-30T08:55:12+00:00\";s:8:\"language\";s:0:\"\";s:3:\"vip\";b:0;s:12:\"email_client\";s:0:\"\";s:8:\"location\";O:8:\"stdClass\":7:{s:8:\"latitude\";i:0;s:9:\"longitude\";i:0;s:6:\"gmtoff\";i:0;s:6:\"dstoff\";i:0;s:12:\"country_code\";s:0:\"\";s:8:\"timezone\";s:0:\"\";s:6:\"region\";s:0:\"\";}s:21:\"marketing_permissions\";a:1:{i:0;O:8:\"stdClass\":3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:0;}}s:6:\"source\";s:13:\"API - Generic\";s:10:\"tags_count\";i:0;s:4:\"tags\";a:0:{}s:7:\"list_id\";s:10:\"49270b5bc0\";s:6:\"_links\";a:10:{i:0;O:8:\"stdClass\":4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";}i:1;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"parent\";s:4:\"href\";s:59:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:91:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/CollectionResponse.json\";s:6:\"schema\";s:77:\"https://us17.api.mailchimp.com/schema/3.0/Paths/Lists/Members/Collection.json\";}i:2;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"update\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:5:\"PATCH\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:78:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PATCH.json\";}i:3;O:8:\"stdClass\":5:{s:3:\"rel\";s:6:\"upsert\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:3:\"PUT\";s:12:\"targetSchema\";s:81:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Response.json\";s:6:\"schema\";s:76:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/PUT.json\";}i:4;O:8:\"stdClass\":3:{s:3:\"rel\";s:6:\"delete\";s:4:\"href\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:6:\"method\";s:6:\"DELETE\";}i:5;O:8:\"stdClass\":4:{s:3:\"rel\";s:8:\"activity\";s:4:\"href\";s:101:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/activity\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:90:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Activity/Response.json\";}i:6;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"goals\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/goals\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:87:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Goals/Response.json\";}i:7;O:8:\"stdClass\":4:{s:3:\"rel\";s:5:\"notes\";s:4:\"href\";s:98:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/notes\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:97:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Notes/CollectionResponse.json\";}i:8;O:8:\"stdClass\":4:{s:3:\"rel\";s:6:\"events\";s:4:\"href\";s:99:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/events\";s:6:\"method\";s:4:\"POST\";s:12:\"targetSchema\";s:84:\"https://us17.api.mailchimp.com/schema/3.0/Definitions/Lists/Members/Events/POST.json\";}i:9;O:8:\"stdClass\":3:{s:3:\"rel\";s:16:\"delete_permanent\";s:4:\"href\";s:117:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3/actions/delete-permanent\";s:6:\"method\";s:4:\"POST\";}}}s:11:\"url_request\";s:92:\"https://us17.api.mailchimp.com/3.0/lists/49270b5bc0/members/8b08dffe3e7d1c58a5125667caef91d3\";s:15:\"connection_name\";s:0:\"\";}','2023-02-05 04:30:11','0000-00-00 00:00:00'),
(637,166,'activation_method','email','2023-02-05 04:30:13','0000-00-00 00:00:00'),
(638,166,'activation_key','8ee773bafe1d1a1e','2023-02-05 04:30:13','0000-00-00 00:00:00'),
(639,167,'text-1','ivankulongo@gmail.com','2023-02-06 17:35:54','0000-00-00 00:00:00'),
(640,167,'_forminator_user_ip','31.94.3.62','2023-02-06 17:35:54','0000-00-00 00:00:00'),
(641,168,'text-1','admin','2023-02-07 22:29:26','0000-00-00 00:00:00'),
(642,168,'_forminator_user_ip','31.94.38.210','2023-02-07 22:29:26','0000-00-00 00:00:00'),
(643,169,'text-1','admin','2023-02-08 15:19:57','0000-00-00 00:00:00'),
(644,169,'_forminator_user_ip','31.94.38.208','2023-02-08 15:19:57','0000-00-00 00:00:00'),
(645,170,'text-1','ivankulongo@gmail.com','2023-02-09 21:05:27','0000-00-00 00:00:00'),
(646,170,'_forminator_user_ip','31.94.38.208','2023-02-09 21:05:27','0000-00-00 00:00:00'),
(647,171,'text-1','ivankulongo@gmail.com','2023-02-12 17:44:02','0000-00-00 00:00:00'),
(648,171,'_forminator_user_ip','92.31.251.219','2023-02-12 17:44:02','0000-00-00 00:00:00'),
(649,172,'text-1','ivankulongo@gmail.com','2023-02-12 22:25:57','0000-00-00 00:00:00'),
(650,172,'_forminator_user_ip','92.31.251.219','2023-02-12 22:25:57','0000-00-00 00:00:00'),
(651,173,'text-1','ivankulongo@gmail.com','2023-02-13 22:06:06','0000-00-00 00:00:00'),
(652,173,'_forminator_user_ip','92.31.251.219','2023-02-13 22:06:06','0000-00-00 00:00:00'),
(653,174,'text-1','admin','2023-02-13 22:27:07','0000-00-00 00:00:00'),
(654,174,'_forminator_user_ip','31.94.30.252','2023-02-13 22:27:07','0000-00-00 00:00:00'),
(655,175,'text-1','ivankulongo@gmail.com','2023-02-14 13:06:53','0000-00-00 00:00:00'),
(656,175,'_forminator_user_ip','92.31.251.219','2023-02-14 13:06:53','0000-00-00 00:00:00'),
(657,176,'text-1','ivankulongo@gmail.com','2023-02-14 19:32:14','0000-00-00 00:00:00'),
(658,176,'_forminator_user_ip','92.31.251.219','2023-02-14 19:32:14','0000-00-00 00:00:00'),
(659,177,'text-1','ivankulongo@gmail.com','2023-02-14 23:57:01','0000-00-00 00:00:00'),
(660,177,'_forminator_user_ip','92.31.251.219','2023-02-14 23:57:01','0000-00-00 00:00:00'),
(661,178,'text-1','ivankulongo@gmail.com','2023-02-15 20:21:16','0000-00-00 00:00:00'),
(662,178,'_forminator_user_ip','31.94.5.250','2023-02-15 20:21:16','0000-00-00 00:00:00'),
(663,179,'text-1','ivankulongo@gmail.com','2023-02-16 12:06:25','0000-00-00 00:00:00'),
(664,179,'_forminator_user_ip','31.94.3.63','2023-02-16 12:06:25','0000-00-00 00:00:00'),
(665,180,'text-1','ivankulongo@gmail.com','2023-02-17 15:31:53','0000-00-00 00:00:00'),
(666,180,'_forminator_user_ip','31.94.7.94','2023-02-17 15:31:53','0000-00-00 00:00:00'),
(667,181,'text-1','amnakulongo@gmail.com','2023-02-17 16:26:49','0000-00-00 00:00:00'),
(668,181,'_forminator_user_ip','31.94.7.94','2023-02-17 16:26:49','0000-00-00 00:00:00'),
(669,182,'text-1','ivankulongo@gmail.com','2023-02-17 16:29:10','0000-00-00 00:00:00'),
(670,182,'_forminator_user_ip','31.94.7.94','2023-02-17 16:29:10','0000-00-00 00:00:00'),
(671,183,'text-1','amnakulongo@gmail.com','2023-02-17 16:37:12','0000-00-00 00:00:00'),
(672,183,'_forminator_user_ip','31.94.7.94','2023-02-17 16:37:12','0000-00-00 00:00:00'),
(673,184,'text-1','admin','2023-02-18 19:30:22','0000-00-00 00:00:00'),
(674,184,'_forminator_user_ip','31.94.35.81','2023-02-18 19:30:22','0000-00-00 00:00:00'),
(675,185,'text-1','admin','2023-03-01 11:10:02','0000-00-00 00:00:00'),
(676,185,'_forminator_user_ip','31.94.27.145','2023-03-01 11:10:02','0000-00-00 00:00:00'),
(677,186,'text-1','ivankulongo@gmail.com','2023-03-01 21:19:29','0000-00-00 00:00:00'),
(678,186,'_forminator_user_ip','31.94.34.15','2023-03-01 21:19:29','0000-00-00 00:00:00'),
(679,187,'text-1','ivankulongo@gmail.com','2023-03-02 18:20:18','0000-00-00 00:00:00'),
(680,187,'_forminator_user_ip','31.94.39.196','2023-03-02 18:20:18','0000-00-00 00:00:00'),
(681,188,'text-1','ivankulongo@gmail.com','2023-03-06 11:44:49','0000-00-00 00:00:00'),
(682,188,'_forminator_user_ip','31.94.22.151','2023-03-06 11:44:49','0000-00-00 00:00:00'),
(683,189,'text-1','ivankulongo@gmail.com','2023-03-07 11:31:39','0000-00-00 00:00:00'),
(684,189,'_forminator_user_ip','31.94.0.2','2023-03-07 11:31:39','0000-00-00 00:00:00'),
(685,190,'text-1','Ivankulongo@gmail.com','2023-03-07 12:36:12','0000-00-00 00:00:00'),
(686,190,'_forminator_user_ip','31.94.33.200','2023-03-07 12:36:12','0000-00-00 00:00:00'),
(687,191,'text-1','ivankulongo@gmail.com','2023-03-09 15:08:41','0000-00-00 00:00:00'),
(688,191,'_forminator_user_ip','31.94.16.250','2023-03-09 15:08:41','0000-00-00 00:00:00'),
(689,192,'text-1','Ivankulongo@gmail.com','2023-03-15 18:25:32','0000-00-00 00:00:00'),
(690,192,'_forminator_user_ip','31.94.38.98','2023-03-15 18:25:32','0000-00-00 00:00:00'),
(691,193,'text-1','ivankulongo@gmail.com','2023-04-17 20:00:02','0000-00-00 00:00:00'),
(692,193,'_forminator_user_ip','31.94.28.37','2023-04-17 20:00:02','0000-00-00 00:00:00'),
(693,194,'text-1','ivankulongo@gmail.com','2023-04-19 22:22:59','0000-00-00 00:00:00'),
(694,194,'_forminator_user_ip','31.94.26.113','2023-04-19 22:22:59','0000-00-00 00:00:00'),
(695,195,'text-1','ivankulongo@gmail.com','2023-04-19 22:24:08','0000-00-00 00:00:00'),
(696,195,'_forminator_user_ip','31.94.26.113','2023-04-19 22:24:08','0000-00-00 00:00:00'),
(697,196,'text-1','ivankulongo@gmail.com','2023-04-19 22:25:43','0000-00-00 00:00:00'),
(698,196,'_forminator_user_ip','31.94.26.113','2023-04-19 22:25:43','0000-00-00 00:00:00'),
(699,197,'text-1','ivankulongo@gmail.com','2023-04-19 22:30:43','0000-00-00 00:00:00'),
(700,197,'_forminator_user_ip','31.94.26.113','2023-04-19 22:30:43','0000-00-00 00:00:00'),
(701,198,'text-1','ivankulongo@gmail.com','2023-04-19 22:38:17','0000-00-00 00:00:00'),
(702,198,'_forminator_user_ip','31.94.26.113','2023-04-19 22:38:17','0000-00-00 00:00:00'),
(703,199,'text-1','ivankulongo@gmail.com','2023-04-21 15:46:26','0000-00-00 00:00:00'),
(704,199,'_forminator_user_ip','31.94.31.116','2023-04-21 15:46:26','0000-00-00 00:00:00'),
(705,200,'text-1','admin','2023-05-04 17:07:42','0000-00-00 00:00:00'),
(706,200,'_forminator_user_ip','31.94.64.236','2023-05-04 17:07:42','0000-00-00 00:00:00'),
(707,201,'text-1','admin','2024-02-14 12:39:20','0000-00-00 00:00:00'),
(708,201,'_forminator_user_ip','31.94.12.237','2024-02-14 12:39:20','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `wphu_frmt_form_entry_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_frmt_form_reports`
--

DROP TABLE IF EXISTS `wphu_frmt_form_reports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_frmt_form_reports` (
  `report_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `report_value` longtext NOT NULL,
  `status` varchar(200) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`report_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 `wphu_frmt_form_reports`
--

LOCK TABLES `wphu_frmt_form_reports` WRITE;
/*!40000 ALTER TABLE `wphu_frmt_form_reports` DISABLE KEYS */;
INSERT INTO `wphu_frmt_form_reports` VALUES
(1,'a:5:{s:7:\"exclude\";a:1:{i:0;i:1;}s:8:\"settings\";a:3:{s:5:\"label\";s:12:\"Form reports\";s:6:\"module\";s:5:\"forms\";s:10:\"forms_type\";s:3:\"all\";}s:8:\"schedule\";a:3:{s:9:\"frequency\";s:7:\"monthly\";s:8:\"monthDay\";s:1:\"4\";s:9:\"monthTime\";s:8:\"04:00 AM\";}s:13:\"report_status\";s:8:\"inactive\";s:10:\"recipients\";a:1:{i:0;a:5:{s:2:\"id\";i:0;s:4:\"name\";b:0;s:5:\"email\";b:0;s:4:\"role\";N;s:6:\"avatar\";s:49:\"https://secure.gravatar.com/avatar/?s=96&d=mm&r=g\";}}}','inactive','2022-12-09 00:09:18','2022-12-09 00:09:18');
/*!40000 ALTER TABLE `wphu_frmt_form_reports` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_frmt_form_views`
--

DROP TABLE IF EXISTS `wphu_frmt_form_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_frmt_form_views` (
  `view_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned NOT NULL,
  `page_id` bigint(20) unsigned NOT NULL,
  `ip` varchar(191) DEFAULT NULL,
  `count` mediumint(8) unsigned NOT NULL DEFAULT 1,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`view_id`),
  KEY `view_form_id` (`form_id`),
  KEY `view_ip` (`ip`),
  KEY `view_form_object` (`form_id`,`view_id`),
  KEY `view_form_object_ip` (`form_id`,`view_id`,`ip`)
) ENGINE=InnoDB AUTO_INCREMENT=434 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_frmt_form_views`
--

LOCK TABLES `wphu_frmt_form_views` WRITE;
/*!40000 ALTER TABLE `wphu_frmt_form_views` DISABLE KEYS */;
INSERT INTO `wphu_frmt_form_views` VALUES
(81,19539,8331,NULL,3,'2022-12-09 01:01:40','2022-12-09 21:50:01'),
(82,19539,8331,NULL,1,'2022-12-11 06:56:19','0000-00-00 00:00:00'),
(83,19539,8331,NULL,4,'2022-12-12 19:50:13','2022-12-12 17:55:17'),
(84,19539,19823,NULL,24,'2022-12-14 20:28:25','2022-12-14 21:36:28'),
(87,19539,0,NULL,3,'2022-12-15 00:15:11','2022-12-15 17:26:35'),
(88,19539,0,NULL,1,'2022-12-15 00:15:11','0000-00-00 00:00:00'),
(89,19539,8331,NULL,1,'2022-12-15 05:57:11','0000-00-00 00:00:00'),
(91,19539,19823,NULL,57,'2022-12-15 16:36:03','2022-12-15 20:42:51'),
(92,19539,19823,NULL,2,'2022-12-16 08:10:06','2022-12-16 05:53:50'),
(95,19539,19823,NULL,1,'2022-12-17 21:02:33','0000-00-00 00:00:00'),
(96,19539,19823,NULL,1,'2022-12-18 06:25:29','0000-00-00 00:00:00'),
(97,19539,19823,NULL,1,'2022-12-19 05:26:36','0000-00-00 00:00:00'),
(100,19539,19823,NULL,1,'2022-12-20 06:23:03','0000-00-00 00:00:00'),
(102,19539,19823,NULL,1,'2022-12-21 05:22:39','0000-00-00 00:00:00'),
(103,19539,8331,NULL,1,'2022-12-21 05:22:46','0000-00-00 00:00:00'),
(106,19539,19823,NULL,5,'2022-12-26 11:34:24','2022-12-26 19:55:28'),
(108,19539,8331,NULL,1,'2022-12-26 19:17:31','0000-00-00 00:00:00'),
(109,19539,19823,NULL,1,'2022-12-27 10:21:28','0000-00-00 00:00:00'),
(112,19539,19823,NULL,1,'2022-12-29 16:36:29','0000-00-00 00:00:00'),
(113,19539,8331,NULL,1,'2022-12-29 18:33:08','0000-00-00 00:00:00'),
(118,19539,19823,NULL,84,'2022-12-30 08:54:57','2022-12-30 19:31:59'),
(120,19539,19823,NULL,7,'2022-12-31 20:02:53','2022-12-31 16:04:50'),
(122,19539,19823,NULL,3,'2023-01-01 12:38:07','2023-01-01 07:45:28'),
(128,20613,29,NULL,9,'2023-01-06 01:32:15','2023-01-06 22:12:46'),
(129,20613,29,NULL,1,'2023-01-06 01:35:57','0000-00-00 00:00:00'),
(130,20613,29,NULL,1,'2023-01-06 01:38:32','0000-00-00 00:00:00'),
(131,20613,29,NULL,1,'2023-01-06 01:39:03','0000-00-00 00:00:00'),
(132,20613,29,NULL,1,'2023-01-06 01:41:38','0000-00-00 00:00:00'),
(133,20613,29,NULL,1,'2023-01-06 01:42:30','0000-00-00 00:00:00'),
(134,20613,29,NULL,1,'2023-01-06 01:53:35','0000-00-00 00:00:00'),
(135,20613,29,NULL,1,'2023-01-06 01:55:59','0000-00-00 00:00:00'),
(136,20613,29,NULL,1,'2023-01-06 02:02:09','0000-00-00 00:00:00'),
(137,20613,29,NULL,1,'2023-01-06 02:06:15','0000-00-00 00:00:00'),
(138,20613,29,NULL,1,'2023-01-06 02:06:57','0000-00-00 00:00:00'),
(139,20613,29,NULL,1,'2023-01-06 02:07:28','0000-00-00 00:00:00'),
(140,20613,29,NULL,1,'2023-01-06 04:37:13','0000-00-00 00:00:00'),
(141,20613,29,NULL,10,'2023-01-07 17:13:39','2023-01-07 20:38:37'),
(142,19539,19823,NULL,2,'2023-01-07 20:38:22','2023-01-07 19:59:55'),
(143,20613,29,NULL,4,'2023-01-08 10:21:10','2023-01-08 19:17:38'),
(144,19539,19823,NULL,2,'2023-01-08 15:26:23','2023-01-08 12:48:36'),
(145,20613,29,NULL,1,'2023-01-10 14:20:43','0000-00-00 00:00:00'),
(146,20613,29,NULL,4,'2023-01-11 12:31:07','2023-01-11 15:58:26'),
(147,19539,19823,NULL,4,'2023-01-11 15:14:47','2023-01-11 13:55:23'),
(148,19539,19823,NULL,1,'2023-01-12 23:13:03','0000-00-00 00:00:00'),
(149,19539,19823,NULL,1,'2023-01-13 05:56:35','0000-00-00 00:00:00'),
(150,20613,29,NULL,2,'2023-01-13 05:56:35','2023-01-13 00:56:42'),
(151,20613,29,NULL,2,'2023-01-14 12:44:32','2023-01-14 23:55:52'),
(152,20613,29,NULL,2,'2023-01-15 18:55:06','2023-01-15 15:02:31'),
(153,19539,19823,NULL,1,'2023-01-15 20:20:16','0000-00-00 00:00:00'),
(154,20613,29,NULL,4,'2023-01-16 12:29:07','2023-01-16 22:19:25'),
(155,20613,29,NULL,4,'2023-01-17 09:57:23','2023-01-17 17:56:27'),
(156,19539,8331,NULL,1,'2023-01-18 07:02:32','0000-00-00 00:00:00'),
(157,19539,19823,NULL,3,'2023-01-18 09:21:26','2023-01-18 19:57:03'),
(158,20613,29,NULL,14,'2023-01-18 10:53:28','2023-01-18 19:56:19'),
(159,20613,29,NULL,12,'2023-01-19 10:09:30','2023-01-19 22:14:51'),
(160,19539,19823,NULL,3,'2023-01-19 12:15:48','2023-01-19 22:15:29'),
(161,20613,29,NULL,4,'2023-01-20 11:05:19','2023-01-20 21:33:01'),
(162,19539,8331,NULL,1,'2023-01-20 12:04:53','0000-00-00 00:00:00'),
(163,20613,29,NULL,1,'2023-01-21 07:15:39','0000-00-00 00:00:00'),
(164,20613,29,NULL,1,'2023-01-22 15:08:11','0000-00-00 00:00:00'),
(165,20613,29,NULL,2,'2023-01-24 08:43:36','2023-01-24 04:36:13'),
(166,19539,19823,NULL,6,'2023-01-25 08:32:46','2023-01-25 04:38:37'),
(167,20613,29,NULL,4,'2023-01-25 15:37:43','2023-01-25 11:01:10'),
(168,20613,29,NULL,3,'2023-01-26 18:09:48','2023-01-26 19:03:11'),
(169,20613,29,NULL,1,'2023-01-27 13:52:25','0000-00-00 00:00:00'),
(170,19539,19823,NULL,1,'2023-01-27 13:52:41','0000-00-00 00:00:00'),
(171,19539,19823,NULL,1,'2023-01-29 07:28:04','0000-00-00 00:00:00'),
(172,20613,29,NULL,4,'2023-01-30 06:10:48','2023-01-30 13:52:43'),
(173,19539,8331,NULL,2,'2023-01-30 23:09:12','2023-01-30 18:46:32'),
(174,19539,19823,NULL,9,'2023-01-31 11:03:46','2023-01-31 21:14:06'),
(175,20613,29,NULL,1,'2023-02-03 08:49:38','0000-00-00 00:00:00'),
(176,19539,19823,NULL,1,'2023-02-03 08:49:54','0000-00-00 00:00:00'),
(177,19539,19823,NULL,7,'2023-02-04 05:45:59','2023-02-04 23:30:21'),
(178,20613,29,NULL,1,'2023-02-04 05:46:03','0000-00-00 00:00:00'),
(179,20613,29,NULL,2,'2023-02-05 22:06:44','2023-02-05 18:39:36'),
(180,19539,19823,NULL,1,'2023-02-05 23:40:01','0000-00-00 00:00:00'),
(181,20613,29,NULL,4,'2023-02-06 17:35:43','2023-02-06 21:30:25'),
(182,19539,19823,NULL,1,'2023-02-07 02:10:50','0000-00-00 00:00:00'),
(183,20613,29,NULL,1,'2023-02-07 22:29:19','0000-00-00 00:00:00'),
(184,20613,29,NULL,4,'2023-02-08 11:30:56','2023-02-08 22:51:59'),
(185,19539,19823,NULL,1,'2023-02-08 11:31:36','0000-00-00 00:00:00'),
(186,20613,29,NULL,1,'2023-02-09 21:05:02','0000-00-00 00:00:00'),
(187,20613,29,NULL,1,'2023-02-10 15:22:09','0000-00-00 00:00:00'),
(188,19539,19823,NULL,1,'2023-02-11 07:31:59','0000-00-00 00:00:00'),
(189,20613,29,NULL,2,'2023-02-12 17:42:53','2023-02-12 17:25:22'),
(190,20613,29,NULL,4,'2023-02-13 10:34:12','2023-02-13 18:10:41'),
(191,19539,19823,NULL,1,'2023-02-13 23:10:35','0000-00-00 00:00:00'),
(192,20613,29,NULL,3,'2023-02-14 13:06:29','2023-02-14 18:56:24'),
(193,19539,19823,NULL,1,'2023-02-15 04:22:51','0000-00-00 00:00:00'),
(194,20613,29,NULL,7,'2023-02-15 20:12:52','2023-02-15 20:27:41'),
(195,20613,29,NULL,3,'2023-02-16 11:18:22','2023-02-16 23:29:51'),
(196,19539,19823,NULL,2,'2023-02-16 23:49:24','2023-02-16 23:29:46'),
(197,20613,29,NULL,7,'2023-02-17 15:30:46','2023-02-17 11:36:53'),
(198,20613,29,NULL,3,'2023-02-18 05:29:04','2023-02-18 14:30:16'),
(199,19539,19823,NULL,1,'2023-02-18 05:29:17','0000-00-00 00:00:00'),
(200,20613,29,NULL,1,'2023-02-19 20:31:41','0000-00-00 00:00:00'),
(201,20613,29,NULL,1,'2023-02-20 07:11:43','0000-00-00 00:00:00'),
(202,19539,8331,NULL,1,'2023-02-21 13:05:23','0000-00-00 00:00:00'),
(203,19539,19823,NULL,1,'2023-02-22 07:53:35','0000-00-00 00:00:00'),
(204,19539,19823,NULL,1,'2023-02-23 10:47:30','0000-00-00 00:00:00'),
(205,20613,29,NULL,1,'2023-02-26 20:50:14','0000-00-00 00:00:00'),
(206,20613,29,NULL,4,'2023-03-01 11:09:43','2023-03-01 19:06:22'),
(207,19539,19823,NULL,2,'2023-03-01 16:13:56','2023-03-01 16:15:39'),
(208,20613,29,NULL,3,'2023-03-02 18:20:10','2023-03-02 21:41:04'),
(209,19539,8331,NULL,1,'2023-03-03 09:00:49','0000-00-00 00:00:00'),
(210,19539,19823,NULL,1,'2023-03-03 18:47:12','0000-00-00 00:00:00'),
(211,20613,29,NULL,2,'2023-03-04 09:53:40','2023-03-04 14:22:43'),
(212,19539,19823,NULL,1,'2023-03-04 09:53:51','0000-00-00 00:00:00'),
(213,20613,29,NULL,1,'2023-03-05 08:24:23','0000-00-00 00:00:00'),
(214,19539,19823,NULL,1,'2023-03-05 08:24:42','0000-00-00 00:00:00'),
(215,20613,29,NULL,2,'2023-03-06 11:44:40','2023-03-06 07:28:13'),
(216,19539,8331,NULL,1,'2023-03-06 12:27:52','0000-00-00 00:00:00'),
(217,20613,29,NULL,2,'2023-03-07 11:31:32','2023-03-07 07:35:41'),
(218,19539,19823,NULL,1,'2023-03-07 21:18:42','0000-00-00 00:00:00'),
(219,20613,29,NULL,6,'2023-03-09 15:08:17','2023-03-09 21:26:17'),
(220,19539,19823,NULL,3,'2023-03-09 19:31:16','2023-03-09 14:55:04'),
(221,19539,19823,NULL,3,'2023-03-10 19:10:13','2023-03-10 14:39:55'),
(222,20613,29,NULL,3,'2023-03-10 19:10:24','2023-03-10 14:40:01'),
(223,20613,29,NULL,3,'2023-03-11 20:17:19','2023-03-11 16:08:14'),
(224,19539,19823,NULL,1,'2023-03-11 20:18:09','0000-00-00 00:00:00'),
(225,19539,19823,NULL,1,'2023-03-13 06:58:20','0000-00-00 00:00:00'),
(226,19539,8331,NULL,1,'2023-03-15 03:37:11','0000-00-00 00:00:00'),
(227,20613,29,NULL,8,'2023-03-15 18:25:17','2023-03-15 15:37:19'),
(228,19539,19823,NULL,9,'2023-03-15 19:10:58','2023-03-15 15:41:35'),
(229,19539,19823,NULL,1,'2023-03-19 04:46:09','0000-00-00 00:00:00'),
(230,19539,8331,NULL,1,'2023-03-19 18:38:37','0000-00-00 00:00:00'),
(231,19539,19823,NULL,2,'2023-03-20 07:53:41','2023-03-20 18:23:45'),
(232,20613,29,NULL,1,'2023-03-20 12:27:15','0000-00-00 00:00:00'),
(233,20613,29,NULL,1,'2023-03-23 23:33:15','0000-00-00 00:00:00'),
(234,20613,29,NULL,1,'2023-03-25 01:37:40','0000-00-00 00:00:00'),
(235,19539,19823,NULL,1,'2023-03-25 02:52:42','0000-00-00 00:00:00'),
(236,20613,29,NULL,3,'2023-03-28 20:00:33','2023-03-28 18:28:59'),
(237,19539,19823,NULL,3,'2023-03-28 20:00:37','2023-03-28 18:29:04'),
(238,20613,29,NULL,3,'2023-03-29 07:44:55','2023-03-29 06:15:24'),
(239,19539,19823,NULL,3,'2023-03-29 07:44:58','2023-03-29 06:15:28'),
(240,20613,29,NULL,2,'2023-03-30 22:27:57','2023-03-30 18:41:35'),
(241,19539,8331,NULL,1,'2023-03-31 07:28:37','0000-00-00 00:00:00'),
(242,20613,29,NULL,1,'2023-03-31 16:27:01','0000-00-00 00:00:00'),
(243,20613,29,NULL,1,'2023-04-01 10:21:48','0000-00-00 00:00:00'),
(244,19539,19823,NULL,1,'2023-04-07 11:37:28','0000-00-00 00:00:00'),
(245,19539,19823,NULL,1,'2023-04-09 19:59:42','0000-00-00 00:00:00'),
(246,20613,29,NULL,1,'2023-04-12 13:35:36','0000-00-00 00:00:00'),
(247,20613,29,NULL,1,'2023-04-17 19:59:55','0000-00-00 00:00:00'),
(248,19539,19823,NULL,1,'2023-04-18 01:20:36','0000-00-00 00:00:00'),
(249,20613,29,NULL,1,'2023-04-18 06:41:24','0000-00-00 00:00:00'),
(250,20613,29,NULL,21,'2023-04-19 21:18:56','2023-04-19 17:59:49'),
(251,20613,0,NULL,38,'2023-04-19 21:31:51','2023-04-19 18:10:49'),
(252,19539,0,NULL,2,'2023-04-19 21:51:04','2023-04-19 17:51:04'),
(253,20612,29,NULL,18,'2023-04-19 22:13:28','2023-04-19 18:38:08'),
(254,20612,0,NULL,8,'2023-04-19 22:19:31','2023-04-19 18:20:48'),
(255,20612,29,NULL,3,'2023-04-21 01:36:31','2023-04-21 11:46:34'),
(256,19539,19823,NULL,1,'2023-04-23 17:46:05','0000-00-00 00:00:00'),
(257,19539,8331,NULL,1,'2023-04-26 14:03:11','0000-00-00 00:00:00'),
(258,20612,29,NULL,1,'2023-04-26 19:58:18','0000-00-00 00:00:00'),
(259,19539,19823,NULL,1,'2023-04-28 18:29:11','0000-00-00 00:00:00'),
(260,20612,29,NULL,1,'2023-04-30 12:53:24','0000-00-00 00:00:00'),
(261,20612,29,NULL,2,'2023-05-04 17:00:53','2023-05-04 13:07:11'),
(262,20612,29,NULL,1,'2023-05-05 14:30:51','0000-00-00 00:00:00'),
(263,19539,19823,NULL,1,'2023-05-07 18:09:03','0000-00-00 00:00:00'),
(264,20612,29,NULL,1,'2023-05-07 18:09:37','0000-00-00 00:00:00'),
(265,20612,29,NULL,1,'2023-05-09 03:55:00','0000-00-00 00:00:00'),
(266,20612,29,NULL,2,'2023-05-15 23:07:22','2023-05-15 19:38:27'),
(267,20612,29,NULL,2,'2023-05-18 15:10:02','2023-05-18 11:10:09'),
(268,20612,29,NULL,1,'2023-05-20 13:26:01','0000-00-00 00:00:00'),
(269,20612,29,NULL,1,'2023-05-30 23:14:18','0000-00-00 00:00:00'),
(270,20612,29,NULL,1,'2023-05-31 15:25:27','0000-00-00 00:00:00'),
(271,19539,19823,NULL,1,'2023-06-08 16:14:09','0000-00-00 00:00:00'),
(272,20612,29,NULL,1,'2023-06-08 16:15:51','0000-00-00 00:00:00'),
(273,20612,29,NULL,2,'2023-06-15 00:12:41','2023-06-15 19:24:17'),
(274,20612,29,NULL,1,'2023-06-15 00:20:52','0000-00-00 00:00:00'),
(275,19539,8331,NULL,1,'2023-06-18 23:22:28','0000-00-00 00:00:00'),
(276,19539,19823,NULL,1,'2023-06-21 05:55:45','0000-00-00 00:00:00'),
(277,20612,29,NULL,1,'2023-06-22 21:05:15','0000-00-00 00:00:00'),
(278,19539,8331,NULL,1,'2023-06-22 21:05:48','0000-00-00 00:00:00'),
(279,19539,19823,NULL,1,'2023-06-22 21:06:08','0000-00-00 00:00:00'),
(280,19539,19823,NULL,1,'2023-06-24 16:14:14','0000-00-00 00:00:00'),
(281,19539,8331,NULL,1,'2023-06-26 21:14:00','0000-00-00 00:00:00'),
(282,19539,8331,NULL,1,'2023-06-27 10:22:42','0000-00-00 00:00:00'),
(283,19539,19823,NULL,1,'2023-06-29 06:27:23','0000-00-00 00:00:00'),
(284,20612,29,NULL,1,'2023-07-03 19:17:41','0000-00-00 00:00:00'),
(285,20612,29,NULL,1,'2023-07-04 16:36:15','0000-00-00 00:00:00'),
(286,19539,19823,NULL,1,'2023-07-07 01:06:49','0000-00-00 00:00:00'),
(287,20612,29,NULL,2,'2023-07-14 13:17:30','2023-07-14 10:27:57'),
(288,20612,29,NULL,1,'2023-07-20 08:18:08','0000-00-00 00:00:00'),
(289,20612,29,NULL,1,'2023-08-05 03:36:18','0000-00-00 00:00:00'),
(290,20612,29,NULL,1,'2023-08-11 09:18:19','0000-00-00 00:00:00'),
(291,19539,19823,NULL,1,'2023-08-19 03:12:47','0000-00-00 00:00:00'),
(292,19539,8331,NULL,1,'2023-08-19 16:16:53','0000-00-00 00:00:00'),
(293,19539,8331,NULL,1,'2023-08-20 04:09:11','0000-00-00 00:00:00'),
(294,19539,19823,NULL,1,'2023-08-23 23:17:04','0000-00-00 00:00:00'),
(295,20612,29,NULL,1,'2023-08-25 18:11:32','0000-00-00 00:00:00'),
(296,20612,29,NULL,1,'2023-08-31 15:53:40','0000-00-00 00:00:00'),
(297,19539,19823,NULL,1,'2023-08-31 19:47:28','0000-00-00 00:00:00'),
(298,19539,8331,NULL,1,'2023-09-10 06:48:21','0000-00-00 00:00:00'),
(299,19539,19823,NULL,1,'2023-09-10 13:49:18','0000-00-00 00:00:00'),
(300,20612,29,NULL,1,'2023-09-11 22:04:41','0000-00-00 00:00:00'),
(301,19539,8331,NULL,1,'2023-09-14 18:48:57','0000-00-00 00:00:00'),
(302,20612,29,NULL,1,'2023-09-14 20:24:21','0000-00-00 00:00:00'),
(303,19539,8331,NULL,1,'2023-09-17 16:05:47','0000-00-00 00:00:00'),
(304,19539,8331,NULL,1,'2023-09-19 16:04:15','0000-00-00 00:00:00'),
(305,19539,19823,NULL,2,'2023-09-24 19:35:57','2023-09-24 22:12:10'),
(306,20612,29,NULL,1,'2023-09-24 19:37:42','0000-00-00 00:00:00'),
(307,19539,19823,NULL,1,'2023-09-25 21:35:46','0000-00-00 00:00:00'),
(308,20612,29,NULL,1,'2023-10-04 19:04:49','0000-00-00 00:00:00'),
(309,20612,29,NULL,1,'2023-10-08 01:56:07','0000-00-00 00:00:00'),
(310,19539,19823,NULL,1,'2023-10-08 22:45:48','0000-00-00 00:00:00'),
(311,19539,8331,NULL,1,'2023-10-13 07:59:37','0000-00-00 00:00:00'),
(312,19539,19823,NULL,1,'2023-10-15 05:05:31','0000-00-00 00:00:00'),
(313,20612,29,NULL,1,'2023-10-20 15:22:47','0000-00-00 00:00:00'),
(314,19539,19823,NULL,1,'2023-10-29 19:45:14','0000-00-00 00:00:00'),
(315,19539,19823,NULL,1,'2023-10-31 10:43:21','0000-00-00 00:00:00'),
(316,20612,29,NULL,1,'2023-11-02 08:42:44','0000-00-00 00:00:00'),
(317,19539,19823,NULL,1,'2023-11-03 18:20:31','0000-00-00 00:00:00'),
(318,20612,29,NULL,1,'2023-11-05 22:08:30','0000-00-00 00:00:00'),
(319,19539,8331,NULL,2,'2023-11-07 09:29:21','2023-11-07 02:32:30'),
(320,19539,8331,NULL,1,'2023-11-08 22:07:17','0000-00-00 00:00:00'),
(321,20612,29,NULL,1,'2023-11-09 20:34:50','0000-00-00 00:00:00'),
(322,20612,29,NULL,1,'2023-11-11 17:05:52','0000-00-00 00:00:00'),
(323,19539,8331,NULL,1,'2023-11-17 21:50:53','0000-00-00 00:00:00'),
(324,19539,19823,NULL,1,'2023-11-19 17:06:33','0000-00-00 00:00:00'),
(325,20612,29,NULL,1,'2023-11-30 02:20:46','0000-00-00 00:00:00'),
(326,19539,19823,NULL,1,'2023-11-30 03:57:50','0000-00-00 00:00:00'),
(327,20612,29,NULL,1,'2023-11-30 04:01:35','0000-00-00 00:00:00'),
(328,19539,8331,NULL,1,'2023-12-04 02:20:22','0000-00-00 00:00:00'),
(329,19539,19823,NULL,1,'2023-12-04 04:18:18','0000-00-00 00:00:00'),
(330,19539,19823,NULL,1,'2023-12-10 21:11:56','0000-00-00 00:00:00'),
(331,20612,29,NULL,1,'2023-12-15 04:12:09','0000-00-00 00:00:00'),
(332,19539,19823,NULL,1,'2023-12-19 04:48:15','0000-00-00 00:00:00'),
(333,19539,8331,NULL,1,'2023-12-19 10:22:19','0000-00-00 00:00:00'),
(334,20612,29,NULL,1,'2023-12-19 13:10:29','0000-00-00 00:00:00'),
(335,19539,8331,NULL,1,'2023-12-22 06:20:29','0000-00-00 00:00:00'),
(336,19539,19823,NULL,1,'2023-12-25 03:24:41','0000-00-00 00:00:00'),
(337,19539,19823,NULL,1,'2023-12-26 10:15:17','0000-00-00 00:00:00'),
(338,20612,29,NULL,1,'2023-12-28 13:36:23','0000-00-00 00:00:00'),
(339,20612,29,NULL,1,'2023-12-30 17:51:33','0000-00-00 00:00:00'),
(340,19539,19823,NULL,1,'2023-12-31 07:35:44','0000-00-00 00:00:00'),
(341,19539,8331,NULL,1,'2023-12-31 23:40:10','0000-00-00 00:00:00'),
(342,20612,29,NULL,1,'2024-01-05 07:23:02','0000-00-00 00:00:00'),
(343,19539,8331,NULL,1,'2024-01-05 10:46:13','0000-00-00 00:00:00'),
(344,19539,19823,NULL,1,'2024-01-09 11:08:18','0000-00-00 00:00:00'),
(345,19539,8331,NULL,1,'2024-01-13 22:18:40','0000-00-00 00:00:00'),
(346,20612,29,NULL,1,'2024-01-14 02:09:49','0000-00-00 00:00:00'),
(347,19539,8331,NULL,1,'2024-01-19 16:49:54','0000-00-00 00:00:00'),
(348,20612,29,NULL,1,'2024-01-24 19:00:28','0000-00-00 00:00:00'),
(349,19539,8331,NULL,1,'2024-01-25 10:58:26','0000-00-00 00:00:00'),
(350,19539,8331,NULL,1,'2024-02-02 12:52:06','0000-00-00 00:00:00'),
(351,20612,29,NULL,1,'2024-02-13 07:41:19','0000-00-00 00:00:00'),
(352,19539,8331,NULL,1,'2024-02-13 19:28:41','0000-00-00 00:00:00'),
(353,20612,29,NULL,3,'2024-02-14 12:38:41','2024-02-14 09:26:11'),
(354,20612,29,NULL,1,'2024-02-16 07:59:15','0000-00-00 00:00:00'),
(355,20612,29,NULL,1,'2024-02-19 17:35:20','0000-00-00 00:00:00'),
(356,20612,29,NULL,1,'2024-02-21 19:29:19','0000-00-00 00:00:00'),
(357,19539,19823,NULL,1,'2024-02-23 08:07:23','0000-00-00 00:00:00'),
(358,19539,19823,NULL,1,'2024-02-28 18:53:16','0000-00-00 00:00:00'),
(359,20612,29,NULL,2,'2024-02-29 07:25:15','2024-02-29 19:45:10'),
(360,20612,29,NULL,1,'2024-03-11 16:52:34','0000-00-00 00:00:00'),
(361,19539,8331,NULL,1,'2024-03-12 04:02:53','0000-00-00 00:00:00'),
(362,19539,19823,NULL,1,'2024-03-17 07:31:50','0000-00-00 00:00:00'),
(363,20612,29,NULL,1,'2024-03-20 11:03:00','0000-00-00 00:00:00'),
(364,19539,19823,NULL,7,'2024-03-22 09:28:10','2024-03-22 08:16:15'),
(365,19539,8331,NULL,1,'2024-03-23 12:38:58','0000-00-00 00:00:00'),
(366,19539,19823,NULL,1,'2024-03-23 15:53:34','0000-00-00 00:00:00'),
(367,19539,19823,NULL,1,'2024-03-26 22:59:35','0000-00-00 00:00:00'),
(368,19539,19823,NULL,1,'2024-03-27 07:00:31','0000-00-00 00:00:00'),
(369,19539,19823,NULL,1,'2024-03-29 22:49:54','0000-00-00 00:00:00'),
(370,19539,8331,NULL,1,'2024-04-03 12:52:27','0000-00-00 00:00:00'),
(371,20612,29,NULL,1,'2024-04-05 12:51:00','0000-00-00 00:00:00'),
(372,19539,8331,NULL,1,'2024-04-12 14:49:54','0000-00-00 00:00:00'),
(373,19539,19823,NULL,1,'2024-04-12 17:56:24','0000-00-00 00:00:00'),
(374,20612,29,NULL,1,'2024-04-12 20:33:01','0000-00-00 00:00:00'),
(375,20612,29,NULL,1,'2024-04-15 09:47:01','0000-00-00 00:00:00'),
(376,19539,19823,NULL,1,'2024-04-17 06:42:56','0000-00-00 00:00:00'),
(377,20612,29,NULL,1,'2024-04-18 05:42:34','0000-00-00 00:00:00'),
(378,19539,19823,NULL,1,'2024-04-18 15:53:33','0000-00-00 00:00:00'),
(379,19539,8331,NULL,1,'2024-04-23 23:45:12','0000-00-00 00:00:00'),
(380,20612,29,NULL,1,'2024-04-24 11:56:18','0000-00-00 00:00:00'),
(381,19539,8331,NULL,1,'2024-04-24 21:14:56','0000-00-00 00:00:00'),
(382,19539,19823,NULL,1,'2024-04-27 16:13:17','0000-00-00 00:00:00'),
(383,19539,19823,NULL,1,'2024-04-30 06:33:30','0000-00-00 00:00:00'),
(384,19539,19823,NULL,1,'2024-05-03 03:29:31','0000-00-00 00:00:00'),
(385,20612,29,NULL,1,'2024-05-07 19:46:09','0000-00-00 00:00:00'),
(386,20612,29,NULL,1,'2024-05-09 18:16:54','0000-00-00 00:00:00'),
(387,20612,29,NULL,1,'2024-05-13 23:14:52','0000-00-00 00:00:00'),
(388,19539,8331,NULL,1,'2024-05-14 12:45:41','0000-00-00 00:00:00'),
(389,20612,29,NULL,2,'2024-05-15 10:48:52','2024-05-15 05:49:04'),
(390,19539,19823,NULL,1,'2024-05-15 15:12:19','0000-00-00 00:00:00'),
(391,19539,19823,NULL,1,'2024-05-21 17:57:09','0000-00-00 00:00:00'),
(392,20612,29,NULL,1,'2024-05-21 21:28:54','0000-00-00 00:00:00'),
(393,19539,8331,NULL,1,'2024-05-22 07:41:04','0000-00-00 00:00:00'),
(394,20612,29,NULL,1,'2024-05-23 09:38:42','0000-00-00 00:00:00'),
(395,19539,19823,NULL,1,'2024-05-24 10:01:08','0000-00-00 00:00:00'),
(396,20612,29,NULL,1,'2024-05-29 00:12:45','0000-00-00 00:00:00'),
(397,20612,29,NULL,1,'2024-06-01 20:06:29','0000-00-00 00:00:00'),
(398,19539,8331,NULL,1,'2024-06-07 04:22:22','0000-00-00 00:00:00'),
(399,20612,29,NULL,1,'2024-06-11 02:07:47','0000-00-00 00:00:00'),
(400,19539,19823,NULL,1,'2024-06-13 15:01:14','0000-00-00 00:00:00'),
(401,19539,8331,NULL,1,'2024-06-16 15:02:17','0000-00-00 00:00:00'),
(402,20612,29,NULL,1,'2024-06-16 19:05:51','0000-00-00 00:00:00'),
(403,19539,8331,NULL,1,'2024-06-23 20:17:12','0000-00-00 00:00:00'),
(404,19539,19823,NULL,1,'2024-06-29 06:31:13','0000-00-00 00:00:00'),
(405,19539,19823,NULL,1,'2024-06-30 15:45:40','0000-00-00 00:00:00'),
(406,19539,8331,NULL,1,'2024-07-19 23:36:13','0000-00-00 00:00:00'),
(407,20612,29,NULL,1,'2024-07-20 03:03:28','0000-00-00 00:00:00'),
(408,19539,19823,NULL,1,'2024-07-30 17:16:33','0000-00-00 00:00:00'),
(409,20612,29,NULL,1,'2024-08-08 02:58:45','0000-00-00 00:00:00'),
(410,20612,29,NULL,2,'2024-08-21 01:00:54','2024-08-21 03:59:44'),
(411,19539,8331,NULL,1,'2024-08-21 05:50:58','0000-00-00 00:00:00'),
(412,20612,29,NULL,1,'2024-08-24 07:27:28','0000-00-00 00:00:00'),
(413,19539,8331,NULL,1,'2024-08-27 09:48:47','0000-00-00 00:00:00'),
(414,19539,19823,NULL,1,'2024-08-31 16:02:09','0000-00-00 00:00:00'),
(415,20612,29,NULL,34,'2024-09-06 10:13:30','2024-09-06 05:16:00'),
(416,19539,19823,NULL,1,'2024-09-12 11:05:47','0000-00-00 00:00:00'),
(417,20612,29,NULL,21,'2024-09-12 16:38:22','2024-09-12 11:39:51'),
(418,20612,29,NULL,1,'2024-09-15 16:57:44','0000-00-00 00:00:00'),
(419,20612,29,NULL,1,'2024-09-22 12:07:22','0000-00-00 00:00:00'),
(420,19539,8331,NULL,2,'2024-09-23 00:00:36','2024-09-23 03:21:25'),
(421,19539,19823,NULL,1,'2024-09-30 03:03:58','0000-00-00 00:00:00'),
(422,19539,19823,NULL,1,'2024-09-30 03:05:42','0000-00-00 00:00:00'),
(423,19539,19823,NULL,1,'2024-10-03 16:53:50','0000-00-00 00:00:00'),
(424,20612,29,NULL,33,'2024-10-04 05:58:20','2024-10-04 01:00:24'),
(425,19539,8331,NULL,1,'2024-10-11 05:56:23','0000-00-00 00:00:00'),
(426,20612,29,NULL,1,'2024-10-11 20:41:39','0000-00-00 00:00:00'),
(427,20612,29,NULL,1,'2024-10-12 11:08:13','0000-00-00 00:00:00'),
(428,19539,19823,NULL,1,'2024-10-14 06:19:18','0000-00-00 00:00:00'),
(429,20612,29,NULL,2,'2024-10-17 08:56:50','2024-10-17 23:50:14'),
(430,20612,29,NULL,1,'2024-10-23 10:33:30','0000-00-00 00:00:00'),
(431,19539,19823,NULL,1,'2024-10-24 09:08:37','0000-00-00 00:00:00'),
(432,20612,29,NULL,2,'2024-10-25 08:34:56','2024-10-25 07:47:06'),
(433,19539,8331,NULL,1,'2024-10-25 14:10:32','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `wphu_frmt_form_views` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_fsmpt_email_logs`
--

DROP TABLE IF EXISTS `wphu_fsmpt_email_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_fsmpt_email_logs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(10) unsigned DEFAULT NULL,
  `to` varchar(255) DEFAULT NULL,
  `from` varchar(255) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `body` longtext DEFAULT NULL,
  `headers` longtext DEFAULT NULL,
  `attachments` longtext DEFAULT NULL,
  `status` varchar(20) DEFAULT 'pending',
  `response` text DEFAULT NULL,
  `extra` text DEFAULT NULL,
  `retries` int(10) unsigned DEFAULT 0,
  `resent_count` int(10) unsigned DEFAULT 0,
  `source` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=189 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_fsmpt_email_logs`
--

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

--
-- Table structure for table `wphu_gglcptch_allowlist`
--

DROP TABLE IF EXISTS `wphu_gglcptch_allowlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_gglcptch_allowlist` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ip` char(31) NOT NULL,
  `ip_from_int` bigint(20) DEFAULT NULL,
  `ip_to_int` bigint(20) DEFAULT NULL,
  `add_time` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_gglcptch_allowlist`
--

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

--
-- Table structure for table `wphu_jetpack_sync_queue`
--

DROP TABLE IF EXISTS `wphu_jetpack_sync_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_jetpack_sync_queue` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `queue_id` varchar(50) NOT NULL,
  `event_id` varchar(100) NOT NULL,
  `event_payload` longtext NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`ID`),
  KEY `event_id` (`event_id`),
  KEY `queue_id` (`queue_id`),
  KEY `queue_id_event_id` (`queue_id`,`event_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB AUTO_INCREMENT=618 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_jetpack_sync_queue`
--

LOCK TABLES `wphu_jetpack_sync_queue` WRITE;
/*!40000 ALTER TABLE `wphu_jetpack_sync_queue` DISABLE KEYS */;
INSERT INTO `wphu_jetpack_sync_queue` VALUES
(2,'full_sync','jpsq_full_sync-1715120074.544159-861157-1','a:6:{i:0;s:23:\"jetpack_full_sync_start\";i:1;a:2:{i:0;a:5:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}s:15:\"network_options\";b:1;}i:1;a:0:{}}i:2;i:1;i:3;d:1715120074.543775;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:21:\"ivankulongo@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:84:\"https://choiceresources.co.uk/wp-admin/admin.php?wcpay-connect=1&_wpnonce=900e4234a3\";}}','0000-00-00 00:00:00'),
(46,'full_sync','jpsq_full_sync-1715121159.290859-804328-1','a:6:{i:0;s:23:\"jetpack_full_sync_start\";i:1;a:2:{i:0;a:5:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}s:15:\"network_options\";b:1;}i:1;a:0:{}}i:2;i:1;i:3;d:1715121159.290686;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:21:\"ivankulongo@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:1;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:71:\"https://choiceresources.co.uk/?rest_route=/jetpack/v4/remote_authorize/\";}}','2024-05-07 22:32:39'),
(47,'full_sync','jpsq_full_sync-1715121162.528983-804328-2','a:6:{i:0;s:21:\"jetpack_full_sync_end\";i:1;a:2:{i:0;s:0:\"\";i:1;a:0:{}}i:2;i:1;i:3;d:1715121162.52883;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:5:\"admin\";s:10:\"user_email\";s:21:\"ivankulongo@gmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:1;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:71:\"https://choiceresources.co.uk/?rest_route=/jetpack/v4/remote_authorize/\";}}','2024-05-07 22:32:42'),
(48,'full_sync','jpsq_full_sync-1715121164.909354-529635-1','a:6:{i:0;s:21:\"jetpack_full_sync_end\";i:1;a:2:{i:0;s:0:\"\";i:1;a:0:{}}i:2;i:0;i:3;d:1715121164.908821;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:1;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:107:\"https://choiceresources.co.uk/wp-admin/admin-ajax.php?action=as_async_request_queue_runner&nonce=8c5fde064a\";}}','2024-05-07 22:32:44');
/*!40000 ALTER TABLE `wphu_jetpack_sync_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_legal_pages`
--

DROP TABLE IF EXISTS `wphu_legal_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_legal_pages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` text NOT NULL,
  `content` longtext NOT NULL,
  `notes` text NOT NULL,
  `is_active` tinyint(1) DEFAULT NULL,
  `contentfor` varchar(200) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_legal_pages`
--

LOCK TABLES `wphu_legal_pages` WRITE;
/*!40000 ALTER TABLE `wphu_legal_pages` DISABLE KEYS */;
INSERT INTO `wphu_legal_pages` VALUES
(1,'Privacy Policy','<p>Welcome to [Domain] (the \"Site\"). We understand that privacy online is important to users of our Site, especially when conducting business. This statement governs our privacy policies with respect to those users of the Site (\"Visitors\") who visit without transacting business and Visitors who register to transact business on the Site and make use of the various services offered by [Business Name] (collectively, \"Services\") (\"Authorized Customers\").</p>\n<strong>\"Personally Identifiable Information\"</strong>\n<p>refers to any information that identifies or can be used to identify, contact, or locate the person to whom such information pertains, including, but not limited to, name, address, phone number, fax number, email address, financial profiles, social security number, and credit card information. Personally Identifiable Information does not include information that is collected anonymously (that is, without identification of the individual user) or demographic information not connected to an identified individual.</p>\n<strong>What Personally Identifiable Information is collected?</strong>\n<p>We may collect basic user profile information from all of our Visitors. We collect the following additional information from our Authorized Customers: the names, addresses, phone numbers and email addresses of Authorized Customers, the nature and size of the business, and the nature and size of the advertising inventory that the Authorized Customer intends to purchase or sell.</p>\n<strong>What organizations are collecting the information?</strong>\n<p>In addition to our direct collection of information, our third party service vendors (such as credit card companies, clearinghouses and banks) who may provide such services as credit, insurance, and escrow services may collect this information from our Visitors and Authorized Customers. We do not control how these third parties use such information, but we do ask them to disclose how they use personal information provided to them from Visitors and Authorized Customers. Some of these third parties may be intermediaries that act solely as links in the distribution chain, and do not store, retain, or use the information given to them.</p>\n<strong>How does the Site use Personally Identifiable Information?</strong>\n<p>We use Personally Identifiable Information to customize the Site, to make appropriate service offerings, and to fulfill buying and selling requests on the Site. We may email Visitors and Authorized Customers about research or purchase and selling opportunities on the Site or information related to the subject matter of the Site. We may also use Personally Identifiable Information to contact Visitors and Authorized Customers in response to specific inquiries, or to provide requested information.</p>\n<strong>With whom may the information may be shared?</strong>\n<p>Personally Identifiable Information about Authorized Customers may be shared with other Authorized Customers who wish to evaluate potential transactions with other Authorized Customers. We may share aggregated information about our Visitors, including the demographics of our Visitors and Authorized Customers, with our affiliated agencies and third party vendors. We also offer the opportunity to \"opt out\" of receiving information or being contacted by us or by any agency acting on our behalf.</p>\n<strong>How is Personally Identifiable Information stored?</strong>\n<p>Personally Identifiable Information collected by [Business Name] is securely stored and is not accessible to third parties or employees of [Business Name] except for use as indicated above.</p>\n<strong>What choices are available to Visitors regarding collection, use and distribution of the information?</strong>\n<p>Visitors and Authorized Customers may opt out of receiving unsolicited information from or being contacted by us and/or our vendors and affiliated agencies by responding to emails as instructed, or by contacting us at [Address]</p>\n<strong>Cookies</strong>\n<p>A cookie is a string of information that a website stores on a visitorâ€™s computer, and that the visitorâ€™s browser provides to the website each time the visitor returns.</p>\n<strong>Are Cookies Used on the Site?</strong>\n<p>Cookies are used for a variety of reasons. We use Cookies to obtain information about the preferences of our Visitors and the services they select. We also use Cookies for security purposes to protect our Authorized Customers. For example, if an Authorized Customer is logged on and the site is unused for more than 10 minutes, we will automatically log the Authorized Customer off. Visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using [Domain], with the drawback that certain features of website may not function properly without the aid of cookies.</p>\n<strong>Cookies used by our service providers</strong>\n<p>Our service providers use cookies and those cookies may be stored on your computer when you visit our website. You can find more details about which cookies are used in our cookies info page.</p>\n<strong>How does [Business Name] use login information?</strong>\n<p>[Business Name] uses login information, including, but not limited to, IP addresses, ISPs, and browser types, to analyze trends, administer the Site, track a user\'s movement and use, and gather broad demographic information.</p>\n<strong>What partners or service providers have access to Personally Identifiable Information from Visitors and/or Authorized Customers on the Site?</strong>\n<p>[Business Name] has entered into and will continue to enter into partnerships and other affiliations with a number of vendors. Such vendors may have access to certain Personally Identifiable Information on a need to know the basis for evaluating Authorized Customers for service eligibility. Our privacy policy does not cover their collection or use of this information. Disclosure of Personally Identifiable Information to comply with the law. We will disclose Personally Identifiable Information in order to comply with a court order or subpoena or a request from a law enforcement agency to release information. We will also disclose Personally Identifiable Information when reasonably necessary to protect the safety of our Visitors and Authorized Customers.</p>\n<strong>How does the Site keep Personally Identifiable Information secure?</strong>\n<p>All of our employees are familiar with our security policy and practices. The Personally Identifiable Information of our Visitors and Authorized Customers is only accessible to a limited number of qualified employees who are given a password in order to gain access to the information. We audit our security systems and processes on a regular basis. Sensitive information, such as credit card numbers or social security numbers, is protected by encryption protocols, in place to protect information sent over the Internet. While we take commercially reasonable measures to maintain a secure site, electronic communications and databases are subject to errors, tampering, and break-ins, and we cannot guarantee or warrant that such events will not take place and we will not be liable to Visitors or Authorized Customers for any such occurrences.</p>\n<strong>How can Visitors correct any inaccuracies in Personally Identifiable Information?</strong>\n<p>Visitors and Authorized Customers may contact us to update Personally Identifiable Information about them or to correct any inaccuracies by emailing us at [Email]</p>\n<strong>Can a Visitor delete or deactivate Personally Identifiable Information collected by the Site?</strong>\n<p>We provide Visitors and Authorized Customers with a mechanism to delete/deactivate Personally Identifiable Information from the Site\'s database by contacting. However, because of backups and records of deletions, it may be impossible to delete a Visitor\'s entry without retaining some residual information. An individual who requests to have Personally Identifiable Information deactivated will have this information functionally deleted, and we will not sell, transfer, or use Personally Identifiable Information relating to that individual in any way moving forward.</p>\n<strong>Your rights</strong>\n<p>These are summarized rights that you have under data protection law</p>\n<p><ul>\n<li>The right to access</li>\n<li>The right to rectification</li>\n<li>The right to erasure</li>\n<li>The right to restrict processing</li>\n<li>The right to object to processing</li>\n<li>The right to data portability</li>\n<li>The right to complain to a supervisory authority</li>\n<li>The right to withdraw consent</li>\n</ul></p>\n<strong>What happens if the Privacy Policy Changes?</strong>\n<p>We will let our Visitors and Authorized Customers know about changes to our privacy policy by posting such changes on the Site. However, if we are changing our privacy policy in a manner that might cause disclosure of Personally Identifiable Information that a Visitor or Authorized Customer has previously requested not be disclosed, we will contact such Visitor or Authorized Customer to allow such Visitor or Authorized Customer to prevent such disclosure.</p>\n<strong>Links:</strong>\n<p>[Domain] contains links to other websites. Please note that when you click on one of these links, you are moving to another website. We encourage you to read the privacy statements of these linked sites as their privacy policies may differ from ours.</p>','',1,'kCjTeYOZxB'),
(2,'DMCA','<h2>Digital Millennium Copyright Act Policy</h2>\r\n<p>Welcome to [Domain] (the \"Site\"). We respect the intellectual property rights of others just as we expect others to respect our rights. Pursuant to Digital Millennium Copyright Act, Title 17, United States Code, Section 512(c), a copyright owner or their agent may submit a takedown notice to us via our DMCA Agent listed below. As an internet service provider, we are entitled to claim immunity from said infringement claims pursuant to the \"safe harbor\" provisions of the DMCA. To submit a good faith infringement claim to us, you must submit the notice to us that sets forth the following information:</p>\r\n<p><strong>Notice of Infringement â€“ Claim</strong></p>\r\n<p><ol>\r\n<li>A physical or electronic signature of the copyright owner (or someone authorized to act on behalf of the owner);</li>\r\n<li>Identification of the copyrighted work claimed to have been infringed;</li>\r\n<li>Identification of the infringing material to be removed, and information reasonably sufficient to permit the service provider to locate the material. [Please submit the URL of the page in question to assist us in identifying the allegedly offending work];</li>\r\n<li>Information reasonably sufficient to permit the service provider to contact the complaining party including your name, physical address, email address, phone number and fax number;</li>\r\n<li>A statement that the complaining party has a good faith belief that the use of the material is unauthorized by the copyright agent; and</li>\r\n<li>A statement that the information in the notification is accurate, and, under penalty of perjury, that the complaining party is authorized to act on behalf of the copyright owner.</li>\r\n</ol></p>\r\n<p>Title 17 USC Â§512(f) provides civil damage penalties, including costs and attorney fees, against any person who knowingly and materially misrepresents certain information in a notification of infringement under 17 USC Â§512(c)(3).</p>\r\n<p>Send all takedown notices through our Contact page. Please send by email for prompt attention.</p>\r\n<p>Please note that we may share the identity and information in any copyright infringement claim we receive with the alleged infringer. In submitting a claim, you understand accept and agree that your identity and claim may be communicated to the alleged infringer.</p>\r\n<p><strong>Counter Notification â€“ Restoration of Material</strong></p>\r\n<p>If you have received a notice of material being takedown because of a copyright infringement claim, you may provide us with a counter notification in an effort to have the material in question restored to the site. Said notification must be given in writing to our DMCA Agent and must contain substantially the following elements pursuant to 17 USC Section 512(g)(3):</p>\r\n<p><ol>\r\n<li>Your physical or electronic signature.</li>\r\n<li>A description of the material that has been taken down and the original location of the material before it was taken down.</li>\r\n<li>A statement under penalty of perjury that you have a good faith belief that the material was removed or disabled as a result of mistake or misidentification of the material to be removed or disabled.</li>\r\n<li>Your name, address, and telephone number, and a statement that you consent to the jurisdiction of the federal district court for the judicial district in which the address is located (or if you are outside of the United States, that you consent to jurisdiction of any judicial district in which the service provider may be found), and that you will accept service of process from the person or company who provided the original infringement notification.</li>\r\n<li>Send your counter notice through our Contact page. Email is highly recommended.</li>\r\n</ol></p>\r\n<p><strong>Repeat Infringer Policy</strong></p>\r\n<p>We take copyright infringement very seriously. Pursuant to the repeat infringer policy requirements of the Digital Millennium Copyright Act, we maintain a list of DMCA notices from copyright holders and make a good faith effort to identify any repeat infringers. Those that violate our internal repeat infringer policy will have their accounts terminated.</p>\r\n<p><strong>Modifications</strong></p>\r\n<p>We reserve the right to modify the contents of this page and its policy for handling DMCA claims at any time for any reason. You are encouraged to check back to review this policy frequently for any changes. </p>\r\n','',1,'1r4X6y8tssz0j'),
(3,'Terms of Use','<p>These Terms govern your access to, usage of all content, Product and Services available at [Domain] website (the â€œServiceâ€) operated by [Business Name] (â€œusâ€, â€œweâ€, or â€œourâ€).</p>\n<p>Your access to our services are subject to your acceptance, without modification, of all of the terms and conditions contained herein and all other operating rules and policies published and that may be published from time to time by us.</p>\n<p>Please read the Agreement carefully before accessing or using our Services. By accessing or using any part of our Services, you agree to be bound by these Terms. If you do not agree to any part of the terms of the Agreement, then you may not access or use our Services.</p>\n<h2>Intellectual Property</h2>\n<p>The Agreement does not transfer from Us to you any of Ours or third party intellectual property, and all right, title, and interest in and to such property will remain (as between the parties) solely with [Business Name] and its licensors.</p>\n<h3>Third Party Services</h3>\n<p>In using the Services, you may use third-party services, products, software, embeds, or applications developed by a third party (â€œThird Party Servicesâ€).</p>\n<p>If you use any Third Party Services, you understand that:</p>\n<ul>\n    <li>Any use of a Third Party Service is at your own risk, and we shall not be responsible or liable to anyone for Third Party websites or Services.</li>\n    <li>You acknowledge and agree that We shall not be responsible or liable for any damage or loss caused or alleged to be caused by or in connection with the use of any such content, goods or services available on or through any such web sites or services.</li>\n</ul>\n<h2>Accounts</h2>\n<p>Where use of any part of our Services requires an account, you agree to provide us with complete and accurate information when you register for an account.</p>\n<p>You will be solely responsible and liable for any activity that occurs under your account. You are responsible for keeping your account information up-to-date and for keeping your password secure.</p>\n<p>You are responsible for maintaining the security of your account that you use to access the Service. You shall not share or misuse your access credentials. You must notify us immediately of any unauthorized uses of your account or upon becoming aware of any other breach of security.</p>\n<h2>Termination</h2>\n<p>We may terminate or suspend your access to all or any part of our Services at any time, with or without cause, with or without notice, effective immediately.</p>\n<p>If you wish to terminate the Agreement or your [Business Name] account, you may simply discontinue using our Services.</p>\n<p>All provisions of the Agreement which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity, and limitations of liability.</p>\n<h2>Disclaimer</h2>\n<p>Our Services are provided â€œAS IS.â€ and â€œAS AVAILABLEâ€ basis. [Business Name] and its suppliers and licensors hereby disclaim all warranties of any kind, express or implied, including, without limitation, the warranties of merchantability, fitness for a particular purpose and non-infringement. Neither [Business Name], nor its suppliers and licensors, makes any warranty that our Services will be error free or that access thereto will be continuous or uninterrupted. You understand that you download from, or otherwise obtain content or services through, our Services at your own discretion and risk.</p>\n<h3>Jurisdiction and Applicable Law</h3>\n<p>Except to the extent any applicable law provides otherwise, the Agreement and any access to or use of our Services will be governed by the laws of [Country].</p>\n<p>The proper venue for any disputes arising out of or relating to the Agreement and any access to or use of our Services will be the state and federal courts located in [Country].</p>\n<h2>Changes</h2>\n<p>[Business Name] reserves the right, at our sole discretion, to modify or replace these Terms at any time.</p>\n<p>If we make changes that are material, we will let you know by posting on our website, or by sending you an email or other communication before the changes take effect. The notice will designate a reasonable period of time after which the new terms will take effect.</p>\n<p>If you disagree with our changes, then you should stop using our Services within the designated notice period, or once the changes become effective.</p>\n<p>Your continued use of our Services will be subject to the new terms.</p>','',1,'n1bmPjZ6Xj'),
(4,'Terms of Use - FR','<h2>CONDITIONS Dâ€™UTILISATION</h2>\n<p>Les prÃ©sentes Conditions rÃ©gissent votre accÃ¨s et votre utilisation de tous les contenus, produits et services disponibles sur le site [Domain] (le â€œServiceâ€) exploitÃ© par [Business Name] (â€œnousâ€, â€œnotreâ€ ou â€œnosâ€).</p>\n<p>Votre accÃ¨s Ã  nos services est soumis Ã  votre acceptation, sans modification, de toutes les conditions gÃ©nÃ©rales contenues dans le prÃ©sent document et de toutes les autres rÃ¨gles et politiques dâ€™exploitation publiÃ©es et pouvant Ãªtre publiÃ©es de temps Ã  autre par nous.</p>\n<p>Veuillez lire attentivement lâ€™Accord avant d\'accÃ©der Ã  nos services ou de les utiliser. En accÃ©dant ou en utilisant toute partie de nos Services, vous acceptez d\'Ãªtre liÃ© par les prÃ©sentes Conditions. Si vous n\'acceptez pas une partie quelconque des conditions de l\'Accord, vous ne pouvez pas accÃ©der ou utiliser nos services.</p>\n<h2>PropriÃ©tÃ© intellectuelle</h2>\n<p>L\'Accord ne vous transfÃ¨re aucune de nos propriÃ©tÃ©s intellectuelles ou celles de tiers, et tous les droits, titres et intÃ©rÃªts sur ces propriÃ©tÃ©s restent la propriÃ©tÃ© seule et unique de [Business Name] et de ses concÃ©dants de licence (entre les parties).</p>\n<h3>Services de tiers</h3>\n<p>En utilisant les Services, vous pouvez utiliser des services, produits, logiciels, intÃ©grations ou applications dÃ©veloppÃ©s par un tiers (â€œServices Tiersâ€).</p>\n<p>Si vous utilisez des Services Tiers, vous comprenez que:</p>\n<ul>\n    <li>Toute utilisation d\'un Service Tiers se fait Ã  vos propres risques, et nous ne serons pas tenus responsables envers quiconque pour les sites ou les Services Tiers.</li>\n    <li>Vous reconnaissez et acceptez que nous ne serons pas responsables de tout dommage ou perte causÃ© ou prÃ©tendument causÃ© par ou en relation avec l\'utilisation de tels contenus, biens ou services disponibles sur ou via ces sites web ou services.</li>\n</ul>\n<h2>Comptes</h2>\n<p>Lorsque l\'utilisation d\'une partie de nos Services nÃ©cessite un compte, vous vous engagez Ã  nous fournir des informations complÃ¨tes et prÃ©cises lors de l\'ouverture du compte.</p>\n<p>Vous serez seul responsable de toute activitÃ© qui se produira par lâ€™entremise de votre compte. Vous Ãªtes responsable de la mise Ã  jour des informations relatives Ã  votre compte et de la sÃ©curitÃ© de votre mot de passe.</p>\n<p>Vous Ãªtes responsable du maintien de la sÃ©curitÃ© de votre compte que vous utilisez pour accÃ©der au Service. Vous ne devez pas partager ou utiliser Ã  mauvais escient vos identifiants d\'accÃ¨s. Vous devez nous informer immÃ©diatement de toute utilisation non autorisÃ©e de votre compte ou dÃ¨s que vous avez connaissance de toute autre atteinte Ã  la sÃ©curitÃ©.</p>\n<h2>RÃ©siliation</h2>\n<p>Nous pouvons suspendre ou mettre fin Ã  votre accÃ¨s Ã  tous ou Ã  partie de nos Services Ã  tout moment, avec ou sans motif, avec ou sans prÃ©avis, avec effet immÃ©diat.</p>\n<p>Si vous souhaitez rÃ©silier lâ€™Accord ou votre compte [Business Name], vous pouvez simplement cesser d\'utiliser nos Services.</p>\n<p>Toutes les dispositions de l\'Accord qui, de par leur nature, sont censÃ©es survivre Ã  la rÃ©siliation, continueront dâ€™exister aprÃ¨s la rÃ©siliation, y compris et sans limitation, les dispositions relatives Ã  la propriÃ©tÃ©, les exclusions de garantie, l\'indemnisation et les limitations de responsabilitÃ©.</p>\n<h2>Avis de non-responsabilitÃ©</h2>\n<p>Nos Services sont fournis â€œTELS QUELSâ€ et â€œTELS QUE DISPONIBLESâ€. [Business Name] et ses fournisseurs et concÃ©dants de licence dÃ©clinent par la prÃ©sente toute garantie de quelque nature que ce soit, expresse ou implicite, y compris et sans limitation, les garanties de qualitÃ© marchande, de convenance Ã  une application particuliÃ¨re et de non-contrefaÃ§on. Ni [Business Name], ni ses fournisseurs et concÃ©dants de licence ne garantissent que nos Services seront exempts d\'erreurs ou que l\'accÃ¨s Ã  ceux-ci sera continu ou ininterrompu. Vous comprenez que vous tÃ©lÃ©chargez ou obtenez du contenu ou des services par le biais de nos Services Ã  votre propre discrÃ©tion et Ã  vos risques.</p>\n<h3>Juridiction et droit applicable</h3>\n<p>Sauf dans la limite prÃ©vue par la lÃ©gislation applicable, l\'Accord et tout accÃ¨s ou utilisation de nos Services seront rÃ©gis par les lois des [Country].</p>\n<p>Le lieu appropriÃ© pour tout litige dÃ©coulant de ou liÃ© Ã  l\'Accord et Ã  tout accÃ¨s ou utilisation de nos Services sera soumis Ã  la compÃ©tence exclusive des tribunaux d\'Ã‰tat et fÃ©dÃ©raux situÃ©s aux [Country].</p>\n<h2>Modifications</h2>\n<p>[Business Name] se rÃ©serve le droit, Ã  sa seule discrÃ©tion, de modifier ou de remplacer ces Conditions Ã  tout moment.</p>\n<p>Si nous apportons des modifications significatives, nous vous en informerons en les publiant sur notre site web, ou en vous envoyant un courriel ou une autre communication avant que les modifications n\'entrent en vigueur. L\'avis indiquera un dÃ©lai raisonnable aprÃ¨s lequel les nouvelles conditions prendront effet.</p>\n<p>Si vous n\'Ãªtes pas d\'accord avec nos modifications, vous devez cesser d\'utiliser nos Services durant la pÃ©riode de prÃ©avis indiquÃ©e ou dÃ¨s que les modifications entrent en vigueur.</p>\n<p>Votre utilisation continue de nos Services sera soumise aux nouvelles conditions.</p>\n','',1,'MMFqUJfC3m'),
(5,'Terms of Use - DE','<h2>NUTZUNGSBEDINGUNGEN</h2>\n<p>Ihr Zugang zu und die Nutzung aller Inhalte, Produkte und Dienstleistungen, die auf der von [Business Name] (â€œwirâ€, â€œunsâ€ oderâ€œunserâ€) betriebenen Website [Domain] (der â€œDienstâ€) zur VerfÃ¼gung gestellt werden, unterliegen diesen Nutzungsbedingungen.</p>\n<p>Ihr Zugang zu unseren Diensten wird angeboten vorbehaltlich Ihrer uneingeschrÃ¤nkten Zustimmung aller hierin enthaltenen Nutzungsbedingungen und aller sonstigen Betriebsregeln und Richtlinien, die bereits verÃ¶ffentlicht wurden oder von Zeit zu Zeit von uns verÃ¶ffentlicht werden.</p>\n<p>Bitte lesen Sie die Nutzungsbedingungen sorgfÃ¤ltig durch, bevor Sie auf unsere Dienste zugreifen oder diese nutzen. Durch den Zugriff auf unsere Dienste oder deren Nutzung erklÃ¤ren Sie sich mit diesen Bedingungen einverstanden. Wenn Sie mit irgendeinem Teil der Bedingungen der Vereinbarung nicht einverstanden sind, dÃ¼rfen Sie auf unsere Dienste nicht zugreifen oder diese nutzen.</p>\n<h2>Geistiges Eigentum</h2>\n<p>Die Vereinbarung Ã¼bertrÃ¤gt weder unser geistiges Eigentum noch das geistige Eigentum von Dritten an Sie - und alle Rechte, Titel und Interessen an diesem Eigentum verbleiben ausschlieÃŸlich bei [Business Name] und seinen Lizenzgebern (zwischen den Parteien).</p>\n<h3>Dienstleitungen Dritter</h3>\n<p>Bei der Nutzung der Dienste kÃ¶nnen Sie Dienste, Produkte, Softwares, Integrierungen oder Anwendungen Dritter (â€œDienste Dritterâ€) nutzen.</p>\n<p>Wenn Sie Dienste Dritter in Anspruch nehmen, erklÃ¤ren Sie sich mit Folgendem einverstanden:</p>\n<ul>\n    <li>Jede Nutzung der Dienste Dritter erfolgt auf Ihr eigenes Risiko, und wir sind nicht verantwortlich oder haftbar fÃ¼r Websites oder Dienste Dritter.</li>\n    <li>Sie erkennen sich damit einverstanden und stimmen zu, dass wir nicht verantwortlich oder haftbar sind fÃ¼r SchÃ¤den oder Verluste, die durch oder in Verbindung mit der Nutzung solcher Inhalte, Produkte oder Dienste, die auf oder Ã¼ber solche Websites oder Dienstleistungen zur VerfÃ¼gung gestellt werden, verursacht werden oder angeblich verursacht wurden.</li>\n</ul>\n<h2>Konten</h2>\n<p>Wenn die Nutzung eines Teils unserer Dienste ein Konto erfordert, erklÃ¤ren Sie sich damit einverstanden, uns bei der Registrierung eines Kontos vollstÃ¤ndige und genaue Informationen zur VerfÃ¼gung zu stellen.</p>\n<p>Sie sind allein verantwortlich und haftbar fÃ¼r alle AktivitÃ¤ten, die Ã¼ber Ihr Konto erfolgen. Sie sind dafÃ¼r verantwortlich, Ihre Kontoinformationen auf dem neuesten Stand zu halten und Ihr Passwort sicher aufzubewahren.</p>\n<p>Sie sind dafÃ¼r verantwortlich, die Sicherheit Ihres Kontos, das Sie fÃ¼r den Zugriff auf den Dienst nutzen, zu gewÃ¤hrleisten. Sie dÃ¼rfen Ihre Zugangsdaten nicht weitergeben oder missbrauchen. Sie mÃ¼ssen uns unverzÃ¼glich Ã¼ber jede unbefugte Nutzung Ihres Kontos oder bei Kenntnisnahme einer anderen Sicherheitsverletzung informieren.</p>\n<h2>KÃ¼ndigung</h2>\n<p>Wir kÃ¶nnen Ihren Zugang zu allen oder einem Teil unserer Dienste jederzeit mit oder ohne Grund, mit oder ohne AnkÃ¼ndigung und mit sofortiger Wirkung beenden oder aussetzen.</p>\n<p>Wenn Sie die Vereinbarung oder Ihr [Business Name]-Konto kÃ¼ndigen mÃ¶chten, kÃ¶nnen Sie die Nutzung unserer Dienste einfach einstellen.</p>\n<p>Alle Bestimmungen der Vereinbarung, die aufgrund ihrer Natur im Falle einer KÃ¼ndigung fortbestehen mÃ¼ssen, bestehen Ã¼ber die KÃ¼ndigung fort - einschlieÃŸlich, aber nicht beschrÃ¤nkt auf Eigentumsbestimmungen, GewÃ¤hrleistungsausschlÃ¼sse, EntschÃ¤digungszahlungen und HaftungsbeschrÃ¤nkungen.</p>\n<h2>Haftungsausschuss</h2>\n<p>Unsere Dienste werden â€œWIE VORLIEGENDâ€ und â€œWIE VERFÃœGBARâ€ angeboten. [Business Name] und seine Lieferanten und Lizenzgeber lehnen hiermit alle GewÃ¤hrleistungen jeglicher Art ab - ausdrÃ¼ckliche oder stillschweigende GewÃ¤hrleistungen - einschlieÃŸlich, aber nicht beschrÃ¤nkt auf die GewÃ¤hrleistung der MarktgÃ¤ngigkeit, der Eignung fÃ¼r einen bestimmten Zweck und der Nichtverletzung von Schutzrechten. Weder [Business Name] noch seine Lieferanten und Lizenzgeber Ã¼bernehmen eine Garantie dafÃ¼r, dass unsere Dienstleistungen fehlerfrei sind oder dass der Zugriff darauf kontinuierlich oder ununterbrochen erfolgt. Sie sind sich bewusst, dass Sie Inhalte oder Dienstleistungen Ã¼ber unsere Dienste nach eigenem Ermessen und auf eigenes Risiko herunterladen oder anderweitig beziehen.</p>\n<h3>Gerichtsstand und anwendbares Recht</h3>\n<p>Soweit nicht das geltende Recht etwas anderes vorsieht, unterliegen die Vereinbarung und jeder Zugriff auf unsere Dienste oder deren Nutzung den Gesetzen der Vereinigten [Country].</p>\n<p>Der geeignete Gerichtsstand fÃ¼r alle Streitigkeiten, die sich aus der Vereinbarung und dem Zugang zu unseren Diensten oder deren Nutzung ergeben oder damit zusammenhÃ¤ngen, sind die staatlichen und bundesstaatlichen Gerichte in den Vereinigten [Country].</p>\n<h2>Ã„nderungen</h2>\n<p>[Business Name] behÃ¤lt sich das Recht vor, diese Nutzungsbedingungen nach eigenem Ermessen jederzeit zu Ã¤ndern oder zu ersetzen.</p>\n<p>Wenn wir Ã„nderungen vornehmen, die wesentlich sind, werden wir Sie durch VerÃ¶ffentlichung auf unserer Website oder durch Senden einer E-Mail oder einer anderen Mitteilung informieren, bevor die Ã„nderungen in Kraft treten. In der Mitteilung wird eine angemessene Zeitspanne angegeben, nach der die neuen Nutzungsbedingungen in Kraft treten.</p>\n<p>Wenn Sie mit unseren Ã„nderungen nicht einverstanden sind, sollten Sie die Nutzung unserer Dienste innerhalb der angegebenen Frist oder nach Inkrafttreten der Ã„nderungen einstellen.</p>\n<p>Ihre weitere Nutzung unserer Dienste unterliegt den neuen Nutzungsbedingungen.</p>\n','',1,'fbBlC5Y4yZ'),
(6,'CCPA - California Consumer Privacy Act','<h2>Privacy Notice For California Residents</h2>\n<h3>Definitions</h3>\n<h4>Website</h4>\n<p>[Business Name] or [Domain]</p>\n<h4>Owner (or We)</h4>\n<p>Indicates the natural person(s) or legal entity that provides this Website to Users.</p>\n<h4>User (or You)</h4>\n<p>Indicates any natural person or legal entity using this Website.</p>\n<p>This Privacy Notice for California Residents supplements the information contained in the Website\'s Privacy Policy and applies solely to all visitors, users, and others who reside in the State of California. We adopted this notice to comply with the California Consumer Privacy Act of 2018 (CCPA) and any terms defined in the CCPA have the same meaning when used in this notice.</p>\n<h3>Information We Collect</h3>\n<p>The Website collects information that identifies, relates to, describes, references, is capable of being associated with, or could reasonably be linked, directly or indirectly, with a particular consumer or device (\"personal information\").</p>\n<p>In particular, Website has collected the following categories of personal information from its consumers within the last 12 months:</p>\n<table>\n    <thead>\n    <tr>\n        <th>Category</th>\n        <th>Examples</th>\n        <th>Collected</th>\n    </tr>\n    </thead>\n    <tbody>\n    <tr>\n        <td>A. Identifiers.</td>\n        <td>A real name, alias, postal address, unique personal identifier, online identifier, Internet Protocol address, email address, account name, Social Security number, driver\'s license number, passport number, or other similar identifiers.</td>\n        <td>YES</td>\n    </tr>\n    <tr>\n        <td>B. Personal information categories listed in the California Customer Records statute (Cal. Civ. Code Â§ 1798.80(e)).</td>\n        <td>A name, signature, Social Security number, physical characteristics or description, address, telephone number, passport number, driver\'s license or state identification card number, insurance policy number, education, employment, employment history, bank account number, credit card number, debit card number, or any other financial information, medical information, or health insurance information.</td>\n        <td>YES</td>\n    </tr>\n    <tr>\n        <td>C. Protected classification characteristics under California or federal law.</td>\n        <td>Age (40 years or older), race, color, ancestry, national origin, citizenship, religion or creed, marital status, medical condition, physical or mental disability, sex (including gender, gender identity, gender expression, pregnancy or childbirth and related medical conditions), sexual orientation, veteran or military status, genetic information (including familial genetic information).</td>\n        <td>YES</td>\n    </tr>\n    <tr>\n        <td>D. Commercial information.</td>\n        <td>Records of personal property, products or services purchased, obtained, or considered, or other purchasing or consuming histories or tendencies.</td>\n        <td>YES</td>\n    </tr>\n    <tr>\n        <td>E. Biometric information.</td>\n        <td>Genetic, physiological, behavioral, and biological characteristics, or activity patterns used to extract a template or other identifier or identifying information, such as fingerprints, faceprints, and voiceprints, iris or retina scans, keystroke, gait, or other physical patterns, and sleep, health, or exercise data.</td>\n        <td>YES</td>\n    </tr>\n    <tr>\n        <td>F. Internet or other similar network activity.</td>\n        <td>Browsing history, search history, information on a consumer\'s interaction with a Website, application, or advertisement.</td>\n        <td>YES</td>\n    </tr>\n    <tr>\n        <td>G. Geolocation data.</td>\n        <td>Physical location or movements.</td>\n        <td>YES</td>\n    </tr>\n    <tr>\n        <td>H. Sensory data.</td>\n        <td>Audio, electronic, visual, thermal, olfactory, or similar information.</td>\n        <td>YES</td>\n    </tr>\n    <tr>\n        <td>I. Professional or employment-related information.</td>\n        <td>Current or past job history or performance evaluations.</td>\n        <td>YES</td>\n    </tr>\n    <tr>\n        <td>J. Non-public education information (per the Family Educational Rights and Privacy Act (20 U.S.C. Section 1232g, 34 C.F.R. Part 99)).</td>\n        <td>Education records directly related to a student maintained by an educational institution or party acting on its behalf, such as grades, transcripts, class lists, student schedules, student identification codes, student financial information, or student disciplinary records.</td>\n        <td>YES</td>\n    </tr>\n    <tr>\n        <td>K. Inferences drawn from other personal information.</td>\n        <td>Profile reflecting a person\'s preferences, characteristics, psychological trends, predispositions, behavior, attitudes, intelligence, abilities, and aptitudes.</td>\n        <td>YES</td>\n    </tr>\n    </tbody>\n</table>\n<p>Personal information does not include:</p>\n<ul>\n    <li>Publicly available information from government records.</li>\n    <li>Deidentified or aggregated consumer information.</li>\n    <li>Information excluded from the CCPA\'s scope, like certain health or medical information and other categories of information protected by different laws.</li>\n</ul>\n<p>We obtain the categories of personal information listed above from the following categories of sources:</p>\n<ul>\n    <li>Directly from you. For example, from forms you complete or products and services you purchase. </li>\n    <li>Indirectly from you. For example, from observing your actions on our Website.</li>\n</ul>\n<h3>Use of Personal Information</h3>\n<p>We may use or disclose the personal information we collect for one or more of the following business purposes:</p>\n<ul>\n    <li>To fulfill or meet the reason you provided the information. For example, if you share your name and contact information to request a price quote or ask a question about our services, we will use that personal information to respond to your inquiry. If you provide your personal information to purchase a product or service, we will use that information to process your payment and facilitate delivery. We may also save your information to facilitate new product orders or process returns.</li>\n    <li>To process your requests, purchases, transactions, and payments and prevent transactional fraud.</li>\n    <li>To provide you with support and to respond to your inquiries, including to investigate and address your concerns and monitor and improve our responses.</li>\n    <li>To respond to law enforcement requests and as required by applicable law, court order, or governmental regulations.</li>\n    <li>As described to you when collecting your personal information or as otherwise set forth in the CCPA.</li>\n    <li>To evaluate or conduct a merger, divestiture, restructuring, reorganization, dissolution, or other sale or transfer of some or all of our or our affiliates\' assets in which personal information held by us or our affiliates about our Website users is among the assets transferred.</li>\n</ul>\n<p>We will not collect additional categories of personal information or use the personal information we collect for materially different, unrelated, or incompatible purposes without providing you notice.</p>\n<h3>Sharing Personal Information</h3>\n<p>We may disclose your personal information to a third party for a business purpose. When we disclose personal information for a business purpose, we enter a contract that describes the purpose and requires the recipient to both keep that personal information confidential and not use it for any purpose except performing the contract.</p>\n<p>We share your personal information with the following categories of third parties:</p>\n<ul>\n    <li>Service providers.</li>\n    <li>Data Aggregators.</li>\n</ul>\n[wpl_cookie_details]\n<h3>Your Rights and Choices</h3>\n<p>The CCPA provides consumers (California residents) with specific rights regarding their personal information. This section describes your CCPA rights and explains how to exercise those rights.</p>\n<h4>Access to Specific Information and Data Portability Rights</h4>\n<p>You have the right to request that we disclose certain information to you about our collection and use of your personal information over the past 12 months. Once we receive and confirm your verifiable consumer request (see Exercising Access, Data Portability, and Deletion Rights), we will disclose to you:</p>\n<ul>\n    <li>The categories of personal information we\'ve collected about you.</li>\n    <li>The categories of sources for the personal information we\'ve collected about you.</li>\n    <li>Our business or commercial purpose for collecting or selling that personal information.</li>\n    <li>The categories of third parties with whom we share that personal information.</li>\n    <li>The specific pieces of personal information weâ€™ve collected about you (also called a data portability request).</li>\n    <li>If we sold or disclosed your personal information for a business purpose, two separate lists disclosing:\n        <ul>\n            <li>sales, identifying the personal information categories that each category of recipient purchased; and</li>\n            <li>disclosures for a business purpose, identifying the personal information categories that each category of recipient obtained.</li>\n        </ul>\n    </li>\n</ul>\n<h4>Deletion Request Rights</h4>\n<p>You have the right to request that we delete any of your personal information that we collected from you and retained, subject to certain exceptions. Once we receive and confirm your verifiable consumer request (see Exercising Access, Data Portability, and Deletion Rights), we will delete (and direct our service providers to delete) your personal information from our records, unless an exception applies.</p>\n<p>We may deny your deletion request if retaining the information is necessary for us or our service provider(s) to:</p>\n<ul>\n    <li>Complete the transaction for which we collected the personal information, provide a good or service that you requested, take actions reasonably anticipated within the context of our ongoing business relationship with you, or otherwise perform our contract with you.</li>\n    <li>Detect security incidents, protect against malicious, deceptive, fraudulent, or illegal activity, or prosecute those responsible for such activities.</li>\n    <li>Debug products to identify and repair errors that impair existing intended functionality.</li>\n    <li>Comply with the California Electronic Communications Privacy Act (Cal. Penal Code Â§ 1546 seq.). Enable solely internal uses that are reasonably aligned with consumer expectations based on your relationship with us.</li>\n    <li>Comply with a legal obligation.</li>\n    <li>Make other internal and lawful uses of that information that are compatible with the context in which you provided it.</li>\n</ul>\n<h4>Exercising Access, Data Portability, and Deletion Rights</h4>\n<p>To exercise the access, data portability, and deletion rights described above, please submit a verifiable consumer request to us by either:</p>\n<ul>\n    <li>Calling us at [Phone]</li>\n    <li>Emailing us at [Email]</li>\n</ul>\n<p>Only you, or a person registered with the California Secretary of State that you authorize to act on your behalf, may make a verifiable consumer request related to your personal information. You may also make a verifiable consumer request on behalf of your minor child.</p>\n<p>You may only make a verifiable consumer request for access or data portability twice within a 12-month period. The verifiable consumer request must:</p>\n<ul>\n    <li>Provide sufficient information that allows us to reasonably verify you are the person about whom we\'ve collected personal information or an authorized representative.</li>\n    <li>Describe your request with sufficient detail that allows us to properly understand, evaluate, and respond to it.</li>\n</ul>\n<p>We cannot respond to your request or provide you with personal information if we cannot verify your identity or authority to make the request and confirm the personal information relates to you.</p>\n<p>Making a verifiable consumer request does not require you to create an account with us.</p>\n<p>We will only use personal information provided in a verifiable consumer request to verify the requestor\'s identity or authority to make the request.</p>\n<h4>Response Timing and Format</h4>\n<p>We endeavor to respond to a verifiable consumer request within forty-five (45) days of its receipt. If we require more time, we will inform you of the reason and extension period in writing.</p>\n<p>We will deliver our written response by mail or electronically, at your option.</p>\n<p>Any disclosures we provide will only cover the 12-month period preceding the verifiable consumer request\'s receipt. The response we provide will also explain the reasons we cannot comply with a request, if applicable. For data portability requests, we will select a format to provide your personal information that is readily useable and should allow you to transmit the information from one entity to another entity without hindrance.</p>\n<p>We do not charge a fee to process or respond to your verifiable consumer request unless it is excessive, repetitive, or manifestly unfounded. If we determine that the request warrants a fee, we will tell you why we made that decision and provide you with a cost estimate before completing your request.</p>\n<h4>Personal Information Sales</h4>\n<p>We will not sell your personal information to any party. If in the future, we anticipate selling your personal information to any party, we will provide you with the opt-out and opt-in rights required by the CCPA.</p>\n<h3>Non-Discrimination</h3>\n<p>We will not discriminate against you for exercising any of your CCPA rights. Unless permitted by the CCPA, we will not:</p>\n<ul>\n    <li>Deny you goods or services.</li>\n    <li>Charge you different prices or rates for goods or services, including through granting discounts or other benefits, or imposing penalties.</li>\n    <li>Provide you a different level or quality of goods or services.</li>\n    <li>Suggest that you may receive a different price or rate for goods or services or a different level or quality of goods or services.</li>\n</ul>\n<h3>Other California Privacy Rights</h3>\n<p>California\'s \"Shine the Light\" law (Civil Code Section Â§ 1798.83) permits users of our Website that are California residents to request certain information regarding our disclosure of personal information to third parties for their direct marketing purposes. To make such a request, please send an email to [Email].</p>\n<h3>Changes to Our Privacy Notice</h3>\n<p>We reserve the right to amend this privacy notice at our discretion and at any time. When we make changes to this privacy notice, we will post the updated notice on our Website and update the notice\'s effective date. Your continued use of our Website following the posting of changes constitutes your acceptance of such changes.</p>\n<h3>Contact Information</h3>\n<p>If you have any questions or comments about this notice, the ways in which we collect and use your information described below and in our Privacy Policy, your choices and rights regarding such use, or wish to exercise your rights under California law, please do not hesitate to contact us at:</p>\n<ul>\n    <li>Phone: [Phone]</li>\n    <li>Website: [Domain]</li>\n    <li>Email: [Email]</li>\n</ul>','',1,'JRevVk8nkP');
/*!40000 ALTER TABLE `wphu_legal_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_links`
--

DROP TABLE IF EXISTS `wphu_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) 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) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_links`
--

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

--
-- Table structure for table `wphu_login_redirects`
--

DROP TABLE IF EXISTS `wphu_login_redirects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_login_redirects` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `rul_type` varchar(100) NOT NULL,
  `rul_value` varchar(191) DEFAULT NULL,
  `rul_url` longtext DEFAULT NULL,
  `rul_url_logout` longtext DEFAULT NULL,
  `rul_order` int(2) NOT NULL DEFAULT 0,
  `meta_data` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_login_redirects`
--

LOCK TABLES `wphu_login_redirects` WRITE;
/*!40000 ALTER TABLE `wphu_login_redirects` DISABLE KEYS */;
INSERT INTO `wphu_login_redirects` VALUES
(1,'all',NULL,'https://choiceresources.co.uk/account-management/','https://choiceresources.co.uk/my-account/',0,NULL),
(2,'register',NULL,'https://choiceresources.co.uk/my-account/',NULL,0,NULL),
(3,'role','customer','https://choiceresources.co.uk/account-management/','https://choiceresources.co.uk/my-account/',0,'{\"first_login_condition\":{\"value\":\"\",\"date\":\"2022-12-15 16:31:08\"}}'),
(4,'role','subscriber','https://choiceresources.co.uk/account-management/','https://choiceresources.co.uk/my-account/',0,'{\"first_login_condition\":{\"value\":\"\",\"date\":\"2022-12-15 16:32:06\"}}'),
(5,'role','administrator','https://choiceresources.co.uk/account-management/','https://choiceresources.co.uk/my-account/',0,'{\"first_login_condition\":{\"value\":\"\",\"date\":\"2022-12-15 16:34:01\"}}');
/*!40000 ALTER TABLE `wphu_login_redirects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_lp_popups`
--

DROP TABLE IF EXISTS `wphu_lp_popups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_lp_popups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `popup_name` text NOT NULL,
  `content` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_lp_popups`
--

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

--
-- Table structure for table `wphu_mailchimp_carts`
--

DROP TABLE IF EXISTS `wphu_mailchimp_carts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_mailchimp_carts` (
  `id` varchar(255) NOT NULL,
  `email` varchar(100) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `cart` text NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_mailchimp_carts`
--

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

--
-- Table structure for table `wphu_mailchimp_jobs`
--

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

--
-- Dumping data for table `wphu_mailchimp_jobs`
--

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

--
-- Table structure for table `wphu_options`
--

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

--
-- Dumping data for table `wphu_options`
--

LOCK TABLES `wphu_options` WRITE;
/*!40000 ALTER TABLE `wphu_options` DISABLE KEYS */;
INSERT INTO `wphu_options` VALUES
(1,'siteurl','https://choiceresources.co.uk','yes'),
(2,'home','https://choiceresources.co.uk','yes'),
(3,'blogname','Choice Resources','yes'),
(4,'blogdescription','Free Printables that share God&#039;s Word with Children','yes'),
(5,'users_can_register','0','yes'),
(6,'admin_email','ivankulongo@gmail.com','yes'),
(7,'start_of_week','1','yes'),
(8,'use_balanceTags','0','yes'),
(9,'use_smilies','1','yes'),
(10,'require_name_email','1','yes'),
(11,'comments_notify','1','yes'),
(12,'posts_per_rss','10','yes'),
(13,'rss_use_excerpt','1','yes'),
(14,'mailserver_url','mail.example.com','yes'),
(15,'mailserver_login','login@example.com','yes'),
(16,'mailserver_pass','password','yes'),
(17,'mailserver_port','110','yes'),
(18,'default_category','1','yes'),
(19,'default_comment_status','open','yes'),
(20,'default_ping_status','open','yes'),
(21,'default_pingback_flag','1','yes'),
(22,'posts_per_page','4','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','/%postname%/','yes'),
(29,'rewrite_rules','a:233:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:61:\"^\\.well-known\\/apple-developer-merchantid-domain-association$\";s:57:\"index.php?apple-developer-merchantid-domain-association=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:18:\"^entries/([^/]+)/?\";s:29:\"index.php?entries=$matches[1]\";s:42:\"archives/(\\d+)(?:/(\\d+))?/entries/(\\d+)/?$\";s:60:\"index.php?p=$matches[1]&page=$matches[2]&entries=$matches[3]\";s:38:\"(.?.+?)(?:/([0-9]+))?/entries/(\\d+)/?$\";s:67:\"index.php?pagename=$matches[1]&page=$matches[2]&entries=$matches[3]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/entries/(\\d+)/?$\";s:101:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]&entries=$matches[5]\";s:75:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/entries/(\\d+)/?$\";s:117:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]&entries=$matches[6]\";s:26:\"(.?.+?)/entries(/(.*))?/?$\";s:50:\"index.php?pagename=$matches[1]&entries=$matches[3]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:40:\"e-landing-page/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?e-landing-page=$matches[1]&wc-api=$matches[3]\";s:46:\"e-landing-page/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"e-landing-page/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:46:\"woolentor-template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"woolentor-template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"woolentor-template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"woolentor-template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"woolentor-template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"woolentor-template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"woolentor-template/([^/]+)/embed/?$\";s:51:\"index.php?woolentor-template=$matches[1]&embed=true\";s:39:\"woolentor-template/([^/]+)/trackback/?$\";s:45:\"index.php?woolentor-template=$matches[1]&tb=1\";s:47:\"woolentor-template/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?woolentor-template=$matches[1]&paged=$matches[2]\";s:54:\"woolentor-template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?woolentor-template=$matches[1]&cpage=$matches[2]\";s:44:\"woolentor-template/([^/]+)/wc-api(/(.*))?/?$\";s:59:\"index.php?woolentor-template=$matches[1]&wc-api=$matches[3]\";s:50:\"woolentor-template/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"woolentor-template/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:43:\"woolentor-template/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?woolentor-template=$matches[1]&page=$matches[2]\";s:35:\"woolentor-template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"woolentor-template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"woolentor-template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"woolentor-template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"woolentor-template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"woolentor-template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"cartflows_step/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"cartflows_step/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"cartflows_step/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"cartflows_step/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"cartflows_step/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"cartflows_step/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"cartflows_step/([^/]+)/embed/?$\";s:47:\"index.php?cartflows_step=$matches[1]&embed=true\";s:35:\"cartflows_step/([^/]+)/trackback/?$\";s:41:\"index.php?cartflows_step=$matches[1]&tb=1\";s:43:\"cartflows_step/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?cartflows_step=$matches[1]&paged=$matches[2]\";s:50:\"cartflows_step/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?cartflows_step=$matches[1]&cpage=$matches[2]\";s:40:\"cartflows_step/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?cartflows_step=$matches[1]&wc-api=$matches[3]\";s:46:\"cartflows_step/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"cartflows_step/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"cartflows_step/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?cartflows_step=$matches[1]&page=$matches[2]\";s:31:\"cartflows_step/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"cartflows_step/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"cartflows_step/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"cartflows_step/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"cartflows_step/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"cartflows_step/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:42:\"index.php?&page_id=33656&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:31:\"(.?.+?)/members-area(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&members-area=$matches[3]\";s:29:\"(.?.+?)/my-profile(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&my-profile=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:36:\"(.?.+?)/view-subscription(/(.*))?/?$\";s:60:\"index.php?pagename=$matches[1]&view-subscription=$matches[3]\";s:32:\"(.?.+?)/subscriptions(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&subscriptions=$matches[3]\";s:46:\"(.?.+?)/subscription-payment-method(/(.*))?/?$\";s:70:\"index.php?pagename=$matches[1]&subscription-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),
(30,'hack_file','0','yes'),
(31,'blog_charset','UTF-8','yes'),
(32,'moderation_keys','','no'),
(33,'active_plugins','a:26:{i:0;s:27:\"fluent-smtp/fluent-smtp.php\";i:1;s:23:\"cartflows/cartflows.php\";i:2;s:25:\"convertful/convertful.php\";i:3;s:35:\"cookie-law-info/cookie-law-info.php\";i:4;s:39:\"copy-delete-posts/copy-delete-posts.php\";i:5;s:31:\"creame-whatsapp-me/joinchat.php\";i:6;s:31:\"elementor-pro/elementor-pro.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";i:9;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:10;s:25:\"forminator/forminator.php\";i:11;s:35:\"google-site-kit/google-site-kit.php\";i:12;s:42:\"peters-login-redirect/wplogin_redirect.php\";i:13;s:31:\"sg-cachepress/sg-cachepress.php\";i:14;s:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";i:15;s:27:\"updraftplus/updraftplus.php\";i:16;s:42:\"visibility-logic-elementor/conditional.php\";i:17;s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";i:18;s:87:\"woo-product-country-base-restrictions/woocommerce-product-country-base-restrictions.php\";i:19;s:93:\"woocommerce-gateway-amazon-payments-advanced/woocommerce-gateway-amazon-payments-advanced.php\";i:20;s:51:\"woocommerce-memberships/woocommerce-memberships.php\";i:21;s:45:\"woocommerce-payments/woocommerce-payments.php\";i:22;s:55:\"woocommerce-subscriptions/woocommerce-subscriptions.php\";i:23;s:27:\"woocommerce/woocommerce.php\";i:24;s:47:\"woolentor-addons/woolentor_addons_elementor.php\";i:25;s:22:\"wp-mautic/wpmautic.php\";}','yes'),
(34,'category_base','','yes'),
(35,'ping_sites','http://rpc.pingomatic.com/','yes'),
(36,'comment_max_links','2','yes'),
(37,'gmt_offset','0','yes'),
(38,'default_email_category','1','yes'),
(39,'recently_edited','a:4:{i:0;s:84:\"/home/onetruew/choiceresources.co.uk/wp-content/themes/hello-elementor/functions.php\";i:2;s:80:\"/home/onetruew/choiceresources.co.uk/wp-content/themes/hello-elementor/style.css\";i:3;s:89:\"/home/onetruew/choiceresources.co.uk/wp-content/themes/hello-elementor/classic-editor.css\";i:4;s:0:\"\";}','no'),
(40,'template','hello-elementor','yes'),
(41,'stylesheet','hello-elementor','yes'),
(42,'comment_registration','0','yes'),
(43,'html_type','text/html','yes'),
(44,'use_trackback','0','yes'),
(45,'default_role','customer','yes'),
(46,'db_version','57155','yes'),
(47,'uploads_use_yearmonth_folders','1','yes'),
(48,'upload_path','','yes'),
(49,'blog_public','1','yes'),
(50,'default_link_category','2','yes'),
(51,'show_on_front','page','yes'),
(52,'tag_base','','yes'),
(53,'show_avatars','1','yes'),
(54,'avatar_rating','G','yes'),
(55,'upload_url_path','','yes'),
(56,'thumbnail_size_w','150','yes'),
(57,'thumbnail_size_h','150','yes'),
(58,'thumbnail_crop','1','yes'),
(59,'medium_size_w','300','yes'),
(60,'medium_size_h','300','yes'),
(61,'avatar_default','mystery','yes'),
(62,'large_size_w','1024','yes'),
(63,'large_size_h','1024','yes'),
(64,'image_default_link_type','none','yes'),
(65,'image_default_size','','yes'),
(66,'image_default_align','','yes'),
(67,'close_comments_for_old_posts','0','yes'),
(68,'close_comments_days_old','14','yes'),
(69,'thread_comments','1','yes'),
(70,'thread_comments_depth','5','yes'),
(71,'page_comments','0','yes'),
(72,'comments_per_page','50','yes'),
(73,'default_comments_page','newest','yes'),
(74,'comment_order','asc','yes'),
(75,'sticky_posts','a:0:{}','yes'),
(76,'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'),
(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(79,'uninstall_plugins','a:7:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:25:\"convertful/convertful.php\";s:14:\"conv_uninstall\";s:39:\"copy-delete-posts/copy-delete-posts.php\";a:2:{i:0;s:15:\"Account\\Account\";i:1;s:25:\"onUninstallPluginListener\";}s:47:\"prevent-direct-access/prevent-direct-access.php\";a:2:{i:0;s:9:\"Pda_Admin\";i:1;s:16:\"plugin_uninstall\";}s:31:\"ameliabooking/ameliabooking.php\";a:2:{i:0;s:20:\"AmeliaBooking\\Plugin\";i:1;s:8:\"deletion\";}s:25:\"templately/templately.php\";a:2:{i:0;s:27:\"Templately\\Core\\Maintenance\";i:1;s:9:\"uninstall\";}s:55:\"wish-list-for-woocommerce/wish-list-for-woocommerce.php\";a:2:{i:0;s:21:\"Alg_WC_Wish_List_Core\";i:1;s:12:\"on_uninstall\";}}','no'),
(80,'timezone_string','','yes'),
(81,'page_for_posts','0','yes'),
(82,'page_on_front','33656','yes'),
(83,'default_post_format','0','yes'),
(84,'link_manager_enabled','0','yes'),
(85,'finished_splitting_shared_terms','1','yes'),
(86,'site_icon','35898','on'),
(87,'medium_large_size_w','768','yes'),
(88,'medium_large_size_h','0','yes'),
(89,'wp_page_for_privacy_policy','3','yes'),
(90,'show_comments_cookies_opt_in','1','yes'),
(91,'admin_email_lifespan','1742373862','yes'),
(92,'disallowed_keys','','no'),
(93,'comment_previously_approved','1','yes'),
(94,'auto_plugin_theme_update_emails','a:0:{}','no'),
(95,'auto_update_core_dev','enabled','yes'),
(96,'auto_update_core_minor','enabled','yes'),
(97,'auto_update_core_major','enabled','yes'),
(98,'initial_db_version','49752','yes'),
(99,'wphu_user_roles','a:10:{s:13:\"administrator\";a:16:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:244:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:22:\"edit_wpt_product_table\";b:1;s:23:\"edit_wpt_product_tables\";b:1;s:30:\"edit_others_wpt_product_tables\";b:1;s:26:\"publish_wpt_product_tables\";b:1;s:22:\"read_wpt_product_table\";b:1;s:31:\"read_private_wpt_product_tables\";b:1;s:24:\"delete_wpt_product_table\";b:1;s:24:\"manage_wpt_product_table\";b:1;s:20:\"edit_membership_plan\";b:1;s:20:\"read_membership_plan\";b:1;s:22:\"delete_membership_plan\";b:1;s:21:\"edit_membership_plans\";b:1;s:28:\"edit_others_membership_plans\";b:1;s:23:\"delete_membership_plans\";b:1;s:24:\"publish_membership_plans\";b:1;s:29:\"read_private_membership_plans\";b:1;s:31:\"delete_private_membership_plans\";b:1;s:33:\"delete_published_membership_plans\";b:1;s:30:\"delete_others_membership_plans\";b:1;s:29:\"edit_private_membership_plans\";b:1;s:31:\"edit_published_membership_plans\";b:1;s:20:\"edit_user_membership\";b:1;s:20:\"read_user_membership\";b:1;s:22:\"delete_user_membership\";b:1;s:21:\"edit_user_memberships\";b:1;s:28:\"edit_others_user_memberships\";b:1;s:23:\"delete_user_memberships\";b:1;s:24:\"publish_user_memberships\";b:1;s:29:\"read_private_user_memberships\";b:1;s:31:\"delete_private_user_memberships\";b:1;s:33:\"delete_published_user_memberships\";b:1;s:30:\"delete_others_user_memberships\";b:1;s:29:\"edit_private_user_memberships\";b:1;s:31:\"edit_published_user_memberships\";b:1;s:35:\"manage_woocommerce_membership_plans\";b:1;s:35:\"manage_woocommerce_user_memberships\";b:1;s:10:\"copy_posts\";b:1;s:16:\"amelia_read_menu\";b:1;s:21:\"amelia_read_dashboard\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:21:\"amelia_read_employees\";b:1;s:20:\"amelia_read_services\";b:1;s:20:\"amelia_read_packages\";b:1;s:21:\"amelia_read_locations\";b:1;s:19:\"amelia_read_coupons\";b:1;s:21:\"amelia_read_customers\";b:1;s:19:\"amelia_read_finance\";b:1;s:25:\"amelia_read_notifications\";b:1;s:21:\"amelia_read_customize\";b:1;s:25:\"amelia_read_custom_fields\";b:1;s:20:\"amelia_read_settings\";b:1;s:27:\"amelia_read_others_calendar\";b:1;s:31:\"amelia_read_others_appointments\";b:1;s:28:\"amelia_read_others_employees\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:22:\"amelia_write_dashboard\";b:1;s:21:\"amelia_write_calendar\";b:1;s:25:\"amelia_write_appointments\";b:1;s:19:\"amelia_write_events\";b:1;s:22:\"amelia_write_employees\";b:1;s:21:\"amelia_write_services\";b:1;s:21:\"amelia_write_packages\";b:1;s:22:\"amelia_write_locations\";b:1;s:20:\"amelia_write_coupons\";b:1;s:22:\"amelia_write_customers\";b:1;s:20:\"amelia_write_finance\";b:1;s:26:\"amelia_write_notifications\";b:1;s:22:\"amelia_write_customize\";b:1;s:26:\"amelia_write_custom_fields\";b:1;s:21:\"amelia_write_settings\";b:1;s:19:\"amelia_write_status\";b:1;s:28:\"amelia_write_others_calendar\";b:1;s:32:\"amelia_write_others_appointments\";b:1;s:29:\"amelia_write_others_employees\";b:1;s:26:\"amelia_write_others_events\";b:1;s:27:\"amelia_write_others_finance\";b:1;s:29:\"amelia_write_others_dashboard\";b:1;s:23:\"amelia_delete_dashboard\";b:1;s:22:\"amelia_delete_calendar\";b:1;s:26:\"amelia_delete_appointments\";b:1;s:20:\"amelia_delete_events\";b:1;s:23:\"amelia_delete_employees\";b:1;s:22:\"amelia_delete_services\";b:1;s:22:\"amelia_delete_packages\";b:1;s:23:\"amelia_delete_locations\";b:1;s:21:\"amelia_delete_coupons\";b:1;s:23:\"amelia_delete_customers\";b:1;s:21:\"amelia_delete_finance\";b:1;s:27:\"amelia_delete_notifications\";b:1;s:23:\"amelia_delete_customize\";b:1;s:27:\"amelia_delete_custom_fields\";b:1;s:22:\"amelia_delete_settings\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;s:25:\"cartflows_manage_settings\";b:1;s:28:\"cartflows_manage_flows_steps\";b:1;s:17:\"manage_forminator\";b:1;s:15:\"manage_security\";b:1;s:4:\"bnfw\";b:1;s:9:\"edit_docs\";b:1;s:16:\"edit_others_docs\";b:1;s:11:\"delete_docs\";b:1;s:12:\"publish_docs\";b:1;s:17:\"read_private_docs\";b:1;s:19:\"delete_private_docs\";b:1;s:21:\"delete_published_docs\";b:1;s:18:\"delete_others_docs\";b:1;s:17:\"edit_private_docs\";b:1;s:19:\"edit_published_docs\";b:1;s:16:\"manage_doc_terms\";b:1;s:14:\"edit_doc_terms\";b:1;s:16:\"delete_doc_terms\";b:1;s:27:\"manage_knowledge_base_terms\";b:1;s:25:\"edit_knowledge_base_terms\";b:1;s:27:\"delete_knowledge_base_terms\";b:1;s:18:\"edit_docs_settings\";b:1;s:19:\"read_docs_analytics\";b:1;}s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:6:\"editor\";a:16:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:51:{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:10:\"copy_posts\";b:1;s:9:\"edit_docs\";b:1;s:16:\"edit_others_docs\";b:1;s:12:\"publish_docs\";b:1;s:19:\"edit_published_docs\";b:1;s:17:\"edit_private_docs\";b:1;s:17:\"read_private_docs\";b:1;s:21:\"delete_published_docs\";b:1;s:19:\"delete_private_docs\";b:1;s:11:\"delete_docs\";b:1;s:18:\"delete_others_docs\";b:1;s:16:\"manage_doc_terms\";b:1;s:14:\"edit_doc_terms\";b:1;s:16:\"delete_doc_terms\";b:1;s:27:\"manage_knowledge_base_terms\";b:1;s:25:\"edit_knowledge_base_terms\";b:1;s:27:\"delete_knowledge_base_terms\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:6:\"author\";a:16:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a: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:9:\"edit_docs\";b:1;s:19:\"edit_published_docs\";b:1;s:12:\"publish_docs\";b:1;s:11:\"delete_docs\";b:1;s:21:\"delete_published_docs\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:11:\"contributor\";a:16:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:9:\"edit_docs\";b:1;s:11:\"delete_docs\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:10:\"subscriber\";a:16:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:120:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:20:\"edit_membership_plan\";b:1;s:20:\"read_membership_plan\";b:1;s:22:\"delete_membership_plan\";b:1;s:21:\"edit_membership_plans\";b:1;s:28:\"edit_others_membership_plans\";b:1;s:23:\"delete_membership_plans\";b:1;s:24:\"publish_membership_plans\";b:1;s:29:\"read_private_membership_plans\";b:1;s:31:\"delete_private_membership_plans\";b:1;s:33:\"delete_published_membership_plans\";b:1;s:30:\"delete_others_membership_plans\";b:1;s:29:\"edit_private_membership_plans\";b:1;s:31:\"edit_published_membership_plans\";b:1;s:20:\"edit_user_membership\";b:1;s:20:\"read_user_membership\";b:1;s:22:\"delete_user_membership\";b:1;s:21:\"edit_user_memberships\";b:1;s:28:\"edit_others_user_memberships\";b:1;s:23:\"delete_user_memberships\";b:1;s:24:\"publish_user_memberships\";b:1;s:29:\"read_private_user_memberships\";b:1;s:31:\"delete_private_user_memberships\";b:1;s:33:\"delete_published_user_memberships\";b:1;s:30:\"delete_others_user_memberships\";b:1;s:29:\"edit_private_user_memberships\";b:1;s:31:\"edit_published_user_memberships\";b:1;s:35:\"manage_woocommerce_membership_plans\";b:1;s:35:\"manage_woocommerce_user_memberships\";b:1;}}s:17:\"wpamelia-customer\";a:2:{s:4:\"name\";s:15:\"Amelia Customer\";s:12:\"capabilities\";a:7:{s:4:\"read\";b:1;s:16:\"amelia_read_menu\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:30:\"amelia_write_time_appointments\";b:1;}}s:17:\"wpamelia-provider\";a:2:{s:4:\"name\";s:15:\"Amelia Employee\";s:12:\"capabilities\";a:16:{s:4:\"read\";b:1;s:20:\"amelia_delete_events\";b:1;s:16:\"amelia_read_menu\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:21:\"amelia_read_employees\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:22:\"amelia_write_employees\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;s:32:\"amelia_write_others_appointments\";b:0;s:25:\"amelia_write_appointments\";b:1;s:19:\"amelia_write_events\";b:1;s:26:\"amelia_write_others_events\";b:0;}}s:16:\"wpamelia-manager\";a:2:{s:4:\"name\";s:14:\"Amelia Manager\";s:12:\"capabilities\";a:41:{s:4:\"read\";b:1;s:20:\"amelia_delete_events\";b:1;s:16:\"amelia_read_menu\";b:1;s:21:\"amelia_read_dashboard\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:21:\"amelia_read_employees\";b:1;s:20:\"amelia_read_services\";b:1;s:20:\"amelia_read_packages\";b:1;s:21:\"amelia_read_locations\";b:1;s:19:\"amelia_read_coupons\";b:1;s:21:\"amelia_read_customers\";b:1;s:19:\"amelia_read_finance\";b:1;s:25:\"amelia_read_notifications\";b:1;s:27:\"amelia_read_others_calendar\";b:1;s:31:\"amelia_read_others_appointments\";b:1;s:28:\"amelia_read_others_employees\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:22:\"amelia_write_dashboard\";b:1;s:21:\"amelia_write_calendar\";b:1;s:25:\"amelia_write_appointments\";b:1;s:19:\"amelia_write_events\";b:1;s:22:\"amelia_write_employees\";b:1;s:21:\"amelia_write_services\";b:1;s:21:\"amelia_write_packages\";b:1;s:22:\"amelia_write_locations\";b:1;s:20:\"amelia_write_coupons\";b:1;s:22:\"amelia_write_customers\";b:1;s:20:\"amelia_write_finance\";b:1;s:26:\"amelia_write_notifications\";b:1;s:28:\"amelia_write_others_calendar\";b:1;s:32:\"amelia_write_others_appointments\";b:1;s:29:\"amelia_write_others_employees\";b:1;s:26:\"amelia_write_others_events\";b:1;s:27:\"amelia_write_others_finance\";b:1;s:29:\"amelia_write_others_dashboard\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;s:12:\"upload_files\";b:1;}}}','yes'),
(100,'fresh_site','0','yes'),
(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(102,'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'),
(103,'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'),
(104,'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'),
(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(106,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:12:\"categories-2\";i:3;s:14:\"recent-posts-2\";i:4;s:17:\"recent-comments-2\";i:5;s:8:\"search-2\";}s:13:\"array_version\";i:3;}','yes'),
(107,'cron','a:47:{i:1640113200;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"c3c7168b670bae869879e65d9a7a545f\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1640113260;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"144e250564b41667f377b87543cd0fd5\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1640113380;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"144e250564b41667f377b87543cd0fd5\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1640113500;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"144e250564b41667f377b87543cd0fd5\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1640113860;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"144e250564b41667f377b87543cd0fd5\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1640113920;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"144e250564b41667f377b87543cd0fd5\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1640113980;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"144e250564b41667f377b87543cd0fd5\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1640114100;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"144e250564b41667f377b87543cd0fd5\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1640114160;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"144e250564b41667f377b87543cd0fd5\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1640114220;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"144e250564b41667f377b87543cd0fd5\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1640114340;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"144e250564b41667f377b87543cd0fd5\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1730211900;a:1:{s:17:\"crontrol_cron_job\";a:1:{s:32:\"46ce16856e1b1d5f263cabc706f5a18a\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:4:{s:4:\"code\";s:128:\"file_get_contents(*http://choiceresources.co.uk/wp-admin/admin-ajax.php?action=wpamelia_api&call=/notifications/scheduled/send*)\";s:4:\"name\";s:11:\"Amelia Cron\";s:20:\"syntax_error_message\";s:28:\"syntax error, unexpected \'*\'\";s:17:\"syntax_error_line\";i:1;}s:8:\"interval\";i:60;}}}i:1730211907;a:1:{s:39:\"cartflows_ca_update_order_status_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"every_fifteen_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1730211912;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1730211974;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1730211980;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1730212175;a:2:{s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1730212360;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1730214901;a:4:{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;}}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:1730214915;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:1730219572;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730222303;a:1:{s:41:\"googlesitekit_cron_update_remote_features\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1730222672;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:1730229970;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730230362;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730236701;a:1:{s:17:\"wppb_review_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730239847;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:1730240049;a:1:{s:29:\"validate_woopay_compatibility\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730241162;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1730246400;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730247182;a:1:{s:33:\"updraftplus_clean_temporary_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1730247300;a:1:{s:27:\"wc_memberships_jobs_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:1730249268;a:1:{s:35:\"fluentmail_do_daily_scheduled_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730258101;a:2:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s: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:1730258113;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:1730258114;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730258775;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730261167;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730269380;a:1:{s:29:\"mc4wp_refresh_mailchimp_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1730310553;a:1:{s:20:\"wcs_cleanup_big_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1730312219;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1730412006;a:1:{s:47:\"siteground_optimizer_database_optimization_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1730740902;a:1:{s:36:\"siteground_optimizer_clear_cache_dir\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1730741241;a:1:{s:46:\"googlesitekit_cron_synchronize_ads_linked_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1731256422;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1731456000;a:1:{s:44:\"siteground_optimizer_performance_report_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:15:\"sg_once_a_month\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','yes'),
(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(118,'recovery_keys','a:0:{}','yes'),
(119,'theme_mods_twentytwentyone','a:4:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:6:\"footer\";i:3;}s:16:\"background_color\";s:6:\"fbc351\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1617074986;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','no'),
(120,'https_detection_errors','a:0:{}','yes'),
(148,'finished_updating_comment_type','1','yes'),
(155,'recently_activated','a:0:{}','yes'),
(156,'elementor_version','3.11.5','yes'),
(157,'elementor_install_history','a:14:{s:5:\"3.1.4\";i:1617074267;s:5:\"3.2.1\";i:1629379726;s:5:\"3.2.3\";i:1620841470;s:5:\"3.3.7\";i:1654398285;s:5:\"3.4.1\";i:1629379727;s:5:\"3.4.6\";i:1634727692;s:5:\"3.6.2\";i:1649102482;s:5:\"3.6.5\";i:1654398286;s:5:\"3.7.1\";i:1672959815;s:5:\"3.9.0\";i:1672959816;s:5:\"3.9.2\";i:1679656455;s:6:\"3.10.0\";i:1673476284;s:6:\"3.10.1\";i:1674124937;s:6:\"3.11.5\";i:1679656457;}','yes'),
(159,'_elementor_installed_time','1617074219','yes'),
(160,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:28:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:11:\"Link in Bio\";i:15;s:9:\"portfolio\";i:16;s:7:\"pricing\";i:17;s:15:\"product archive\";i:18;s:5:\"Quote\";i:19;s:15:\"Service Details\";i:20;s:8:\"services\";i:21;s:11:\"single page\";i:22;s:11:\"single post\";i:23;s:14:\"single product\";i:24;s:5:\"stats\";i:25;s:9:\"subscribe\";i:26;s:4:\"team\";i:27;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:28:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:11:\"Link in Bio\";i:15;s:9:\"portfolio\";i:16;s:7:\"pricing\";i:17;s:15:\"product archive\";i:18;s:5:\"Quote\";i:19;s:15:\"Service Details\";i:20;s:8:\"services\";i:21;s:11:\"single page\";i:22;s:11:\"single post\";i:23;s:14:\"single product\";i:24;s:5:\"stats\";i:25;s:9:\"subscribe\";i:26;s:4:\"team\";i:27;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-â€”-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),
(161,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:81:\"Introducing Site Mailer by Elementor: Improve Your WordPress Email Deliverability\";s:7:\"excerpt\";s:377:\"In the world of WordPress, managing transactional emails can be a real challenge. From emails landing in spam folders to issues with server configurations, ensuring your messages are delivered can feel overwhelming.\r\nEnter Site Mailer by Elementorâ€”a powerful plugin designed to solve your email deliverability issues with ease, eliminating the need for complex SMTP setups.\r\n\";s:7:\"created\";i:1727247060;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:123:\"https://elementor.com/blog/introducing-site-mailer/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:87:\"Introducing Elementor 3.24: Floating Bars, Variable Fonts, Enhanced CSS Loading & More!\";s:7:\"excerpt\";s:116:\"Elevate Your Websites with Floating Bars and Variable Fonts, Improve Performance with Enhanced CSS Loading and More!\";s:7:\"created\";i:1725891168;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:155:\"https://elementor.com/blog/elementor-324-floating-bars-variable-fonts-enhanced-css/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:81:\"Introducing Platinum Support: Your Ultimate Solution for Superior Website Support\";s:7:\"excerpt\";s:149:\"Introducing Platinum Support: Elevate your Elementor experience with dedicated expert assistance, faster response times, and 24/7 real human support.\";s:7:\"created\";i:1723108567;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:128:\"https://elementor.com/blog/introducing-platinum-support/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','off'),
(166,'elementor_pro_version','3.11.7','yes'),
(167,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(168,'_elementor_pro_installed_time','1617074267','yes'),
(169,'elementor_submissions_db_version','5','yes'),
(170,'elementor_connect_site_key','a7576c8703252387d27fb4331bf66a83','yes'),
(171,'elementor_allow_tracking','yes','yes'),
(172,'elementor_tracker_last_send','1729711674','yes'),
(173,'elementor_pro_license_key','ep-YB85kxhPI6n4D9UmfN1F1616877823ijYZhLE4DLFk','yes'),
(174,'_elementor_pro_license_data_fallback','a:2:{s:7:\"timeout\";i:1672656175;s:5:\"value\";s:149:\"{\"expires\":\"2023-09-08 23:29:52\",\"subscription_id\":10254663,\"success\":true,\"license\":\"valid\",\"subscriptions\":\"enable\",\"features\":[\"editor_comments\"]}\";}','no'),
(175,'_elementor_pro_license_data','a:2:{s:7:\"timeout\";i:1672612975;s:5:\"value\";s:149:\"{\"expires\":\"2023-09-08 23:29:52\",\"subscription_id\":10254663,\"success\":true,\"license\":\"valid\",\"subscriptions\":\"enable\",\"features\":[\"editor_comments\"]}\";}','no'),
(176,'_elementor_pro_api_requests_lock','a:2:{s:16:\"get_license_data\";i:1730204506;s:11:\"get_version\";i:1730135053;}','yes'),
(181,'elementor_active_kit','12','yes'),
(182,'elementor_fonts_manager_font_types','a:0:{}','yes'),
(183,'elementor_fonts_manager_fonts','a:0:{}','yes'),
(184,'elementor_custom_icon_sets_config','a:0:{}','yes'),
(185,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),
(186,'elementor_pro_theme_builder_conditions','a:4:{s:6:\"single\";a:2:{i:33971;a:1:{i:0;s:15:\"include/product\";}i:33174;a:1:{i:0;s:21:\"include/singular/post\";}}s:5:\"popup\";a:2:{i:30818;a:1:{i:0;s:15:\"include/general\";}i:19370;a:1:{i:0;s:15:\"include/general\";}}s:6:\"footer\";a:1:{i:577;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:43;a:1:{i:0;s:15:\"include/general\";}}}','yes'),
(190,'action_scheduler_hybrid_store_demarkation','25','yes'),
(191,'schema-ActionScheduler_StoreSchema','7.0.1693886770','yes'),
(192,'schema-ActionScheduler_LoggerSchema','3.0.1654395449','yes'),
(195,'woocommerce_schema_version','430','yes'),
(196,'woocommerce_store_address','22 Seymour Road','yes'),
(197,'woocommerce_store_address_2','Chatham','yes'),
(198,'woocommerce_store_city','Kent','yes'),
(199,'woocommerce_default_country','GB','yes'),
(200,'woocommerce_store_postcode','ME5 7AE','yes'),
(201,'woocommerce_allowed_countries','all','yes'),
(202,'woocommerce_all_except_countries','a:0:{}','yes'),
(203,'woocommerce_specific_allowed_countries','a:0:{}','yes'),
(204,'woocommerce_ship_to_countries','','yes'),
(205,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),
(206,'woocommerce_default_customer_address','base','yes'),
(207,'woocommerce_calc_taxes','no','yes'),
(208,'woocommerce_enable_coupons','yes','yes'),
(209,'woocommerce_calc_discounts_sequentially','no','no'),
(210,'woocommerce_currency','GBP','yes'),
(211,'woocommerce_currency_pos','left','yes'),
(212,'woocommerce_price_thousand_sep',',','yes'),
(213,'woocommerce_price_decimal_sep','.','yes'),
(214,'woocommerce_price_num_decimals','2','yes'),
(215,'woocommerce_shop_page_id','','yes'),
(216,'woocommerce_cart_redirect_after_add','yes','yes'),
(217,'woocommerce_enable_ajax_add_to_cart','yes','yes'),
(218,'woocommerce_placeholder_image','31718','yes'),
(219,'woocommerce_weight_unit','kg','yes'),
(220,'woocommerce_dimension_unit','cm','yes'),
(221,'woocommerce_enable_reviews','no','yes'),
(222,'woocommerce_review_rating_verification_label','yes','no'),
(223,'woocommerce_review_rating_verification_required','yes','no'),
(224,'woocommerce_enable_review_rating','yes','yes'),
(225,'woocommerce_review_rating_required','yes','no'),
(226,'woocommerce_manage_stock','yes','yes'),
(227,'woocommerce_hold_stock_minutes','10080','no'),
(228,'woocommerce_notify_low_stock','yes','no'),
(229,'woocommerce_notify_no_stock','yes','no'),
(230,'woocommerce_stock_email_recipient','ivankulongo@gmail.com','no'),
(231,'woocommerce_notify_low_stock_amount','2','no'),
(232,'woocommerce_notify_no_stock_amount','0','yes'),
(233,'woocommerce_hide_out_of_stock_items','no','yes'),
(234,'woocommerce_stock_format','','yes'),
(235,'woocommerce_file_download_method','force','no'),
(236,'woocommerce_downloads_require_login','no','no'),
(237,'woocommerce_downloads_grant_access_after_payment','yes','no'),
(238,'woocommerce_downloads_add_hash_to_filename','yes','yes'),
(239,'woocommerce_prices_include_tax','no','yes'),
(240,'woocommerce_tax_based_on','shipping','yes'),
(241,'woocommerce_shipping_tax_class','inherit','yes'),
(242,'woocommerce_tax_round_at_subtotal','no','yes'),
(243,'woocommerce_tax_classes','','yes'),
(244,'woocommerce_tax_display_shop','excl','yes'),
(245,'woocommerce_tax_display_cart','excl','yes'),
(246,'woocommerce_price_display_suffix','','yes'),
(247,'woocommerce_tax_total_display','itemized','no'),
(248,'woocommerce_enable_shipping_calc','yes','no'),
(249,'woocommerce_shipping_cost_requires_address','no','yes'),
(250,'woocommerce_ship_to_destination','billing','no'),
(251,'woocommerce_shipping_debug_mode','no','yes'),
(252,'woocommerce_enable_guest_checkout','yes','no'),
(253,'woocommerce_enable_checkout_login_reminder','yes','no'),
(254,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),
(255,'woocommerce_enable_myaccount_registration','no','no'),
(256,'woocommerce_registration_generate_username','yes','no'),
(257,'woocommerce_registration_generate_password','yes','no'),
(258,'woocommerce_erasure_request_removes_order_data','no','no'),
(259,'woocommerce_erasure_request_removes_download_data','no','no'),
(260,'woocommerce_allow_bulk_remove_personal_data','no','no'),
(261,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),
(262,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),
(263,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),
(264,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),
(265,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),
(266,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),
(267,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),
(268,'woocommerce_email_from_name','Choice Resources','no'),
(269,'woocommerce_email_from_address','Info@choiceresources.co.uk','no'),
(270,'woocommerce_email_header_image','','no'),
(271,'woocommerce_email_footer_text','Choiceresources.co.uk','no'),
(272,'woocommerce_email_base_color','#5bc0de','no'),
(273,'woocommerce_email_background_color','#f7f7f7','no'),
(274,'woocommerce_email_body_background_color','#ffffff','no'),
(275,'woocommerce_email_text_color','#3c3c3c','no'),
(276,'woocommerce_merchant_email_notifications','no','no'),
(277,'woocommerce_cart_page_id','27','no'),
(278,'woocommerce_checkout_page_id','28','no'),
(279,'woocommerce_myaccount_page_id','19564','no'),
(280,'woocommerce_terms_page_id','','no'),
(281,'woocommerce_force_ssl_checkout','no','yes'),
(282,'woocommerce_unforce_ssl_checkout','no','yes'),
(283,'woocommerce_checkout_pay_endpoint','order-pay','yes'),
(284,'woocommerce_checkout_order_received_endpoint','order-received','yes'),
(285,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),
(286,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),
(287,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),
(288,'woocommerce_myaccount_orders_endpoint','orders','yes'),
(289,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),
(290,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),
(291,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),
(292,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),
(293,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),
(294,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),
(295,'woocommerce_logout_endpoint','customer-logout','yes'),
(296,'woocommerce_api_enabled','no','yes'),
(297,'woocommerce_allow_tracking','no','no'),
(298,'woocommerce_show_marketplace_suggestions','yes','no'),
(299,'woocommerce_single_image_width','399','yes'),
(300,'woocommerce_thumbnail_image_width','300','yes'),
(301,'woocommerce_checkout_highlight_required_fields','yes','yes'),
(302,'woocommerce_demo_store','no','yes'),
(303,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:8:\"/product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),
(304,'current_theme_supports_woocommerce','yes','yes'),
(305,'woocommerce_queue_flush_rewrite_rules','no','yes'),
(308,'default_product_cat','25','yes'),
(311,'woocommerce_version','8.5.2','yes'),
(312,'woocommerce_db_version','7.2.3','yes'),
(316,'_transient_jetpack_autoloader_plugin_paths','a:2:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";i:1;s:38:\"{{WP_PLUGIN_DIR}}/woocommerce-payments\";}','yes'),
(317,'action_scheduler_lock_async-request-runner','6720eb6c385106.37065665|1730210728','yes'),
(318,'woocommerce_admin_notices','a:1:{i:0;s:6:\"update\";}','yes'),
(319,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"8qZ4mU0AoHomgr8UKOtzVBUd90U82yd4\";}','yes'),
(320,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),
(321,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(322,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(323,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(324,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(325,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(326,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(327,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(328,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(329,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(330,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(331,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(332,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(336,'woocommerce_admin_install_timestamp','1617074775','yes'),
(341,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":3:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;s:17:\"new_product_count\";i:0;}','yes'),
(343,'wc_blocks_db_schema_version','260','yes'),
(344,'woocommerce_meta_box_errors','a:0:{}','yes'),
(348,'_transient_woocommerce_reports-transient-version','1720567178','yes'),
(360,'woocommerce_onboarding_profile','a:9:{s:12:\"setup_client\";b:0;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:22:\"education-and-learning\";}}s:13:\"product_types\";a:2:{i:0;s:8:\"physical\";i:1;s:9:\"downloads\";}s:13:\"product_count\";s:5:\"1000+\";s:14:\"selling_venues\";s:2:\"no\";s:19:\"business_extensions\";a:4:{i:0;s:24:\"facebook-for-woocommerce\";i:1;s:25:\"mailchimp-for-woocommerce\";i:2;s:33:\"creative-mail-by-constant-contact\";i:3;s:27:\"kliken-marketing-for-google\";}s:5:\"theme\";s:10:\"storefront\";s:7:\"plugins\";s:7:\"skipped\";s:9:\"completed\";b:1;}','yes'),
(380,'ce4wp_handshake_token','D9B63D52-3BA0-4530-B8E6-5D0DCAA0543D','yes'),
(381,'ce4wp_handshake_expiration','1654648403','yes'),
(382,'ce4wp_instance_uuid','60629ac603c80','yes'),
(383,'ce4wp_referred_by','a:4:{s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:5:\"5.1.0\";s:4:\"time\";i:1617074888;s:6:\"source\";s:10:\"onboarding\";}','yes'),
(384,'facebook_config','a:4:{s:8:\"pixel_id\";s:1:\"0\";s:7:\"use_pii\";b:1;s:7:\"use_s2s\";b:0;s:12:\"access_token\";s:0:\"\";}','yes'),
(385,'ce4wp_abandoned_checkout_db_version','1.0','yes'),
(391,'current_theme','Hello Elementor','yes'),
(392,'theme_switched','','yes'),
(393,'theme_mods_storefront','a:4:{s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:9:\"secondary\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:362;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1617549089;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:8:\"search-2\";}s:8:\"header-1\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','no'),
(394,'woocommerce_catalog_rows','8','yes'),
(395,'woocommerce_catalog_columns','4','yes'),
(396,'woocommerce_maybe_regenerate_images_hash','9d2e39b14862791c06bebecb9da15776','yes'),
(398,'storefront_nux_fresh_site','0','yes'),
(402,'wc_facebook_for_woocommerce_lifecycle_events','[{\"name\":\"install\",\"time\":1617075002,\"version\":\"2.3.3\"}]','no'),
(403,'wc_facebook_for_woocommerce_version','2.3.3','yes'),
(417,'woocommerce_task_list_tracked_completed_tasks','a:8:{i:0;s:13:\"store_details\";i:1;s:8:\"products\";i:2;s:8:\"payments\";i:3;s:8:\"purchase\";i:4;s:14:\"store_creation\";i:5;s:8:\"shipping\";i:6;s:15:\"review-shipping\";i:7;s:20:\"woocommerce-payments\";}','yes'),
(418,'woocommerce_task_list_welcome_modal_dismissed','yes','yes'),
(421,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:28:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:9:{s:4:\"slug\";s:24:\"product-edit-automatewoo\";s:7:\"product\";s:11:\"automatewoo\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:23:\"Automate your marketing\";s:4:\"copy\";s:89:\"Win customers and keep them coming back with a nearly endless range of powerful workflows\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:11:\"WooPayments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard â€“ no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/woopayments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:19;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:22;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1730149098;}','off'),
(425,'_transient_product_query-transient-version','1730134955','yes'),
(426,'_transient_product-transient-version','1728230382','yes'),
(427,'wc_facebook_background_product_sync_job_ed9b86aca5c25dc7ddb2756c185baece','{\"requests\":{\"p-30\":\"UPDATE\"},\"id\":\"ed9b86aca5c25dc7ddb2756c185baece\",\"created_at\":\"2021-03-30 03:33:21\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-03-30 03:33:22\",\"updated_at\":\"2021-03-30 03:33:22\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-03-30 03:33:22\"}','no'),
(432,'wc_facebook_background_product_sync_job_f234e69b02f8f86222c537eba3e945d1','{\"requests\":{\"p-34\":\"UPDATE\"},\"id\":\"f234e69b02f8f86222c537eba3e945d1\",\"created_at\":\"2021-03-30 03:35:23\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-03-30 03:35:24\",\"updated_at\":\"2021-03-30 03:35:24\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-03-30 03:35:24\"}','no'),
(437,'wc_facebook_background_product_sync_job_846157140ee6825472685d23fbde7f33','{\"requests\":{\"p-37\":\"UPDATE\"},\"id\":\"846157140ee6825472685d23fbde7f33\",\"created_at\":\"2021-03-30 03:37:27\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-03-30 03:37:28\",\"updated_at\":\"2021-03-30 03:37:28\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-03-30 03:37:28\"}','no'),
(442,'wc_facebook_background_product_sync_job_96eb96992a3e724e1ca835f0f2b8602e','{\"requests\":{\"p-40\":\"UPDATE\"},\"id\":\"96eb96992a3e724e1ca835f0f2b8602e\",\"created_at\":\"2021-03-30 03:39:18\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-03-30 03:39:18\",\"updated_at\":\"2021-03-30 03:39:19\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-03-30 03:39:19\"}','no'),
(456,'elementor_log','a:42:{s:32:\"05708de363d594dba104a279429ac320\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-24 11:14:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.1\";s:2:\"to\";s:6:\"3.11.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-24 11:14:17\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.1\";s:2:\"to\";s:6:\"3.11.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"cbdce41b68cfa27d17f159fc51b69186\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-24 11:14:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.9.2\";s:2:\"to\";s:6:\"3.11.7\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-24 11:14:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.9.2\";s:2:\"to\";s:6:\"3.11.7\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"e017dc3232098eb2f9b382818164664b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-03-24 11:14:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.1\";s:2:\"to\";s:6:\"3.11.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-03-24 11:14:19\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.10.1\";s:2:\"to\";s:6:\"3.11.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"dcbc7e52f22349262f18e78425bc839b\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-03-24 17:22:57\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:26:\"p.splice is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:5;s:14:\"\0*\0times_dates\";a:5:{i:0;s:19:\"2023-03-24 17:22:57\";i:1;s:19:\"2023-03-24 17:33:00\";i:2;s:19:\"2023-03-24 17:33:14\";i:3;s:19:\"2023-03-24 17:48:27\";i:4;s:19:\"2023-03-24 18:21:17\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1679678577\";s:7:\"message\";s:26:\"p.splice is not a function\";s:3:\"url\";s:104:\"https://choiceresources.co.uk/wp-content/uploads/essential-addons-elementor/eael-10099.js?ver=1679678552\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:5:\"63234\";}s:7:\"\0*\0file\";s:104:\"https://choiceresources.co.uk/wp-content/uploads/essential-addons-elementor/eael-10099.js?ver=1679678552\";s:7:\"\0*\0line\";s:1:\"1\";s:9:\"\0*\0column\";s:5:\"63234\";}s:32:\"aa471956ee7b703d174f6a9326543486\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-04-03 07:03:56\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:63:\"Cannot read properties of undefined (reading &#039;ratio&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2023-04-03 07:03:56\";i:1;s:19:\"2023-04-03 07:08:01\";i:2;s:19:\"2023-04-03 07:11:43\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1680505436\";s:7:\"message\";s:53:\"Cannot read properties of undefined (reading \'ratio\')\";s:3:\"url\";s:99:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"11157\";}s:7:\"\0*\0file\";s:99:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"11157\";}s:32:\"41f5945b586ad407707be9f7ea38d501\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2023-05-16 09:18:14\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:19:\"Undefined offset: 1\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1412;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2023-08-28 13:35:06\";i:1;s:19:\"2023-08-28 13:37:43\";i:2;s:19:\"2023-08-28 15:01:03\";i:3;s:19:\"2023-08-30 10:24:51\";i:4;s:19:\"2023-08-30 10:28:21\";i:5;s:19:\"2023-08-30 13:47:32\";i:6;s:19:\"2023-08-30 14:11:41\";i:7;s:19:\"2023-08-30 14:33:26\";i:8;s:19:\"2023-08-31 17:11:09\";i:9;s:19:\"2023-08-31 20:22:09\";i:10;s:19:\"2023-08-31 22:42:24\";i:11;s:19:\"2023-09-01 10:08:25\";i:12;s:19:\"2023-09-01 12:52:35\";i:13;s:19:\"2023-09-01 12:53:34\";i:14;s:19:\"2023-09-01 13:46:47\";i:15;s:19:\"2023-09-01 13:48:25\";i:16;s:19:\"2023-09-01 13:49:49\";i:17;s:19:\"2023-09-01 13:53:18\";i:18;s:19:\"2023-09-01 14:15:53\";i:19;s:19:\"2023-09-01 16:08:51\";i:20;s:19:\"2023-09-01 17:12:47\";i:21;s:19:\"2023-09-01 17:18:08\";i:22;s:19:\"2023-09-01 17:18:09\";i:23;s:19:\"2023-09-01 17:25:36\";i:24;s:19:\"2023-09-01 17:25:38\";i:25;s:19:\"2023-09-01 17:28:39\";i:26;s:19:\"2023-09-01 17:28:41\";i:27;s:19:\"2023-09-01 17:30:29\";i:28;s:19:\"2023-09-01 17:30:30\";i:29;s:19:\"2023-09-01 17:50:59\";i:30;s:19:\"2023-09-01 18:47:30\";i:31;s:19:\"2023-09-01 18:47:31\";i:32;s:19:\"2023-09-02 00:53:00\";i:33;s:19:\"2023-09-02 04:38:15\";i:34;s:19:\"2023-09-02 17:14:47\";i:35;s:19:\"2023-09-02 22:52:25\";i:36;s:19:\"2023-09-03 02:17:17\";i:37;s:19:\"2023-09-03 04:29:44\";i:38;s:19:\"2023-09-03 09:46:50\";i:39;s:19:\"2023-09-03 12:26:31\";i:40;s:19:\"2023-09-03 20:44:41\";i:41;s:19:\"2023-09-04 23:00:14\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:19:\"Undefined offset: 1\";s:4:\"file\";s:100:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/woocommerce/module.php\";s:4:\"line\";i:381;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:100:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/woocommerce/module.php\";s:7:\"\0*\0line\";i:381;}s:32:\"ce5c89866a80fdbd9f53036be2e553d5\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-06-12 00:16:38\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:61:\"Cannot read properties of null (reading &#039;scrollTo&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-06-12 00:16:38\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1686528998\";s:7:\"message\";s:51:\"Cannot read properties of null (reading \'scrollTo\')\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.12.1\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"143683\";}s:7:\"\0*\0file\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.12.1\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"143683\";}s:32:\"f2793a234a6a6e2287e5a50c64e7a173\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-06-12 17:06:05\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:65:\"Cannot read properties of undefined (reading &#039;closest&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:60;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2024-03-13 12:06:29\";i:1;s:19:\"2024-03-13 12:07:07\";i:2;s:19:\"2024-03-13 12:26:17\";i:3;s:19:\"2024-03-13 22:38:27\";i:4;s:19:\"2024-03-13 22:40:39\";i:5;s:19:\"2024-03-13 23:11:06\";i:6;s:19:\"2024-03-13 23:15:51\";i:7;s:19:\"2024-03-17 06:36:24\";i:8;s:19:\"2024-03-17 06:37:09\";i:9;s:19:\"2024-03-17 06:41:12\";i:10;s:19:\"2024-03-17 10:01:02\";i:11;s:19:\"2024-03-17 10:30:50\";i:12;s:19:\"2024-03-17 10:33:22\";i:13;s:19:\"2024-03-20 12:45:26\";i:14;s:19:\"2024-03-20 12:46:02\";i:15;s:19:\"2024-03-20 16:36:47\";i:16;s:19:\"2024-03-20 16:37:07\";i:17;s:19:\"2024-03-20 16:37:51\";i:18;s:19:\"2024-03-20 18:23:32\";i:19;s:19:\"2024-03-20 18:35:10\";i:20;s:19:\"2024-03-20 18:50:02\";i:21;s:19:\"2024-03-20 19:46:46\";i:22;s:19:\"2024-03-20 19:49:34\";i:23;s:19:\"2024-03-20 21:01:26\";i:24;s:19:\"2024-03-20 22:53:12\";i:25;s:19:\"2024-03-20 22:55:24\";i:26;s:19:\"2024-03-21 11:48:56\";i:27;s:19:\"2024-03-21 12:18:24\";i:28;s:19:\"2024-03-21 12:18:42\";i:29;s:19:\"2024-03-21 12:32:08\";i:30;s:19:\"2024-03-21 13:17:22\";i:31;s:19:\"2024-03-21 13:20:40\";i:32;s:19:\"2024-03-21 13:21:06\";i:33;s:19:\"2024-03-21 13:26:35\";i:34;s:19:\"2024-03-21 13:27:24\";i:35;s:19:\"2024-03-21 13:31:22\";i:36;s:19:\"2024-03-21 13:35:42\";i:37;s:19:\"2024-03-21 13:39:03\";i:38;s:19:\"2024-03-21 13:39:10\";i:39;s:19:\"2024-03-24 15:12:02\";i:40;s:19:\"2024-04-03 12:43:40\";i:41;s:19:\"2024-04-23 18:19:12\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1686589565\";s:7:\"message\";s:55:\"Cannot read properties of undefined (reading \'closest\')\";s:3:\"url\";s:95:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.12.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"28093\";}s:7:\"\0*\0file\";s:95:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.12.1\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"28093\";}s:32:\"6699039d8a02ed43f77b1b67b71246be\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-07-27 15:08:13\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:61:\"Cannot read properties of undefined (reading &#039;css&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2023-07-27 15:08:13\";i:1;s:19:\"2024-03-17 08:00:13\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1690470493\";s:7:\"message\";s:51:\"Cannot read properties of undefined (reading \'css\')\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.12.1\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"283471\";}s:7:\"\0*\0file\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.12.1\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"283471\";}s:32:\"3b35a0115689aa89973b54192672f3a1\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-08-04 22:08:25\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:59:\"Cannot read properties of null (reading &#039;inline&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-04 22:08:25\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1691186905\";s:7:\"message\";s:49:\"Cannot read properties of null (reading \'inline\')\";s:3:\"url\";s:98:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"20189\";}s:7:\"\0*\0file\";s:98:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"20189\";}s:32:\"0901b7e51b4280e3653b1f4acdad2300\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-08-05 19:42:27\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:63:\"Cannot read properties of undefined (reading &#039;route&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2023-08-05 19:42:27\";i:1;s:19:\"2023-08-05 19:42:31\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1691264547\";s:7:\"message\";s:53:\"Cannot read properties of undefined (reading \'route\')\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.12.1\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"901849\";}s:7:\"\0*\0file\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.12.1\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"901849\";}s:32:\"74ea7448893b15fc9c79a63ef77dc244\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-09-01 17:28:41\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:60:\"Cannot read properties of null (reading &#039;history&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:102;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2024-02-14 12:29:46\";i:1;s:19:\"2024-02-14 12:29:46\";i:2;s:19:\"2024-02-14 12:29:46\";i:3;s:19:\"2024-02-14 12:29:46\";i:4;s:19:\"2024-02-14 12:29:47\";i:5;s:19:\"2024-02-14 12:29:47\";i:6;s:19:\"2024-02-14 12:29:47\";i:7;s:19:\"2024-02-14 12:29:47\";i:8;s:19:\"2024-02-14 12:29:47\";i:9;s:19:\"2024-02-14 12:29:47\";i:10;s:19:\"2024-02-14 12:29:47\";i:11;s:19:\"2024-02-14 12:29:47\";i:12;s:19:\"2024-02-14 12:29:47\";i:13;s:19:\"2024-02-14 12:29:47\";i:14;s:19:\"2024-02-14 12:29:47\";i:15;s:19:\"2024-02-14 12:29:47\";i:16;s:19:\"2024-02-14 12:29:47\";i:17;s:19:\"2024-02-14 12:29:47\";i:18;s:19:\"2024-02-14 12:29:47\";i:19;s:19:\"2024-02-14 12:29:47\";i:20;s:19:\"2024-02-14 12:29:47\";i:21;s:19:\"2024-02-14 12:29:47\";i:22;s:19:\"2024-02-14 12:29:47\";i:23;s:19:\"2024-02-14 12:29:47\";i:24;s:19:\"2024-02-14 12:29:47\";i:25;s:19:\"2024-02-14 12:29:47\";i:26;s:19:\"2024-02-14 12:29:47\";i:27;s:19:\"2024-02-14 12:29:47\";i:28;s:19:\"2024-02-14 12:29:47\";i:29;s:19:\"2024-02-14 12:29:47\";i:30;s:19:\"2024-02-14 12:29:47\";i:31;s:19:\"2024-02-14 12:29:47\";i:32;s:19:\"2024-02-14 12:29:47\";i:33;s:19:\"2024-02-14 12:30:04\";i:34;s:19:\"2024-02-14 12:30:05\";i:35;s:19:\"2024-02-14 12:30:05\";i:36;s:19:\"2024-02-14 12:30:05\";i:37;s:19:\"2024-02-14 12:30:05\";i:38;s:19:\"2024-02-14 12:30:05\";i:39;s:19:\"2024-02-14 12:30:50\";i:40;s:19:\"2024-02-14 12:31:11\";i:41;s:19:\"2024-02-14 12:31:26\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1693589321\";s:7:\"message\";s:50:\"Cannot read properties of null (reading \'history\')\";s:3:\"url\";s:102:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor-document.min.js?ver=3.12.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:4:\"4095\";}s:7:\"\0*\0file\";s:102:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor-document.min.js?ver=3.12.1\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:4:\"4095\";}s:32:\"1c366e6abf0c0ab4a046e237f557f878\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-09-01 17:32:28\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:43:\"elementor.elements.toJSON is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:8;s:14:\"\0*\0times_dates\";a:8:{i:0;s:19:\"2023-09-01 17:32:28\";i:1;s:19:\"2023-09-01 17:32:32\";i:2;s:19:\"2023-09-01 17:32:36\";i:3;s:19:\"2023-09-01 17:32:36\";i:4;s:19:\"2023-09-01 17:32:36\";i:5;s:19:\"2023-09-01 17:32:36\";i:6;s:19:\"2023-09-01 17:32:37\";i:7;s:19:\"2023-09-01 17:32:43\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1693589548\";s:7:\"message\";s:43:\"elementor.elements.toJSON is not a function\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.12.1\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"211322\";}s:7:\"\0*\0file\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.12.1\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"211322\";}s:32:\"2cdc1cc89816556d75e041c4694fdc89\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2023-09-05 04:05:36\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1089:\"Uncaught Error: Class &#039;Elementor\\Modules\\Ai\\Module&#039; not found in /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/modules-manager.php:53\nStack trace:\n#0 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/plugin.php(730): Elementor\\Core\\Modules_Manager-&gt;__construct()\n#1 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/plugin.php(647): Elementor\\Plugin-&gt;init_components()\n#2 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(310): Elementor\\Plugin-&gt;init(&#039;&#039;)\n#3 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(334): WP_Hook-&gt;apply_filters(NULL, Array)\n#4 /home/onetruew/choiceresources.co.uk/wp-includes/plugin.php(517): WP_Hook-&gt;do_action(Array)\n#5 /home/onetruew/choiceresources.co.uk/wp-settings.php(632): do_action(&#039;init&#039;)\n#6 /home/onetruew/choiceresources.co.uk/wp-config.php(86): require_once(&#039;/home/onetruew/...&#039;)\n#7 /home/onetruew/choiceresources.co.uk/wp-load.php(50): require_once(&#039;/home/onetruew/...&#039;)\n#8 /\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-09-05 04:05:36\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1024:\"Uncaught Error: Class \'Elementor\\Modules\\Ai\\Module\' not found in /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/modules-manager.php:53\nStack trace:\n#0 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/plugin.php(730): Elementor\\Core\\Modules_Manager->__construct()\n#1 /home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/plugin.php(647): Elementor\\Plugin->init_components()\n#2 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(310): Elementor\\Plugin->init(\'\')\n#3 /home/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(334): WP_Hook->apply_filters(NULL, Array)\n#4 /home/onetruew/choiceresources.co.uk/wp-includes/plugin.php(517): WP_Hook->do_action(Array)\n#5 /home/onetruew/choiceresources.co.uk/wp-settings.php(632): do_action(\'init\')\n#6 /home/onetruew/choiceresources.co.uk/wp-config.php(86): require_once(\'/home/onetruew/...\')\n#7 /home/onetruew/choiceresources.co.uk/wp-load.php(50): require_once(\'/home/onetruew/...\')\n#8 /\";s:4:\"file\";s:90:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/modules-manager.php\";s:4:\"line\";i:53;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:90:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/modules-manager.php\";s:7:\"\0*\0line\";i:53;}s:32:\"7eba2ec85cd008299e3ea5c46e82492f\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-09-17 22:22:11\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:67:\"Cannot read properties of undefined (reading &#039;localized&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:58;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2023-11-10 22:59:05\";i:1;s:19:\"2023-11-10 22:59:05\";i:2;s:19:\"2023-11-10 22:59:05\";i:3;s:19:\"2023-11-10 22:59:05\";i:4;s:19:\"2023-11-10 22:59:06\";i:5;s:19:\"2023-11-10 22:59:06\";i:6;s:19:\"2023-11-10 22:59:06\";i:7;s:19:\"2023-11-10 22:59:06\";i:8;s:19:\"2023-11-10 22:59:10\";i:9;s:19:\"2023-11-10 22:59:14\";i:10;s:19:\"2023-11-17 15:42:45\";i:11;s:19:\"2023-11-26 23:42:10\";i:12;s:19:\"2024-04-24 15:42:35\";i:13;s:19:\"2024-04-24 15:42:35\";i:14;s:19:\"2024-05-08 13:49:08\";i:15;s:19:\"2024-05-08 13:49:08\";i:16;s:19:\"2024-05-08 13:49:08\";i:17;s:19:\"2024-05-08 13:49:08\";i:18;s:19:\"2024-05-08 13:49:08\";i:19;s:19:\"2024-05-08 13:49:08\";i:20;s:19:\"2024-05-08 13:51:07\";i:21;s:19:\"2024-05-08 13:51:08\";i:22;s:19:\"2024-05-08 13:51:08\";i:23;s:19:\"2024-05-08 13:51:08\";i:24;s:19:\"2024-05-08 13:51:08\";i:25;s:19:\"2024-05-08 13:51:08\";i:26;s:19:\"2024-05-08 13:51:08\";i:27;s:19:\"2024-05-08 13:51:09\";i:28;s:19:\"2024-05-08 13:51:09\";i:29;s:19:\"2024-05-08 13:51:15\";i:30;s:19:\"2024-05-08 18:15:54\";i:31;s:19:\"2024-05-08 18:15:54\";i:32;s:19:\"2024-05-09 17:41:42\";i:33;s:19:\"2024-05-09 17:41:42\";i:34;s:19:\"2024-05-09 17:41:42\";i:35;s:19:\"2024-05-09 17:41:42\";i:36;s:19:\"2024-05-09 17:41:42\";i:37;s:19:\"2024-05-09 17:41:42\";i:38;s:19:\"2024-05-09 17:41:42\";i:39;s:19:\"2024-05-09 17:41:42\";i:40;s:19:\"2024-05-09 17:41:42\";i:41;s:19:\"2024-05-09 17:41:42\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1694989331\";s:7:\"message\";s:57:\"Cannot read properties of undefined (reading \'localized\')\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.16.3\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"804285\";}s:7:\"\0*\0file\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.16.3\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"804285\";}s:32:\"1a48d9e9962fdab7a00bd435a4e1ad19\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2023-09-25 05:42:37\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:465555;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2024-07-05 21:11:15\";i:1;s:19:\"2024-07-05 21:11:39\";i:2;s:19:\"2024-07-05 21:11:46\";i:3;s:19:\"2024-07-09 20:37:58\";i:4;s:19:\"2024-07-09 20:38:44\";i:5;s:19:\"2024-07-09 20:39:29\";i:6;s:19:\"2024-07-09 20:48:50\";i:7;s:19:\"2024-07-09 22:05:52\";i:8;s:19:\"2024-07-09 22:50:50\";i:9;s:19:\"2024-07-09 22:51:38\";i:10;s:19:\"2024-07-09 22:54:54\";i:11;s:19:\"2024-07-09 22:55:26\";i:12;s:19:\"2024-07-09 22:58:38\";i:13;s:19:\"2024-07-09 23:10:58\";i:14;s:19:\"2024-07-10 07:36:40\";i:15;s:19:\"2024-07-10 07:36:45\";i:16;s:19:\"2024-07-10 07:59:21\";i:17;s:19:\"2024-07-10 07:59:52\";i:18;s:19:\"2024-07-10 08:00:45\";i:19;s:19:\"2024-07-10 08:01:02\";i:20;s:19:\"2024-07-10 08:12:01\";i:21;s:19:\"2024-07-10 08:15:19\";i:22;s:19:\"2024-07-10 08:40:23\";i:23;s:19:\"2024-07-10 09:21:19\";i:24;s:19:\"2024-07-10 09:21:29\";i:25;s:19:\"2024-07-10 09:22:35\";i:26;s:19:\"2024-07-10 09:56:24\";i:27;s:19:\"2024-07-10 09:56:43\";i:28;s:19:\"2024-07-10 12:51:19\";i:29;s:19:\"2024-07-16 16:33:16\";i:30;s:19:\"2024-07-16 16:44:29\";i:31;s:19:\"2024-07-17 12:35:59\";i:32;s:19:\"2024-07-17 12:40:27\";i:33;s:19:\"2024-07-17 13:42:53\";i:34;s:19:\"2024-07-17 15:41:56\";i:35;s:19:\"2024-07-17 21:59:06\";i:36;s:19:\"2024-07-17 22:28:38\";i:37;s:19:\"2024-07-17 22:47:00\";i:38;s:19:\"2024-07-21 15:05:31\";i:39;s:19:\"2024-07-24 16:42:18\";i:40;s:19:\"2024-07-24 17:12:14\";i:41;s:19:\"2024-07-25 08:37:01\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:110:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php\";s:4:\"line\";i:32;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:110:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php\";s:7:\"\0*\0line\";i:32;}s:32:\"2b78b5cea93736dd176f8d6b681c3799\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2023-10-06 11:16:33\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:110:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php\";s:4:\"line\";i:32;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:97:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/dynamic-tags/data-tag.php\";s:4:\"line\";i:44;s:8:\"function\";s:9:\"get_value\";s:5:\"class\";s:47:\"ElementorPro\\Modules\\DynamicTags\\Tags\\Site_Logo\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:96:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/dynamic-tags/manager.php\";s:4:\"line\";i:216;s:8:\"function\";s:11:\"get_content\";s:5:\"class\";s:35:\"Elementor\\Core\\DynamicTags\\Data_Tag\";s:4:\"type\";s:2:\"->\";}i:3;a:3:{s:8:\"function\";s:20:\"get_tag_data_content\";s:5:\"class\";s:34:\"Elementor\\Core\\DynamicTags\\Manager\";s:4:\"type\";s:2:\"->\";}i:4;a:3:{s:4:\"file\";s:96:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/dynamic-tags/manager.php\";s:4:\"line\";i:109;s:8:\"function\";s:20:\"call_user_func_array\";}}}s:8:\"\0*\0times\";i:231;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2023-11-17 13:08:21\";i:1;s:19:\"2023-11-17 13:08:46\";i:2;s:19:\"2023-11-17 13:09:01\";i:3;s:19:\"2023-11-17 13:09:25\";i:4;s:19:\"2023-11-17 13:09:32\";i:5;s:19:\"2023-11-17 13:13:49\";i:6;s:19:\"2023-11-17 13:14:18\";i:7;s:19:\"2023-11-17 13:14:52\";i:8;s:19:\"2023-11-17 13:19:36\";i:9;s:19:\"2023-11-17 13:20:00\";i:10;s:19:\"2023-11-17 13:21:15\";i:11;s:19:\"2023-11-17 13:21:30\";i:12;s:19:\"2023-11-17 13:45:10\";i:13;s:19:\"2023-11-17 15:06:07\";i:14;s:19:\"2023-11-25 22:44:20\";i:15;s:19:\"2023-11-25 22:44:20\";i:16;s:19:\"2023-11-25 23:04:00\";i:17;s:19:\"2023-11-26 14:25:56\";i:18;s:19:\"2023-11-26 14:25:57\";i:19;s:19:\"2023-11-26 14:26:06\";i:20;s:19:\"2023-11-26 14:26:08\";i:21;s:19:\"2023-11-26 14:26:10\";i:22;s:19:\"2023-11-26 15:21:16\";i:23;s:19:\"2023-11-26 15:21:29\";i:24;s:19:\"2023-11-26 15:21:36\";i:25;s:19:\"2023-11-26 19:05:36\";i:26;s:19:\"2023-11-26 19:05:44\";i:27;s:19:\"2023-11-26 19:05:44\";i:28;s:19:\"2023-11-26 22:50:37\";i:29;s:19:\"2023-11-26 22:50:56\";i:30;s:19:\"2023-11-26 23:47:13\";i:31;s:19:\"2023-11-26 23:47:57\";i:32;s:19:\"2023-11-26 23:48:56\";i:33;s:19:\"2023-11-26 23:51:29\";i:34;s:19:\"2023-11-26 23:51:56\";i:35;s:19:\"2023-11-27 01:34:49\";i:36;s:19:\"2023-11-27 01:34:56\";i:37;s:19:\"2023-11-27 14:58:40\";i:38;s:19:\"2023-11-27 15:01:37\";i:39;s:19:\"2023-11-27 15:03:46\";i:40;s:19:\"2023-11-27 15:05:23\";i:41;s:19:\"2023-11-27 15:11:23\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:110:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php\";s:4:\"line\";i:32;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:110:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php\";s:7:\"\0*\0line\";i:32;}s:32:\"634761a4c2d5f98279ed25eaf0a5cfca\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2023-10-10 22:04:54\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:31:\"Undefined index: condition_type\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:128:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:150;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:8:\"function\";s:28:\"normalize_template_json_item\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:2;a:3:{s:4:\"file\";s:128:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:120;s:8:\"function\";s:9:\"array_map\";}i:3;a:5:{s:4:\"file\";s:128:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:59;s:8:\"function\";s:24:\"normalize_templates_json\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:89:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/data/base/endpoint.php\";s:4:\"line\";i:158;s:8:\"function\";s:9:\"get_items\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:20;s:14:\"\0*\0times_dates\";a:20:{i:0;s:19:\"2023-10-10 22:04:54\";i:1;s:19:\"2023-10-10 22:04:54\";i:2;s:19:\"2023-10-10 22:04:54\";i:3;s:19:\"2023-10-10 22:04:54\";i:4;s:19:\"2023-10-10 22:04:54\";i:5;s:19:\"2023-11-15 16:25:22\";i:6;s:19:\"2023-11-15 16:25:22\";i:7;s:19:\"2023-11-15 16:25:22\";i:8;s:19:\"2023-11-15 16:25:22\";i:9;s:19:\"2023-11-15 16:25:22\";i:10;s:19:\"2023-11-16 10:54:08\";i:11;s:19:\"2023-11-16 10:54:08\";i:12;s:19:\"2023-11-16 10:54:08\";i:13;s:19:\"2023-11-16 10:54:08\";i:14;s:19:\"2023-11-16 10:54:08\";i:15;s:19:\"2023-11-16 20:37:23\";i:16;s:19:\"2023-11-16 20:37:23\";i:17;s:19:\"2023-11-16 20:37:23\";i:18;s:19:\"2023-11-16 20:37:23\";i:19;s:19:\"2023-11-16 20:37:23\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:31:\"Undefined index: condition_type\";s:4:\"file\";s:128:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:150;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:128:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:7:\"\0*\0line\";i:150;}s:32:\"38d2745972e53e9e3b57c783bf055a52\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2023-10-28 22:08:55\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:474;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2023-10-28 23:34:09\";i:1;s:19:\"2023-10-28 23:34:24\";i:2;s:19:\"2023-10-28 23:34:26\";i:3;s:19:\"2023-10-28 23:34:38\";i:4;s:19:\"2023-10-28 23:34:50\";i:5;s:19:\"2023-10-28 23:34:52\";i:6;s:19:\"2023-10-28 23:34:56\";i:7;s:19:\"2023-10-28 23:35:05\";i:8;s:19:\"2023-10-28 23:35:10\";i:9;s:19:\"2023-10-28 23:35:14\";i:10;s:19:\"2023-10-28 23:35:17\";i:11;s:19:\"2023-10-28 23:35:39\";i:12;s:19:\"2023-10-28 23:35:46\";i:13;s:19:\"2023-10-28 23:36:04\";i:14;s:19:\"2023-10-28 23:36:19\";i:15;s:19:\"2023-10-28 23:36:21\";i:16;s:19:\"2023-10-28 23:36:26\";i:17;s:19:\"2023-10-28 23:36:40\";i:18;s:19:\"2023-10-28 23:36:58\";i:19;s:19:\"2023-10-28 23:37:15\";i:20;s:19:\"2023-10-28 23:38:06\";i:21;s:19:\"2023-10-28 23:38:24\";i:22;s:19:\"2023-10-28 23:38:44\";i:23;s:19:\"2023-10-28 23:38:46\";i:24;s:19:\"2023-10-28 23:38:51\";i:25;s:19:\"2023-10-28 23:38:55\";i:26;s:19:\"2023-10-28 23:39:07\";i:27;s:19:\"2023-10-28 23:39:09\";i:28;s:19:\"2023-10-28 23:39:18\";i:29;s:19:\"2023-10-28 23:39:27\";i:30;s:19:\"2023-10-28 23:39:33\";i:31;s:19:\"2023-10-28 23:39:37\";i:32;s:19:\"2023-10-28 23:39:42\";i:33;s:19:\"2023-10-28 23:39:58\";i:34;s:19:\"2023-10-28 23:40:09\";i:35;s:19:\"2023-10-28 23:40:19\";i:36;s:19:\"2023-10-28 23:40:28\";i:37;s:19:\"2023-10-28 23:40:40\";i:38;s:19:\"2023-10-28 23:40:56\";i:39;s:19:\"2023-10-28 23:41:00\";i:40;s:19:\"2023-10-28 23:41:08\";i:41;s:19:\"2024-09-20 08:59:28\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:110:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php\";s:4:\"line\";i:32;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:110:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php\";s:7:\"\0*\0line\";i:32;}s:32:\"9a265cd7ec074eda7c026c6297c590e1\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-11-10 22:58:59\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:69:\"Cannot read properties of undefined (reading &#039;toLowerCase&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2023-11-10 22:58:59\";i:1;s:19:\"2023-11-17 01:27:39\";i:2;s:19:\"2024-04-24 16:50:50\";i:3;s:19:\"2024-05-08 13:49:11\";i:4;s:19:\"2024-05-08 13:50:00\";i:5;s:19:\"2024-05-09 17:41:40\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1699657139\";s:7:\"message\";s:59:\"Cannot read properties of undefined (reading \'toLowerCase\')\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.16.3\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"803778\";}s:7:\"\0*\0file\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.16.3\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"803778\";}s:32:\"e756c8e8df1eeb125448a156e0d6ff40\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-11-12 20:04:19\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:24:\"jQuery is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2023-11-12 20:04:19\";i:1;s:19:\"2023-11-12 20:04:24\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1699819459\";s:7:\"message\";s:24:\"jQuery is not a function\";s:3:\"url\";s:95:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.16.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:4:\"3707\";}s:7:\"\0*\0file\";s:95:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.16.3\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:4:\"3707\";}s:32:\"30566ec340660af9569e4d71eb9a6281\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-11-12 20:05:25\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:82:\"Cannot create property &#039;guid&#039; on string &#039;c9189containersticky&#039;\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-12 20:05:25\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1699819525\";s:7:\"message\";s:62:\"Cannot create property \'guid\' on string \'c9189containersticky\'\";s:3:\"url\";s:75:\"https://choiceresources.co.uk/wp-includes/js/jquery/jquery.min.js?ver=3.7.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"37833\";}s:7:\"\0*\0file\";s:75:\"https://choiceresources.co.uk/wp-includes/js/jquery/jquery.min.js?ver=3.7.1\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"37833\";}s:32:\"eea7e205a20636893c2c7dfd2102b7cb\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-11-12 20:05:50\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:80:\"Cannot create property &#039;guid&#039; on string &#039;c15451widgetsticky&#039;\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2023-11-12 20:05:50\";i:1;s:19:\"2023-11-12 20:06:00\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1699819550\";s:7:\"message\";s:60:\"Cannot create property \'guid\' on string \'c15451widgetsticky\'\";s:3:\"url\";s:75:\"https://choiceresources.co.uk/wp-includes/js/jquery/jquery.min.js?ver=3.7.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"37833\";}s:7:\"\0*\0file\";s:75:\"https://choiceresources.co.uk/wp-includes/js/jquery/jquery.min.js?ver=3.7.1\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"37833\";}s:32:\"13297aebef0a19fe74a5e4fe2e839171\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2023-11-16 21:54:35\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type null\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:5;s:14:\"\0*\0times_dates\";a:5:{i:0;s:19:\"2023-11-16 21:54:35\";i:1;s:19:\"2023-11-16 22:09:43\";i:2;s:19:\"2023-11-16 22:17:26\";i:3;s:19:\"2023-11-16 22:35:44\";i:4;s:19:\"2023-11-16 22:41:27\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type null\";s:4:\"file\";s:104:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:4:\"line\";i:363;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:104:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:7:\"\0*\0line\";i:363;}s:32:\"65db7c3fe2f96771cbee6720d048e0f0\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2023-11-16 22:26:29\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:60:\"Cannot read properties of undefined (reading &#039;id&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-16 22:26:29\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1700173589\";s:7:\"message\";s:50:\"Cannot read properties of undefined (reading \'id\')\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.16.3\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"312656\";}s:7:\"\0*\0file\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.16.3\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"312656\";}s:32:\"4a0b0886f42809f5d2fd4e6b93f4caa3\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-02-14 12:21:23\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1043:\"Uncaught Error: Call to a member function update_meta() on null in /home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php:304\nStack trace:\n#0 /home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php(177): ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager-&gt;save_conditions(31614, Array)\n#1 [internal function]: ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager-&gt;ajax_save_theme_template_conditions(Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#2 /home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/common/modules/ajax/module.php(175): call_user_func(Array, Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#3 /home5/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(324): Elementor\\Core\\Common\\Modules\\Ajax\\Module-&gt;handle_ajax_request(&#039;&#039;)\n#4 /home5/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(348)\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-14 12:21:23\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1024:\"Uncaught Error: Call to a member function update_meta() on null in /home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php:304\nStack trace:\n#0 /home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php(177): ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager->save_conditions(31614, Array)\n#1 [internal function]: ElementorPro\\Modules\\ThemeBuilder\\Classes\\Conditions_Manager->ajax_save_theme_template_conditions(Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#2 /home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/common/modules/ajax/module.php(175): call_user_func(Array, Array, Object(Elementor\\Core\\Common\\Modules\\Ajax\\Module))\n#3 /home5/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(324): Elementor\\Core\\Common\\Modules\\Ajax\\Module->handle_ajax_request(\'\')\n#4 /home5/onetruew/choiceresources.co.uk/wp-includes/class-wp-hook.php(348)\";s:4:\"file\";s:123:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php\";s:4:\"line\";i:304;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:123:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php\";s:7:\"\0*\0line\";i:304;}s:32:\"e6e076c9d7c1040e07469a28b2906569\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-02-14 12:28:25\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:55:\"Cannot read properties of null (reading &#039;id&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2024-02-14 12:28:25\";i:1;s:19:\"2024-05-07 07:22:09\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1707913705\";s:7:\"message\";s:45:\"Cannot read properties of null (reading \'id\')\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.16.3\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"500137\";}s:7:\"\0*\0file\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.16.3\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"500137\";}s:32:\"ca8428d47e5f7557e6699e9134ae6422\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-03-13 12:06:29\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:68:\"Cannot read properties of undefined (reading &#039;attributes&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2024-03-13 12:06:29\";i:1;s:19:\"2024-03-13 12:07:08\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1710331589\";s:7:\"message\";s:58:\"Cannot read properties of undefined (reading \'attributes\')\";s:3:\"url\";s:103:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.19.2\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"16880\";}s:7:\"\0*\0file\";s:103:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.19.2\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"16880\";}s:32:\"58fb37337126433428b9342b4ff6938d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-04-03 15:29:35\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:63:\"Cannot read properties of undefined (reading &#039;value&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2024-04-03 15:29:35\";i:1;s:19:\"2024-04-03 16:27:35\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1712158175\";s:7:\"message\";s:53:\"Cannot read properties of undefined (reading \'value\')\";s:3:\"url\";s:187:\"https://choiceresources.co.uk/wp-admin/load-scripts.php?c=1&amp;loadchunk_0=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,moxiejs,plupload&amp;ver=6.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"28760\";}s:7:\"\0*\0file\";s:187:\"https://choiceresources.co.uk/wp-admin/load-scripts.php?c=1&amp;loadchunk_0=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,moxiejs,plupload&amp;ver=6.5\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"28760\";}s:32:\"d2a7600a07690daa04312eba4e4edea7\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-04-03 16:19:53\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:60:\"Trying to get property &#039;post_status&#039; of non-object\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-03 16:19:53\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:50:\"Trying to get property \'post_status\' of non-object\";s:4:\"file\";s:88:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/kits/manager.php\";s:4:\"line\";i:280;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:88:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/core/kits/manager.php\";s:7:\"\0*\0line\";i:280;}s:32:\"2f8b22503014336f8315fad251903af4\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-04-03 16:27:21\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:32:\"elementorFrontend is not defined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-04-03 16:27:21\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1712161641\";s:7:\"message\";s:32:\"elementorFrontend is not defined\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.19.2\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"929455\";}s:7:\"\0*\0file\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.19.2\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"929455\";}s:32:\"e17153bfe2ba498142cd738daf5b7a26\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-04-03 16:41:37\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to get property &#039;ID&#039; of non-object\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:285;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2024-04-23 03:53:09\";i:1;s:19:\"2024-04-23 06:11:07\";i:2;s:19:\"2024-04-23 06:39:31\";i:3;s:19:\"2024-04-23 06:40:22\";i:4;s:19:\"2024-04-23 06:40:28\";i:5;s:19:\"2024-04-23 07:29:00\";i:6;s:19:\"2024-04-23 08:06:36\";i:7;s:19:\"2024-04-23 08:16:42\";i:8;s:19:\"2024-04-23 08:16:44\";i:9;s:19:\"2024-04-23 08:16:44\";i:10;s:19:\"2024-04-23 08:16:46\";i:11;s:19:\"2024-04-23 08:16:46\";i:12;s:19:\"2024-04-23 08:16:47\";i:13;s:19:\"2024-04-23 08:16:50\";i:14;s:19:\"2024-04-23 08:16:54\";i:15;s:19:\"2024-04-23 08:16:55\";i:16;s:19:\"2024-04-23 08:16:56\";i:17;s:19:\"2024-04-23 08:16:58\";i:18;s:19:\"2024-04-23 08:16:59\";i:19;s:19:\"2024-04-23 08:17:00\";i:20;s:19:\"2024-04-23 08:17:01\";i:21;s:19:\"2024-04-23 08:17:03\";i:22;s:19:\"2024-04-23 08:17:05\";i:23;s:19:\"2024-04-23 08:17:07\";i:24;s:19:\"2024-04-23 08:25:19\";i:25;s:19:\"2024-04-23 09:02:59\";i:26;s:19:\"2024-04-23 12:40:49\";i:27;s:19:\"2024-04-23 13:13:35\";i:28;s:19:\"2024-04-23 13:50:26\";i:29;s:19:\"2024-04-23 15:05:06\";i:30;s:19:\"2024-04-23 19:24:07\";i:31;s:19:\"2024-04-23 19:44:14\";i:32;s:19:\"2024-04-23 20:50:53\";i:33;s:19:\"2024-04-23 23:37:08\";i:34;s:19:\"2024-04-24 02:56:03\";i:35;s:19:\"2024-04-24 06:12:32\";i:36;s:19:\"2024-04-24 06:45:20\";i:37;s:19:\"2024-04-24 08:17:01\";i:38;s:19:\"2024-04-24 09:09:17\";i:39;s:19:\"2024-04-24 14:46:52\";i:40;s:19:\"2024-04-24 16:14:03\";i:41;s:19:\"2024-04-24 16:14:03\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:41:\"Trying to get property \'ID\' of non-object\";s:4:\"file\";s:112:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/posts/skins/skin-content-base.php\";s:4:\"line\";i:271;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:112:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/modules/posts/skins/skin-content-base.php\";s:7:\"\0*\0line\";i:271;}s:32:\"675acde6085e1e3747b6a336d8e53e6c\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-04-23 22:50:35\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:70:\"Cannot read properties of undefined (reading &#039;isDesignable&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2024-04-23 22:50:35\";i:1;s:19:\"2024-07-10 09:22:34\";i:2;s:19:\"2024-07-10 18:07:05\";i:3;s:19:\"2024-07-10 18:10:30\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1713912635\";s:7:\"message\";s:60:\"Cannot read properties of undefined (reading \'isDesignable\')\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.19.2\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"648162\";}s:7:\"\0*\0file\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.19.2\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"648162\";}s:32:\"f3926008caad789235bd907e6c7a4743\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-04-24 10:32:02\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:31:\"Undefined index: editor_post_id\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:7;s:14:\"\0*\0times_dates\";a:7:{i:0;s:19:\"2024-04-24 10:32:02\";i:1;s:19:\"2024-05-08 15:15:50\";i:2;s:19:\"2024-07-05 21:14:36\";i:3;s:19:\"2024-07-17 13:33:51\";i:4;s:19:\"2024-07-17 13:35:56\";i:5;s:19:\"2024-07-17 13:36:52\";i:6;s:19:\"2024-07-17 13:39:24\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:31:\"Undefined index: editor_post_id\";s:4:\"file\";s:104:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:4:\"line\";i:363;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:104:\"/home5/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:7:\"\0*\0line\";i:363;}s:32:\"20176940ae701dbf14a5ea3ef67073e8\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-04-24 12:32:35\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:58:\"Cannot read properties of null (reading &#039;clone&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:99149;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2024-07-10 20:41:00\";i:1;s:19:\"2024-07-10 20:41:00\";i:2;s:19:\"2024-07-10 20:41:00\";i:3;s:19:\"2024-07-10 20:41:03\";i:4;s:19:\"2024-07-10 20:41:03\";i:5;s:19:\"2024-07-10 20:41:03\";i:6;s:19:\"2024-07-10 20:41:03\";i:7;s:19:\"2024-07-10 20:41:03\";i:8;s:19:\"2024-07-10 20:41:04\";i:9;s:19:\"2024-07-10 20:41:04\";i:10;s:19:\"2024-07-10 20:41:04\";i:11;s:19:\"2024-07-10 20:41:04\";i:12;s:19:\"2024-07-10 20:41:04\";i:13;s:19:\"2024-07-10 20:41:04\";i:14;s:19:\"2024-07-10 20:41:04\";i:15;s:19:\"2024-07-10 20:41:04\";i:16;s:19:\"2024-07-10 20:41:04\";i:17;s:19:\"2024-07-10 20:41:04\";i:18;s:19:\"2024-07-10 20:41:04\";i:19;s:19:\"2024-07-10 20:41:04\";i:20;s:19:\"2024-07-10 20:41:04\";i:21;s:19:\"2024-07-10 20:41:04\";i:22;s:19:\"2024-07-10 20:41:04\";i:23;s:19:\"2024-07-10 20:41:04\";i:24;s:19:\"2024-07-10 20:41:04\";i:25;s:19:\"2024-07-10 20:41:04\";i:26;s:19:\"2024-07-10 20:41:04\";i:27;s:19:\"2024-07-10 20:41:04\";i:28;s:19:\"2024-07-10 20:41:04\";i:29;s:19:\"2024-07-10 20:41:04\";i:30;s:19:\"2024-07-10 20:41:04\";i:31;s:19:\"2024-07-10 20:41:04\";i:32;s:19:\"2024-07-10 20:41:04\";i:33;s:19:\"2024-07-10 20:41:04\";i:34;s:19:\"2024-07-10 20:41:04\";i:35;s:19:\"2024-07-10 20:41:04\";i:36;s:19:\"2024-07-10 20:41:04\";i:37;s:19:\"2024-07-10 20:41:04\";i:38;s:19:\"2024-07-10 20:41:04\";i:39;s:19:\"2024-07-10 20:41:04\";i:40;s:19:\"2024-07-10 20:41:08\";i:41;s:19:\"2024-07-10 20:41:08\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1713961955\";s:7:\"message\";s:48:\"Cannot read properties of null (reading \'clone\')\";s:3:\"url\";s:98:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"14799\";}s:7:\"\0*\0file\";s:98:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"14799\";}s:32:\"0a997826a2fbc91e2cea3d61324d249d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-04-24 12:32:37\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:63:\"Cannot read properties of null (reading &#039;changestop&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1312;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2024-07-10 20:11:26\";i:1;s:19:\"2024-07-10 20:11:34\";i:2;s:19:\"2024-07-10 20:11:38\";i:3;s:19:\"2024-07-10 20:11:40\";i:4;s:19:\"2024-07-10 20:11:41\";i:5;s:19:\"2024-07-10 20:11:42\";i:6;s:19:\"2024-07-10 20:11:47\";i:7;s:19:\"2024-07-10 20:11:55\";i:8;s:19:\"2024-07-10 20:12:08\";i:9;s:19:\"2024-07-10 20:12:13\";i:10;s:19:\"2024-07-10 20:12:27\";i:11;s:19:\"2024-07-10 20:12:30\";i:12;s:19:\"2024-07-10 20:12:30\";i:13;s:19:\"2024-07-10 20:12:56\";i:14;s:19:\"2024-07-10 20:37:26\";i:15;s:19:\"2024-07-10 20:37:29\";i:16;s:19:\"2024-07-10 20:37:31\";i:17;s:19:\"2024-07-10 20:37:32\";i:18;s:19:\"2024-07-10 20:37:39\";i:19;s:19:\"2024-07-10 20:37:47\";i:20;s:19:\"2024-07-10 20:37:49\";i:21;s:19:\"2024-07-10 20:37:50\";i:22;s:19:\"2024-07-10 20:37:53\";i:23;s:19:\"2024-07-10 20:37:56\";i:24;s:19:\"2024-07-10 20:38:10\";i:25;s:19:\"2024-07-10 20:38:11\";i:26;s:19:\"2024-07-10 20:38:17\";i:27;s:19:\"2024-07-10 20:38:18\";i:28;s:19:\"2024-07-10 20:38:45\";i:29;s:19:\"2024-07-10 20:38:48\";i:30;s:19:\"2024-07-10 20:39:29\";i:31;s:19:\"2024-07-10 20:39:35\";i:32;s:19:\"2024-07-10 20:39:39\";i:33;s:19:\"2024-07-10 20:39:40\";i:34;s:19:\"2024-07-10 20:39:45\";i:35;s:19:\"2024-07-10 20:39:48\";i:36;s:19:\"2024-07-10 20:39:57\";i:37;s:19:\"2024-07-10 20:39:59\";i:38;s:19:\"2024-07-10 20:39:59\";i:39;s:19:\"2024-07-10 20:40:03\";i:40;s:19:\"2024-07-10 20:41:00\";i:41;s:19:\"2024-07-10 20:41:05\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1713961957\";s:7:\"message\";s:53:\"Cannot read properties of null (reading \'changestop\')\";s:3:\"url\";s:98:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"19552\";}s:7:\"\0*\0file\";s:98:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"19552\";}s:32:\"74c6aba04cdb77d4aff5c9fccbd0930b\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-05-07 08:05:13\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:122:\"Failed to execute &#039;observe&#039; on &#039;IntersectionObserver&#039;: parameter 1 is not of type &#039;Element&#039;.\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2024-05-07 08:05:13\";i:1;s:19:\"2024-05-07 08:49:56\";i:2;s:19:\"2024-05-08 12:30:39\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1715069113\";s:7:\"message\";s:92:\"Failed to execute \'observe\' on \'IntersectionObserver\': parameter 1 is not of type \'Element\'.\";s:3:\"url\";s:99:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.21.2\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"12628\";}s:7:\"\0*\0file\";s:99:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.21.2\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"12628\";}s:32:\"d53501bd385b1cce2c35af4b88603a79\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-05-08 13:44:13\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:42:\"Cannot convert undefined or null to object\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2024-05-08 13:44:13\";i:1;s:19:\"2024-05-08 13:52:53\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1715175853\";s:7:\"message\";s:42:\"Cannot convert undefined or null to object\";s:3:\"url\";s:97:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/editor.min.js?ver=3.21.2\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"65789\";}s:7:\"\0*\0file\";s:97:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/editor.min.js?ver=3.21.2\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"65789\";}s:32:\"9dac2ff983598693204677f8f64e2504\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-05-08 13:44:19\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:62:\"Cannot read properties of undefined (reading &#039;data&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:18;s:14:\"\0*\0times_dates\";a:18:{i:0;s:19:\"2024-05-08 13:44:19\";i:1;s:19:\"2024-05-08 13:44:21\";i:2;s:19:\"2024-05-08 13:44:28\";i:3;s:19:\"2024-05-08 13:44:30\";i:4;s:19:\"2024-05-08 13:44:33\";i:5;s:19:\"2024-05-08 13:44:45\";i:6;s:19:\"2024-05-08 13:53:36\";i:7;s:19:\"2024-05-08 13:53:36\";i:8;s:19:\"2024-05-08 13:53:36\";i:9;s:19:\"2024-05-08 13:53:36\";i:10;s:19:\"2024-05-08 13:53:36\";i:11;s:19:\"2024-05-08 13:53:36\";i:12;s:19:\"2024-05-08 13:53:36\";i:13;s:19:\"2024-05-08 13:53:36\";i:14;s:19:\"2024-05-08 13:53:36\";i:15;s:19:\"2024-05-08 13:53:36\";i:16;s:19:\"2024-05-08 13:53:36\";i:17;s:19:\"2024-05-08 13:53:38\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1715175859\";s:7:\"message\";s:52:\"Cannot read properties of undefined (reading \'data\')\";s:3:\"url\";s:92:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"16841\";}s:7:\"\0*\0file\";s:92:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"16841\";}s:32:\"fa663e268b323feaef6dff32c2e07d28\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-07-17 13:41:57\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:40:\"Undefined index: background_image_tablet\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-17 13:41:57\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:40:\"Undefined index: background_image_tablet\";s:4:\"file\";s:99:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1477;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:99:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:1477;}s:32:\"44b128879cbee7e936b6672431ca383a\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-07-17 13:42:35\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:40:\"Undefined index: background_image_tablet\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:99:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1477;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:99:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1212;s:8:\"function\";s:18:\"is_control_visible\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:98:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/elements/container.php\";s:4:\"line\";i:237;s:8:\"function\";s:19:\"get_active_settings\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:98:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/elements/container.php\";s:4:\"line\";i:298;s:8:\"function\";s:20:\"render_shape_divider\";s:5:\"class\";s:37:\"Elementor\\Includes\\Elements\\Container\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:97:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/base/element-base.php\";s:4:\"line\";i:492;s:8:\"function\";s:13:\"before_render\";s:5:\"class\";s:37:\"Elementor\\Includes\\Elements\\Container\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2024-07-17 13:42:35\";i:1;s:19:\"2024-07-17 13:42:35\";i:2;s:19:\"2024-07-17 13:42:35\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:40:\"Undefined index: background_image_tablet\";s:4:\"file\";s:99:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1477;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:99:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:1477;}s:32:\"6d3348be0b16b7d63587832dcddbce4f\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-07-25 08:36:56\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:31:\"Undefined index: condition_type\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:128:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:150;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:8:\"function\";s:28:\"normalize_template_json_item\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:2;a:3:{s:4:\"file\";s:128:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:120;s:8:\"function\";s:9:\"array_map\";}i:3;a:5:{s:4:\"file\";s:128:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:59;s:8:\"function\";s:24:\"normalize_templates_json\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:89:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor/data/base/endpoint.php\";s:4:\"line\";i:158;s:8:\"function\";s:9:\"get_items\";s:5:\"class\";s:65:\"ElementorPro\\Core\\App\\Modules\\SiteEditor\\Data\\Endpoints\\Templates\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-25 08:36:56\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:31:\"Undefined index: condition_type\";s:4:\"file\";s:128:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:4:\"line\";i:150;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:128:\"/home3/onetruew/choiceresources.co.uk/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php\";s:7:\"\0*\0line\";i:150;}}','off'),
(479,'fb_product_set_children','a:0:{}','yes'),
(653,'storefront_nux_guided_tour','1','yes'),
(879,'elementor_library_category_children','a:0:{}','yes'),
(946,'elementor_use_mini_cart_template','yes','yes'),
(974,'alg_wc_wl_page_id','229','yes'),
(975,'alg_wc_wl_enabled','yes','yes'),
(976,'alg_wc_wl_fontawesome','yes','yes'),
(977,'alg_wc_wl_fontawesome_url','https://use.fontawesome.com/releases/v5.5.0/css/all.css','yes'),
(978,'alg_wc_wl_admin_ajax_url','','yes'),
(979,'alg_wc_wl_social_enable','yes','yes'),
(980,'alg_wc_wl_social_position','a:1:{i:0;s:22:\"alg_wc_wl_table_before\";}','yes'),
(981,'alg_wc_wl_social_email_adm_emails','','yes'),
(982,'alg_wc_wl_social_email_subject','no','yes'),
(983,'alg_wc_wl_social_facebook','yes','yes'),
(984,'alg_wc_wl_social_google','yes','yes'),
(985,'alg_wc_wl_social_twitter','yes','yes'),
(986,'alg_wc_wl_social_email','yes','yes'),
(987,'alg_wc_wl_social_copy','no','yes'),
(988,'alg_wc_wl_dbtn_single_enable','no','yes'),
(989,'alg_wc_wl_dbtn_single_pos','woocommerce_single_product_summary','yes'),
(990,'alg_wc_wl_dbtn_single_pri','31','yes'),
(991,'alg_wc_wl_dbtn_loop_enable','no','yes'),
(992,'alg_wc_wl_dbtn_loop_pri','11','yes'),
(993,'alg_wc_wl_dbtn_loading','no','yes'),
(994,'alg_wc_wl_tbtn_single_enable','yes','yes'),
(995,'alg_wc_wl_tbtn_loop_enable','yes','yes'),
(996,'alg_wc_wl_tbtn_loop_position','woocommerce_before_shop_loop_item','yes'),
(997,'alg_wc_wl_tbtn_loop_priority','9','yes'),
(998,'alg_wc_wl_tbtn_loading','yes','yes'),
(999,'alg_wc_wl_lstock','no','yes'),
(1000,'alg_wc_wl_lprice','yes','yes'),
(1001,'alg_wc_wl_ladd_to_cart_btn','yes','yes'),
(1002,'alg_wc_wl_tab','yes','yes'),
(1003,'alg_wc_wl_tab_slug','my-wish-list','yes'),
(1004,'alg_wc_wl_tab_label','Wish list','yes'),
(1005,'alg_wc_wl_tab_priority','20','yes'),
(1006,'alg_wc_wl_notification_desktop','yes','yes'),
(1007,'alg_wc_wl_notification_mobile','no','yes'),
(1008,'alg_wc_wl_notification_wish_list_link','yes','yes'),
(1009,'alg_wc_wl_notification_show_ok_btn','no','yes'),
(1010,'alg_wish_list_version','1.8.7','yes'),
(1011,'widget_alg_wc_wl_widget_link','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1133,'auto_update_plugins','a:0:{}','no'),
(1151,'updraftplus-addons_siteid','8b4a9671083d97a9a22d8d8fcacd2545','no'),
(1183,'updraftplus_unlocked_fd','1','no'),
(1184,'updraftplus_last_lock_time_fd','2024-10-29 12:22:41','no'),
(1185,'updraftplus_semaphore_fd','0','no'),
(1186,'updraft_last_scheduled_fd','1730204561','yes'),
(1794,'updraft_lock_cc3c498d5bf0','1617199658','no'),
(1799,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":4,\"critical\":2}','yes'),
(1835,'_elementor_settings_update_time','1674125184','yes'),
(1836,'elementor_cpt_support','a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:14:\"e-landing-page\";i:3;s:7:\"product\";}','yes'),
(1837,'elementor_disable_color_schemes','yes','yes'),
(1838,'elementor_disable_typography_schemes','yes','yes'),
(1839,'elementor_notice','','yes'),
(1840,'elementor_pro_recaptcha_site_key','6Le1uTggAAAAABv8BxHGjC4cmfhOP6IyzQDNDHvg','yes'),
(1841,'elementor_pro_recaptcha_secret_key','6Le1uTggAAAAAAqHEeWiNw0yGThRIMU6S49hIoeQ','yes'),
(1842,'elementor_pro_recaptcha_v3_site_key','','yes'),
(1843,'elementor_pro_recaptcha_v3_secret_key','','yes'),
(1844,'elementor_pro_recaptcha_v3_threshold','0.5','yes'),
(1845,'elementor_pro_facebook_app_id','','yes'),
(1846,'elementor_pro_mailchimp_api_key','0d2f3016a16c61d62daed3079c603930-us17','yes'),
(1847,'elementor_validate_api_data','','yes'),
(1848,'elementor_pro_drip_api_token','','yes'),
(1849,'elementor_pro_activecampaign_api_key','','yes'),
(1850,'elementor_pro_activecampaign_api_url','','yes'),
(1851,'elementor_pro_getresponse_api_key','','yes'),
(1852,'elementor_pro_convertkit_api_key','','yes'),
(1853,'elementor_pro_mailerlite_api_key','','yes'),
(1854,'elementor_typekit-kit-id','','yes'),
(1856,'elementor_css_print_method','external','yes'),
(1857,'elementor_editor_break_lines','','yes'),
(1858,'elementor_unfiltered_files_upload','','yes'),
(1859,'elementor_load_fa4_shim','','yes'),
(1860,'elementor_experiment-e_dom_optimization','default','yes'),
(1861,'elementor_experiment-e_optimized_assets_loading','active','yes'),
(1862,'elementor_experiment-a11y_improvements','default','yes'),
(1863,'elementor_experiment-landing-pages','default','yes'),
(1864,'elementor_experiment-form-submissions','default','yes'),
(2164,'updraft_lock_f7b4ffea3122','1617230526','no'),
(2179,'_transient_shipping-transient-version','1668634147','yes'),
(2247,'updraft_lock_222688351c07','1617374592','no'),
(2545,'theme_mods_shoppingcart','a:5:{s:26:\"shoppingcart_theme_options\";a:53:{s:23:\"shoppingcart_responsive\";s:2:\"on\";s:26:\"shoppingcart_design_layout\";s:17:\"full-width-layout\";s:26:\"shoppingcart_post_category\";i:0;s:24:\"shoppingcart_post_author\";i:0;s:22:\"shoppingcart_post_date\";i:0;s:26:\"shoppingcart_post_comments\";i:0;s:35:\"shoppingcart_sidebar_layout_options\";s:5:\"right\";s:33:\"shoppingcart_search_custom_header\";i:0;s:27:\"shoppingcart_header_display\";s:11:\"header_text\";s:19:\"shoppingcart_scroll\";i:0;s:21:\"shoppingcart_tag_text\";s:16:\"Continue Reading\";s:27:\"shoppingcart_excerpt_length\";s:2:\"50\";s:22:\"shoppingcart_reset_all\";i:0;s:23:\"shoppingcart_stick_menu\";i:0;s:28:\"shoppingcart_blog_post_image\";s:2:\"on\";s:24:\"shoppingcart_search_text\";s:15:\"Search &hellip;\";s:32:\"shoppingcart_blog_content_layout\";s:19:\"fullcontent_display\";s:30:\"shoppingcart_entry_meta_single\";s:4:\"show\";s:28:\"shoppingcart_entry_meta_blog\";s:9:\"show-meta\";s:34:\"shoppingcart_footer_column_section\";s:1:\"4\";s:30:\"shoppingcart_disable_main_menu\";i:0;s:28:\"shoppingcart_disable_top_bar\";i:0;s:42:\"shoppingcart_img-product-promotion-image-1\";s:0:\"\";s:42:\"shoppingcart_img-product-promotion-image-2\";s:0:\"\";s:42:\"shoppingcart_img-product-promotion-image-3\";s:0:\"\";s:36:\"shoppingcart_product_promotion_url_1\";s:0:\"\";s:36:\"shoppingcart_product_promotion_url_2\";s:0:\"\";s:36:\"shoppingcart_product_promotion_url_3\";s:0:\"\";s:37:\"shoppingcart_product_background_color\";s:3:\"off\";s:31:\"shoppingcart_big_promo_category\";s:3:\"off\";s:35:\"shoppingcart_display_featured_brand\";s:12:\"below-widget\";s:34:\"shoppingcart_display_advertisement\";s:12:\"above-slider\";s:29:\"shoppingcart_default_category\";s:13:\"post_category\";s:24:\"shoppingcart_slider_type\";s:14:\"default_slider\";s:26:\"shoppingcart_enable_slider\";s:7:\"disable\";s:28:\"shoppingcart_category_slider\";a:0:{}s:36:\"shoppingcart_default_category_slider\";s:0:\"\";s:26:\"shoppingcart_slider_number\";s:1:\"3\";s:29:\"shoppingcart_animation_effect\";s:4:\"fade\";s:27:\"shoppingcart_slideshowSpeed\";s:1:\"5\";s:27:\"shoppingcart_animationSpeed\";s:1:\"7\";s:47:\"shoppingcart_display_page_single_featured_image\";i:0;s:34:\"shoppingcart_disable_product_brand\";i:1;s:33:\"shoppingcart_total_brand_features\";s:1:\"8\";s:27:\"shoppingcart_features_title\";s:0:\"\";s:33:\"shoppingcart_features_description\";s:0:\"\";s:39:\"shoppingcart_disable_product_categories\";i:1;s:27:\"shoppingcart_total_features\";s:1:\"5\";s:38:\"shoppingcart_categories_features_title\";s:0:\"\";s:44:\"shoppingcart_categories_features_description\";s:0:\"\";s:29:\"shoppingcart_top_social_icons\";i:0;s:32:\"shoppingcart_buttom_social_icons\";i:0;s:29:\"shoppingcart_adv_ban_position\";s:12:\"above-slider\";}s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:11:\"custom_logo\";i:740;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1629380563;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:8:\"search-2\";}s:8:\"header-1\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','no'),
(2546,'widget_shoppingcart_popular_widgets','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(2547,'widget_shoppingcart_product_grid_column_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(2552,'theme_switched_via_customizer','','yes'),
(2553,'customize_stashed_theme_mods','a:0:{}','no'),
(3614,'conv_token','qicV8FjKUAK7tBaGCwfgFP1jIKoVaHAt','yes'),
(3616,'conv_owner_id','33464','yes'),
(3617,'conv_site_id','33020','no'),
(4048,'woocommerce_paypal_settings','a:24:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:21:\"ivankulongo@gmail.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:3:\"yes\";s:5:\"debug\";s:3:\"yes\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:21:\"ivankulongo@gmail.com\";s:14:\"identity_token\";s:59:\"qjjS9geJzXvU9e6hhT7WF_c0FIYZxcUtfhReag1m91D7LYnBiNwp3mDl6um\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:26:\"ivankulongo_api1.gmail.com\";s:12:\"api_password\";s:16:\"DEAR5N6LK4H7WZKV\";s:13:\"api_signature\";s:56:\"AXvRtYv0py9hOby1cR.V8oZf3hSsAPK-fr2C5MM6YAFTzyiGIhKypQ8-\";s:20:\"sandbox_api_username\";s:42:\"sb-yaqqh16326906_api1.business.example.com\";s:20:\"sandbox_api_password\";s:16:\"NVETT87P4WZ737ZR\";s:21:\"sandbox_api_signature\";s:56:\"A823GpN4NbvpyQJSDMCEtc5w4elJAoz8nuS-7KxfIMes.ROE5oGznPZz\";s:25:\"enabled_for_subscriptions\";s:3:\"yes\";s:12:\"_should_load\";s:3:\"yes\";}','yes'),
(4190,'updraft_autobackup_default','0','yes'),
(4191,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-efececb3eb340a8ec74247295ef4a604\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}','yes'),
(4192,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";a:9:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:7:\"user_id\";s:64:\"a8be9d562cb3169d764d7b5135d3a70db2a5e902999da85954fe69f5a9af79a5\";s:16:\"tmp_access_token\";a:4:{s:12:\"access_token\";s:225:\"ya29.a0AeDClZBfBRH7vi7a7Lyb9wMPKkegkoJ94pxdlPsLMN4TQufshdzU4KYVO42LaVd2hKAgbHUyowWe0H4tPI7R4Dy-GBiZTP3w_T5l10WdkvHAZbe0KDVCtM31O1suKFPKfrtq1UYrPsTsKh950i40OdyIQFhYUjK14s4FJYWkq8caCgYKASQSARISFQHGX2MijhjJMgkDkfSAXtx5VoP4BA0178\";s:7:\"created\";i:1730204579;s:10:\"expires_in\";i:3599;s:13:\"refresh_token\";s:0:\"\";}s:9:\"ownername\";s:12:\"Ivan Kulongo\";s:16:\"instance_enabled\";i:1;s:10:\"owneremail\";s:21:\"ivankulongo@gmail.com\";s:10:\"expires_in\";i:1730208148;}}}','on'),
(4193,'updraftplus_tmp_googledrive_access_token','','yes'),
(4194,'updraftplus_dismissedautobackup','','yes'),
(4195,'dismissed_general_notices_until','','yes'),
(4196,'dismissed_review_notice','','yes'),
(4197,'dismissed_clone_php_notices_until','','yes'),
(4198,'dismissed_clone_wc_notices_until','','yes'),
(4199,'dismissed_season_notices_until','','yes'),
(4200,'updraftplus_dismissedexpiry','','yes'),
(4201,'updraftplus_dismisseddashnotice','','yes'),
(4202,'updraft_interval','manual','yes'),
(4203,'updraft_interval_increments','none','yes'),
(4204,'updraft_interval_database','manual','yes'),
(4205,'updraft_retain','2','yes'),
(4206,'updraft_retain_db','2','yes'),
(4207,'updraft_encryptionphrase','','yes'),
(4208,'updraft_service','googledrive','yes'),
(4209,'updraft_googledrive_clientid','','yes'),
(4210,'updraft_googledrive_secret','','yes'),
(4211,'updraft_googledrive_remotepath','','yes'),
(4212,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-16135c5f594c9838f76dfa6752528446\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}}}','yes'),
(4213,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(4214,'updraft_server_address','','yes'),
(4215,'updraft_dir','updraft','yes'),
(4216,'updraft_email','','yes'),
(4217,'updraft_delete_local','1','yes'),
(4218,'updraft_debug_mode','0','yes'),
(4219,'updraft_include_plugins','1','yes'),
(4220,'updraft_include_themes','1','yes'),
(4221,'updraft_include_uploads','1','yes'),
(4222,'updraft_include_others','1','yes'),
(4223,'updraft_include_wpcore','0','yes'),
(4224,'updraft_include_wpcore_exclude','','yes'),
(4225,'updraft_include_more','0','yes'),
(4226,'updraft_include_blogs','','yes'),
(4227,'updraft_include_mu-plugins','','yes'),
(4229,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),
(4230,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots','yes'),
(4231,'updraft_lastmessage','The backup succeeded and is now complete (Oct 29 12:23:52)','on'),
(4232,'updraft_googledrive_token','','yes'),
(4233,'updraft_dropboxtk_request_token','','yes'),
(4234,'updraft_dropboxtk_access_token','','yes'),
(4235,'updraft_adminlocking','','yes'),
(4236,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-d5d5899b2f0f1074343d1783a2212ecf\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),
(4237,'updraft_retain_extrarules','a:0:{}','yes'),
(4238,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(4239,'updraft_include_more_path','a:0:{}','yes'),
(4240,'updraft_split_every','400','yes'),
(4241,'updraft_ssl_nossl','0','yes'),
(4242,'updraft_backupdb_nonwp','0','yes'),
(4243,'updraft_extradbs','a:0:{}','yes'),
(4244,'updraft_combine_jobs_around','','yes'),
(4245,'updraft_last_backup','a:6:{s:26:\"nonincremental_backup_time\";i:1730204561;s:11:\"backup_time\";i:1730204561;s:12:\"backup_array\";a:12:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-plugins.zip\";}s:12:\"plugins-size\";i:103633503;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-themes.zip\";}s:11:\"themes-size\";i:11601704;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-uploads.zip\";i:1;s:65:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-uploads2.zip\";}s:12:\"uploads-size\";i:373345792;s:13:\"uploads1-size\";i:2719410;s:6:\"others\";a:1:{i:0;s:63:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-others.zip\";}s:11:\"others-size\";i:7289496;s:2:\"db\";s:58:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-db.gz\";s:7:\"db-size\";i:1352056;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"bfbb5210da8a5963482fa136a8d94ceb204a0cd5\";s:7:\"themes0\";s:40:\"94165c0a4eb818f9f8e3513227e8d65b9ae88638\";s:8:\"uploads0\";s:40:\"398ae84d13a5f518d2288e3884e098016c280ac4\";s:8:\"uploads1\";s:40:\"8133edd7a52e3318be438fc5ef7edab568b5ed69\";s:7:\"others0\";s:40:\"e645e795d4f669c3935e8e5d4b1179db937c8c99\";s:3:\"db0\";s:40:\"4febce990694d235da4452d0d15601ecc1af796b\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"f51e436192012aae02a086daeee19af2175315c1fd26c6c375da71586c27ec8f\";s:7:\"themes0\";s:64:\"aa6a20538ba4f7d81846e68f8f29f3a095e05807370ae5c9fe109b6f33826125\";s:8:\"uploads0\";s:64:\"4f5d5688e9ab308598c15a24b953206ded2cfd7d35632c902b0d50a97aa99a53\";s:8:\"uploads1\";s:64:\"f22d4abc82f4d9846214cb976d965495431baec3efa4e574c0ead91b0ff26047\";s:7:\"others0\";s:64:\"e22de0f402ab76fc9980aad13ee273308603ed742afb43e6f811d9f4eee41a57\";s:3:\"db0\";s:64:\"a1b973afe24cc7bac3183379808b2947451f9a9811e7cbb7c26c74d6a5957089\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"94fe77aff543\";}','on'),
(4246,'updraft_starttime_files','14:11','yes'),
(4247,'updraft_starttime_db','14:11','yes'),
(4248,'updraft_startday_db','0','yes'),
(4249,'updraft_startday_files','0','yes'),
(4250,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(4251,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-f6e9c7ce662f45a0e8f76d5db5dd8796\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(4252,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-b5a471d9b8d846f06a5c631ea1b9411b\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";}}}','yes'),
(4253,'updraft_dreamhost','','yes'),
(4254,'updraft_s3generic_login','','yes'),
(4255,'updraft_s3generic_pass','','yes'),
(4256,'updraft_s3generic_remote_path','','yes'),
(4257,'updraft_s3generic_endpoint','','yes'),
(4258,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(4259,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-5ff6005d7f62da6b6adbc2c15d474a62\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(4260,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(4261,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(4262,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-0e2e073ad4df99729e7a0be18cee209d\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(4263,'updraft_cloudfiles_user','','yes'),
(4264,'updraft_cloudfiles_apikey','','yes'),
(4265,'updraft_cloudfiles_path','','yes'),
(4266,'updraft_cloudfiles_authurl','','yes'),
(4267,'updraft_ssl_useservercerts','0','yes'),
(4268,'updraft_ssl_disableverify','0','yes'),
(4269,'updraft_s3_login','','yes'),
(4270,'updraft_s3_pass','','yes'),
(4271,'updraft_s3_remote_path','','yes'),
(4272,'updraft_dreamobjects_login','','yes'),
(4273,'updraft_dreamobjects_pass','','yes'),
(4274,'updraft_dreamobjects_remote_path','','yes'),
(4275,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-407efa7dae82740e9cffd97e4e4749b9\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:26:\"objects-us-east-1.dream.io\";}}}','yes'),
(4276,'updraft_report_warningsonly','a:0:{}','yes'),
(4277,'updraft_report_wholebackup','a:0:{}','yes'),
(4278,'updraft_report_dbbackup','a:0:{}','yes'),
(4279,'updraft_log_syslog','0','yes'),
(4280,'updraft_extradatabases','','yes'),
(4281,'updraftplus_tour_cancelled_on','backup_now','yes'),
(4282,'updraftplus_version','1.24.3','yes'),
(4283,'updraft_backup_history','a:6:{i:1730204561;a:20:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-plugins.zip\";}s:12:\"plugins-size\";i:103633503;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-themes.zip\";}s:11:\"themes-size\";i:11601704;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-uploads.zip\";i:1;s:65:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-uploads2.zip\";}s:12:\"uploads-size\";i:373345792;s:13:\"uploads1-size\";i:2719410;s:6:\"others\";a:1:{i:0;s:63:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-others.zip\";}s:11:\"others-size\";i:7289496;s:2:\"db\";s:58:\"backup_2024-10-29-1222_Choice_Resources_94fe77aff543-db.gz\";s:7:\"db-size\";i:1352056;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"bfbb5210da8a5963482fa136a8d94ceb204a0cd5\";s:7:\"themes0\";s:40:\"94165c0a4eb818f9f8e3513227e8d65b9ae88638\";s:8:\"uploads0\";s:40:\"398ae84d13a5f518d2288e3884e098016c280ac4\";s:8:\"uploads1\";s:40:\"8133edd7a52e3318be438fc5ef7edab568b5ed69\";s:7:\"others0\";s:40:\"e645e795d4f669c3935e8e5d4b1179db937c8c99\";s:3:\"db0\";s:40:\"4febce990694d235da4452d0d15601ecc1af796b\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"f51e436192012aae02a086daeee19af2175315c1fd26c6c375da71586c27ec8f\";s:7:\"themes0\";s:64:\"aa6a20538ba4f7d81846e68f8f29f3a095e05807370ae5c9fe109b6f33826125\";s:8:\"uploads0\";s:64:\"4f5d5688e9ab308598c15a24b953206ded2cfd7d35632c902b0d50a97aa99a53\";s:8:\"uploads1\";s:64:\"f22d4abc82f4d9846214cb976d965495431baec3efa4e574c0ead91b0ff26047\";s:7:\"others0\";s:64:\"e22de0f402ab76fc9980aad13ee273308603ed742afb43e6f811d9f4eee41a57\";s:3:\"db0\";s:64:\"a1b973afe24cc7bac3183379808b2947451f9a9811e7cbb7c26c74d6a5957089\";}}s:5:\"nonce\";s:12:\"94fe77aff543\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1730204562;s:6:\"themes\";i:1730204588;s:7:\"uploads\";i:1730204593;s:6:\"others\";i:1730204619;}s:18:\"created_by_version\";s:6:\"1.24.3\";s:21:\"last_saved_by_version\";s:6:\"1.24.3\";s:12:\"is_multisite\";b:0;}i:1715218743;a:20:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2024-05-09-0139_Choice_Resources_4d6fd498bb46-plugins.zip\";}s:12:\"plugins-size\";i:103388815;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2024-05-09-0139_Choice_Resources_4d6fd498bb46-themes.zip\";}s:11:\"themes-size\";i:11601704;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2024-05-09-0139_Choice_Resources_4d6fd498bb46-uploads.zip\";i:1;s:65:\"backup_2024-05-09-0139_Choice_Resources_4d6fd498bb46-uploads2.zip\";}s:12:\"uploads-size\";i:418419629;s:13:\"uploads1-size\";i:4880192;s:6:\"others\";a:1:{i:0;s:63:\"backup_2024-05-09-0139_Choice_Resources_4d6fd498bb46-others.zip\";}s:11:\"others-size\";i:7289128;s:2:\"db\";s:58:\"backup_2024-05-09-0139_Choice_Resources_4d6fd498bb46-db.gz\";s:7:\"db-size\";i:7174195;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"bd76bf95ab6ccfba2c5f106f16ef2f5498cd0eb7\";s:7:\"themes0\";s:40:\"f951e35a5fb7438058b32c4184ac1bc70ff59ef6\";s:8:\"uploads0\";s:40:\"f23285999d12e496105ab12832034d39a6c8d11f\";s:8:\"uploads1\";s:40:\"a09b77cb63d1e5013ee964c7f513ff871abe85ab\";s:7:\"others0\";s:40:\"8f8da25607d52817f55bbc2d830fca9e3e2214f0\";s:3:\"db0\";s:40:\"6e3976d7df601dba6a0f15d9fab9cbe973e2c749\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"d84721cabbe8ef2fd8208e081674f8cd1a860621aa6e1d90766a8873cb3fa3a8\";s:7:\"themes0\";s:64:\"371999601a9fc8290f00d68862b26c77815a6d11b139681bd270f34cc270bf23\";s:8:\"uploads0\";s:64:\"d1338fc2b8958fa4a33cc08279a68a7fd4e56475690351a041177c6a0398cf00\";s:8:\"uploads1\";s:64:\"5aaf46dd563fb1b949c31d06fd542e37b193a12d2084cf38d6de1bef355036a5\";s:7:\"others0\";s:64:\"642cd639ec61594bfc99fa43f0bc369466ddacd7006b0e773b52251cb743fc0d\";s:3:\"db0\";s:64:\"4b8d664805f5ddb4edcef3c582d4780b6fe78b76409b26c3938174d37e2c7c04\";}}s:5:\"nonce\";s:12:\"4d6fd498bb46\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:11:\"always_keep\";b:1;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1715218743;s:6:\"themes\";i:1715218934;s:7:\"uploads\";i:1715218941;s:6:\"others\";i:1715219237;}s:18:\"created_by_version\";s:6:\"1.24.3\";s:21:\"last_saved_by_version\";s:6:\"1.24.3\";s:12:\"is_multisite\";b:0;}i:1715084068;a:19:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2024-05-07-1214_Choice_Resources_ce52c896aeae-plugins.zip\";}s:12:\"plugins-size\";i:95109654;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2024-05-07-1214_Choice_Resources_ce52c896aeae-themes.zip\";}s:11:\"themes-size\";i:11601704;s:7:\"uploads\";a:1:{i:0;s:64:\"backup_2024-05-07-1214_Choice_Resources_ce52c896aeae-uploads.zip\";}s:12:\"uploads-size\";i:379616618;s:6:\"others\";a:1:{i:0;s:63:\"backup_2024-05-07-1214_Choice_Resources_ce52c896aeae-others.zip\";}s:11:\"others-size\";i:7289311;s:2:\"db\";s:58:\"backup_2024-05-07-1214_Choice_Resources_ce52c896aeae-db.gz\";s:7:\"db-size\";i:2450238;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"9696922d4b66ec5bab238df599e72ec411aaab15\";s:7:\"themes0\";s:40:\"0ca6fdd0869c5f013e88866094c50541d447ac45\";s:8:\"uploads0\";s:40:\"a2412326265d28428ec1ce63ab4ee2134d4a629a\";s:7:\"others0\";s:40:\"4388a7b1b985b764e05827c75f4c73f781f94e45\";s:3:\"db0\";s:40:\"8efb4e3d4688867e1d72ecf6529df7a93e52ac59\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"f188af17518eaaae169deecc7f9e0627389d715d74267184ec5ddeb108b47f7f\";s:7:\"themes0\";s:64:\"7e49f0aab15bdbf53d81b4f5285e59bc639dd1363784959acd5e3ea72f5c5bec\";s:8:\"uploads0\";s:64:\"4c992e51bba699c6a513fc4265b3d2388f5bf8495a3a1062042c96bb31713eaa\";s:7:\"others0\";s:64:\"e9d7b94bb16a4dffebe34b22f8493513666ce2ca151d28dcfe75387dadd3638b\";s:3:\"db0\";s:64:\"9bfdc553ddd185540f9c79a66b1aba275cad3d17ae739f54b730965833e62d5b\";}}s:5:\"nonce\";s:12:\"ce52c896aeae\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:11:\"always_keep\";b:1;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1715084068;s:6:\"themes\";i:1715084227;s:7:\"uploads\";i:1715084234;s:6:\"others\";i:1715084442;}s:18:\"created_by_version\";s:6:\"1.24.3\";s:21:\"last_saved_by_version\";s:6:\"1.24.3\";s:12:\"is_multisite\";b:0;}i:1695401388;a:21:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2023-09-22-1649_Choice_Resources_4dcc17e8951c-plugins.zip\";}s:12:\"plugins-size\";i:113181518;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2023-09-22-1649_Choice_Resources_4dcc17e8951c-themes.zip\";}s:11:\"themes-size\";i:8398103;s:7:\"uploads\";a:5:{i:0;s:64:\"backup_2023-09-22-1649_Choice_Resources_4dcc17e8951c-uploads.zip\";i:1;s:65:\"backup_2023-09-22-1649_Choice_Resources_4dcc17e8951c-uploads2.zip\";i:2;s:65:\"backup_2023-09-22-1649_Choice_Resources_4dcc17e8951c-uploads3.zip\";i:3;s:65:\"backup_2023-09-22-1649_Choice_Resources_4dcc17e8951c-uploads4.zip\";i:4;s:65:\"backup_2023-09-22-1649_Choice_Resources_4dcc17e8951c-uploads5.zip\";}s:13:\"uploads2-size\";i:415749477;s:13:\"uploads3-size\";i:399363264;s:13:\"uploads4-size\";i:79473398;s:6:\"others\";a:1:{i:0;s:63:\"backup_2023-09-22-1649_Choice_Resources_4dcc17e8951c-others.zip\";}s:11:\"others-size\";i:7289127;s:2:\"db\";s:58:\"backup_2023-09-22-1649_Choice_Resources_4dcc17e8951c-db.gz\";s:7:\"db-size\";i:1364706;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:9:{s:8:\"plugins0\";s:40:\"199d3fde8f077d8c9497e9e6a79f88be445831c7\";s:7:\"themes0\";s:40:\"3b4eca669a9782b13e95e9b28afa73ff244ec3c4\";s:8:\"uploads0\";s:40:\"db2400d32529918da1f1ceb7f8a3e1c0810cfb1b\";s:8:\"uploads1\";s:40:\"d9abd4075a2468151df3c75b550ef19f51e21843\";s:8:\"uploads2\";s:40:\"ccf0671840819b5302bb3126128f1ab09aed9912\";s:8:\"uploads3\";s:40:\"d6869089ba8b6cca8f408ef9d01eb3b1398afcf8\";s:8:\"uploads4\";s:40:\"3b7de3d764ba3a95610cd524ed02d15285e5973e\";s:7:\"others0\";s:40:\"81c77020e857133fdc5d488c789a74c0f803db3f\";s:3:\"db0\";s:40:\"ce9c04a1c895de23b0a80939745b263709c00b0a\";}s:6:\"sha256\";a:9:{s:8:\"plugins0\";s:64:\"680634172185ce410c1fb729be73fcc26bed7907489c49bebc632145e57210e2\";s:7:\"themes0\";s:64:\"8d315fc40e3b4bb07cd961c2a254085b9f655848715c5d0b7a2f60cd9c0db19f\";s:8:\"uploads0\";s:64:\"e9b1cd28c9e2c398d60c86786fecba7e37e3ee343df0675adf6a02fe7722a010\";s:8:\"uploads1\";s:64:\"b417abba3d1a6556b4f1b9766bcbb256772a8c0ac3f1be6fe11be6bd882fd783\";s:8:\"uploads2\";s:64:\"f2a18784f1db31a2d982f71168b73a7b5c00730c3c299e27af58101e86939a54\";s:8:\"uploads3\";s:64:\"0e92dc1b2972476dbe866180804935fe2c76105e7cf515377f97564b3f45caeb\";s:8:\"uploads4\";s:64:\"830cedc8e2ae7ab87e02ffd3a978ee6f0838bdce2ac704d63b22c0c28415524e\";s:7:\"others0\";s:64:\"d43e4236e0e1276ac9e8b268340cb54d6b980b72b5ad831ab1ca1afaf4ceab4c\";s:3:\"db0\";s:64:\"db08ead2d30d9adb707757a2ebe1eb4d89b515a4958e3fd3dae469919aac5f2d\";}}s:5:\"nonce\";s:12:\"4dcc17e8951c\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:11:\"always_keep\";b:1;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1695401389;s:6:\"themes\";i:1695401672;s:7:\"uploads\";i:1695402599;s:6:\"others\";i:1695402992;}s:18:\"created_by_version\";s:7:\"1.23.10\";s:21:\"last_saved_by_version\";s:7:\"1.23.10\";s:12:\"is_multisite\";b:0;}i:1684229719;a:21:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2023-05-16-0935_Choice_Resources_6d5e5377244d-plugins.zip\";}s:12:\"plugins-size\";i:101578160;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2023-05-16-0935_Choice_Resources_6d5e5377244d-themes.zip\";}s:11:\"themes-size\";i:16558118;s:7:\"uploads\";a:3:{i:0;s:64:\"backup_2023-05-16-0935_Choice_Resources_6d5e5377244d-uploads.zip\";i:1;s:65:\"backup_2023-05-16-0935_Choice_Resources_6d5e5377244d-uploads2.zip\";i:2;s:65:\"backup_2023-05-16-0935_Choice_Resources_6d5e5377244d-uploads3.zip\";}s:12:\"uploads-size\";i:408085533;s:13:\"uploads1-size\";i:401203253;s:13:\"uploads2-size\";i:362618587;s:6:\"others\";a:1:{i:0;s:63:\"backup_2023-05-16-0935_Choice_Resources_6d5e5377244d-others.zip\";}s:11:\"others-size\";i:7290844;s:2:\"db\";s:58:\"backup_2023-05-16-0935_Choice_Resources_6d5e5377244d-db.gz\";s:7:\"db-size\";i:1229518;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:7:{s:8:\"plugins0\";s:40:\"c1d83914c9f9ec9aaf73761e9d5343fa2410e962\";s:7:\"themes0\";s:40:\"c1f394b6387883b0f40f14d53856baf021cb4e5d\";s:8:\"uploads0\";s:40:\"a0fe9326308e58f966b4a9cefad3229d8512f6f4\";s:8:\"uploads1\";s:40:\"acecd3317309bc8c23ddbce494ca161f6e16a67f\";s:8:\"uploads2\";s:40:\"de195ed9d2c505d24c8fad34e50af9e3705ead85\";s:7:\"others0\";s:40:\"210a420a48307ee7a3697812ed205e5f46920be9\";s:3:\"db0\";s:40:\"378edd2ce88d4e1d0d95d6a0d97187016c77097d\";}s:6:\"sha256\";a:7:{s:8:\"plugins0\";s:64:\"38fde35096d5bc0cf64713c70ac29b1e389e9db4e878914c40a388423b855f6e\";s:7:\"themes0\";s:64:\"c87ba0bb5c77862763e037f1bcb9072968ddd78d2dd8e7bdffa3a15655f36f34\";s:8:\"uploads0\";s:64:\"dd55038b6bb55b688838da9a16a476b20fea083561099403825b53f1d9614be2\";s:8:\"uploads1\";s:64:\"9fb92db8384be50484fcb978316cc181ce39e83fa09b192b6b69bfb1b62de4b3\";s:8:\"uploads2\";s:64:\"a02751f317d79680d87a6a7555f3904b2021fd2416c8c26cf85fac45f127e34b\";s:7:\"others0\";s:64:\"446d569f3e68c466944159bb98331d9d5806b5362a104da7414348da5c591866\";s:3:\"db0\";s:64:\"1aad50acf41cbebd224f9b8126c52fb39dce43d5ddc9e81f51ad196a04579f72\";}}s:5:\"nonce\";s:12:\"6d5e5377244d\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:11:\"always_keep\";b:1;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1684229719;s:6:\"themes\";i:1684229835;s:7:\"uploads\";i:1684229842;s:6:\"others\";i:1684230189;}s:18:\"created_by_version\";s:6:\"1.23.3\";s:21:\"last_saved_by_version\";s:6:\"1.23.3\";s:12:\"is_multisite\";b:0;}i:1684193216;a:18:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2023-05-15-2326_Choice_Resources_e46872d78244-plugins.zip\";}s:12:\"plugins-size\";i:101018876;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2023-05-15-2326_Choice_Resources_e46872d78244-themes.zip\";}s:11:\"themes-size\";i:16558118;s:7:\"uploads\";a:3:{i:0;s:64:\"backup_2023-05-15-2326_Choice_Resources_e46872d78244-uploads.zip\";i:1;s:65:\"backup_2023-05-15-2326_Choice_Resources_e46872d78244-uploads2.zip\";i:2;s:65:\"backup_2023-05-15-2326_Choice_Resources_e46872d78244-uploads3.zip\";}s:12:\"uploads-size\";i:419396394;s:13:\"uploads1-size\";i:400673193;s:13:\"uploads2-size\";i:384120238;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"aec329fbb53b9648999f42d49f04d9b7e27064d6\";s:7:\"themes0\";s:40:\"c7222e67acaf8ce196c330fcb170bbdbca4d4326\";s:8:\"uploads0\";s:40:\"b02846803279bde0a71935f328ba6c5c64242401\";s:8:\"uploads1\";s:40:\"5c5e60b9a60468e266037e4fd1c84855c269faaa\";s:8:\"uploads2\";s:40:\"bb083e1cf8f0917ce6933ae85b4a74f50ef24e3a\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"b188a9eff6a61e34ca3ed58ea9d75a2fcd7bf914c21a4cfd32bb3ccef5c4330d\";s:7:\"themes0\";s:64:\"d74292d98a1cee2292593769dde1df178b5f77ee7f6c857deeea0b5189aef2cb\";s:8:\"uploads0\";s:64:\"4568d63e847694bb057538a5ffc04c995173d2b76dbd142573a689244dd180fa\";s:8:\"uploads1\";s:64:\"1fd17ec734b4610d3577493f59b6320a0b429d4512134888ab0033f2a9d123b8\";s:8:\"uploads2\";s:64:\"9d78e6942aa88f5095fff6ee4902a726a147b1f015ccd1cf2edd665dbfdb7484\";}}s:5:\"nonce\";s:12:\"e46872d78244\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-0d4bde99b050d372aab8988e7cd6dfcc\";}}s:11:\"always_keep\";b:1;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1684193218;s:6:\"themes\";i:1684193296;s:7:\"uploads\";i:1684193302;s:6:\"others\";i:1684193722;}s:18:\"created_by_version\";s:6:\"1.23.3\";s:21:\"last_saved_by_version\";s:6:\"1.23.3\";s:12:\"is_multisite\";b:0;s:28:\"instance_file_deletions_done\";a:4:{i:0;s:32:\"7b6a7673a0c84ffe2e3c26a0f46dce56\";i:1;s:32:\"e12ff07a46f32faaee0e234d7eb52eb1\";i:2;s:32:\"0a1e5c440525b8e728353389079cd05f\";i:3;s:32:\"d20cd7be351e1bb09d92e383600f073a\";}}}','off'),
(4286,'updraft_lock_c3b59725a260','1618824822','no'),
(6333,'rlrsssl_options','a:16:{s:12:\"site_has_ssl\";b:1;s:4:\"hsts\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:19:\"review_notice_shown\";b:0;s:25:\"ssl_success_message_shown\";b:0;s:26:\"autoreplace_insecure_links\";b:1;s:17:\"plugin_db_version\";s:5:\"5.3.1\";s:20:\"do_not_edit_htaccess\";b:0;s:17:\"htaccess_redirect\";b:0;s:11:\"ssl_enabled\";b:1;s:19:\"javascript_redirect\";b:0;s:11:\"wp_redirect\";b:1;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:19:\"dismiss_all_notices\";b:0;s:13:\"high_contrast\";b:0;s:21:\"dismiss_review_notice\";b:0;}','yes'),
(6334,'rsssl_remaining_tasks','1','yes'),
(6341,'rsssl_current_version','6.1.0','no'),
(6344,'https_migration_required','','yes'),
(6345,'rsssl_activation_timestamp','1671131750','no'),
(6357,'rsssl_mixed_content_scan_dismissed','1','no'),
(6362,'rsssl_google_analytics_dismissed','1','yes'),
(6370,'rsssl_check_redirect_dismissed','1','yes'),
(6375,'rsssl_secure_cookies_set_dismissed','1','yes'),
(6465,'wpt_configure_options','a:51:{s:29:\"custom_message_on_single_page\";b:1;s:19:\"disable_plugin_noti\";s:2:\"on\";s:11:\"footer_cart\";s:11:\"always_show\";s:16:\"footer_cart_size\";s:2:\"74\";s:15:\"footer_bg_color\";s:7:\"#0a7f9c\";s:16:\"footer_possition\";s:16:\"footer_possition\";s:10:\"item_count\";s:3:\"all\";s:16:\"sort_mini_filter\";s:3:\"ASC\";s:21:\"sort_searchbox_filter\";s:3:\"ASC\";s:18:\"custom_add_to_cart\";s:18:\"add_cart_left_icon\";s:17:\"thumbs_image_size\";i:60;s:15:\"thumbs_lightbox\";s:1:\"1\";s:12:\"popup_notice\";s:1:\"1\";s:20:\"disable_cat_tag_link\";s:1:\"0\";s:19:\"product_link_target\";s:6:\"_blank\";s:19:\"product_not_founded\";s:21:\"Products Not founded!\";s:14:\"load_more_text\";s:9:\"Load more\";s:19:\"quick_view_btn_text\";s:10:\"Quick View\";s:17:\"loading_more_text\";s:9:\"Loading..\";s:18:\"search_button_text\";s:6:\"Search\";s:19:\"search_keyword_text\";s:14:\"Search Keyword\";s:20:\"disable_loading_more\";s:16:\"load_more_hidden\";s:21:\"instant_search_filter\";s:1:\"0\";s:11:\"filter_text\";s:7:\"Filter:\";s:19:\"filter_reset_button\";s:5:\"Reset\";s:19:\"instant_search_text\";s:16:\"Instant Search..\";s:16:\"yith_browse_list\";s:15:\"Browse the list\";s:22:\"yith_add_to_quote_text\";s:12:\"Add to Quote\";s:24:\"yith_add_to_quote_adding\";s:8:\"Adding..\";s:23:\"yith_add_to_quote_added\";s:6:\"Quoted\";s:4:\"item\";s:4:\"Item\";s:5:\"items\";s:5:\"Items\";s:23:\"add2cart_all_added_text\";s:5:\"Added\";s:25:\"right_combination_message\";s:13:\"Not available\";s:29:\"right_combination_message_alt\";s:92:\"Product variations is not set Properly. May be: price is not inputted. may be: Out of Stock.\";s:21:\"no_more_query_message\";s:49:\"There is no more products based on current Query.\";s:24:\"select_all_items_message\";s:24:\"Please select all items.\";s:20:\"out_of_stock_message\";s:12:\"Out of Stock\";s:18:\"adding_in_progress\";s:18:\"Adding in Progress\";s:20:\"no_right_combination\";s:20:\"No Right Combination\";s:18:\"sorry_out_of_stock\";s:20:\"Sorry! Out of Stock!\";s:17:\"type_your_message\";s:18:\"Type your Message.\";s:27:\"sorry_plz_right_combination\";s:39:\"Sorry, Please choose right combination.\";s:28:\"all_selected_direct_checkout\";s:2:\"no\";s:23:\"product_direct_checkout\";s:2:\"no\";s:16:\"search_box_title\";s:47:\"Search Box (<small>All Fields Optional</small>)\";s:24:\"search_box_searchkeyword\";s:14:\"Search Keyword\";s:18:\"search_box_orderby\";s:8:\"Order By\";s:16:\"search_box_order\";s:5:\"Order\";s:11:\"plugin_name\";s:17:\"WOO Product Table\";s:14:\"plugin_version\";s:5:\"2.8.6\";}','yes'),
(6649,'wc_facebook_background_product_sync_job_a4378479e09ca18172b6eafab26755c0','{\"requests\":{\"p-984\":\"UPDATE\"},\"id\":\"a4378479e09ca18172b6eafab26755c0\",\"created_at\":\"2021-05-09 15:14:58\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-09 15:14:59\",\"updated_at\":\"2021-05-09 15:14:59\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-09 15:14:59\"}','no'),
(6674,'wc_facebook_background_product_sync_job_2ed77ee0634b8cfc4c0ee9a78c981a0a','{\"requests\":{\"p-986\":\"UPDATE\"},\"id\":\"2ed77ee0634b8cfc4c0ee9a78c981a0a\",\"created_at\":\"2021-05-09 15:23:23\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-09 15:23:24\",\"updated_at\":\"2021-05-09 15:23:24\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-09 15:23:24\"}','no'),
(6769,'wc_facebook_background_product_sync_job_5cd131ff03bad91af7d740847c12e349','{\"requests\":{\"p-1000\":\"UPDATE\"},\"id\":\"5cd131ff03bad91af7d740847c12e349\",\"created_at\":\"2021-05-09 17:33:53\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-09 17:33:54\",\"updated_at\":\"2021-05-09 17:33:54\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-09 17:33:54\"}','no'),
(6808,'wc_facebook_background_product_sync_job_456653923b268423c3e16b0a266ca43c','{\"requests\":{\"p-1007\":\"UPDATE\"},\"id\":\"456653923b268423c3e16b0a266ca43c\",\"created_at\":\"2021-05-09 17:51:49\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-09 17:51:50\",\"updated_at\":\"2021-05-09 17:51:50\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-09 17:51:50\"}','no'),
(6835,'wc_facebook_background_product_sync_job_99d4507e0d1e5cedb4a6aa03cdf8245a','{\"requests\":{\"p-1014\":\"UPDATE\"},\"id\":\"99d4507e0d1e5cedb4a6aa03cdf8245a\",\"created_at\":\"2021-05-09 18:09:50\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-09 18:09:51\",\"updated_at\":\"2021-05-09 18:09:51\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-09 18:09:51\"}','no'),
(6875,'wc_facebook_background_product_sync_job_61f09ce270a0877787d589f72cdd2892','{\"requests\":{\"p-1021\":\"UPDATE\"},\"id\":\"61f09ce270a0877787d589f72cdd2892\",\"created_at\":\"2021-05-09 18:34:35\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-09 18:34:36\",\"updated_at\":\"2021-05-09 18:34:36\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-09 18:34:36\"}','no'),
(6895,'wc_facebook_background_product_sync_job_51b7563efc212287d6d05eb546e6f654','{\"requests\":{\"p-1028\":\"UPDATE\"},\"id\":\"51b7563efc212287d6d05eb546e6f654\",\"created_at\":\"2021-05-09 18:45:16\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-09 18:45:18\",\"updated_at\":\"2021-05-09 18:45:18\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-09 18:45:18\"}','no'),
(7025,'wc_facebook_background_product_sync_job_1b7c7ef01f39a5dbdab9c3030c03e047','{\"requests\":{\"p-1038\":\"UPDATE\"},\"id\":\"1b7c7ef01f39a5dbdab9c3030c03e047\",\"created_at\":\"2021-05-09 21:18:00\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-09 21:18:02\",\"updated_at\":\"2021-05-09 21:18:02\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-09 21:18:02\"}','no'),
(7417,'wc_memberships_redirect_page_id','1050','yes'),
(7418,'wc_memberships_admin_restricted_content_notice','yes','yes'),
(7419,'woocommerce_myaccount_members_area_endpoint','members-area','yes'),
(7420,'woocommerce_myaccount_profile_fields_area_endpoint','my-profile','yes'),
(7421,'wc_memberships_restriction_mode','hide_content','yes'),
(7422,'wc_memberships_show_excerpts','yes','yes'),
(7423,'wc_memberships_excerpt_length','55','yes'),
(7424,'wc_memberships_inherit_restrictions','no','yes'),
(7425,'wc_memberships_redirect_upon_member_login','no_redirect','yes'),
(7426,'wc_memberships_assign_user_roles_to_members','no','yes'),
(7427,'wc_memberships_active_member_user_role','customer','yes'),
(7428,'wc_memberships_inactive_member_user_role','customer','yes'),
(7429,'wc_memberships_privacy_erasure_request_delete_user_memberships','no','yes'),
(7430,'wc_memberships_apply_member_discounts_when_purchasing_membership','no','yes'),
(7431,'wc_memberships_allow_cumulative_access_granting_orders','no','yes'),
(7432,'wc_memberships_exclude_on_sale_products_from_member_discounts','no','yes'),
(7433,'wc_memberships_hide_restricted_products','no','yes'),
(7434,'wc_memberships_display_member_login_notice','both','yes'),
(7435,'wc_memberships_lifecycle_events','[{\"name\":\"install\",\"time\":1620841293,\"version\":\"1.21.8\"}]','no'),
(7436,'wc_memberships_version','1.21.8','yes'),
(7448,'wc_remote_inbox_notifications_wca_updated','','no'),
(7475,'woocommerce_subscriptions_enable_early_renewal','yes','yes'),
(7479,'woocommerce_subscriptions_add_to_cart_button_text','Sign up now','yes'),
(7480,'woocommerce_subscriptions_order_button_text','Sign up now','yes'),
(7481,'woocommerce_subscriptions_subscriber_role','subscriber','yes'),
(7482,'woocommerce_subscriptions_cancelled_role','customer','yes'),
(7483,'woocommerce_subscriptions_accept_manual_renewals','no','yes'),
(7484,'woocommerce_subscriptions_turn_off_automatic_payments','no','yes'),
(7485,'woocommerce_subscriptions_enable_auto_renewal_toggle','no','yes'),
(7486,'woocommerce_subscriptions_enable_early_renewal_via_modal','no','yes'),
(7487,'woocommerce_subscriptions_apportion_recurring_price','no','yes'),
(7488,'woocommerce_subscriptions_apportion_sign_up_fee','no','yes'),
(7489,'woocommerce_subscriptions_apportion_length','no','yes'),
(7490,'woocommerce_subscriptions_switch_button_text','Upgrade or Downgrade','yes'),
(7491,'woocommerce_subscriptions_sync_payments','no','yes'),
(7492,'woocommerce_subscriptions_prorate_synced_payments','no','yes'),
(7493,'woocommerce_subscriptions_days_no_fee','0','yes'),
(7494,'woocommerce_subscriptions_max_customer_suspensions','0','yes'),
(7495,'woocommerce_subscriptions_multiple_purchase','yes','yes'),
(7496,'woocommerce_subscriptions_zero_initial_payment_requires_payment','yes','yes'),
(7497,'woocommerce_subscriptions_drip_downloadable_content_on_renewal','no','yes'),
(7498,'woocommerce_subscriptions_enable_retry','yes','yes'),
(7499,'woocommerce_subscriptions_paypal_debugging_default_set','true','yes'),
(7503,'wcs_upgrade_initial_total_subscription_count','0','yes'),
(7504,'woocommerce_subscriptions_previous_version','0','yes'),
(7505,'wc_subscriptions_siteurl','https://choicereso_[wc_subscriptions_siteurl]_urces.co.uk','yes'),
(7506,'woocommerce_subscriptions_active_version','3.0.15','yes'),
(7510,'wc_memberships_milestone_messages','a:2:{s:23:\"membership-plan-created\";s:42:\"you\'ve created your first membership plan!\";s:23:\"user-membership-created\";s:42:\"you\'ve created your first user membership!\";}','yes'),
(7514,'wc_memberships_rules','a:1:{i:0;a:12:{s:2:\"id\";s:18:\"rule_609c379ff3257\";s:18:\"membership_plan_id\";i:1061;s:6:\"active\";s:3:\"yes\";s:9:\"rule_type\";s:19:\"purchasing_discount\";s:12:\"content_type\";s:8:\"taxonomy\";s:17:\"content_type_name\";s:11:\"product_cat\";s:10:\"object_ids\";a:1:{i:0;i:304;}s:13:\"discount_type\";s:10:\"percentage\";s:15:\"discount_amount\";s:3:\"100\";s:11:\"access_type\";s:0:\"\";s:15:\"access_schedule\";s:9:\"immediate\";s:29:\"access_schedule_exclude_trial\";s:0:\"\";}}','yes'),
(7536,'wc_facebook_background_product_sync_job_2f530dbc505b949ab8003fa265f9da62','{\"requests\":{\"p-1053\":\"UPDATE\"},\"id\":\"2f530dbc505b949ab8003fa265f9da62\",\"created_at\":\"2021-05-12 18:20:07\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-12 18:20:08\",\"updated_at\":\"2021-05-12 18:20:08\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-12 18:20:08\"}','no'),
(7561,'woocommerce_gateway_order','a:7:{s:20:\"woocommerce_payments\";i:0;s:4:\"bacs\";i:1;s:6:\"cheque\";i:2;s:3:\"cod\";i:3;s:6:\"paypal\";i:4;s:24:\"amazon_payments_advanced\";i:5;s:32:\"amazon_payments_advanced_express\";i:6;}','yes'),
(7573,'_transient_orders-transient-version','1715283317','yes'),
(7625,'woocommerce_admin_last_orders_milestone','10','yes'),
(7660,'wc_admin_show_legacy_coupon_menu','0','yes'),
(7734,'WPLANG','','yes'),
(7735,'new_admin_email','ivankulongo@gmail.com','yes'),
(7754,'woocommerce_erasure_request_removes_subscription_data','no','no'),
(7755,'woocommerce_anonymize_ended_subscriptions','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),
(7866,'wc_facebook_background_product_sync_job_401cf14ab3418496332165e95cda0d39','{\"requests\":{\"p-1067\":\"UPDATE\"},\"id\":\"401cf14ab3418496332165e95cda0d39\",\"created_at\":\"2021-05-12 22:05:15\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-12 22:05:16\",\"updated_at\":\"2021-05-12 22:05:16\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-12 22:05:16\"}','no'),
(7974,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"ivankulongo@gmail.com\";s:7:\"version\";s:5:\"6.6.2\";s:9:\"timestamp\";i:1726024521;}','off'),
(8724,'wc_facebook_background_product_sync_job_472b4aed957a94e790e20151f5e92225','{\"requests\":{\"p-1079\":\"UPDATE\"},\"id\":\"472b4aed957a94e790e20151f5e92225\",\"created_at\":\"2021-05-19 19:34:02\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-05-19 19:34:03\",\"updated_at\":\"2021-05-19 19:34:03\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-05-19 19:34:03\"}','no'),
(11179,'updraft_lock_a5c6d9859fab','0','no'),
(15064,'wc_facebook_background_product_sync_job_a8ad82076824ab16f2f14538db39b989','{\"requests\":{\"p-1859\":\"UPDATE\"},\"id\":\"a8ad82076824ab16f2f14538db39b989\",\"created_at\":\"2021-07-10 21:17:07\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-10 21:17:08\",\"updated_at\":\"2021-07-10 21:17:08\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-10 21:17:08\"}','no'),
(15321,'analyst_cache','s:6:\"a:0:{}\";','yes'),
(15323,'_cdp_review','a:2:{s:9:\"installed\";i:1625964341;s:5:\"users\";a:0:{}}','yes'),
(15324,'_cdp_globals','a:1:{s:6:\"others\";a:13:{s:17:\"cdp-content-pages\";s:4:\"true\";s:17:\"cdp-content-posts\";s:4:\"true\";s:18:\"cdp-content-custom\";s:4:\"true\";s:17:\"cdp-display-posts\";s:4:\"true\";s:16:\"cdp-display-edit\";s:4:\"true\";s:17:\"cdp-display-admin\";s:4:\"true\";s:16:\"cdp-display-bulk\";s:4:\"true\";s:21:\"cdp-display-gutenberg\";s:4:\"true\";s:19:\"cdp-references-post\";s:5:\"false\";s:19:\"cdp-references-edit\";s:5:\"false\";s:18:\"cdp-premium-import\";s:5:\"false\";s:24:\"cdp-premium-hide-tooltip\";s:5:\"false\";s:20:\"cdp-menu-in-settings\";s:5:\"false\";}}','yes'),
(15325,'_cdp_profiles','a:1:{s:7:\"default\";a:24:{s:5:\"title\";s:4:\"true\";s:4:\"date\";s:5:\"false\";s:6:\"status\";s:5:\"false\";s:4:\"slug\";s:4:\"true\";s:7:\"excerpt\";s:4:\"true\";s:7:\"content\";s:4:\"true\";s:7:\"f_image\";s:4:\"true\";s:8:\"template\";s:4:\"true\";s:6:\"format\";s:4:\"true\";s:6:\"author\";s:4:\"true\";s:8:\"password\";s:4:\"true\";s:11:\"attachments\";s:5:\"false\";s:8:\"children\";s:5:\"false\";s:8:\"comments\";s:5:\"false\";s:10:\"menu_order\";s:4:\"true\";s:8:\"category\";s:4:\"true\";s:8:\"post_tag\";s:4:\"true\";s:8:\"taxonomy\";s:4:\"true\";s:8:\"nav_menu\";s:4:\"true\";s:13:\"link_category\";s:4:\"true\";s:5:\"names\";a:5:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:10:\"#[Counter]\";s:6:\"format\";s:1:\"1\";s:6:\"custom\";s:5:\"m/d/Y\";s:7:\"display\";s:7:\"Default\";}s:9:\"usmplugin\";s:5:\"false\";s:5:\"yoast\";s:5:\"false\";s:3:\"woo\";s:5:\"false\";}}','yes'),
(15326,'_cdp_default_setup','1','yes'),
(15327,'_irb_h_bn_review','a:2:{s:5:\"users\";a:1:{i:1;a:2:{s:17:\"copy-delete-posts\";a:1:{s:7:\"dismiss\";b:1;}s:13:\"delay_between\";i:1656195329;}}s:17:\"copy-delete-posts\";i:1625964341;}','yes'),
(15328,'_cdp_preselections','a:1:{i:1;s:7:\"default\";}','yes'),
(15331,'recovery_mode_email_last_sent','1671136737','yes'),
(15339,'analyst_accounts_data','s:418:\"O:26:\"Account\\AccountDataFactory\":1:{s:11:\"\0*\0accounts\";a:1:{i:0;O:19:\"Account\\AccountData\":7:{s:5:\"\0*\0id\";s:16:\"ovgxe3xq075ladbp\";s:9:\"\0*\0secret\";s:40:\"b4de5ed2ba7be687e233d152ec1e8fd116052ab0\";s:7:\"\0*\0path\";s:95:\"/home/onetruew/choiceresources.co.uk/wp-content/plugins/copy-delete-posts/copy-delete-posts.php\";s:14:\"\0*\0isInstalled\";b:0;s:12:\"\0*\0isOptedIn\";b:0;s:11:\"\0*\0isSigned\";b:0;s:20:\"\0*\0isInstallResolved\";N;}}}\";','yes'),
(15344,'duplicate_post_copytitle','1','yes'),
(15345,'duplicate_post_copydate','0','yes'),
(15346,'duplicate_post_copystatus','0','yes'),
(15347,'duplicate_post_copyslug','0','yes'),
(15348,'duplicate_post_copyexcerpt','1','yes'),
(15349,'duplicate_post_copycontent','1','yes'),
(15350,'duplicate_post_copythumbnail','1','yes'),
(15351,'duplicate_post_copytemplate','1','yes'),
(15352,'duplicate_post_copyformat','1','yes'),
(15353,'duplicate_post_copyauthor','0','yes'),
(15354,'duplicate_post_copypassword','0','yes'),
(15355,'duplicate_post_copyattachments','0','yes'),
(15356,'duplicate_post_copychildren','0','yes'),
(15357,'duplicate_post_copycomments','0','yes'),
(15358,'duplicate_post_copymenuorder','1','yes'),
(15359,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),
(15360,'duplicate_post_blacklist','','yes'),
(15361,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),
(15362,'duplicate_post_show_original_column','0','yes'),
(15363,'duplicate_post_show_original_in_post_states','0','yes'),
(15364,'duplicate_post_show_original_meta_box','0','yes'),
(15365,'duplicate_post_show_link','a:3:{s:9:\"new_draft\";s:1:\"1\";s:5:\"clone\";s:1:\"1\";s:17:\"rewrite_republish\";s:1:\"1\";}','yes'),
(15366,'duplicate_post_show_link_in','a:4:{s:3:\"row\";s:1:\"1\";s:8:\"adminbar\";s:1:\"1\";s:9:\"submitbox\";s:1:\"1\";s:11:\"bulkactions\";s:1:\"1\";}','yes'),
(15367,'duplicate_post_show_notice','1','no'),
(15368,'duplicate_post_version','4.1.2','yes'),
(16092,'updraft_lock_8a93443a33b1','1626016065','no'),
(16380,'woocommerce_myaccount_subscriptions_endpoint','subscriptions','yes'),
(16381,'woocommerce_myaccount_view_subscription_endpoint','view-subscription','yes'),
(16382,'woocommerce_myaccount_subscription_payment_method_endpoint','subscription-payment-method','yes'),
(16930,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(17899,'wp_force_deactivated_plugins','a:0:{}','yes'),
(17994,'wc_facebook_background_product_sync_job_e506347151c2e3e0a716a8030ad5d189','{\"requests\":{\"p-2764\":\"UPDATE\"},\"id\":\"e506347151c2e3e0a716a8030ad5d189\",\"created_at\":\"2021-07-30 10:00:29\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-30 10:00:30\",\"updated_at\":\"2021-07-30 10:00:30\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-30 10:00:30\"}','no'),
(18029,'wc_facebook_background_product_sync_job_5e4232ff163ecc9622a68bb4319534b6','{\"requests\":{\"p-2769\":\"UPDATE\"},\"id\":\"5e4232ff163ecc9622a68bb4319534b6\",\"created_at\":\"2021-07-30 10:39:33\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-30 10:39:34\",\"updated_at\":\"2021-07-30 10:39:34\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-30 10:39:34\"}','no'),
(18111,'wc_facebook_background_product_sync_job_d274124dbd5febdbf61164f4f8c9c442','{\"requests\":{\"p-2782\":\"UPDATE\"},\"id\":\"d274124dbd5febdbf61164f4f8c9c442\",\"created_at\":\"2021-07-30 12:15:03\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-30 12:15:05\",\"updated_at\":\"2021-07-30 12:15:05\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-30 12:15:05\"}','no'),
(18158,'wc_facebook_background_product_sync_job_a1cd9785d4afbd758ccd3c3b7ae7316b','{\"requests\":{\"p-2789\":\"UPDATE\"},\"id\":\"a1cd9785d4afbd758ccd3c3b7ae7316b\",\"created_at\":\"2021-07-30 13:30:49\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-30 13:30:50\",\"updated_at\":\"2021-07-30 13:30:50\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-30 13:30:50\"}','no'),
(18278,'wc_facebook_background_product_sync_job_216d49ad7ecaf619fe5efa29e256da0c','{\"requests\":{\"p-2802\":\"UPDATE\"},\"id\":\"216d49ad7ecaf619fe5efa29e256da0c\",\"created_at\":\"2021-07-30 17:58:05\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-30 17:58:06\",\"updated_at\":\"2021-07-30 17:58:06\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-30 17:58:06\"}','no'),
(18317,'wc_facebook_background_product_sync_job_944d9f4a9a24bba9722da01e69f6bc69','{\"requests\":{\"p-2813\":\"UPDATE\"},\"id\":\"944d9f4a9a24bba9722da01e69f6bc69\",\"created_at\":\"2021-07-30 19:02:26\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-30 19:02:27\",\"updated_at\":\"2021-07-30 19:02:27\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-30 19:02:27\"}','no'),
(18360,'wc_facebook_background_product_sync_job_8d05b44018a13424568c24e20b23a97e','{\"requests\":{\"p-2822\":\"UPDATE\"},\"id\":\"8d05b44018a13424568c24e20b23a97e\",\"created_at\":\"2021-07-30 19:39:02\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-30 19:39:04\",\"updated_at\":\"2021-07-30 19:39:04\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-30 19:39:04\"}','no'),
(18369,'wc_facebook_background_product_sync_job_656561357607dec1f14c9b1b4003177e','{\"requests\":{\"p-2826\":\"UPDATE\"},\"id\":\"656561357607dec1f14c9b1b4003177e\",\"created_at\":\"2021-07-30 19:44:48\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-30 19:44:49\",\"updated_at\":\"2021-07-30 19:44:49\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-30 19:44:49\"}','no'),
(18383,'wc_facebook_background_product_sync_job_69f733dd62a643711969af9aadbbdb3f','{\"requests\":{\"p-2830\":\"UPDATE\"},\"id\":\"69f733dd62a643711969af9aadbbdb3f\",\"created_at\":\"2021-07-30 19:54:58\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-30 19:54:59\",\"updated_at\":\"2021-07-30 19:54:59\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-30 19:54:59\"}','no'),
(18400,'wc_facebook_background_product_sync_job_6bceb6225558402496d928d083d69c62','{\"requests\":{\"p-2836\":\"UPDATE\"},\"id\":\"6bceb6225558402496d928d083d69c62\",\"created_at\":\"2021-07-30 20:09:15\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-07-30 20:09:16\",\"updated_at\":\"2021-07-30 20:09:16\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-07-30 20:09:16\"}','no'),
(20149,'wc_facebook_background_product_sync_job_55f4c453a57cca9271323ce12ba896f1','{\"requests\":{\"p-2921\":\"UPDATE\"},\"id\":\"55f4c453a57cca9271323ce12ba896f1\",\"created_at\":\"2021-08-11 21:18:38\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-11 21:18:40\",\"updated_at\":\"2021-08-11 21:18:40\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-11 21:18:40\"}','no'),
(20158,'wc_facebook_background_product_sync_job_0ec23f2d7bebbcb4596ade0bfcf1b791','{\"requests\":{\"p-2929\":\"UPDATE\"},\"id\":\"0ec23f2d7bebbcb4596ade0bfcf1b791\",\"created_at\":\"2021-08-11 21:24:39\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-11 21:24:41\",\"updated_at\":\"2021-08-11 21:24:41\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-11 21:24:41\"}','no'),
(20166,'wc_facebook_background_product_sync_job_900072add1e8ae8b0fa6089a6fac67a4','{\"requests\":{\"p-2934\":\"UPDATE\"},\"id\":\"900072add1e8ae8b0fa6089a6fac67a4\",\"created_at\":\"2021-08-11 21:29:39\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-11 21:29:40\",\"updated_at\":\"2021-08-11 21:29:40\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-11 21:29:40\"}','no'),
(20180,'wc_facebook_background_product_sync_job_273694ee64d606d04235ca363a7bc3b3','{\"requests\":{\"p-2940\":\"UPDATE\"},\"id\":\"273694ee64d606d04235ca363a7bc3b3\",\"created_at\":\"2021-08-11 21:42:49\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-11 21:42:50\",\"updated_at\":\"2021-08-11 21:42:50\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-11 21:42:50\"}','no'),
(20203,'wc_facebook_background_product_sync_job_ca4111e430d4e8d07bdf8d779b73d673','{\"requests\":{\"p-2946\":\"UPDATE\"},\"id\":\"ca4111e430d4e8d07bdf8d779b73d673\",\"created_at\":\"2021-08-11 22:03:33\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-11 22:03:35\",\"updated_at\":\"2021-08-11 22:03:35\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-11 22:03:35\"}','no'),
(20211,'wc_facebook_background_product_sync_job_c5020c48ed116eca4b657a343ca8e78c','{\"requests\":{\"p-2959\":\"UPDATE\"},\"id\":\"c5020c48ed116eca4b657a343ca8e78c\",\"created_at\":\"2021-08-11 22:08:29\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-11 22:08:30\",\"updated_at\":\"2021-08-11 22:08:31\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-11 22:08:31\"}','no'),
(20219,'wc_facebook_background_product_sync_job_afd194c5f152547c64e8ef8b1a013336','{\"requests\":{\"p-2966\":\"UPDATE\"},\"id\":\"afd194c5f152547c64e8ef8b1a013336\",\"created_at\":\"2021-08-11 22:13:44\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-11 22:13:45\",\"updated_at\":\"2021-08-11 22:13:45\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-11 22:13:45\"}','no'),
(20226,'wc_facebook_background_product_sync_job_a4db5fa85c340ca2bcc089e26efc2dbb','{\"requests\":{\"p-2974\":\"UPDATE\"},\"id\":\"a4db5fa85c340ca2bcc089e26efc2dbb\",\"created_at\":\"2021-08-11 22:16:56\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-11 22:16:57\",\"updated_at\":\"2021-08-11 22:16:57\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-11 22:16:57\"}','no'),
(20238,'wc_facebook_background_product_sync_job_f38ed0d84111e158974a87681f7e5308','{\"requests\":{\"p-2980\":\"UPDATE\"},\"id\":\"f38ed0d84111e158974a87681f7e5308\",\"created_at\":\"2021-08-11 22:26:28\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-11 22:26:29\",\"updated_at\":\"2021-08-11 22:26:29\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-11 22:26:29\"}','no'),
(20251,'wc_facebook_background_product_sync_job_bc96f9eeebfd1b14cef719c3d6d086db','{\"requests\":{\"p-2986\":\"UPDATE\"},\"id\":\"bc96f9eeebfd1b14cef719c3d6d086db\",\"created_at\":\"2021-08-11 22:41:12\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-11 22:41:13\",\"updated_at\":\"2021-08-11 22:41:13\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-11 22:41:13\"}','no'),
(20888,'wc_facebook_background_product_sync_job_4f2a135c4885d25f4efef62b27ec7c6a','{\"requests\":{\"p-3194\":\"UPDATE\"},\"id\":\"4f2a135c4885d25f4efef62b27ec7c6a\",\"created_at\":\"2021-08-12 23:10:31\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-12 23:10:32\",\"updated_at\":\"2021-08-12 23:10:32\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-12 23:10:32\"}','no'),
(20892,'wc_facebook_background_product_sync_job_fadf199eee1670162e58f37b7e83bf6b','{\"requests\":{\"p-3198\":\"UPDATE\"},\"id\":\"fadf199eee1670162e58f37b7e83bf6b\",\"created_at\":\"2021-08-12 23:11:59\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-12 23:12:00\",\"updated_at\":\"2021-08-12 23:12:00\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-12 23:12:00\"}','no'),
(20900,'wc_facebook_background_product_sync_job_c719b161bd84468a4ba8e9131c483a56','{\"requests\":{\"p-3202\":\"UPDATE\"},\"id\":\"c719b161bd84468a4ba8e9131c483a56\",\"created_at\":\"2021-08-12 23:15:27\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-12 23:15:29\",\"updated_at\":\"2021-08-12 23:15:29\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-12 23:15:29\"}','no'),
(20907,'wc_facebook_background_product_sync_job_8df7e3d1b955b2d7f78f20f1e7f926b5','{\"requests\":{\"p-3209\":\"UPDATE\"},\"id\":\"8df7e3d1b955b2d7f78f20f1e7f926b5\",\"created_at\":\"2021-08-12 23:19:35\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-12 23:19:36\",\"updated_at\":\"2021-08-12 23:19:36\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-12 23:19:36\"}','no'),
(20913,'wc_facebook_background_product_sync_job_7bdc802a1b3a0152ae6b2cd17abf4913','{\"requests\":{\"p-3218\":\"UPDATE\"},\"id\":\"7bdc802a1b3a0152ae6b2cd17abf4913\",\"created_at\":\"2021-08-12 23:22:14\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-12 23:22:16\",\"updated_at\":\"2021-08-12 23:22:16\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-12 23:22:16\"}','no'),
(21530,'wc_facebook_background_product_sync_job_48ffe9e7c1e0084fbce889f44047167a','{\"requests\":{\"p-3223\":\"UPDATE\"},\"id\":\"48ffe9e7c1e0084fbce889f44047167a\",\"created_at\":\"2021-08-16 15:29:25\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-16 15:29:26\",\"updated_at\":\"2021-08-16 15:29:26\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-16 15:29:26\"}','no'),
(21536,'wc_facebook_background_product_sync_job_af9e95b9a88966211b7dc687a9ff152c','{\"requests\":{\"p-3229\":\"UPDATE\"},\"id\":\"af9e95b9a88966211b7dc687a9ff152c\",\"created_at\":\"2021-08-16 15:32:34\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-16 15:32:35\",\"updated_at\":\"2021-08-16 15:32:35\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-16 15:32:35\"}','no'),
(21546,'wc_facebook_background_product_sync_job_27581f34c871e3fd31e52881538fb355','{\"requests\":{\"p-3233\":\"UPDATE\"},\"id\":\"27581f34c871e3fd31e52881538fb355\",\"created_at\":\"2021-08-16 15:39:13\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-16 15:39:15\",\"updated_at\":\"2021-08-16 15:39:15\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-16 15:39:15\"}','no'),
(21553,'wc_facebook_background_product_sync_job_8bd1a24cd47d8337ef4c6705259bdc6c','{\"requests\":{\"p-3239\":\"UPDATE\"},\"id\":\"8bd1a24cd47d8337ef4c6705259bdc6c\",\"created_at\":\"2021-08-16 15:42:08\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-16 15:42:09\",\"updated_at\":\"2021-08-16 15:42:09\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-16 15:42:09\"}','no'),
(21560,'wc_facebook_background_product_sync_job_5a21606445d7e186f0e7a65861ff5044','{\"requests\":{\"p-3243\":\"UPDATE\"},\"id\":\"5a21606445d7e186f0e7a65861ff5044\",\"created_at\":\"2021-08-16 15:45:14\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-16 15:45:16\",\"updated_at\":\"2021-08-16 15:45:16\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-16 15:45:16\"}','no'),
(21568,'wc_facebook_background_product_sync_job_8b934dce8cb55dd2581d7b3e74246c18','{\"requests\":{\"p-3247\":\"UPDATE\"},\"id\":\"8b934dce8cb55dd2581d7b3e74246c18\",\"created_at\":\"2021-08-16 15:48:43\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-16 15:48:45\",\"updated_at\":\"2021-08-16 15:48:45\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-16 15:48:45\"}','no'),
(21581,'wc_facebook_background_product_sync_job_23fb4c8ebf31b3dd447a615a0af2c69f','{\"requests\":{\"p-3253\":\"UPDATE\"},\"id\":\"23fb4c8ebf31b3dd447a615a0af2c69f\",\"created_at\":\"2021-08-16 15:56:02\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-16 15:56:03\",\"updated_at\":\"2021-08-16 15:56:03\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-16 15:56:03\"}','no'),
(21588,'wc_facebook_background_product_sync_job_e9bebfe06fe256c2ab72032ab1c0f4d3','{\"requests\":{\"p-3257\":\"UPDATE\"},\"id\":\"e9bebfe06fe256c2ab72032ab1c0f4d3\",\"created_at\":\"2021-08-16 15:59:35\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-16 15:59:36\",\"updated_at\":\"2021-08-16 15:59:36\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-16 15:59:36\"}','no'),
(21608,'wc_facebook_background_product_sync_job_5fd045c56f098f3742acf281ba1cf6fe','{\"requests\":{\"p-3263\":\"UPDATE\"},\"id\":\"5fd045c56f098f3742acf281ba1cf6fe\",\"created_at\":\"2021-08-16 16:30:03\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-16 16:30:04\",\"updated_at\":\"2021-08-16 16:30:04\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-16 16:30:04\"}','no'),
(21620,'wc_facebook_background_product_sync_job_fcecd4ff1f0be642bf21db27d022e021','{\"requests\":{\"p-3270\":\"UPDATE\"},\"id\":\"fcecd4ff1f0be642bf21db27d022e021\",\"created_at\":\"2021-08-16 16:36:04\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2021-08-16 16:36:05\",\"updated_at\":\"2021-08-16 16:36:05\",\"total\":1,\"progress\":1,\"completed_at\":\"2021-08-16 16:36:05\"}','no'),
(22090,'woocommerce_downloads_redirect_fallback_allowed','no','no'),
(22091,'woocommerce_analytics_enabled','yes','yes'),
(22092,'woocommerce_inbox_variant_assignment','3','yes'),
(22129,'theme_mods_hello-elementor','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:7210;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1654393209;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:12:\"categories-2\";i:3;s:14:\"recent-posts-2\";i:4;s:17:\"recent-comments-2\";i:5;s:8:\"search-2\";}}}s:11:\"custom_logo\";i:35898;}','yes'),
(22130,'hello_theme_version','2.8.1','yes'),
(27405,'amelia_settings','{\"db\":{\"mysqliEnabled\":false,\"pdoEmulatePrepares\":false,\"pdoBigSelect\":false,\"ssl\":{\"enable\":false,\"key\":null,\"cert\":null,\"ca\":null}},\"general\":{\"timeSlotLength\":60,\"serviceDurationAsSlot\":false,\"bufferTimeInSlot\":true,\"defaultAppointmentStatus\":\"approved\",\"minimumTimeRequirementPriorToBooking\":86400,\"minimumTimeRequirementPriorToCanceling\":86400,\"minimumTimeRequirementPriorToRescheduling\":86400,\"numberOfDaysAvailableForBooking\":60,\"backendSlotsDaysInFuture\":365,\"backendSlotsDaysInPast\":365,\"phoneDefaultCountryCode\":\"auto\",\"requiredPhoneNumberField\":true,\"requiredEmailField\":true,\"itemsPerPage\":12,\"appointmentsPerPage\":100,\"servicesPerPage\":100,\"customersFilterLimit\":100,\"gMapApiKey\":\"\",\"addToCalendar\":true,\"sendIcsAttachment\":false,\"defaultPageOnBackend\":\"Dashboard\",\"showClientTimeZone\":true,\"redirectUrlAfterAppointment\":\"\",\"customFieldsUploadsPath\":\"\",\"runInstantPostBookingActions\":false,\"useWindowVueInAmelia\":true,\"useWindowVueInAmeliaBack\":true,\"sortingPackages\":\"nameAsc\",\"sortingServices\":\"nameAsc\",\"calendarLocaleSubstitutes\":[],\"googleRecaptcha\":{\"enabled\":false,\"invisible\":true,\"siteKey\":\"\",\"secret\":\"\"},\"usedLanguages\":[\"en_GB\"]},\"company\":{\"pictureFullPath\":\"\",\"pictureThumbPath\":\"\",\"name\":\"Choice Resources\",\"address\":\"\",\"phone\":\"\",\"countryPhoneIso\":\"gb\",\"website\":\"wwww.choiceresources.co.uk\"},\"notifications\":{\"mailService\":\"smtp\",\"smtpHost\":\"smtp.gmail.com\",\"smtpPort\":\"587\",\"smtpSecure\":\"tls\",\"smtpUsername\":\"ivankulongo@gmail.com\",\"smtpPassword\":\"Nathaniel4\",\"mailgunApiKey\":\"\",\"mailgunDomain\":\"\",\"mailgunEndpoint\":\"\",\"senderName\":\"Choice Health\",\"senderEmail\":\"Noreply@choiceresources.co.uk\",\"notifyCustomers\":true,\"sendAllCF\":true,\"smsAlphaSenderId\":\"Amelia\",\"smsSignedIn\":false,\"smsApiToken\":\"\",\"bccEmail\":\"choiceresources2021@gmail.com\",\"bccSms\":\"\",\"cancelSuccessUrl\":\"\",\"cancelErrorUrl\":\"\",\"breakReplacement\":\"<br>\"},\"daysOff\":[],\"weekSchedule\":[{\"day\":\"Monday\",\"time\":[\"09:00\",\"17:00\"],\"breaks\":[],\"periods\":[]},{\"day\":\"Tuesday\",\"time\":[\"09:00\",\"17:00\"],\"breaks\":[],\"periods\":[]},{\"day\":\"Wednesday\",\"time\":[\"09:00\",\"17:00\"],\"breaks\":[],\"periods\":[]},{\"day\":\"Thursday\",\"time\":[\"09:00\",\"17:00\"],\"breaks\":[],\"periods\":[]},{\"day\":\"Friday\",\"time\":[\"09:00\",\"17:00\"],\"breaks\":[],\"periods\":[]},{\"day\":\"Saturday\",\"time\":[],\"breaks\":[],\"periods\":[]},{\"day\":\"Sunday\",\"time\":[],\"breaks\":[],\"periods\":[]}],\"googleCalendar\":{\"clientID\":\"\",\"clientSecret\":\"\",\"redirectURI\":\"http:\\/\\/choiceresources.co.uk\\/wp-admin\\/admin.php?page=wpamelia-employees\",\"showAttendees\":false,\"insertPendingAppointments\":false,\"addAttendees\":false,\"sendEventInvitationEmail\":false,\"removeGoogleCalendarBusySlots\":false,\"maximumNumberOfEventsReturned\":50,\"eventTitle\":\"%service_name%\",\"eventDescription\":\"\",\"includeBufferTimeGoogleCalendar\":false,\"status\":\"tentative\",\"enableGoogleMeet\":false},\"outlookCalendar\":{\"clientID\":\"\",\"clientSecret\":\"\",\"redirectURI\":\"http:\\/\\/choiceresources.co.uk\\/wp-admin\\/\",\"insertPendingAppointments\":false,\"addAttendees\":false,\"sendEventInvitationEmail\":false,\"removeOutlookCalendarBusySlots\":false,\"maximumNumberOfEventsReturned\":50,\"eventTitle\":\"%service_name%\",\"eventDescription\":\"\",\"includeBufferTimeOutlookCalendar\":false},\"payments\":{\"currency\":\"GBP\",\"symbol\":\"\\u00a3\",\"priceSymbolPosition\":\"before\",\"priceNumberOfDecimals\":2,\"priceSeparator\":1,\"hideCurrencySymbolFrontend\":false,\"defaultPaymentMethod\":\"onSite\",\"onSite\":false,\"coupons\":true,\"payPal\":{\"enabled\":false,\"sandboxMode\":false,\"liveApiClientId\":\"\",\"liveApiSecret\":\"\",\"testApiClientId\":\"\",\"testApiSecret\":\"\",\"description\":{\"enabled\":false,\"appointment\":\"\",\"package\":\"\",\"event\":\"\"}},\"stripe\":{\"enabled\":false,\"testMode\":false,\"livePublishableKey\":\"\",\"liveSecretKey\":\"\",\"testPublishableKey\":\"\",\"testSecretKey\":\"\",\"description\":{\"enabled\":false,\"appointment\":\"\",\"package\":\"\",\"event\":\"\"},\"metaData\":{\"enabled\":false,\"appointment\":null,\"package\":null,\"event\":null},\"manualCapture\":false},\"wc\":{\"enabled\":true,\"productId\":3918,\"onSiteIfFree\":false,\"page\":\"cart\",\"dashboard\":true,\"checkoutData\":{\"appointment\":\"\",\"package\":\"\",\"event\":\"\",\"translations\":{\"appointment\":{\"en_GB\":\"\"},\"event\":{\"en_GB\":\"\"},\"package\":{\"en_GB\":\"\"}}},\"skipCheckoutGetValueProcessing\":false},\"mollie\":{\"enabled\":false,\"testMode\":false,\"liveApiKey\":\"\",\"testApiKey\":\"\",\"description\":{\"enabled\":false,\"appointment\":\"\",\"package\":\"\",\"event\":\"\"},\"metaData\":{\"enabled\":false,\"appointment\":null,\"package\":null,\"event\":null},\"method\":[]}},\"activation\":{\"showActivationSettings\":true,\"active\":false,\"purchaseCodeStore\":\"\",\"envatoTokenEmail\":\"\",\"version\":\"4.2\",\"deleteTables\":false,\"stash\":false},\"customization\":{\"primaryColor\":\"#1A84EE\",\"primaryGradient1\":\"#1A84EE\",\"primaryGradient2\":\"#0454A2\",\"textColor\":\"#354052\",\"textColorOnBackground\":\"#FFFFFF\",\"font\":\"Amelia Roboto\",\"useGenerated\":false,\"hash\":\"IalfSFrwAj\"},\"labels\":{\"enabled\":true,\"employee\":\"Medical Herbalist \",\"employees\":\"Staff\",\"service\":\"Consultation\",\"services\":\"Consultation\"},\"roles\":{\"allowConfigureSchedule\":false,\"allowConfigureDaysOff\":false,\"allowConfigureSpecialDays\":false,\"allowConfigureServices\":false,\"allowWriteAppointments\":false,\"automaticallyCreateCustomer\":false,\"inspectCustomerInfo\":false,\"allowCustomerReschedule\":false,\"allowCustomerDeleteProfile\":false,\"allowWriteEvents\":false,\"enabledHttpAuthorization\":true,\"customerCabinet\":{\"enabled\":true,\"headerJwtSecret\":\"c537e5d5a265fe99f315\",\"urlJwtSecret\":\"3c5160603074e716d43b\",\"tokenValidTime\":2592000,\"pageUrl\":\"\",\"loginEnabled\":true,\"filterDate\":false,\"translations\":{\"url\":[]}},\"providerCabinet\":{\"enabled\":true,\"headerJwtSecret\":\"3babda7f293eedeeb71e\",\"urlJwtSecret\":\"99aab2fe65719c20658a\",\"tokenValidTime\":2592000,\"pageUrl\":\"\",\"loginEnabled\":true,\"filterDate\":false},\"urlAttachment\":{\"enabled\":true,\"headerJwtSecret\":\"4ac0918450aceea5040f\",\"urlJwtSecret\":\"6e848bcc919bd2e90452\",\"tokenValidTime\":2592000,\"pageUrl\":\"\",\"loginEnabled\":true,\"filterDate\":false}},\"appointments\":{\"isGloballyBusySlot\":false,\"bookMultipleTimes\":false,\"allowBookingIfPending\":true,\"allowBookingIfNotMin\":true,\"openedBookingAfterMin\":false,\"recurringPlaceholders\":\"DateTime: %appointment_date_time%\",\"recurringPlaceholdersSms\":\"DateTime: %appointment_date_time%\",\"recurringPlaceholdersCustomer\":\"DateTime: %appointment_date_time%\",\"recurringPlaceholdersCustomerSms\":\"DateTime: %appointment_date_time%\",\"packagePlaceholders\":\"DateTime: %appointment_date_time%\",\"packagePlaceholdersSms\":\"DateTime: %appointment_date_time%\",\"packagePlaceholdersCustomer\":\"DateTime: %appointment_date_time%\",\"packagePlaceholdersCustomerSms\":\"DateTime: %appointment_date_time%\",\"translations\":{\"recurringPlaceholdersCustomer\":null,\"recurringPlaceholdersCustomerSms\":null,\"packagePlaceholdersCustomer\":null,\"packagePlaceholdersCustomerSms\":null}},\"webHooks\":[],\"zoom\":{\"enabled\":true,\"apiKey\":\"\",\"apiSecret\":\"\",\"meetingTitle\":\"%reservation_name%\",\"meetingAgenda\":\"%reservation_description%\",\"pendingAppointmentsMeetings\":false,\"maxUsersCount\":300},\"lessonSpace\":{\"enabled\":true,\"apiKey\":\"\",\"spaceNameAppointments\":\"%reservation_name%\",\"spaceNameEvents\":\"%reservation_name%\",\"pendingAppointments\":false},\"ics\":{\"description\":{\"appointment\":\"\",\"event\":\"\",\"translations\":{\"appointment\":null,\"event\":null}}}}','yes'),
(32431,'_site_transient_ai1wm_last_check_for_updates','1654607782','no'),
(32432,'ai1wm_updater','a:0:{}','yes'),
(32872,'wc_facebook_background_product_sync_job_8875ebb2c27e4b4f03081d1ab5e70386','{\"requests\":{\"p-4832\":\"UPDATE\"},\"id\":\"8875ebb2c27e4b4f03081d1ab5e70386\",\"created_at\":\"2022-01-08 22:13:27\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-01-08 22:13:28\",\"updated_at\":\"2022-01-08 22:13:28\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-01-08 22:13:28\"}','no'),
(35451,'elementor_events_db_version','1.0.0','no'),
(35484,'woocommerce_admin_version','2.5.2','yes'),
(35490,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),
(35491,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),
(35492,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),
(35495,'elementor_google_maps_api_key','','yes'),
(35497,'elementor_font_display','auto','yes'),
(35498,'elementor_experiment-e_optimized_css_loading','active','yes'),
(35499,'elementor_experiment-e_font_icon_svg','default','yes'),
(35500,'elementor_experiment-additional_custom_breakpoints','active','yes'),
(35501,'elementor_experiment-container','active','yes'),
(35502,'elementor_experiment-hello-theme-header-footer','default','yes'),
(35503,'elementor_experiment-video-playlist','default','yes'),
(35504,'elementor_experiment-e_import_export','default','yes'),
(35505,'elementor_experiment-e_hidden_wordpress_widgets','default','yes'),
(35506,'elementor_experiment-elements-color-picker','default','yes'),
(35507,'elementor_experiment-favorite-widgets','default','yes'),
(35508,'elementor_experiment-admin-top-bar','default','yes'),
(36158,'woocommerce_refund_returns_page_id','5658','yes'),
(36163,'wc_facebook_background_product_sync_job_225a88c330ffa784091315fc31845cda','{\"requests\":{\"p-5660\":\"UPDATE\"},\"id\":\"225a88c330ffa784091315fc31845cda\",\"created_at\":\"2022-04-25 17:50:04\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-04-25 17:50:07\",\"updated_at\":\"2022-04-25 17:50:07\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-04-25 17:50:07\"}','no'),
(36166,'wc_facebook_background_product_sync_job_f0736e7a9528d2aa707c3ca79778dbba','{\"requests\":{\"p-5663\":\"UPDATE\"},\"id\":\"f0736e7a9528d2aa707c3ca79778dbba\",\"created_at\":\"2022-04-25 17:52:16\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-04-25 17:52:18\",\"updated_at\":\"2022-04-25 17:52:18\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-04-25 17:52:18\"}','no'),
(36169,'wc_facebook_background_product_sync_job_f7c913a63ee40d118c3d14ef0aa27643','{\"requests\":{\"p-5666\":\"UPDATE\"},\"id\":\"f7c913a63ee40d118c3d14ef0aa27643\",\"created_at\":\"2022-04-25 17:54:11\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-04-25 17:54:15\",\"updated_at\":\"2022-04-25 17:54:15\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-04-25 17:54:15\"}','no'),
(36172,'wc_facebook_background_product_sync_job_4b99ebde1784f768cad84fa1c4e7052e','{\"requests\":{\"p-5670\":\"UPDATE\"},\"id\":\"4b99ebde1784f768cad84fa1c4e7052e\",\"created_at\":\"2022-04-25 17:56:08\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-04-25 17:56:11\",\"updated_at\":\"2022-04-25 17:56:11\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-04-25 17:56:11\"}','no'),
(36836,'woocommerce_thumbnail_cropping','1:1','yes'),
(36837,'woocommerce_shop_page_display','both','yes'),
(36838,'woocommerce_category_archive_display','both','yes'),
(36839,'woocommerce_default_catalog_orderby','date','yes'),
(36854,'woolentor_plugin_permalinks_flushed','yes','yes'),
(36863,'woolentor_woo_template_tabs','a:5:{s:18:\"enablecustomlayout\";s:2:\"on\";s:20:\"shoppageproductlimit\";s:1:\"2\";s:17:\"singleproductpage\";s:1:\"0\";s:18:\"productarchivepage\";s:4:\"6559\";s:21:\"productallarchivepage\";s:1:\"0\";}','yes'),
(36872,'wc_facebook_background_product_sync_job_696be244528840e8a3a781ccabaaad3d','{\"requests\":{\"p-6569\":\"UPDATE\"},\"id\":\"696be244528840e8a3a781ccabaaad3d\",\"created_at\":\"2022-05-31 18:35:19\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-05-31 18:35:23\",\"updated_at\":\"2022-05-31 18:35:23\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-05-31 18:35:23\"}','no'),
(36877,'woocommerce_thumbnail_cropping_custom_width','3','yes'),
(36878,'woocommerce_thumbnail_cropping_custom_height','4','yes'),
(36881,'wc_facebook_background_product_sync_job_f193cb5d822e0981bb9078c544822d19','{\"requests\":{\"p-6575\":\"UPDATE\"},\"id\":\"f193cb5d822e0981bb9078c544822d19\",\"created_at\":\"2022-05-31 22:05:08\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-05-31 22:05:11\",\"updated_at\":\"2022-05-31 22:05:11\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-05-31 22:05:11\"}','no'),
(36942,'wc_facebook_background_product_sync_job_f6aebad66a3a7f5f19d8b2a241644738','{\"requests\":{\"p-6706\":\"UPDATE\"},\"id\":\"f6aebad66a3a7f5f19d8b2a241644738\",\"created_at\":\"2022-06-01 08:12:22\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-01 08:12:26\",\"updated_at\":\"2022-06-01 08:12:26\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-01 08:12:26\"}','no'),
(37144,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:50:\"unlimited-elements-for-elementor/provider/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.6.2\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1726822387;s:11:\"plugin_path\";s:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";}}s:7:\"abspath\";s:37:\"/home/onetruew/choiceresources.co.uk/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";s:8:\"sdk_path\";s:50:\"unlimited-elements-for-elementor/provider/freemius\";s:7:\"version\";s:5:\"2.6.2\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1726822387;}}','yes'),
(37145,'fs_debug_mode','','yes'),
(37146,'fs_accounts','a:8:{s:21:\"id_slug_type_path_map\";a:1:{i:4036;a:3:{s:4:\"slug\";s:32:\"unlimited-elements-for-elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";}}s:11:\"plugin_data\";a:1:{s:32:\"unlimited-elements-for-elementor\";a:19:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1654113336;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";s:6:\"2.5.10\";s:11:\"sdk_version\";s:5:\"2.6.2\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:6:\"1.5.82\";s:14:\"plugin_version\";s:6:\"1.5.95\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:21:\"choiceresources.co.uk\";s:9:\"server_ip\";s:14:\"85.255.232.111\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1654113336;s:7:\"version\";s:6:\"1.5.16\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1654652534;s:7:\"version\";s:6:\"1.5.16\";}s:30:\"affiliate_program_notice_shown\";i:1656852447;s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:2:\"15\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:0;}s:19:\"last_load_timestamp\";i:1730201206;}}s:13:\"file_slug_map\";a:1:{s:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";s:32:\"unlimited-elements-for-elementor\";}s:7:\"plugins\";a:1:{s:32:\"unlimited-elements-for-elementor\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:32:\"Unlimited Elements for Elementor\";s:4:\"slug\";s:32:\"unlimited-elements-for-elementor\";s:12:\"premium_slug\";s:22:\"unlimited-elements-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:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";s:7:\"version\";s:6:\"1.5.95\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:5:\"(Pro)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_719fa791fb45bf1896e3916eca491\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"4036\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"198ea59ef928150e0efc111319d983b4\";s:13:\"admin_notices\";a:1:{s:32:\"unlimited-elements-for-elementor\";a:0:{}}s:12:\"gc_timestamp\";a:0:{}s:10:\"theme_data\";a:0:{}}','yes'),
(37147,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),
(37148,'fs_api_cache','a:0:{}','no'),
(37151,'unitecreator_db_version','5','yes');
INSERT INTO `wphu_options` VALUES
(37154,'addon_library_catalog','a:3:{s:5:\"stamp\";i:1694683145;s:7:\"catalog\";a:3:{s:6:\"addons\";a:26:{s:16:\"Creative Widgets\";a:27:{i:0;a:6:{s:5:\"title\";s:15:\"Image Accordion\";s:4:\"name\";s:14:\"image_accodion\";s:6:\"isfree\";b:0;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/image_accodion.gif\";s:7:\"preview\";s:36:\"image-accordion-widget-for-elementor\";s:11:\"update_hash\";s:32:\"cb2e8f70fc95d48f32fbfeab0192518d\";}i:1;a:6:{s:5:\"title\";s:12:\"Icon Bullets\";s:4:\"name\";s:19:\"uc_material_bullets\";s:6:\"isfree\";b:1;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/uc_material_bullets.jpg\";s:7:\"preview\";s:12:\"icon-bullets\";s:11:\"update_hash\";s:32:\"94d5050441ac7fac0763c52d6e4f00b1\";}i:2;a:6:{s:5:\"title\";s:11:\"Blob Shapes\";s:4:\"name\";s:11:\"blob_shapes\";s:6:\"isfree\";b:1;s:5:\"image\";s:85:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/blob_shapes.jpg\";s:7:\"preview\";s:31:\"blob-shape-widget-for-elementor\";s:11:\"update_hash\";s:32:\"058c834e25addb352b6258e849106ea6\";}i:3;a:6:{s:5:\"title\";s:8:\"Flip Box\";s:4:\"name\";s:8:\"flip_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:82:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/flip_box.gif\";s:7:\"preview\";s:29:\"flip-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"1cc9edbe88d9f0bed898339c8e039015\";}i:4;a:6:{s:5:\"title\";s:10:\"Number Box\";s:4:\"name\";s:20:\"circle_number_widget\";s:6:\"isfree\";b:1;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/circle_number_widget.jpg\";s:7:\"preview\";s:38:\"number-box-widget-widget-for-elementor\";s:11:\"update_hash\";s:32:\"af56ecc1aa16fcb8c35a82d7aa5c6e0e\";}i:5;a:6:{s:5:\"title\";s:14:\"Icon Accordion\";s:4:\"name\";s:17:\"uc_icon_accordion\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/uc_icon_accordion.jpg\";s:7:\"preview\";s:35:\"icon-accordion-widget-for-elementor\";s:11:\"update_hash\";s:32:\"9bda27c48a3bf77df312c3d638bef27d\";}i:6;a:6:{s:5:\"title\";s:17:\"Flip Box Carousel\";s:4:\"name\";s:17:\"carousel_flip_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/carousel_flip_box.gif\";s:7:\"preview\";s:38:\"flip-box-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"31f045b358b36387296f8daec6618c71\";}i:7;a:6:{s:5:\"title\";s:26:\"Animated Mouse Scroll Icon\";s:4:\"name\";s:26:\"animated_mouse_scroll_icon\";s:6:\"isfree\";b:1;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/animated_mouse_scroll_icon.gif\";s:7:\"preview\";s:47:\"animated-mouse-scroll-icon-widget-for-elementor\";s:11:\"update_hash\";s:32:\"1a32e4bde597de63bbca97357c95a58d\";}i:8;a:6:{s:5:\"title\";s:12:\"Rhombus Grid\";s:4:\"name\";s:24:\"ue_rhombus_image_gallery\";s:6:\"isfree\";b:0;s:5:\"image\";s:98:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/ue_rhombus_image_gallery.png\";s:7:\"preview\";s:33:\"rhombus-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"6bd91554f892d34d2dfc1f9a22d2ccf8\";}i:9;a:6:{s:5:\"title\";s:13:\"SVG Animation\";s:4:\"name\";s:21:\"uc_svg_draw_animation\";s:6:\"isfree\";b:1;s:5:\"image\";s:95:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/uc_svg_draw_animation.gif\";s:7:\"preview\";s:34:\"svg-animation-widget-for-elementor\";s:11:\"update_hash\";s:32:\"ed20f37146785ae32d142fd0807d28ce\";}i:10;a:6:{s:5:\"title\";s:13:\"Shape Bullets\";s:4:\"name\";s:18:\"uc_diamond_bullets\";s:6:\"isfree\";b:0;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/uc_diamond_bullets.jpg\";s:7:\"preview\";s:34:\"shape-bullets-widget-for-elementor\";s:11:\"update_hash\";s:32:\"bc50d04e64c806ec412122b6713688a1\";}i:11;a:6:{s:5:\"title\";s:16:\"Timeline Bullets\";s:4:\"name\";s:16:\"timeline_bullets\";s:6:\"isfree\";b:1;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/timeline_bullets.jpg\";s:7:\"preview\";s:37:\"timeline-bullets-widget-for-elementor\";s:11:\"update_hash\";s:32:\"877d4339b54a69d200c178ee41dc7294\";}i:12;a:6:{s:5:\"title\";s:24:\"Lordicon: Animated Icons\";s:4:\"name\";s:9:\"lord_icon\";s:6:\"isfree\";b:1;s:5:\"image\";s:83:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/lord_icon.png\";s:7:\"preview\";s:44:\"lordicon-animated-icons-widget-for-elementor\";s:11:\"update_hash\";s:32:\"2bd0d6150d22f321a58861acdb4dc6b8\";}i:13;a:6:{s:5:\"title\";s:9:\"Icon Tabs\";s:4:\"name\";s:14:\"uc_bullet_tabs\";s:6:\"isfree\";b:0;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/uc_bullet_tabs.jpg\";s:7:\"preview\";s:30:\"icon-tabs-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0261fab2826efda087d67c358746056f\";}i:14;a:6:{s:5:\"title\";s:13:\"Image Tooltip\";s:4:\"name\";s:13:\"image_tooltip\";s:6:\"isfree\";b:1;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/image_tooltip.jpg\";s:7:\"preview\";s:34:\"image-tooltip-widget-for-elementor\";s:11:\"update_hash\";s:32:\"cd8d4f43b60413c14e002b556fbe42fd\";}i:15;a:6:{s:5:\"title\";s:8:\"Hotspots\";s:4:\"name\";s:7:\"hotspot\";s:6:\"isfree\";b:0;s:5:\"image\";s:81:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/hotspot.jpg\";s:7:\"preview\";s:35:\"hotspots-for-elementor-page-builder\";s:11:\"update_hash\";s:32:\"6dc6b26571b35e2028fbbd4ac2c911de\";}i:16;a:6:{s:5:\"title\";s:12:\"Before After\";s:4:\"name\";s:15:\"uc_before_after\";s:6:\"isfree\";b:0;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/uc_before_after.jpg\";s:7:\"preview\";s:50:\"before-after-image-comparison-widget-for-elementor\";s:11:\"update_hash\";s:32:\"b9a9067b7a46f367152ff932355c92e4\";}i:17;a:6:{s:5:\"title\";s:19:\"Background Switcher\";s:4:\"name\";s:31:\"content_box_background_switcher\";s:6:\"isfree\";b:0;s:5:\"image\";s:105:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/content_box_background_switcher.gif\";s:7:\"preview\";s:40:\"background-switcher-widget-for-elementor\";s:11:\"update_hash\";s:32:\"965eca3814684c20ed94bfc1e0b4c1cd\";}i:18;a:6:{s:5:\"title\";s:20:\"Image Zoom Magnifier\";s:4:\"name\";s:20:\"image_zoom_magnifier\";s:6:\"isfree\";b:0;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/image_zoom_magnifier.gif\";s:7:\"preview\";s:41:\"image-zoom-magnifier-widget-for-elementor\";s:11:\"update_hash\";s:32:\"1805709b95129e1ef32771f9191e744f\";}i:19;a:6:{s:5:\"title\";s:14:\"Particle Image\";s:4:\"name\";s:19:\"blox_particles_logo\";s:6:\"isfree\";b:0;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/blox_particles_logo.jpg\";s:7:\"preview\";s:35:\"image-particle-widget-for-elementor\";s:11:\"update_hash\";s:32:\"7548f7f6aeb14f96af22e444c286e3af\";}i:20;a:6:{s:5:\"title\";s:25:\"360 Panorama Virtual Tour\";s:4:\"name\";s:8:\"360_view\";s:6:\"isfree\";b:0;s:5:\"image\";s:82:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/360_view.gif\";s:7:\"preview\";s:46:\"360-panorama-virtual-tour-widget-for-elementor\";s:11:\"update_hash\";s:32:\"8d61a180580ec69ce37c637c65ca6954\";}i:21;a:6:{s:5:\"title\";s:12:\"Image Shapes\";s:4:\"name\";s:12:\"image_shapes\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/image_shapes.jpg\";s:7:\"preview\";s:39:\"image-shapes-for-elementor-page-builder\";s:11:\"update_hash\";s:32:\"6f19a70d91d006182cdeb2a12d63ad73\";}i:22;a:6:{s:5:\"title\";s:23:\"Animated Hamburger Icon\";s:4:\"name\";s:23:\"animated_hamburger_icon\";s:6:\"isfree\";b:1;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/animated_hamburger_icon.gif\";s:7:\"preview\";s:37:\"animated-hamburger-icon-for-elementor\";s:11:\"update_hash\";s:32:\"377e2d413f913f71d6aa69669b719f09\";}i:23;a:6:{s:5:\"title\";s:19:\"Scroll Image Reveal\";s:4:\"name\";s:22:\"image_reveal_on_scroll\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/image_reveal_on_scroll.gif\";s:7:\"preview\";s:43:\"image-reveal-on-scroll-widget-for-elementor\";s:11:\"update_hash\";s:32:\"1b81a39a83bf236e84766899ea90e5cb\";}i:24;a:6:{s:5:\"title\";s:15:\"Christmas Icons\";s:4:\"name\";s:15:\"christmas_icons\";s:6:\"isfree\";b:0;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/christmas_icons.png\";s:7:\"preview\";s:36:\"christmas-icons-widget-for-elementor\";s:11:\"update_hash\";s:32:\"c7decb68e344eba52dc438f04caf3267\";}i:25;a:6:{s:5:\"title\";s:12:\"Morph Slider\";s:4:\"name\";s:12:\"morph_slider\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/morph_slider.gif\";s:7:\"preview\";s:33:\"morph-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"1b47436b915c77e465d6b580b773654b\";}i:26;a:6:{s:5:\"title\";s:18:\"Icon Box Accordion\";s:4:\"name\";s:18:\"icon_box_accordion\";s:6:\"isfree\";b:0;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Creative Widgets/icon_box_accordion.gif\";s:7:\"preview\";s:39:\"icon-box-accordion-widget-for-elementor\";s:11:\"update_hash\";s:32:\"2092c1ebdee4217bf7736464101722d7\";}}s:12:\"Post Widgets\";a:19:{i:0;a:6:{s:5:\"title\";s:9:\"Post Grid\";s:4:\"name\";s:9:\"post_grid\";s:6:\"isfree\";b:0;s:5:\"image\";s:79:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_grid.jpg\";s:7:\"preview\";s:30:\"post-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"06f3a7b40e34db41bfce9077ceb93f4e\";}i:1;a:6:{s:5:\"title\";s:18:\"Post Magazine Grid\";s:4:\"name\";s:18:\"post_magazine_grid\";s:6:\"isfree\";b:0;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_magazine_grid.jpg\";s:7:\"preview\";s:39:\"post-magazine-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"658d7bfbac00fbf6cc4d5e26e4c099a2\";}i:2;a:6:{s:5:\"title\";s:13:\"Post Carousel\";s:4:\"name\";s:13:\"post_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:83:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_carousel.jpg\";s:7:\"preview\";s:28:\"post-carousels-for-elementor\";s:11:\"update_hash\";s:32:\"38fb030f259fd4c64b511c02097317b5\";}i:3;a:6:{s:5:\"title\";s:18:\"Post Carousel Lite\";s:4:\"name\";s:21:\"uc_card_post_carousel\";s:6:\"isfree\";b:1;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/uc_card_post_carousel.jpg\";s:7:\"preview\";s:39:\"post-carousel-lite-widget-for-elementor\";s:11:\"update_hash\";s:32:\"21a895debafcdfbae18c73049ef0450a\";}i:4;a:6:{s:5:\"title\";s:14:\"Taxonomy Terms\";s:4:\"name\";s:17:\"ue_taxonomy_terms\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/ue_taxonomy_terms.jpg\";s:7:\"preview\";s:35:\"taxonomy-terms-widget-for-elementor\";s:11:\"update_hash\";s:32:\"c6b5759a4fa734df59f2b8727b857977\";}i:5;a:6:{s:5:\"title\";s:11:\"Post Blocks\";s:4:\"name\";s:11:\"post_blocks\";s:6:\"isfree\";b:1;s:5:\"image\";s:81:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_blocks.jpg\";s:7:\"preview\";s:32:\"post-blocks-widget-for-elementor\";s:11:\"update_hash\";s:32:\"c270930be209e3c3dbecf397c64d6c3f\";}i:6;a:6:{s:5:\"title\";s:11:\"Post Scroll\";s:4:\"name\";s:11:\"post_scroll\";s:6:\"isfree\";b:0;s:5:\"image\";s:81:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_scroll.jpg\";s:7:\"preview\";s:32:\"post-scroll-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0843cbc9b57fb25c1ceab037cd4f2f29\";}i:7;a:6:{s:5:\"title\";s:9:\"Post List\";s:4:\"name\";s:9:\"post_list\";s:6:\"isfree\";b:1;s:5:\"image\";s:79:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_list.jpg\";s:7:\"preview\";s:30:\"post-list-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e5bfdd5051e1bdfddf6efae904490c1e\";}i:8;a:6:{s:5:\"title\";s:13:\"Post Timeline\";s:4:\"name\";s:13:\"post_timeline\";s:6:\"isfree\";b:0;s:5:\"image\";s:83:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_timeline.jpg\";s:7:\"preview\";s:34:\"post-timeline-widget-for-elementor\";s:11:\"update_hash\";s:32:\"400b6f2afc7cdc69c10aeeb4d9ab4ee2\";}i:9;a:6:{s:5:\"title\";s:9:\"Post Tabs\";s:4:\"name\";s:9:\"post_tabs\";s:6:\"isfree\";b:1;s:5:\"image\";s:79:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_tabs.jpg\";s:7:\"preview\";s:23:\"post-tabs-for-elementor\";s:11:\"update_hash\";s:32:\"721d2f419f1850d20f85b776f25ca408\";}i:10;a:6:{s:5:\"title\";s:11:\"Post Ticker\";s:4:\"name\";s:17:\"post_news_tickers\";s:6:\"isfree\";b:1;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_news_tickers.jpg\";s:7:\"preview\";s:37:\"post-news-ticker-widget-for-elementor\";s:11:\"update_hash\";s:32:\"7074ec4b3b8cea2c04a646bda02505fe\";}i:11;a:6:{s:5:\"title\";s:16:\"Post Card Slider\";s:4:\"name\";s:16:\"blog_card_slider\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/blog_card_slider.jpg\";s:7:\"preview\";s:37:\"blog-card-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"82c0d5da21be5dc62b44608d6bc15779\";}i:12;a:6:{s:5:\"title\";s:14:\"Post Accordion\";s:4:\"name\";s:14:\"post_accordion\";s:6:\"isfree\";b:1;s:5:\"image\";s:84:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_accordion.jpg\";s:7:\"preview\";s:29:\"post-accordions-for-elementor\";s:11:\"update_hash\";s:32:\"c59f20ca071538f504eb5dfbcb5846f4\";}i:13;a:6:{s:5:\"title\";s:11:\"Post Slider\";s:4:\"name\";s:11:\"post_slider\";s:6:\"isfree\";b:0;s:5:\"image\";s:81:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_slider.jpg\";s:7:\"preview\";s:12:\"post-sliders\";s:11:\"update_hash\";s:32:\"b91dc9b792fd0baab882f102a2ba7778\";}i:14;a:6:{s:5:\"title\";s:9:\"Post Tile\";s:4:\"name\";s:9:\"post_tile\";s:6:\"isfree\";b:0;s:5:\"image\";s:79:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_tile.png\";s:7:\"preview\";s:31:\"post-tiles-widget-for-elementor\";s:11:\"update_hash\";s:32:\"4073d3b0a826a6a3042aaacd830ebf86\";}i:15;a:6:{s:5:\"title\";s:11:\"Author List\";s:4:\"name\";s:11:\"author_list\";s:6:\"isfree\";b:0;s:5:\"image\";s:81:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/author_list.png\";s:7:\"preview\";s:28:\"elementor-author-list-widget\";s:11:\"update_hash\";s:32:\"9737507d7425948988e49558e86dacdd\";}i:16;a:6:{s:5:\"title\";s:24:\"Post Horizontal Timeline\";s:4:\"name\";s:24:\"post_horizontal_timeline\";s:6:\"isfree\";b:0;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/post_horizontal_timeline.jpg\";s:7:\"preview\";s:45:\"post-horizontal-timeline-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e6516cd9ea94dfcece804c0d6c51952f\";}i:17;a:6:{s:5:\"title\";s:9:\"Tag Cloud\";s:4:\"name\";s:9:\"tag_cloud\";s:6:\"isfree\";b:0;s:5:\"image\";s:79:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/tag_cloud.jpg\";s:7:\"preview\";s:30:\"tag-cloud-widget-for-elementor\";s:11:\"update_hash\";s:32:\"44c5ce03813b651de8badb04e6512398\";}i:18;a:6:{s:5:\"title\";s:17:\"Masonry Post Grid\";s:4:\"name\";s:17:\"masonry_post_grid\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Post Widgets/masonry_post_grid.jpg\";s:7:\"preview\";s:38:\"masonry-post-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"75ca9fd12f06dc93469ea856fe15d7bf\";}}s:20:\"Post Filters & Tools\";a:11:{i:0;a:6:{s:5:\"title\";s:18:\"Dynamic Post Popup\";s:4:\"name\";s:13:\"dynamic_popup\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/dynamic_popup.png\";s:7:\"preview\";s:39:\"dynamic-post-popup-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e647db6d9a88ecd10d02688b6fc2297e\";}i:1;a:6:{s:5:\"title\";s:11:\"AJAX Search\";s:4:\"name\";s:11:\"ajax_search\";s:6:\"isfree\";b:0;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/ajax_search.png\";s:7:\"preview\";s:32:\"ajax-search-widget-for-elementor\";s:11:\"update_hash\";s:32:\"68e25a0a22738db127856a369d3992d3\";}i:2;a:6:{s:5:\"title\";s:17:\"Checkboxes Filter\";s:4:\"name\";s:20:\"ue_checkboxes_filter\";s:6:\"isfree\";b:0;s:5:\"image\";s:98:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/ue_checkboxes_filter.png\";s:7:\"preview\";s:38:\"checkboxes-filter-widget-for-elementor\";s:11:\"update_hash\";s:32:\"27bb09344158af0f7e8d688a06509254\";}i:3;a:6:{s:5:\"title\";s:15:\"Post Pagination\";s:4:\"name\";s:18:\"archive_pagination\";s:6:\"isfree\";b:1;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/archive_pagination.png\";s:7:\"preview\";s:36:\"post-pagination-widget-for-elementor\";s:11:\"update_hash\";s:32:\"62fac8ba3614f27708f5afa1d9b6a907\";}i:4;a:6:{s:5:\"title\";s:11:\"Tabs Filter\";s:4:\"name\";s:22:\"ue_buttons_post_filter\";s:6:\"isfree\";b:0;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/ue_buttons_post_filter.jpg\";s:7:\"preview\";s:32:\"tabs-filter-widget-for-elementor\";s:11:\"update_hash\";s:32:\"576342b8e39df53f2e55295ec3aa7470\";}i:5;a:6:{s:5:\"title\";s:22:\"Select Dropdown Filter\";s:4:\"name\";s:21:\"ue_select_post_filter\";s:6:\"isfree\";b:0;s:5:\"image\";s:99:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/ue_select_post_filter.jpg\";s:7:\"preview\";s:43:\"select-dropdown-filter-widget-for-elementor\";s:11:\"update_hash\";s:32:\"66d1a162157315c4333966941b5375af\";}i:6;a:6:{s:5:\"title\";s:18:\"Post Query Summary\";s:4:\"name\";s:20:\"query_summary_filter\";s:6:\"isfree\";b:0;s:5:\"image\";s:98:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/query_summary_filter.png\";s:7:\"preview\";s:39:\"post-query-summary-widget-for-elementor\";s:11:\"update_hash\";s:32:\"289519f7176a12d299a4f94e355325f9\";}i:7;a:6:{s:5:\"title\";s:13:\"Search Filter\";s:4:\"name\";s:19:\"posts_search_filter\";s:6:\"isfree\";b:0;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/posts_search_filter.jpg\";s:7:\"preview\";s:34:\"search-filter-widget-for-elementor\";s:11:\"update_hash\";s:32:\"b9c579522e41c8e382f21c6a428c3abf\";}i:8;a:6:{s:5:\"title\";s:27:\"Load More / Infinite Scroll\";s:4:\"name\";s:16:\"load_more_filter\";s:6:\"isfree\";b:0;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/load_more_filter.jpg\";s:7:\"preview\";s:46:\"load-more-infinite-scroll-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e4802b514447eb4744aebb8f8de7060a\";}i:9;a:6:{s:5:\"title\";s:15:\"Post Navigation\";s:4:\"name\";s:14:\"next_prev_post\";s:6:\"isfree\";b:1;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/next_prev_post.png\";s:7:\"preview\";s:36:\"post-navigation-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0e9645746b0a31db83a3c49292035b94\";}i:10;a:6:{s:5:\"title\";s:14:\"Sorting Filter\";s:4:\"name\";s:14:\"ue_sort_filter\";s:6:\"isfree\";b:0;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Post Filters & Tools/ue_sort_filter.jpg\";s:7:\"preview\";s:35:\"sorting-filter-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e967b6d0c5d8049ec8cb0ad1d3d50a7b\";}}s:11:\"WooCommerce\";a:8:{i:0;a:6:{s:5:\"title\";s:24:\"WooCommerce Product List\";s:4:\"name\";s:24:\"woocommerce_product_list\";s:6:\"isfree\";b:1;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/WooCommerce/woocommerce_product_list.jpg\";s:7:\"preview\";s:45:\"woocommerce-product-list-widget-for-elementor\";s:11:\"update_hash\";s:32:\"9cc041ec4411a61c2a9a32eb4cbc4a90\";}i:1;a:6:{s:5:\"title\";s:24:\"WooCommerce Product Grid\";s:4:\"name\";s:24:\"woocommerce_product_grid\";s:6:\"isfree\";b:0;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/WooCommerce/woocommerce_product_grid.jpg\";s:7:\"preview\";s:45:\"woocommerce-product-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"b8f8f04736cb6485e36903cc2eb27635\";}i:2;a:6:{s:5:\"title\";s:28:\"WooCommerce Product Carousel\";s:4:\"name\";s:28:\"woocommerce_product_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/WooCommerce/woocommerce_product_carousel.jpg\";s:7:\"preview\";s:49:\"woocommerce-product-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0dac36d44b23a7101662ef3e3c997a56\";}i:3;a:6:{s:5:\"title\";s:23:\"WooCommerce AJAX Search\";s:4:\"name\";s:23:\"woocommerce_ajax_search\";s:6:\"isfree\";b:0;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/WooCommerce/woocommerce_ajax_search.png\";s:7:\"preview\";s:23:\"woocommerce-ajax-search\";s:11:\"update_hash\";s:32:\"5bcbe2ba37ad5da79f9f7f4a43a1c52c\";}i:4;a:6:{s:5:\"title\";s:26:\"WooCommerce Product Slider\";s:4:\"name\";s:26:\"woocommerce_product_slider\";s:6:\"isfree\";b:0;s:5:\"image\";s:95:\"https://api.unlimited-elements.com/catalog_unlimited/WooCommerce/woocommerce_product_slider.jpg\";s:7:\"preview\";s:47:\"woocommerce-product-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"93c01330fab089855d97d6a4c94568a0\";}i:5;a:6:{s:5:\"title\";s:25:\"WooCommerce Category Grid\";s:4:\"name\";s:25:\"woocommerce_category_grid\";s:6:\"isfree\";b:0;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/WooCommerce/woocommerce_category_grid.jpg\";s:7:\"preview\";s:40:\"woocommerce-category-grid-for-elemenetor\";s:11:\"update_hash\";s:32:\"de53cd31b4a3320c30bd6a8b249ab2e7\";}i:6;a:6:{s:5:\"title\";s:29:\"WooCommerce Category Carousel\";s:4:\"name\";s:29:\"woocommerce_category_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:98:\"https://api.unlimited-elements.com/catalog_unlimited/WooCommerce/woocommerce_category_carousel.jpg\";s:7:\"preview\";s:50:\"woocommerce-category-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"f67856452ced2ecaa5d2c1bb913543c0\";}i:7;a:6:{s:5:\"title\";s:26:\"Quantity Increment Buttons\";s:4:\"name\";s:26:\"quantity_increment_buttons\";s:6:\"isfree\";b:0;s:5:\"image\";s:95:\"https://api.unlimited-elements.com/catalog_unlimited/WooCommerce/quantity_increment_buttons.png\";s:7:\"preview\";s:45:\"woocommerce-product-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"c2f910bc5a2ae05f9e784b11103078ec\";}}s:17:\"Marketing Widgets\";a:32:{i:0;a:6:{s:5:\"title\";s:7:\"QR Code\";s:4:\"name\";s:7:\"qr_code\";s:6:\"isfree\";b:0;s:5:\"image\";s:82:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/qr_code.jpg\";s:7:\"preview\";s:28:\"qr-code-widget-for-elementor\";s:11:\"update_hash\";s:32:\"820b81dcda3970dc1c20954c067318db\";}i:1;a:6:{s:5:\"title\";s:10:\"Event List\";s:4:\"name\";s:10:\"event_list\";s:6:\"isfree\";b:0;s:5:\"image\";s:85:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/event_list.jpg\";s:7:\"preview\";s:31:\"event-list-widget-for-elementor\";s:11:\"update_hash\";s:32:\"db3e86e0dd67cf80cd63b02f0725060c\";}i:2;a:6:{s:5:\"title\";s:21:\"Floating Chat Buttons\";s:4:\"name\";s:22:\"mobile_conversion_menu\";s:6:\"isfree\";b:0;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/mobile_conversion_menu.gif\";s:7:\"preview\";s:42:\"floating-chat-buttons-widget-for-elementor\";s:11:\"update_hash\";s:32:\"7e1080c0df760787994c43fd57c75479\";}i:3;a:6:{s:5:\"title\";s:5:\"vCard\";s:4:\"name\";s:12:\"vcard_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/vcard_button.png\";s:7:\"preview\";s:26:\"vcard-widget-for-elementor\";s:11:\"update_hash\";s:32:\"27c143919d932a250e53cd85cf8a50ee\";}i:4;a:6:{s:5:\"title\";s:13:\"Pricing Plans\";s:4:\"name\";s:12:\"pricing_plan\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/pricing_plan.jpg\";s:7:\"preview\";s:34:\"pricing-plans-widget-for-elementor\";s:11:\"update_hash\";s:32:\"6b58623984c469d6269e2964dbe453fa\";}i:5;a:6:{s:5:\"title\";s:13:\"WhatsApp Chat\";s:4:\"name\";s:13:\"whatsapp_chat\";s:6:\"isfree\";b:0;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/whatsapp_chat.png\";s:7:\"preview\";s:34:\"whatsapp-chat-widget-for-elementor\";s:11:\"update_hash\";s:32:\"498ba309e3d22b95b435d0f1eafafd66\";}i:6;a:6:{s:5:\"title\";s:4:\"List\";s:4:\"name\";s:4:\"list\";s:6:\"isfree\";b:1;s:5:\"image\";s:79:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/list.jpg\";s:7:\"preview\";s:25:\"list-widget-for-elementor\";s:11:\"update_hash\";s:32:\"51f43d0fbf93caeb1e6cef9c75acf073\";}i:7;a:6:{s:5:\"title\";s:21:\"Unlimited Google Maps\";s:4:\"name\";s:14:\"ue_google_maps\";s:6:\"isfree\";b:0;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/ue_google_maps.jpg\";s:7:\"preview\";s:32:\"google-maps-widget-for-elementor\";s:11:\"update_hash\";s:32:\"3e9c45996372a39450dd9c3f9d65715d\";}i:8;a:6:{s:5:\"title\";s:14:\"Contact Form 7\";s:4:\"name\";s:14:\"contact_form_7\";s:6:\"isfree\";b:1;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/contact_form_7.png\";s:7:\"preview\";s:35:\"contact-form-7-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e13060066b7a6797a2fa5b5df9d95614\";}i:9;a:6:{s:5:\"title\";s:10:\"Review Box\";s:4:\"name\";s:10:\"review_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:85:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/review_box.jpg\";s:7:\"preview\";s:31:\"review-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"33da53b9e653d90690c46ee51464ebfa\";}i:10;a:6:{s:5:\"title\";s:12:\"Product Card\";s:4:\"name\";s:13:\"food_menu_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/food_menu_box.jpg\";s:7:\"preview\";s:34:\"food-menu-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"fcf3620574639968e754b554f6ccf124\";}i:11;a:6:{s:5:\"title\";s:11:\"Memory Game\";s:4:\"name\";s:11:\"memory_game\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/memory_game.gif\";s:7:\"preview\";s:32:\"memory-game-widget-for-elementor\";s:11:\"update_hash\";s:32:\"8312795baf549624e48576f386d80814\";}i:12;a:6:{s:5:\"title\";s:18:\"Product Highlights\";s:4:\"name\";s:26:\"two_column_product_bullets\";s:6:\"isfree\";b:0;s:5:\"image\";s:101:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/two_column_product_bullets.jpg\";s:7:\"preview\";s:47:\"two-column-product-bullets-widget-for-elementor\";s:11:\"update_hash\";s:32:\"b8738c6eb9e142a849edb56ff683b1d2\";}i:13;a:6:{s:5:\"title\";s:13:\"Pricing Table\";s:4:\"name\";s:18:\"icon_pricing_table\";s:6:\"isfree\";b:1;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/icon_pricing_table.jpg\";s:7:\"preview\";s:34:\"pricing-table-widget-for-elementor\";s:11:\"update_hash\";s:32:\"f6bdcf8abbdad7f10c33e41c6ceac324\";}i:14;a:6:{s:5:\"title\";s:12:\"Notification\";s:4:\"name\";s:12:\"notification\";s:6:\"isfree\";b:1;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/notification.jpg\";s:7:\"preview\";s:33:\"notification-widget-for-elementor\";s:11:\"update_hash\";s:32:\"798a7989648e8bc72d04b5558940e875\";}i:15;a:6:{s:5:\"title\";s:9:\"Event Box\";s:4:\"name\";s:9:\"event_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:84:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/event_box.png\";s:7:\"preview\";s:30:\"event-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"033db5bff181c6ae437a50f168cd8ac7\";}i:16;a:6:{s:5:\"title\";s:10:\"Price List\";s:4:\"name\";s:10:\"price_list\";s:6:\"isfree\";b:1;s:5:\"image\";s:85:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/price_list.jpg\";s:7:\"preview\";s:31:\"price-list-widget-for-elementor\";s:11:\"update_hash\";s:32:\"397236611e778221bc66cf8e57b86651\";}i:17;a:6:{s:5:\"title\";s:15:\"Product Bullets\";s:4:\"name\";s:15:\"product_bullets\";s:6:\"isfree\";b:0;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/product_bullets.jpg\";s:7:\"preview\";s:36:\"product-bullets-widget-for-elementor\";s:11:\"update_hash\";s:32:\"390a139e1aca6243129c8818e43f27a1\";}i:18;a:6:{s:5:\"title\";s:7:\"Counter\";s:4:\"name\";s:17:\"statistic_counter\";s:6:\"isfree\";b:1;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/statistic_counter.jpg\";s:7:\"preview\";s:32:\"statistic-counters-for-elementor\";s:11:\"update_hash\";s:32:\"9d05af4c6443192bcc2e83799830f89d\";}i:19;a:6:{s:5:\"title\";s:16:\"Icon Mobile Menu\";s:4:\"name\";s:16:\"icon_mobile_menu\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/icon_mobile_menu.png\";s:7:\"preview\";s:30:\"icon-mobile-menu-for-elementor\";s:11:\"update_hash\";s:32:\"4a8d555014a2ee0bce17c1e5959d89ee\";}i:20;a:6:{s:5:\"title\";s:21:\"Call To Action Button\";s:4:\"name\";s:19:\"pulsing_icon_button\";s:6:\"isfree\";b:1;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/pulsing_icon_button.jpg\";s:7:\"preview\";s:42:\"call-to-action-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"3ec9a23248d67b569c7e5f7b881cce8c\";}i:21;a:6:{s:5:\"title\";s:9:\"Price Box\";s:4:\"name\";s:17:\"box_pricing_table\";s:6:\"isfree\";b:0;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/box_pricing_table.jpg\";s:7:\"preview\";s:30:\"price-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e7701a509107bda9a8e1d77dee8f05bb\";}i:22;a:6:{s:5:\"title\";s:15:\"Timer Countdown\";s:4:\"name\";s:15:\"timer_countdown\";s:6:\"isfree\";b:1;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/timer_countdown.jpg\";s:7:\"preview\";s:43:\"timer-countdowns-for-elementor-page-builder\";s:11:\"update_hash\";s:32:\"e4aa7160acbbad4206c1be55992c85ca\";}i:23;a:6:{s:5:\"title\";s:22:\"Pricing Table Flip Box\";s:4:\"name\";s:16:\"pricing_flip_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/pricing_flip_box.gif\";s:7:\"preview\";s:37:\"pricing-flip-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"79a458ad802a055ef4ed2d12634a62ea\";}i:24;a:6:{s:5:\"title\";s:12:\"List Marquee\";s:4:\"name\";s:12:\"list_marquee\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/list_marquee.gif\";s:7:\"preview\";s:33:\"list-marquee-widget-for-elementor\";s:11:\"update_hash\";s:32:\"f0abf9ad686683520808a939968b0855\";}i:25;a:6:{s:5:\"title\";s:15:\"Review Carousel\";s:4:\"name\";s:21:\"bold_customer_reviews\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/bold_customer_reviews.png\";s:7:\"preview\";s:53:\"card-testimonial-review-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"debeff13f43df92f3a4e1a71af6e60b6\";}i:26;a:6:{s:5:\"title\";s:22:\"Timer Countdown Banner\";s:4:\"name\";s:22:\"timer_countdown_banner\";s:6:\"isfree\";b:0;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/timer_countdown_banner.jpg\";s:7:\"preview\";s:43:\"timer-countdown-banner-widget-for-elementor\";s:11:\"update_hash\";s:32:\"5b3e37f819cb7bf25d476de87b63ad7d\";}i:27;a:6:{s:5:\"title\";s:14:\"Business Hours\";s:4:\"name\";s:14:\"business_hours\";s:6:\"isfree\";b:1;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/business_hours.png\";s:7:\"preview\";s:35:\"business-hours-widget-for-elementor\";s:11:\"update_hash\";s:32:\"a23469de0b6821b0536511b1cdb7446d\";}i:28;a:6:{s:5:\"title\";s:19:\"Overlay Product Box\";s:4:\"name\";s:25:\"uc_simple_overlay_product\";s:6:\"isfree\";b:1;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/uc_simple_overlay_product.jpg\";s:7:\"preview\";s:40:\"overlay-product-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"f4638f8bfc00bc3db5a33c715b13a372\";}i:29;a:6:{s:5:\"title\";s:16:\"Copy Coupon Code\";s:4:\"name\";s:16:\"copy_coupon_code\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/copy_coupon_code.gif\";s:7:\"preview\";s:37:\"copy-coupon-code-widget-for-elementor\";s:11:\"update_hash\";s:32:\"ce8714168af1c8b718554291014d2961\";}i:30;a:6:{s:5:\"title\";s:11:\"Product Box\";s:4:\"name\";s:14:\"bold_price_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/bold_price_box.jpg\";s:7:\"preview\";s:44:\"price-label-product-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"7c0c3f41f84d8e6d9a3560b89e84e72a\";}i:31;a:6:{s:5:\"title\";s:16:\"Product Carousel\";s:4:\"name\";s:21:\"uc_menu_item_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Marketing Widgets/uc_menu_item_carousel.png\";s:7:\"preview\";s:37:\"product-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"6d48267c7af13ae02dd6d9df52966243\";}}s:13:\"Dynamic Loops\";a:6:{i:0;a:6:{s:5:\"title\";s:21:\"Dynamic Template Grid\";s:4:\"name\";s:15:\"ue_listing_grid\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Dynamic Loops/ue_listing_grid.jpg\";s:7:\"preview\";s:42:\"dynamic-template-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"2aeb0b306f138b109486db1dc9c609fd\";}i:1;a:6:{s:5:\"title\";s:25:\"Dynamic Template Carousel\";s:4:\"name\";s:19:\"ue_listing_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Dynamic Loops/ue_listing_carousel.jpg\";s:7:\"preview\";s:46:\"dynamic-template-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"f14a2d783aadb90448f319175f68702c\";}i:2;a:6:{s:5:\"title\";s:21:\"Dynamic Template Tabs\";s:4:\"name\";s:15:\"ue_listing_tabs\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Dynamic Loops/ue_listing_tabs.jpg\";s:7:\"preview\";s:42:\"dynamic-template-tabs-widget-for-elementor\";s:11:\"update_hash\";s:32:\"973d716e7083ea45f9aa8efbbf3b2fd3\";}i:3;a:6:{s:5:\"title\";s:26:\"Dynamic Template Accordion\";s:4:\"name\";s:20:\"ue_listing_accordion\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Dynamic Loops/ue_listing_accordion.jpg\";s:7:\"preview\";s:47:\"dynamic-template-accordion-widget-for-elementor\";s:11:\"update_hash\";s:32:\"431e309fa369ff4d302c31e5c954bd55\";}i:4;a:6:{s:5:\"title\";s:23:\"Dynamic Template Slider\";s:4:\"name\";s:17:\"ue_listing_slider\";s:6:\"isfree\";b:0;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Dynamic Loops/ue_listing_slider.jpg\";s:7:\"preview\";s:44:\"dynamic-template-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e1cf48743159bf7f9ffd2926cf0be504\";}i:5;a:6:{s:5:\"title\";s:20:\"Dynamic Popup Button\";s:4:\"name\";s:20:\"dynamic_popup_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Dynamic Loops/dynamic_popup_button.png\";s:7:\"preview\";s:21:\"dynamic-template-grid\";s:11:\"update_hash\";s:32:\"8eb44788d2e7d356b67ae3c86c5e9214\";}}s:22:\"Remote Control Widgets\";a:9:{i:0;a:6:{s:5:\"title\";s:11:\"Remote Tabs\";s:4:\"name\";s:11:\"remote_tabs\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Remote Control Widgets/remote_tabs.gif\";s:7:\"preview\";s:32:\"remote-tabs-widget-for-elementor\";s:11:\"update_hash\";s:32:\"361244f4f7697d43c29fbee60b599995\";}i:1;a:6:{s:5:\"title\";s:13:\"Remote Arrows\";s:4:\"name\";s:16:\"arrow_navigation\";s:6:\"isfree\";b:1;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Remote Control Widgets/arrow_navigation.jpg\";s:7:\"preview\";s:34:\"remote-arrows-widget-for-elementor\";s:11:\"update_hash\";s:32:\"4b5018a745a6ae42d304f771a9d0cf07\";}i:2;a:6:{s:5:\"title\";s:14:\"Remote Bullets\";s:4:\"name\";s:32:\"remote_control_bullet_navigation\";s:6:\"isfree\";b:1;s:5:\"image\";s:112:\"https://api.unlimited-elements.com/catalog_unlimited/Remote Control Widgets/remote_control_bullet_navigation.jpg\";s:7:\"preview\";s:35:\"remote-bullets-widget-for-elementor\";s:11:\"update_hash\";s:32:\"42dbf01b0c9d3f67761aac6129d8bc51\";}i:3;a:6:{s:5:\"title\";s:15:\"Remote Dropdown\";s:4:\"name\";s:13:\"remote_select\";s:6:\"isfree\";b:0;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Remote Control Widgets/remote_select.png\";s:7:\"preview\";s:36:\"remote-dropdown-widget-for-elementor\";s:11:\"update_hash\";s:32:\"55624f639405d95baf6ee4e3a1a04d8d\";}i:4;a:6:{s:5:\"title\";s:14:\"Remote Counter\";s:4:\"name\";s:22:\"remote_counter_display\";s:6:\"isfree\";b:1;s:5:\"image\";s:102:\"https://api.unlimited-elements.com/catalog_unlimited/Remote Control Widgets/remote_counter_display.jpg\";s:7:\"preview\";s:35:\"remote-counter-widget-for-elementor\";s:11:\"update_hash\";s:32:\"85d685b7fedc349e40db67f8a6bb30b9\";}i:5;a:6:{s:5:\"title\";s:11:\"Remote Link\";s:4:\"name\";s:19:\"remote_control_link\";s:6:\"isfree\";b:0;s:5:\"image\";s:99:\"https://api.unlimited-elements.com/catalog_unlimited/Remote Control Widgets/remote_control_link.jpg\";s:7:\"preview\";s:32:\"remote-link-widget-for-elementor\";s:11:\"update_hash\";s:32:\"d15bee1198c0c6c2634a70f957048160\";}i:6;a:6:{s:5:\"title\";s:22:\"Remote Item Navigation\";s:4:\"name\";s:22:\"remote_item_navigation\";s:6:\"isfree\";b:0;s:5:\"image\";s:102:\"https://api.unlimited-elements.com/catalog_unlimited/Remote Control Widgets/remote_item_navigation.gif\";s:7:\"preview\";s:43:\"remote-item-navigation-widget-for-elementor\";s:11:\"update_hash\";s:32:\"a4189a35629fbbbd36cf1f73ce90d3dd\";}i:7;a:6:{s:5:\"title\";s:17:\"Remote Play Pause\";s:4:\"name\";s:17:\"remote_play_pause\";s:6:\"isfree\";b:1;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Remote Control Widgets/remote_play_pause.jpg\";s:7:\"preview\";s:22:\"remote-control-widgets\";s:11:\"update_hash\";s:32:\"1a34443342e8885e3644e17cf5b26f54\";}i:8;a:6:{s:5:\"title\";s:13:\"Remote Scroll\";s:4:\"name\";s:21:\"remote_scroll_control\";s:6:\"isfree\";b:0;s:5:\"image\";s:101:\"https://api.unlimited-elements.com/catalog_unlimited/Remote Control Widgets/remote_scroll_control.gif\";s:7:\"preview\";s:34:\"remote-scroll-widget-for-elementor\";s:11:\"update_hash\";s:32:\"43bff6d5833592a24f27ea50eef67ae0\";}}s:12:\"Menu Widgets\";a:10:{i:0;a:6:{s:5:\"title\";s:14:\"WordPress Menu\";s:4:\"name\";s:8:\"nav_menu\";s:6:\"isfree\";b:1;s:5:\"image\";s:78:\"https://api.unlimited-elements.com/catalog_unlimited/Menu Widgets/nav_menu.jpg\";s:7:\"preview\";s:35:\"wordpress-menu-widget-for-elementor\";s:11:\"update_hash\";s:32:\"aebc6764819b44d5132a8f6a5097a2fa\";}i:1;a:6:{s:5:\"title\";s:9:\"Mega Menu\";s:4:\"name\";s:9:\"mega_menu\";s:6:\"isfree\";b:0;s:5:\"image\";s:79:\"https://api.unlimited-elements.com/catalog_unlimited/Menu Widgets/mega_menu.jpg\";s:7:\"preview\";s:30:\"mega-menu-widget-for-elementor\";s:11:\"update_hash\";s:32:\"4bc08b27ad117c5edb30e58c53cf7895\";}i:2;a:6:{s:5:\"title\";s:21:\"Mega Menu Inner Links\";s:4:\"name\";s:21:\"mega_menu_inner_links\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Menu Widgets/mega_menu_inner_links.jpg\";s:7:\"preview\";s:42:\"mega-menu-inner-links-widget-for-elementor\";s:11:\"update_hash\";s:32:\"bd1a377a2225b5c5eeab835c441a8244\";}i:3;a:6:{s:5:\"title\";s:9:\"Side Menu\";s:4:\"name\";s:12:\"ue_side_menu\";s:6:\"isfree\";b:0;s:5:\"image\";s:82:\"https://api.unlimited-elements.com/catalog_unlimited/Menu Widgets/ue_side_menu.jpg\";s:7:\"preview\";s:30:\"side-menu-widget-for-elementor\";s:11:\"update_hash\";s:32:\"46c1ded5b717b044da6b37b55cc6ab12\";}i:4;a:6:{s:5:\"title\";s:15:\"Fullscreen Menu\";s:4:\"name\";s:26:\"fullscreen_navigation_menu\";s:6:\"isfree\";b:1;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Menu Widgets/fullscreen_navigation_menu.gif\";s:7:\"preview\";s:36:\"fullscreen-menu-widget-for-elementor\";s:11:\"update_hash\";s:32:\"00e7b268f274cde0f72a1c5ce9edc22b\";}i:5;a:6:{s:5:\"title\";s:23:\"Liquid Full Screen Menu\";s:4:\"name\";s:26:\"uc_liquid_full_screen_menu\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Menu Widgets/uc_liquid_full_screen_menu.gif\";s:7:\"preview\";s:43:\"liquid-fullscreen-menu-widget-for-elementor\";s:11:\"update_hash\";s:32:\"1766e1565b0f4814d6d47961a3d84036\";}i:6;a:6:{s:5:\"title\";s:26:\"One Page Scroll Navigation\";s:4:\"name\";s:33:\"bullet_one_page_scroll_navigation\";s:6:\"isfree\";b:0;s:5:\"image\";s:103:\"https://api.unlimited-elements.com/catalog_unlimited/Menu Widgets/bullet_one_page_scroll_navigation.png\";s:7:\"preview\";s:47:\"one-page-scroll-navigation-widget-for-elementor\";s:11:\"update_hash\";s:32:\"df5457b0530ad21d2fa3b63caecb2515\";}i:7;a:6:{s:5:\"title\";s:11:\"Circle Menu\";s:4:\"name\";s:14:\"ue_circle_menu\";s:6:\"isfree\";b:0;s:5:\"image\";s:84:\"https://api.unlimited-elements.com/catalog_unlimited/Menu Widgets/ue_circle_menu.jpg\";s:7:\"preview\";s:32:\"circle-menu-widget-for-elementor\";s:11:\"update_hash\";s:32:\"3462d534d45236aac2d8471c1cb18824\";}i:8;a:6:{s:5:\"title\";s:9:\"List Menu\";s:4:\"name\";s:16:\"simple_list_menu\";s:6:\"isfree\";b:1;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Menu Widgets/simple_list_menu.png\";s:7:\"preview\";s:37:\"simple-list-menu-widget-for-elementor\";s:11:\"update_hash\";s:32:\"6ba028aa209fbe469ce622a12502c389\";}i:9;a:6:{s:5:\"title\";s:14:\"Accordion Menu\";s:4:\"name\";s:17:\"ue_accordion_menu\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Menu Widgets/ue_accordion_menu.jpg\";s:7:\"preview\";s:35:\"accordion-menu-widget-for-elementor\";s:11:\"update_hash\";s:32:\"a6c9b45eb3e17caaf9c889b5ff8d2080\";}}s:15:\"Content Widgets\";a:14:{i:0;a:6:{s:5:\"title\";s:23:\"Expanding Content Cards\";s:4:\"name\";s:23:\"expanding_content_cards\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/expanding_content_cards.gif\";s:7:\"preview\";s:44:\"expanding-content-cards-widget-for-elementor\";s:11:\"update_hash\";s:32:\"078b7d60666c8057b6fa28c3bc835259\";}i:1;a:6:{s:5:\"title\";s:12:\"Simple Popup\";s:4:\"name\";s:12:\"simple_popup\";s:6:\"isfree\";b:1;s:5:\"image\";s:85:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/simple_popup.png\";s:7:\"preview\";s:33:\"simple-popup-widget-for-elementor\";s:11:\"update_hash\";s:32:\"5d1931af606361d4d8da40f473d31cea\";}i:2;a:6:{s:5:\"title\";s:11:\"Mega Slider\";s:4:\"name\";s:11:\"mega_slider\";s:6:\"isfree\";b:0;s:5:\"image\";s:84:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/mega_slider.png\";s:7:\"preview\";s:32:\"mega-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"9f0d630df21aec9f6d621c6e7b68749a\";}i:3;a:6:{s:5:\"title\";s:17:\"Content Accordion\";s:4:\"name\";s:17:\"content_accordion\";s:6:\"isfree\";b:1;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/content_accordion.jpg\";s:7:\"preview\";s:38:\"content-accordion-widget-for-elementor\";s:11:\"update_hash\";s:32:\"b802df51b6d2a10fb0c63e8e44b8b553\";}i:4;a:6:{s:5:\"title\";s:14:\"Unfold Content\";s:4:\"name\";s:9:\"ue_unfold\";s:6:\"isfree\";b:0;s:5:\"image\";s:82:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/ue_unfold.gif\";s:7:\"preview\";s:35:\"unfold-content-widget-for-elementor\";s:11:\"update_hash\";s:32:\"646304f01129214fabfcc91aa8dd2154\";}i:5;a:6:{s:5:\"title\";s:15:\"Unlimited Table\";s:4:\"name\";s:8:\"ue_table\";s:6:\"isfree\";b:0;s:5:\"image\";s:81:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/ue_table.jpg\";s:7:\"preview\";s:36:\"unlimited-table-widget-for-elementor\";s:11:\"update_hash\";s:32:\"04ed6cb83981ff6c8d15fc3aeaabdb94\";}i:6;a:6:{s:5:\"title\";s:10:\"Toggle Box\";s:4:\"name\";s:10:\"toggle_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:83:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/toggle_box.png\";s:7:\"preview\";s:31:\"toggle-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e3515cc74244610a32787f52060841ae\";}i:7;a:6:{s:5:\"title\";s:14:\"Unlimited Grid\";s:4:\"name\";s:14:\"unlimited_grid\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/unlimited_grid.jpg\";s:7:\"preview\";s:35:\"unlimited-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e20807f1d4d64e0244e868f4e3fc4237\";}i:8;a:6:{s:5:\"title\";s:16:\"Content Switcher\";s:4:\"name\";s:14:\"content_toggle\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/content_toggle.gif\";s:7:\"preview\";s:37:\"content-switcher-widget-for-elementor\";s:11:\"update_hash\";s:32:\"010c41ab0f3d3c7c0502d4d3dc40b025\";}i:9;a:6:{s:5:\"title\";s:12:\"Content Tabs\";s:4:\"name\";s:12:\"content_tabs\";s:6:\"isfree\";b:1;s:5:\"image\";s:85:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/content_tabs.jpg\";s:7:\"preview\";s:33:\"content-tabs-widget-for-elementor\";s:11:\"update_hash\";s:32:\"67d8e69b2be3d18f48b8c53afd410e1c\";}i:10;a:6:{s:5:\"title\";s:14:\"Content Slider\";s:4:\"name\";s:18:\"content_slider_new\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/content_slider_new.gif\";s:7:\"preview\";s:35:\"content-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"f0bbb7441e025ff1157641639f0f0aa3\";}i:11;a:6:{s:5:\"title\";s:16:\"Content Carousel\";s:4:\"name\";s:20:\"content_carousel_new\";s:6:\"isfree\";b:0;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/content_carousel_new.jpg\";s:7:\"preview\";s:37:\"content-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"cfe7b196e3012e93d34b36be4d75278d\";}i:12;a:6:{s:5:\"title\";s:12:\"Content Grid\";s:4:\"name\";s:13:\"content_grid2\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/content_grid2.png\";s:7:\"preview\";s:33:\"content-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"504a0f37314963db3b466f81703b5992\";}i:13;a:6:{s:5:\"title\";s:14:\"Content Ticker\";s:4:\"name\";s:14:\"content_ticker\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Content Widgets/content_ticker.png\";s:7:\"preview\";s:35:\"content-ticker-widget-for-elementor\";s:11:\"update_hash\";s:32:\"3bc24079efd6ac5c883be07435f088b1\";}}s:5:\"Forms\";a:5:{i:0;a:6:{s:5:\"title\";s:14:\"Dropdown Field\";s:4:\"name\";s:14:\"dropdown_field\";s:6:\"isfree\";b:0;s:5:\"image\";s:77:\"https://api.unlimited-elements.com/catalog_unlimited/Forms/dropdown_field.png\";s:7:\"preview\";s:11:\"calculators\";s:11:\"update_hash\";s:32:\"8b0dca498429777a2545a9d3c73af101\";}i:1;a:6:{s:5:\"title\";s:12:\"Number Field\";s:4:\"name\";s:12:\"number_field\";s:6:\"isfree\";b:0;s:5:\"image\";s:75:\"https://api.unlimited-elements.com/catalog_unlimited/Forms/number_field.png\";s:7:\"preview\";s:11:\"calculators\";s:11:\"update_hash\";s:32:\"3b3683031fb4565f2adcad24328361c9\";}i:2;a:6:{s:5:\"title\";s:18:\"Radio Button Field\";s:4:\"name\";s:12:\"radio_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:75:\"https://api.unlimited-elements.com/catalog_unlimited/Forms/radio_button.png\";s:7:\"preview\";s:11:\"calculators\";s:11:\"update_hash\";s:32:\"fbea1c945d51299318526e4982b3c6b7\";}i:3;a:6:{s:5:\"title\";s:12:\"Slider Field\";s:4:\"name\";s:12:\"range_slider\";s:6:\"isfree\";b:0;s:5:\"image\";s:75:\"https://api.unlimited-elements.com/catalog_unlimited/Forms/range_slider.png\";s:7:\"preview\";s:11:\"calculators\";s:11:\"update_hash\";s:32:\"55abe026e9e8e2bf8c65ddb347fc871e\";}i:4;a:6:{s:5:\"title\";s:13:\"Message Field\";s:4:\"name\";s:13:\"message_field\";s:6:\"isfree\";b:0;s:5:\"image\";s:76:\"https://api.unlimited-elements.com/catalog_unlimited/Forms/message_field.png\";s:7:\"preview\";s:11:\"calculators\";s:11:\"update_hash\";s:32:\"e3557681f23222f849729a56a5059769\";}}s:16:\"Carousel Widgets\";a:9:{i:0;a:6:{s:5:\"title\";s:18:\"Unlimited Carousel\";s:4:\"name\";s:19:\"image_card_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Carousel Widgets/image_card_carousel.gif\";s:7:\"preview\";s:39:\"unlimited-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"aa2b0db5978c370dee49ee4ec738dbff\";}i:1;a:6:{s:5:\"title\";s:18:\"Coverflow Carousel\";s:4:\"name\";s:19:\"cover_flow_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Carousel Widgets/cover_flow_carousel.gif\";s:7:\"preview\";s:39:\"coverflow-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"78aa17156fa41e6b425603f82a3c7dea\";}i:2;a:6:{s:5:\"title\";s:13:\"Card Carousel\";s:4:\"name\";s:13:\"card_carousel\";s:6:\"isfree\";b:1;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Carousel Widgets/card_carousel.jpg\";s:7:\"preview\";s:34:\"card-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"4d939638dc30f1b955bce438ef3a184e\";}i:3;a:6:{s:5:\"title\";s:13:\"Icon Carousel\";s:4:\"name\";s:13:\"icon_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Carousel Widgets/icon_carousel.jpg\";s:7:\"preview\";s:34:\"icon-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"76234daf9c43779f245207cabcfc6f0e\";}i:4;a:6:{s:5:\"title\";s:17:\"Material Carousel\";s:4:\"name\";s:17:\"material_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Carousel Widgets/material_carousel.jpg\";s:7:\"preview\";s:38:\"material-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"3003a96f83de198fd622de0acd061b79\";}i:5;a:6:{s:5:\"title\";s:16:\"Overlay Carousel\";s:4:\"name\";s:16:\"overlay_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Carousel Widgets/overlay_carousel.jpg\";s:7:\"preview\";s:37:\"overlay-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"a173bd1ebc757718069bb60da6c56c1e\";}i:6;a:6:{s:5:\"title\";s:14:\"Swipe Carousel\";s:4:\"name\";s:18:\"swipe_css_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Carousel Widgets/swipe_css_carousel.png\";s:7:\"preview\";s:39:\"swipe-css-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"80a776f6372fcef74eacb699ba8824a9\";}i:7;a:6:{s:5:\"title\";s:18:\"Portfolio Carousel\";s:4:\"name\";s:18:\"portfolio_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Carousel Widgets/portfolio_carousel.png\";s:7:\"preview\";s:39:\"portfolio-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"b4fb7f042f144a1b6aa4610171533e0d\";}i:8;a:6:{s:5:\"title\";s:24:\"Justified Image Carousel\";s:4:\"name\";s:24:\"justified_image_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:98:\"https://api.unlimited-elements.com/catalog_unlimited/Carousel Widgets/justified_image_carousel.png\";s:7:\"preview\";s:45:\"justified-image-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"16374f546c8042ee08b5bd9de368f509\";}}s:13:\"Media Widgets\";a:14:{i:0;a:6:{s:5:\"title\";s:14:\"Slider Gallery\";s:4:\"name\";s:15:\"uc_slider_image\";s:6:\"isfree\";b:1;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/uc_slider_image.jpg\";s:7:\"preview\";s:35:\"slider-gallery-widget-for-elementor\";s:11:\"update_hash\";s:32:\"61bff52db4feaf1d4d7628d72d490aab\";}i:1;a:6:{s:5:\"title\";s:12:\"Grid Gallery\";s:4:\"name\";s:19:\"uc_grid_image_theme\";s:6:\"isfree\";b:0;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/uc_grid_image_theme.jpg\";s:7:\"preview\";s:33:\"grid-gallery-widget-for-elementor\";s:11:\"update_hash\";s:32:\"d02a0e549ab58a849297c740f2dcf90f\";}i:2;a:6:{s:5:\"title\";s:12:\"Random Image\";s:4:\"name\";s:15:\"ue_random_image\";s:6:\"isfree\";b:1;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/ue_random_image.jpg\";s:7:\"preview\";s:33:\"random-image-widget-for-elementor\";s:11:\"update_hash\";s:32:\"5a85a9a89a90d8f4ffdc5656695ce80a\";}i:3;a:6:{s:5:\"title\";s:15:\"Masonry Gallery\";s:4:\"name\";s:22:\"uc_tiles_columns_image\";s:6:\"isfree\";b:0;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/uc_tiles_columns_image.jpg\";s:7:\"preview\";s:36:\"masonry-gallery-widget-for-elementor\";s:11:\"update_hash\";s:32:\"6b28ed66e8fbae3133d62e43eef6f774\";}i:4;a:6:{s:5:\"title\";s:12:\"Tile Gallery\";s:4:\"name\";s:19:\"uc_tiles_grid_image\";s:6:\"isfree\";b:1;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/uc_tiles_grid_image.jpg\";s:7:\"preview\";s:33:\"tile-gallery-widget-for-elementor\";s:11:\"update_hash\";s:32:\"52d6a3c17c3d7134f6d2372b49f3bdab\";}i:5;a:6:{s:5:\"title\";s:16:\"Carousel Gallery\";s:4:\"name\";s:17:\"uc_carousel_image\";s:6:\"isfree\";b:0;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/uc_carousel_image.jpg\";s:7:\"preview\";s:37:\"carousel-gallery-widget-for-elementor\";s:11:\"update_hash\";s:32:\"7da3765d7cde13385f19a30286687bf1\";}i:6;a:6:{s:5:\"title\";s:15:\"Compact Gallery\";s:4:\"name\";s:22:\"uc_compact_image_theme\";s:6:\"isfree\";b:1;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/uc_compact_image_theme.jpg\";s:7:\"preview\";s:36:\"compact-gallery-widget-for-elementor\";s:11:\"update_hash\";s:32:\"f49189ec393d30cec57f1bc87308d70a\";}i:7;a:6:{s:5:\"title\";s:17:\"Thumbnail Gallery\";s:4:\"name\";s:22:\"uc_image_default_theme\";s:6:\"isfree\";b:0;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/uc_image_default_theme.jpg\";s:7:\"preview\";s:38:\"unlimited-gallery-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e27d6a6ec99b9a7e9724397cdfc3ac2c\";}i:8;a:6:{s:5:\"title\";s:14:\"Audio Playlist\";s:4:\"name\";s:14:\"audio_playlist\";s:6:\"isfree\";b:0;s:5:\"image\";s:85:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/audio_playlist.jpg\";s:7:\"preview\";s:35:\"audio-playlist-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e0a883d8ae66b4acf5b58f4931b94cd7\";}i:9;a:6:{s:5:\"title\";s:13:\"Simple Slider\";s:4:\"name\";s:13:\"simple_slider\";s:6:\"isfree\";b:1;s:5:\"image\";s:84:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/simple_slider.jpg\";s:7:\"preview\";s:34:\"simple-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"a5534cf537deec8405f092ccf6125158\";}i:10;a:6:{s:5:\"title\";s:12:\"Audio Player\";s:4:\"name\";s:17:\"audio_player_mejs\";s:6:\"isfree\";b:0;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/audio_player_mejs.jpg\";s:7:\"preview\";s:33:\"audio-player-widget-for-elementor\";s:11:\"update_hash\";s:32:\"3c60eeb26b7cfb899318cabfb2c56290\";}i:11;a:6:{s:5:\"title\";s:16:\"Thumbnail Slider\";s:4:\"name\";s:26:\"owl_sliding_thumbs_gallery\";s:6:\"isfree\";b:0;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/owl_sliding_thumbs_gallery.png\";s:7:\"preview\";s:37:\"thumbnail-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"1ad7c1818e219b25645dcfc9eead3a86\";}i:12;a:6:{s:5:\"title\";s:30:\"Image and Video Content Slider\";s:4:\"name\";s:23:\"uc_video_content_slider\";s:6:\"isfree\";b:0;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/uc_video_content_slider.png\";s:7:\"preview\";s:47:\"image-video-content-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"6182a8e33609b59967cef5033019da85\";}i:13;a:6:{s:5:\"title\";s:14:\"Video Playlist\";s:4:\"name\";s:23:\"play_list_video_gallery\";s:6:\"isfree\";b:0;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Media Widgets/play_list_video_gallery.jpg\";s:7:\"preview\";s:35:\"video-playlist-widget-for-elementor\";s:11:\"update_hash\";s:32:\"9113285eb82f295ef0bab2352b249b84\";}}s:19:\"Infographic Widgets\";a:11:{i:0;a:6:{s:5:\"title\";s:30:\"Interactive Circle Infographic\";s:4:\"name\";s:30:\"interactive_circle_infographic\";s:6:\"isfree\";b:0;s:5:\"image\";s:107:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/interactive_circle_infographic.jpg\";s:7:\"preview\";s:51:\"interactive-circle-infographic-widget-for-elementor\";s:11:\"update_hash\";s:32:\"5ba2d957721008e48c06fd54d5fc68a7\";}i:1;a:6:{s:5:\"title\";s:18:\"Unlimited Timeline\";s:4:\"name\";s:18:\"unlimited_timeline\";s:6:\"isfree\";b:1;s:5:\"image\";s:95:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/unlimited_timeline.jpg\";s:7:\"preview\";s:39:\"unlimited-timeline-widget-for-elementor\";s:11:\"update_hash\";s:32:\"07c9e5e124a2fa2f4b265b17816739dc\";}i:2;a:6:{s:5:\"title\";s:16:\"Unlimited Charts\";s:4:\"name\";s:16:\"unlimited_charts\";s:6:\"isfree\";b:0;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/unlimited_charts.jpg\";s:7:\"preview\";s:37:\"unlimited-charts-widget-for-elementor\";s:11:\"update_hash\";s:32:\"d6390f5136eb119b788fd2b388275f39\";}i:3;a:6:{s:5:\"title\";s:16:\"Funnel & Pyramid\";s:4:\"name\";s:10:\"ue_pyramid\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/ue_pyramid.jpg\";s:7:\"preview\";s:35:\"funnel-pyramid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"faf8daa7aa9aa767aa35e7b760c843d2\";}i:4;a:6:{s:5:\"title\";s:19:\"Linear Progress Bar\";s:4:\"name\";s:19:\"linear_progress_bar\";s:6:\"isfree\";b:1;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/linear_progress_bar.gif\";s:7:\"preview\";s:40:\"linear-progress-bar-widget-for-elementor\";s:11:\"update_hash\";s:32:\"1ae8e4935c979e5fdfee947dc8b6e2c6\";}i:5;a:6:{s:5:\"title\";s:12:\"Step Process\";s:4:\"name\";s:12:\"step_process\";s:6:\"isfree\";b:0;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/step_process.jpg\";s:7:\"preview\";s:33:\"step-process-widget-for-elementor\";s:11:\"update_hash\";s:32:\"3cd176b2dc363f17bed09bee2ad3df66\";}i:6;a:6:{s:5:\"title\";s:19:\"Circle Progress Bar\";s:4:\"name\";s:22:\"uc_circle_progress_bar\";s:6:\"isfree\";b:0;s:5:\"image\";s:99:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/uc_circle_progress_bar.gif\";s:7:\"preview\";s:40:\"circle-progress-bar-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0238af886b94732fe8d0434a22e6be3e\";}i:7;a:6:{s:5:\"title\";s:24:\"Semi Circle Progress Bar\";s:4:\"name\";s:24:\"semi_circle_progress_bar\";s:6:\"isfree\";b:0;s:5:\"image\";s:101:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/semi_circle_progress_bar.png\";s:7:\"preview\";s:45:\"semi-circle-progress-bar-widget-for-elementor\";s:11:\"update_hash\";s:32:\"5644b51f072b8ca71bed768629960bf4\";}i:8;a:6:{s:5:\"title\";s:9:\"Pie chart\";s:4:\"name\";s:11:\"uc_piechart\";s:6:\"isfree\";b:1;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/uc_piechart.jpg\";s:7:\"preview\";s:23:\"pie-chart-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:9;a:6:{s:5:\"title\";s:21:\"Vertical Progress Bar\";s:4:\"name\";s:24:\"uc_vertical_progress_bar\";s:6:\"isfree\";b:0;s:5:\"image\";s:101:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/uc_vertical_progress_bar.gif\";s:7:\"preview\";s:42:\"vertical-progress-bar-widget-for-elementor\";s:11:\"update_hash\";s:32:\"ee78905e0de9f09ded424d701846eb70\";}i:10;a:6:{s:5:\"title\";s:10:\"Line Chart\";s:4:\"name\";s:10:\"line_chart\";s:6:\"isfree\";b:1;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Infographic Widgets/line_chart.jpg\";s:7:\"preview\";s:37:\"unlimited-charts-widget-for-elementor\";s:11:\"update_hash\";s:32:\"a917df9b854e294e98b67e2f5ab1ea7c\";}}s:12:\"Testimonials\";a:3:{i:0;a:6:{s:5:\"title\";s:15:\"Testimonial Box\";s:4:\"name\";s:15:\"box_testimonial\";s:6:\"isfree\";b:1;s:5:\"image\";s:85:\"https://api.unlimited-elements.com/catalog_unlimited/Testimonials/box_testimonial.jpg\";s:7:\"preview\";s:36:\"box-testimonial-widget-for-elementor\";s:11:\"update_hash\";s:32:\"f2709690911bf63c5173511adfde09ea\";}i:1;a:6:{s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"name\";s:31:\"responsive_testemonial_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:101:\"https://api.unlimited-elements.com/catalog_unlimited/Testimonials/responsive_testemonial_carousel.png\";s:7:\"preview\";s:41:\"testimonial-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"dbd2c274d7763221b49b02df97bd5301\";}i:2;a:6:{s:5:\"title\";s:16:\"Testimonial Card\";s:4:\"name\";s:21:\"logo_card_testimonial\";s:6:\"isfree\";b:1;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Testimonials/logo_card_testimonial.jpg\";s:7:\"preview\";s:42:\"logo-card-testimonial-widget-for-elementor\";s:11:\"update_hash\";s:32:\"c2a31982edb7badf43db661cca1cb594\";}}s:12:\"Team Members\";a:6:{i:0;a:6:{s:5:\"title\";s:20:\"Team Member Carousel\";s:4:\"name\";s:20:\"team_member_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Team Members/team_member_carousel.jpg\";s:7:\"preview\";s:41:\"team-member-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"b308703d035164816f585ab604069fd3\";}i:1;a:6:{s:5:\"title\";s:16:\"Team Member Card\";s:4:\"name\";s:16:\"team_member_card\";s:6:\"isfree\";b:1;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Team Members/team_member_card.jpg\";s:7:\"preview\";s:37:\"team-member-card-widget-for-elementor\";s:11:\"update_hash\";s:32:\"631b3ee343681c5f4912d7687055591b\";}i:2;a:6:{s:5:\"title\";s:15:\"Team Member Box\";s:4:\"name\";s:23:\"team_member_box_overlay\";s:6:\"isfree\";b:1;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Team Members/team_member_box_overlay.gif\";s:7:\"preview\";s:44:\"team-member-box-overlay-widget-for-elementor\";s:11:\"update_hash\";s:32:\"ed230a39223d7283c6992a4e8529bbd9\";}i:3;a:6:{s:5:\"title\";s:23:\"Team Member Icon Effect\";s:4:\"name\";s:25:\"circle_effect_team_member\";s:6:\"isfree\";b:0;s:5:\"image\";s:95:\"https://api.unlimited-elements.com/catalog_unlimited/Team Members/circle_effect_team_member.gif\";s:7:\"preview\";s:37:\"icon-team-member-widget-for-elementor\";s:11:\"update_hash\";s:32:\"78f5ba01e02679d31965585df54ca98b\";}i:4;a:6:{s:5:\"title\";s:16:\"Team Member Grid\";s:4:\"name\";s:16:\"team_member_grid\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Team Members/team_member_grid.jpg\";s:7:\"preview\";s:37:\"team-member-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"4ba9b49cb8a6445f16f251622c74e032\";}i:5;a:6:{s:5:\"title\";s:26:\"Team Member Sliding Effect\";s:4:\"name\";s:29:\"uc_team_member_overlay_bottom\";s:6:\"isfree\";b:0;s:5:\"image\";s:99:\"https://api.unlimited-elements.com/catalog_unlimited/Team Members/uc_team_member_overlay_bottom.gif\";s:7:\"preview\";s:47:\"sliding-effect-team-member-widget-for-elementor\";s:11:\"update_hash\";s:32:\"d7447f62636df1356bf736343fc8ed80\";}}s:13:\"Content Boxes\";a:9:{i:0;a:6:{s:5:\"title\";s:22:\"Image Zoom Content Box\";s:4:\"name\";s:22:\"image_zoom_content_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Content Boxes/image_zoom_content_box.jpg\";s:7:\"preview\";s:43:\"image-zoom-content-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"413db7be76b415f648562c79c0e422e9\";}i:1;a:6:{s:5:\"title\";s:31:\"Content Box Zoom Caption Reveal\";s:4:\"name\";s:31:\"zoom_caption_reveal_content_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:102:\"https://api.unlimited-elements.com/catalog_unlimited/Content Boxes/zoom_caption_reveal_content_box.gif\";s:7:\"preview\";s:52:\"zoom-caption-reveal-content-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"d79dd404b804876f8262aeae469da499\";}i:2;a:6:{s:5:\"title\";s:10:\"Image Card\";s:4:\"name\";s:22:\"image_card_content_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Content Boxes/image_card_content_box.png\";s:7:\"preview\";s:43:\"image-card-content-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"6b2769f67b72f3507393537026b4dcb1\";}i:3;a:6:{s:5:\"title\";s:19:\"Content Box Overlay\";s:4:\"name\";s:26:\"subtle_overlay_content_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Content Boxes/subtle_overlay_content_box.gif\";s:7:\"preview\";s:47:\"subtle-overlay-content-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"005d20e34469280298030b4086ac1a90\";}i:4;a:6:{s:5:\"title\";s:29:\"Content Box Hover Text Reveal\";s:4:\"name\";s:29:\"hover_text_reveal_content_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/Content Boxes/hover_text_reveal_content_box.gif\";s:7:\"preview\";s:50:\"hover-text-reveal-content-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"6b8490c12476540eb0feec7813984b2e\";}i:5;a:6:{s:5:\"title\";s:22:\"Icon Image Content Box\";s:4:\"name\";s:22:\"icon_image_content_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:93:\"https://api.unlimited-elements.com/catalog_unlimited/Content Boxes/icon_image_content_box.gif\";s:7:\"preview\";s:43:\"icon-image-content-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"12342457a90b4446d52791a86dc92f6a\";}i:6;a:6:{s:5:\"title\";s:27:\"Animated Border Content Box\";s:4:\"name\";s:27:\"animated_border_content_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:98:\"https://api.unlimited-elements.com/catalog_unlimited/Content Boxes/animated_border_content_box.png\";s:7:\"preview\";s:48:\"animated-border-content-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"1db8d95069d73b7a8de143348a31bd4e\";}i:7;a:6:{s:5:\"title\";s:16:\"Icon Content Box\";s:4:\"name\";s:16:\"icon_content_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Content Boxes/icon_content_box.jpg\";s:7:\"preview\";s:37:\"icon-content-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"a7cdfbfc786aa63a8270baf5dd26f237\";}i:8;a:6:{s:5:\"title\";s:26:\"Content Box Sliding Effect\";s:4:\"name\";s:19:\"sliding_content_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Content Boxes/sliding_content_box.jpg\";s:7:\"preview\";s:40:\"sliding-content-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"d1a0d5117f78feffc5af0363cd6ba2ce\";}}s:17:\"Instagram Widgets\";a:5:{i:0;a:6:{s:5:\"title\";s:14:\"Instagram Feed\";s:4:\"name\";s:25:\"blox_grid_instagrm_widget\";s:6:\"isfree\";b:0;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/Instagram Widgets/blox_grid_instagrm_widget.png\";s:7:\"preview\";s:35:\"instagram-feed-widget-for-elementor\";s:11:\"update_hash\";s:32:\"2392a98ceae1b244a193ca85370dd637\";}i:1;a:6:{s:5:\"title\";s:22:\"Instagram Latest Image\";s:4:\"name\";s:27:\"blox_instagram_latest_image\";s:6:\"isfree\";b:1;s:5:\"image\";s:102:\"https://api.unlimited-elements.com/catalog_unlimited/Instagram Widgets/blox_instagram_latest_image.png\";s:7:\"preview\";s:43:\"latest-instagram-image-widget-for-elementor\";s:11:\"update_hash\";s:32:\"460b03ca781e8ee1ddb7c149fb6c071c\";}i:2;a:6:{s:5:\"title\";s:13:\"Instagram Box\";s:4:\"name\";s:28:\"blox_quatro_instagram_widget\";s:6:\"isfree\";b:0;s:5:\"image\";s:103:\"https://api.unlimited-elements.com/catalog_unlimited/Instagram Widgets/blox_quatro_instagram_widget.png\";s:7:\"preview\";s:34:\"instagram-teaser-box-for-elementor\";s:11:\"update_hash\";s:32:\"8c376c95557cefb4f799aae6aadf9a7a\";}i:3;a:6:{s:5:\"title\";s:14:\"Instagram Card\";s:4:\"name\";s:26:\"blox_instagram_card_widget\";s:6:\"isfree\";b:0;s:5:\"image\";s:101:\"https://api.unlimited-elements.com/catalog_unlimited/Instagram Widgets/blox_instagram_card_widget.png\";s:7:\"preview\";s:35:\"instagram-card-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e24c43741736059edd182f91adefe1eb\";}i:4;a:6:{s:5:\"title\";s:20:\"Instagram Metro Grid\";s:4:\"name\";s:21:\"blox_instagram_widget\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Instagram Widgets/blox_instagram_widget.png\";s:7:\"preview\";s:36:\"metro-instagram-widget-for-elementor\";s:11:\"update_hash\";s:32:\"881b17b9e7f63eb38cc6c9cfa32b7db7\";}}s:12:\"Logo Widgets\";a:4:{i:0;a:6:{s:5:\"title\";s:9:\"Logo Grid\";s:4:\"name\";s:9:\"logo_grid\";s:6:\"isfree\";b:1;s:5:\"image\";s:79:\"https://api.unlimited-elements.com/catalog_unlimited/Logo Widgets/logo_grid.jpg\";s:7:\"preview\";s:30:\"logo-grid-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0c3603a94207a43df9dd6dba824e317f\";}i:1;a:6:{s:5:\"title\";s:13:\"Logo Carousel\";s:4:\"name\";s:13:\"logo_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:83:\"https://api.unlimited-elements.com/catalog_unlimited/Logo Widgets/logo_carousel.gif\";s:7:\"preview\";s:34:\"logo-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"b84e028a8d56ad048386138cd3d72669\";}i:2;a:6:{s:5:\"title\";s:9:\"Logo Card\";s:4:\"name\";s:9:\"logo_card\";s:6:\"isfree\";b:1;s:5:\"image\";s:79:\"https://api.unlimited-elements.com/catalog_unlimited/Logo Widgets/logo_card.jpg\";s:7:\"preview\";s:30:\"logo-card-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:3;a:6:{s:5:\"title\";s:12:\"Logo Marquee\";s:4:\"name\";s:12:\"logo_marquee\";s:6:\"isfree\";b:0;s:5:\"image\";s:82:\"https://api.unlimited-elements.com/catalog_unlimited/Logo Widgets/logo_marquee.png\";s:7:\"preview\";s:33:\"logo-marquee-widget-for-elementor\";s:11:\"update_hash\";s:32:\"2fd1d58801d32e79e6c2129468f205b6\";}}s:13:\"Hover Effects\";a:9:{i:0;a:6:{s:5:\"title\";s:21:\"Rollover Image Effect\";s:4:\"name\";s:21:\"rollover_image_effect\";s:6:\"isfree\";b:1;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Hover Effects/rollover_image_effect.gif\";s:7:\"preview\";s:42:\"rollover-image-effect-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e8c73f7860736587ce2ea5a7febe44bd\";}i:1;a:6:{s:5:\"title\";s:20:\"Banner Hover Effects\";s:4:\"name\";s:23:\"uc_banner_hover_effects\";s:6:\"isfree\";b:0;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Hover Effects/uc_banner_hover_effects.gif\";s:7:\"preview\";s:41:\"banner-hover-effect-widgets-for-elementor\";s:11:\"update_hash\";s:32:\"8db31a7d76cc9e70e4c4d68e8c02b1d7\";}i:2;a:6:{s:5:\"title\";s:18:\"Link Hover Effects\";s:4:\"name\";s:18:\"link_hover_effects\";s:6:\"isfree\";b:1;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Hover Effects/link_hover_effects.gif\";s:7:\"preview\";s:18:\"link-hover-effects\";s:11:\"update_hash\";s:0:\"\";}i:3;a:6:{s:5:\"title\";s:18:\"Icon Hover Effects\";s:4:\"name\";s:21:\"uc_icon_hover_effects\";s:6:\"isfree\";b:1;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Hover Effects/uc_icon_hover_effects.gif\";s:7:\"preview\";s:32:\"icon-hover-effects-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:4;a:6:{s:5:\"title\";s:13:\"iHover Effect\";s:4:\"name\";s:13:\"ihover_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:84:\"https://api.unlimited-elements.com/catalog_unlimited/Hover Effects/ihover_effect.gif\";s:7:\"preview\";s:20:\"ihover-for-elementor\";s:11:\"update_hash\";s:32:\"90b924a945c2f31f8624bca28dcd72b2\";}i:5;a:6:{s:5:\"title\";s:22:\"Creative Button Hovers\";s:4:\"name\";s:16:\"creative_buttons\";s:6:\"isfree\";b:1;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Hover Effects/creative_buttons.gif\";s:7:\"preview\";s:42:\"creative-button-hover-widget-for-elementor\";s:11:\"update_hash\";s:32:\"459942e562de22c20169be45c63e1381\";}i:6;a:6:{s:5:\"title\";s:21:\"Caption Hover Effects\";s:4:\"name\";s:21:\"caption_hover_effects\";s:6:\"isfree\";b:1;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Hover Effects/caption_hover_effects.gif\";s:7:\"preview\";s:21:\"caption-hover-effects\";s:11:\"update_hash\";s:32:\"ebc1de04563630d28de2ad9fdc12c163\";}i:7;a:6:{s:5:\"title\";s:25:\"Border Link Hover Effects\";s:4:\"name\";s:25:\"border_link_hover_effects\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Hover Effects/border_link_hover_effects.gif\";s:7:\"preview\";s:46:\"border-link-hover-effects-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e07f89c73c141faeddc1dd05047216c4\";}i:8;a:6:{s:5:\"title\";s:12:\"Image Scroll\";s:4:\"name\";s:20:\"scrolling_screenshot\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Hover Effects/scrolling_screenshot.gif\";s:7:\"preview\";s:41:\"scrolling-screenshot-widget-for-elementor\";s:11:\"update_hash\";s:32:\"d431c3d1ad9da4cb2bc80c1837c7a62a\";}}s:14:\"Button Widgets\";a:21:{i:0;a:6:{s:5:\"title\";s:15:\"Dropdown Button\";s:4:\"name\";s:15:\"dropdown_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/dropdown_button.gif\";s:7:\"preview\";s:36:\"dropdown-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"84c8ba612be4fb4b30f6cd9024909e0a\";}i:1;a:6:{s:5:\"title\";s:13:\"Scroll To Top\";s:4:\"name\";s:16:\"ue_scroll_to_top\";s:6:\"isfree\";b:1;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/ue_scroll_to_top.jpg\";s:7:\"preview\";s:34:\"scroll-to-top-widget-for-elementor\";s:11:\"update_hash\";s:32:\"2ceb06d4d326e08ed3a2da10733de3e4\";}i:2;a:6:{s:5:\"title\";s:17:\"Video Play Button\";s:4:\"name\";s:16:\"blox_play_button\";s:6:\"isfree\";b:1;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/blox_play_button.png\";s:7:\"preview\";s:44:\"video-play-button-popup-widget-for-elementor\";s:11:\"update_hash\";s:32:\"db29c40c57b508f3540a27df01296cdb\";}i:3;a:6:{s:5:\"title\";s:26:\"Neon Glowing Button Effect\";s:4:\"name\";s:26:\"neon_glowing_button_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:98:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/neon_glowing_button_effect.gif\";s:7:\"preview\";s:47:\"neon-glowing-button-effect-widget-for-elementor\";s:11:\"update_hash\";s:32:\"5279edc1407676c1f2629b75931640fc\";}i:4;a:6:{s:5:\"title\";s:14:\"Overlay Button\";s:4:\"name\";s:20:\"color_overlay_button\";s:6:\"isfree\";b:1;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/color_overlay_button.gif\";s:7:\"preview\";s:35:\"overlay-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0ef119dec64f32e22e857d395c442abe\";}i:5;a:6:{s:5:\"title\";s:27:\"Underline Link Hover Effect\";s:4:\"name\";s:27:\"underline_link_hover_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:99:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/underline_link_hover_effect.gif\";s:7:\"preview\";s:48:\"underline-link-hover-effect-widget-for-elementor\";s:11:\"update_hash\";s:32:\"f27e113ab784489edb7928c2e06900d5\";}i:6;a:6:{s:5:\"title\";s:25:\"Underline Animated Button\";s:4:\"name\";s:25:\"underline_animated_button\";s:6:\"isfree\";b:1;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/underline_animated_button.gif\";s:7:\"preview\";s:46:\"underline-animated-button-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:7;a:6:{s:5:\"title\";s:17:\"Multi Line Button\";s:4:\"name\";s:17:\"multi_line_button\";s:6:\"isfree\";b:1;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/multi_line_button.jpg\";s:7:\"preview\";s:38:\"multi-line-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"d8bc571a471b76b8518c410d8964bbbe\";}i:8;a:6:{s:5:\"title\";s:22:\"Simple Artistic Button\";s:4:\"name\";s:22:\"simple_artistic_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/simple_artistic_button.png\";s:7:\"preview\";s:43:\"simple-artistic-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"dc50153f1c9439310cb75df218376eb6\";}i:9;a:6:{s:5:\"title\";s:18:\"Toggle Text Button\";s:4:\"name\";s:18:\"toggle_text_button\";s:6:\"isfree\";b:1;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/toggle_text_button.png\";s:7:\"preview\";s:39:\"toggle-text-button-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:10;a:6:{s:5:\"title\";s:12:\"Button Group\";s:4:\"name\";s:14:\"blox_btn_group\";s:6:\"isfree\";b:1;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/blox_btn_group.png\";s:7:\"preview\";s:33:\"button-group-widget-for-elementor\";s:11:\"update_hash\";s:32:\"fb48de16d0bc7ffacd059b834ec7c263\";}i:11;a:6:{s:5:\"title\";s:9:\"Dark Mode\";s:4:\"name\";s:9:\"dark_mode\";s:6:\"isfree\";b:1;s:5:\"image\";s:81:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/dark_mode.gif\";s:7:\"preview\";s:30:\"dark-mode-widget-for-elementor\";s:11:\"update_hash\";s:32:\"deb8d0ee4360327effcda0ac1c57f00a\";}i:12;a:6:{s:5:\"title\";s:19:\"Icon Pointer Button\";s:4:\"name\";s:19:\"icon_pointer_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/icon_pointer_button.jpg\";s:7:\"preview\";s:40:\"icon-pointer-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"026e6a9d20b2bc2eac14eec001f89f4c\";}i:13;a:6:{s:5:\"title\";s:20:\"Border Button Effect\";s:4:\"name\";s:17:\"border_btn_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/border_btn_effect.gif\";s:7:\"preview\";s:41:\"border-button-effect-widget-for-elementor\";s:11:\"update_hash\";s:32:\"040ace69631ffbbfdc6d49de537c8a2c\";}i:14;a:6:{s:5:\"title\";s:15:\"Gradient Button\";s:4:\"name\";s:15:\"gradient_button\";s:6:\"isfree\";b:1;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/gradient_button.png\";s:7:\"preview\";s:36:\"gradient-button-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:15;a:6:{s:5:\"title\";s:13:\"Liquid Button\";s:4:\"name\";s:23:\"super_fun_liquid_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:95:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/super_fun_liquid_button.gif\";s:7:\"preview\";s:34:\"liquid-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"9d45dafaafa29b8261531c942c2f5907\";}i:16;a:6:{s:5:\"title\";s:28:\"Gradient Hover Effect Button\";s:4:\"name\";s:28:\"gradient_hover_effect_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/gradient_hover_effect_button.gif\";s:7:\"preview\";s:49:\"gradient-hover-effect-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"9c599e19c83c9ff3a44c1e91d35d9108\";}i:17;a:6:{s:5:\"title\";s:19:\"Glare Button Effect\";s:4:\"name\";s:19:\"glare_effect_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/glare_effect_button.gif\";s:7:\"preview\";s:40:\"glare-effect-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"11d13c2035ca2c6a41692db4eee004a1\";}i:18;a:6:{s:5:\"title\";s:20:\"Parallelogram Button\";s:4:\"name\";s:18:\"parellogram_button\";s:6:\"isfree\";b:1;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/parellogram_button.jpg\";s:7:\"preview\";s:39:\"parellogram-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"9fd78e1aa6fe757e7703a24eea67be48\";}i:19;a:6:{s:5:\"title\";s:24:\"Button Icon Hover Effect\";s:4:\"name\";s:27:\"uc_icon_hover_effect_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:99:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/uc_icon_hover_effect_button.jpg\";s:7:\"preview\";s:45:\"icon-hover-effect-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0a49853088a3e1550562f326a82f6152\";}i:20;a:6:{s:5:\"title\";s:16:\"Christmas Button\";s:4:\"name\";s:16:\"christmas_button\";s:6:\"isfree\";b:0;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Button Widgets/christmas_button.jpg\";s:7:\"preview\";s:37:\"christmas-button-widget-for-elementor\";s:11:\"update_hash\";s:32:\"7357053260058906f212a54ec1a37b6b\";}}s:10:\"Typography\";a:15:{i:0;a:6:{s:5:\"title\";s:18:\"Scroll Text Reveal\";s:4:\"name\";s:21:\"uc_scroll_reveal_text\";s:6:\"isfree\";b:0;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/uc_scroll_reveal_text.png\";s:7:\"preview\";s:39:\"scroll-reveal-text-widget-for-elementor\";s:11:\"update_hash\";s:32:\"c8e53bd4fe06558535670cbc4d13af21\";}i:1;a:6:{s:5:\"title\";s:12:\"Text Rotator\";s:4:\"name\";s:12:\"text_rotator\";s:6:\"isfree\";b:1;s:5:\"image\";s:80:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/text_rotator.gif\";s:7:\"preview\";s:39:\"text-rotator-for-elementor-page-builder\";s:11:\"update_hash\";s:32:\"9050b2e17a846e7c92868fa28e8281b0\";}i:2;a:6:{s:5:\"title\";s:29:\"Futuristic Typing Text Effect\";s:4:\"name\";s:29:\"futuristic_typing_text_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/futuristic_typing_text_effect.gif\";s:7:\"preview\";s:50:\"futuristic-typing-text-effect-widget-for-elementor\";s:11:\"update_hash\";s:32:\"afc307b06ed7988730f7426b5ebc56f5\";}i:3;a:6:{s:5:\"title\";s:7:\"3D Text\";s:4:\"name\";s:7:\"3d_text\";s:6:\"isfree\";b:1;s:5:\"image\";s:75:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/3d_text.jpg\";s:7:\"preview\";s:28:\"3d-text-effect-for-elementor\";s:11:\"update_hash\";s:32:\"b783c74e99096b7441586c8abaf3e44a\";}i:4;a:6:{s:5:\"title\";s:19:\"Animated Split Text\";s:4:\"name\";s:24:\"splitting_letters_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/splitting_letters_effect.gif\";s:7:\"preview\";s:40:\"animated-split-text-widget-for-elementor\";s:11:\"update_hash\";s:32:\"36777c4a69aec336bdca63e7e977ef7a\";}i:5;a:6:{s:5:\"title\";s:22:\"Sideways Vertical Text\";s:4:\"name\";s:22:\"sideways_vertical_text\";s:6:\"isfree\";b:0;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/sideways_vertical_text.png\";s:7:\"preview\";s:43:\"sideways-vertical-text-widget-for-elementor\";s:11:\"update_hash\";s:32:\"2c37136db8d8d9f768908aebf9345617\";}i:6;a:6:{s:5:\"title\";s:30:\"Gradient Underline Text Effect\";s:4:\"name\";s:30:\"gradient_underline_text_effect\";s:6:\"isfree\";b:1;s:5:\"image\";s:98:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/gradient_underline_text_effect.png\";s:7:\"preview\";s:51:\"gradient-underline-text-effect-widget-for-elementor\";s:11:\"update_hash\";s:32:\"3566a5e3732ff41339b9c6673a301a5a\";}i:7;a:6:{s:5:\"title\";s:18:\"Dual Color Heading\";s:4:\"name\";s:18:\"dual_color_heading\";s:6:\"isfree\";b:1;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/dual_color_heading.png\";s:7:\"preview\";s:39:\"dual-color-heading-widget-for-elementor\";s:11:\"update_hash\";s:32:\"09364996dee87aa295d31b701bdeda5f\";}i:8;a:6:{s:5:\"title\";s:18:\"Stroke Text Effect\";s:4:\"name\";s:11:\"stroke_text\";s:6:\"isfree\";b:1;s:5:\"image\";s:79:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/stroke_text.png\";s:7:\"preview\";s:39:\"stroke-text-effect-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:9;a:6:{s:5:\"title\";s:28:\"Image Background Text Effect\";s:4:\"name\";s:28:\"image_background_text_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/image_background_text_effect.png\";s:7:\"preview\";s:49:\"image-background-text-effect-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:10;a:6:{s:5:\"title\";s:20:\"Gradient Text Effect\";s:4:\"name\";s:20:\"gradient_text_effect\";s:6:\"isfree\";b:1;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/gradient_text_effect.png\";s:7:\"preview\";s:34:\"gradient-text-effect-for-elementor\";s:11:\"update_hash\";s:32:\"7d78e2c2f589309d154f2fea91642459\";}i:11;a:6:{s:5:\"title\";s:22:\"Typewriter Text Effect\";s:4:\"name\";s:22:\"typewriter_text_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/typewriter_text_effect.gif\";s:7:\"preview\";s:36:\"typewriter-text-effect-for-elementor\";s:11:\"update_hash\";s:32:\"d5172604b8a693247f55d82e7eb5fc6f\";}i:12;a:6:{s:5:\"title\";s:17:\"Side Line Heading\";s:4:\"name\";s:19:\"side_border_heading\";s:6:\"isfree\";b:0;s:5:\"image\";s:87:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/side_border_heading.png\";s:7:\"preview\";s:38:\"side-line-heading-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:13;a:6:{s:5:\"title\";s:19:\"Text Marquee Effect\";s:4:\"name\";s:7:\"marquee\";s:6:\"isfree\";b:1;s:5:\"image\";s:75:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/marquee.png\";s:7:\"preview\";s:26:\"text-marquee-for-elementor\";s:11:\"update_hash\";s:32:\"92404ffd283f7218ca0b731245f4dddb\";}i:14;a:6:{s:5:\"title\";s:14:\"Christmas Text\";s:4:\"name\";s:14:\"christmas_text\";s:6:\"isfree\";b:0;s:5:\"image\";s:82:\"https://api.unlimited-elements.com/catalog_unlimited/Typography/christmas_text.jpg\";s:7:\"preview\";s:35:\"christmas-text-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e93c48815ac82df04f388e60e9f033ae\";}}s:10:\"Icon Boxes\";a:10:{i:0;a:6:{s:5:\"title\";s:8:\"Icon Box\";s:4:\"name\";s:15:\"square_icon_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:83:\"https://api.unlimited-elements.com/catalog_unlimited/Icon Boxes/square_icon_box.jpg\";s:7:\"preview\";s:29:\"icon-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"4810ec6450a29e79a8f4e19f08f8d50e\";}i:1;a:6:{s:5:\"title\";s:17:\"Animated Icon Box\";s:4:\"name\";s:17:\"animated_icon_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:85:\"https://api.unlimited-elements.com/catalog_unlimited/Icon Boxes/animated_icon_box.gif\";s:7:\"preview\";s:38:\"animated-icon-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"d38b2840b4c054f06362a584013bc89f\";}i:2;a:6:{s:5:\"title\";s:9:\"Icon Card\";s:4:\"name\";s:20:\"material_footer_card\";s:6:\"isfree\";b:1;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Icon Boxes/material_footer_card.jpg\";s:7:\"preview\";s:41:\"material-footer-card-widget-for-elementor\";s:11:\"update_hash\";s:32:\"fae96510f2814ea77406a395aa930c0b\";}i:3;a:6:{s:5:\"title\";s:21:\"Icon Box Hover Effect\";s:4:\"name\";s:21:\"icon_box_hover_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:89:\"https://api.unlimited-elements.com/catalog_unlimited/Icon Boxes/icon_box_hover_effect.gif\";s:7:\"preview\";s:42:\"icon-box-hover-effect-widget-for-elementor\";s:11:\"update_hash\";s:32:\"2e1509a6b7179ab601fe13949034087f\";}i:4;a:6:{s:5:\"title\";s:24:\"Animated Border Icon Box\";s:4:\"name\";s:24:\"animated_border_icon_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Icon Boxes/animated_border_icon_box.gif\";s:7:\"preview\";s:45:\"animated-border-icon-box-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:5;a:6:{s:5:\"title\";s:15:\"Icon Number Box\";s:4:\"name\";s:27:\"blox_icon_button_number_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:95:\"https://api.unlimited-elements.com/catalog_unlimited/Icon Boxes/blox_icon_button_number_box.png\";s:7:\"preview\";s:43:\"icon-button-number-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0dc73370f042e76500cd390c4027fe0e\";}i:6;a:6:{s:5:\"title\";s:23:\"Icon Box Content Reveal\";s:4:\"name\";s:23:\"content_reveal_icon_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/Icon Boxes/content_reveal_icon_box.gif\";s:7:\"preview\";s:44:\"content-reveal-icon-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"e8b49dcbbc3c3465bd316fcde049b7fe\";}i:7;a:6:{s:5:\"title\";s:20:\"Twist Hover Icon Box\";s:4:\"name\";s:20:\"twist_hover_icon_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Icon Boxes/twist_hover_icon_box.png\";s:7:\"preview\";s:41:\"twist-hover-icon-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"6dcae5986e39ab5c9ce877f1f43b56a3\";}i:8;a:6:{s:5:\"title\";s:16:\"Sliding Icon Box\";s:4:\"name\";s:20:\"solid_color_icon_box\";s:6:\"isfree\";b:1;s:5:\"image\";s:88:\"https://api.unlimited-elements.com/catalog_unlimited/Icon Boxes/solid_color_icon_box.jpg\";s:7:\"preview\";s:41:\"solid-color-icon-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0ed9fb400de1f260e759e36241daf694\";}i:9;a:6:{s:5:\"title\";s:16:\"Overlay Icon Box\";s:4:\"name\";s:28:\"solid_color_overlay_icon_box\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Icon Boxes/solid_color_overlay_icon_box.gif\";s:7:\"preview\";s:49:\"solid-color-overlay-icon-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"6eea8fa3a57a8d8cc56174062b196c88\";}}s:12:\"Block Quotes\";a:5:{i:0;a:6:{s:5:\"title\";s:15:\"Block Quote Box\";s:4:\"name\";s:27:\"blox_solid_color_blockquote\";s:6:\"isfree\";b:1;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Block Quotes/blox_solid_color_blockquote.png\";s:7:\"preview\";s:36:\"block-quote-box-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:1;a:6:{s:5:\"title\";s:16:\"Block Quote Card\";s:4:\"name\";s:20:\"material_block_quote\";s:6:\"isfree\";b:1;s:5:\"image\";s:90:\"https://api.unlimited-elements.com/catalog_unlimited/Block Quotes/material_block_quote.png\";s:7:\"preview\";s:41:\"material-block-quote-widget-for-elementor\";s:11:\"update_hash\";s:32:\"179a90bf3d1c2b0d7a18471151fadd35\";}i:2;a:6:{s:5:\"title\";s:24:\"Block Quote Carousel Box\";s:4:\"name\";s:24:\"blox_material_blockquote\";s:6:\"isfree\";b:1;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Block Quotes/blox_material_blockquote.png\";s:7:\"preview\";s:45:\"block-quote-carousel-box-widget-for-elementor\";s:11:\"update_hash\";s:32:\"afb7dcaae94ebeda28b37e3ee9492839\";}i:3;a:6:{s:5:\"title\";s:20:\"Block Quote Carousel\";s:4:\"name\";s:24:\"blox_blockquote_carousel\";s:6:\"isfree\";b:0;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Block Quotes/blox_blockquote_carousel.png\";s:7:\"preview\";s:41:\"block-quote-carousel-widget-for-elementor\";s:11:\"update_hash\";s:32:\"017566a22227247b121cf1497a06bfb0\";}i:4;a:6:{s:5:\"title\";s:18:\"Block Quote Slider\";s:4:\"name\";s:26:\"blox_side_image_blockquote\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Block Quotes/blox_side_image_blockquote.png\";s:7:\"preview\";s:39:\"block-quote-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"b9f45601d5d997dc98e3b9fa0d08bc62\";}}s:20:\"Social Network Icons\";a:7:{i:0;a:6:{s:5:\"title\";s:25:\"Social Icons Glare Effect\";s:4:\"name\";s:25:\"social_icons_glare_effect\";s:6:\"isfree\";b:1;s:5:\"image\";s:103:\"https://api.unlimited-elements.com/catalog_unlimited/Social Network Icons/social_icons_glare_effect.jpg\";s:7:\"preview\";s:39:\"glare-social-icons-widget-for-elementor\";s:11:\"update_hash\";s:32:\"4413b0da260cc8a3d3254e5f4a2453dc\";}i:1;a:6:{s:5:\"title\";s:18:\"Shape Social Icons\";s:4:\"name\";s:18:\"shape_social_icons\";s:6:\"isfree\";b:0;s:5:\"image\";s:96:\"https://api.unlimited-elements.com/catalog_unlimited/Social Network Icons/shape_social_icons.png\";s:7:\"preview\";s:46:\"shape-social-icon-button-widgets-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:2;a:6:{s:5:\"title\";s:22:\"3d Social Icon Buttons\";s:4:\"name\";s:22:\"3d_social_icon_buttons\";s:6:\"isfree\";b:1;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/Social Network Icons/3d_social_icon_buttons.jpg\";s:7:\"preview\";s:43:\"3d-social-icon-buttons-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:3;a:6:{s:5:\"title\";s:29:\"Square to Circle Social Icons\";s:4:\"name\";s:29:\"square_to_circle_social_icons\";s:6:\"isfree\";b:1;s:5:\"image\";s:107:\"https://api.unlimited-elements.com/catalog_unlimited/Social Network Icons/square_to_circle_social_icons.jpg\";s:7:\"preview\";s:57:\"square-to-circle-social-icon-button-widgets-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:4;a:6:{s:5:\"title\";s:21:\"Rotating Social Icons\";s:4:\"name\";s:21:\"rotating_social_icons\";s:6:\"isfree\";b:1;s:5:\"image\";s:99:\"https://api.unlimited-elements.com/catalog_unlimited/Social Network Icons/rotating_social_icons.gif\";s:7:\"preview\";s:49:\"rotating-social-icon-button-widgets-for-elementor\";s:11:\"update_hash\";s:32:\"28dd40a9557a50c33fb2ed1c470ad37c\";}i:5;a:6:{s:5:\"title\";s:23:\"Social Icons With Label\";s:4:\"name\";s:23:\"social_icons_with_label\";s:6:\"isfree\";b:1;s:5:\"image\";s:101:\"https://api.unlimited-elements.com/catalog_unlimited/Social Network Icons/social_icons_with_label.jpg\";s:7:\"preview\";s:46:\"label-social-icon-button-widgets-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:6;a:6:{s:5:\"title\";s:36:\"Social Icons With Circle Fill Effect\";s:4:\"name\";s:36:\"social_icons_with_circle_fill_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:114:\"https://api.unlimited-elements.com/catalog_unlimited/Social Network Icons/social_icons_with_circle_fill_effect.jpg\";s:7:\"preview\";s:52:\"circle-fill-social-icon-button-widgets-for-elementor\";s:11:\"update_hash\";s:32:\"1e4bdff85376e7a391011220f77baefa\";}}s:23:\"Separators and Dividers\";a:9:{i:0;a:6:{s:5:\"title\";s:27:\"Unlimited Separator Divider\";s:4:\"name\";s:17:\"separator_divider\";s:6:\"isfree\";b:1;s:5:\"image\";s:98:\"https://api.unlimited-elements.com/catalog_unlimited/Separators and Dividers/separator_divider.jpg\";s:7:\"preview\";s:49:\"unlimited-separator-divider-widgets-for-elementor\";s:11:\"update_hash\";s:32:\"d2d3d285fdc45389dfd7e5e7fab050a9\";}i:1;a:6:{s:5:\"title\";s:22:\"Line Diamond Separator\";s:4:\"name\";s:27:\"blox_line_diamond_seperator\";s:6:\"isfree\";b:1;s:5:\"image\";s:108:\"https://api.unlimited-elements.com/catalog_unlimited/Separators and Dividers/blox_line_diamond_seperator.png\";s:7:\"preview\";s:44:\"separator-and-dividers-widgets-for-elementor\";s:11:\"update_hash\";s:32:\"1fcedc57785764ca89de587f80f75a9d\";}i:2;a:6:{s:5:\"title\";s:17:\"Line Text Divider\";s:4:\"name\";s:22:\"blox_line_text_divider\";s:6:\"isfree\";b:1;s:5:\"image\";s:103:\"https://api.unlimited-elements.com/catalog_unlimited/Separators and Dividers/blox_line_text_divider.png\";s:7:\"preview\";s:44:\"separator-and-dividers-widgets-for-elementor\";s:11:\"update_hash\";s:32:\"33e37b70662d421669966b2b0d65483d\";}i:3;a:6:{s:5:\"title\";s:18:\"Triangle Separator\";s:4:\"name\";s:24:\"blox_triangle_separators\";s:6:\"isfree\";b:0;s:5:\"image\";s:105:\"https://api.unlimited-elements.com/catalog_unlimited/Separators and Dividers/blox_triangle_separators.png\";s:7:\"preview\";s:44:\"separator-and-dividers-widgets-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:4;a:6:{s:5:\"title\";s:21:\"Zigzag Wave Seperator\";s:4:\"name\";s:25:\"blox_zizag_wave_seperator\";s:6:\"isfree\";b:0;s:5:\"image\";s:106:\"https://api.unlimited-elements.com/catalog_unlimited/Separators and Dividers/blox_zizag_wave_seperator.png\";s:7:\"preview\";s:44:\"separator-and-dividers-widgets-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:5;a:6:{s:5:\"title\";s:21:\"Three Icons Separator\";s:4:\"name\";s:26:\"blox_three_icons_separator\";s:6:\"isfree\";b:0;s:5:\"image\";s:107:\"https://api.unlimited-elements.com/catalog_unlimited/Separators and Dividers/blox_three_icons_separator.png\";s:7:\"preview\";s:44:\"separator-and-dividers-widgets-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:6;a:6:{s:5:\"title\";s:25:\"Christmas Candy Separator\";s:4:\"name\";s:25:\"christmas_candy_seperator\";s:6:\"isfree\";b:0;s:5:\"image\";s:106:\"https://api.unlimited-elements.com/catalog_unlimited/Separators and Dividers/christmas_candy_seperator.png\";s:7:\"preview\";s:44:\"separator-and-dividers-widgets-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:7;a:6:{s:5:\"title\";s:23:\"Animated Wave Separator\";s:4:\"name\";s:13:\"animated_wave\";s:6:\"isfree\";b:0;s:5:\"image\";s:94:\"https://api.unlimited-elements.com/catalog_unlimited/Separators and Dividers/animated_wave.png\";s:7:\"preview\";s:44:\"separator-and-dividers-widgets-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:8;a:6:{s:5:\"title\";s:16:\"Christmas Lights\";s:4:\"name\";s:16:\"christmas_lights\";s:6:\"isfree\";b:0;s:5:\"image\";s:97:\"https://api.unlimited-elements.com/catalog_unlimited/Separators and Dividers/christmas_lights.gif\";s:7:\"preview\";s:37:\"christmas-lights-widget-for-elementor\";s:11:\"update_hash\";s:32:\"343f1f10038dc4d90036e6502274cbdb\";}}s:12:\"Hero Widgets\";a:12:{i:0;a:6:{s:5:\"title\";s:10:\"Title Hero\";s:4:\"name\";s:10:\"title_hero\";s:6:\"isfree\";b:1;s:5:\"image\";s:80:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/title_hero.jpg\";s:7:\"preview\";s:31:\"title-hero-widget-for-elementor\";s:11:\"update_hash\";s:32:\"44346df2431661c7a30b71f4a9354ad3\";}i:1;a:6:{s:5:\"title\";s:8:\"Box Hero\";s:4:\"name\";s:8:\"box_hero\";s:6:\"isfree\";b:1;s:5:\"image\";s:78:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/box_hero.jpg\";s:7:\"preview\";s:29:\"box-hero-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:2;a:6:{s:5:\"title\";s:10:\"Split Hero\";s:4:\"name\";s:10:\"split_hero\";s:6:\"isfree\";b:1;s:5:\"image\";s:80:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/split_hero.jpg\";s:7:\"preview\";s:31:\"split-hero-widget-for-elementor\";s:11:\"update_hash\";s:32:\"8e7290ac82a5d10c4ce5a0801ecfeba4\";}i:3;a:6:{s:5:\"title\";s:22:\"Transparent Split Hero\";s:4:\"name\";s:22:\"transparent_split_hero\";s:6:\"isfree\";b:1;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/transparent_split_hero.jpg\";s:7:\"preview\";s:43:\"transparent-split-hero-widget-for-elementor\";s:11:\"update_hash\";s:32:\"62fd94f3118b5fa5bbc81e4dd8e746fd\";}i:4;a:6:{s:5:\"title\";s:11:\"Border Hero\";s:4:\"name\";s:11:\"border_hero\";s:6:\"isfree\";b:1;s:5:\"image\";s:81:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/border_hero.jpg\";s:7:\"preview\";s:32:\"border-hero-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:5;a:6:{s:5:\"title\";s:10:\"Video Hero\";s:4:\"name\";s:10:\"video_hero\";s:6:\"isfree\";b:0;s:5:\"image\";s:80:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/video_hero.jpg\";s:7:\"preview\";s:31:\"video-hero-widget-for-elementor\";s:11:\"update_hash\";s:32:\"0beaeb20f37a63c3fc3f6606e190fb6b\";}i:6;a:6:{s:5:\"title\";s:16:\"Split Video Hero\";s:4:\"name\";s:16:\"split_video_hero\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/split_video_hero.jpg\";s:7:\"preview\";s:37:\"split-video-hero-widget-for-elementor\";s:11:\"update_hash\";s:32:\"eea4cd56393c5de5bdfa8c45815bca25\";}i:7;a:6:{s:5:\"title\";s:13:\"Diagonal Hero\";s:4:\"name\";s:13:\"diagonal_hero\";s:6:\"isfree\";b:0;s:5:\"image\";s:83:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/diagonal_hero.jpg\";s:7:\"preview\";s:34:\"diagonal-hero-widget-for-elementor\";s:11:\"update_hash\";s:32:\"088d38ba6f123b8e109b9163f84e3994\";}i:8;a:6:{s:5:\"title\";s:10:\"Quote Hero\";s:4:\"name\";s:10:\"quote_hero\";s:6:\"isfree\";b:0;s:5:\"image\";s:80:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/quote_hero.jpg\";s:7:\"preview\";s:31:\"quote-hero-widget-for-elementor\";s:11:\"update_hash\";s:32:\"c2ea85d6142a2f3c4ea78003d13d2b6d\";}i:9;a:6:{s:5:\"title\";s:12:\"Persona Hero\";s:4:\"name\";s:12:\"persona_hero\";s:6:\"isfree\";b:0;s:5:\"image\";s:82:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/persona_hero.jpg\";s:7:\"preview\";s:33:\"persona-hero-widget-for-elementor\";s:11:\"update_hash\";s:32:\"8edc94da6393034bee35fee6f6359f29\";}i:10;a:6:{s:5:\"title\";s:16:\"Service Box Hero\";s:4:\"name\";s:16:\"service_box_hero\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/service_box_hero.jpg\";s:7:\"preview\";s:37:\"service-box-hero-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}i:11;a:6:{s:5:\"title\";s:16:\"Solid Color Hero\";s:4:\"name\";s:16:\"solid_color_hero\";s:6:\"isfree\";b:0;s:5:\"image\";s:86:\"https://api.unlimited-elements.com/catalog_unlimited/Hero Widgets/solid_color_hero.jpg\";s:7:\"preview\";s:37:\"solid-color-hero-widget-for-elementor\";s:11:\"update_hash\";s:0:\"\";}}}s:8:\"bg_addon\";a:1:{s:4:\"Main\";a:26:{i:0;a:6:{s:5:\"title\";s:28:\"Animated Gradient Background\";s:4:\"name\";s:18:\"gradient_animation\";s:6:\"isfree\";b:1;s:5:\"image\";s:104:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/gradient_animation.jpg\";s:7:\"preview\";s:49:\"animated-gradient-background-widget-for-elementor\";s:11:\"update_hash\";s:32:\"53a90d55fed360391f40528ca584e5b2\";}i:1;a:6:{s:5:\"title\";s:20:\"Particles Background\";s:4:\"name\";s:20:\"particles_background\";s:6:\"isfree\";b:0;s:5:\"image\";s:106:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/particles_background.jpg\";s:7:\"preview\";s:41:\"particles-background-widget-for-elementor\";s:11:\"update_hash\";s:32:\"bb008ec6f7a74a13c84f9987e1fc0a9b\";}i:2;a:6:{s:5:\"title\";s:15:\"Snow Background\";s:4:\"name\";s:17:\"snow_particles_bg\";s:6:\"isfree\";b:0;s:5:\"image\";s:103:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/snow_particles_bg.jpg\";s:7:\"preview\";s:36:\"snow-background-widget-for-elementor\";s:11:\"update_hash\";s:32:\"c377b86e7299521a619c3822c07217dd\";}i:3;a:6:{s:5:\"title\";s:27:\"Masks & Patterns Background\";s:4:\"name\";s:14:\"masks_patterns\";s:6:\"isfree\";b:0;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/masks_patterns.jpg\";s:7:\"preview\";s:48:\"mask-and-pattern-background-widget-for-elementor\";s:11:\"update_hash\";s:32:\"48ae81c207412977437c260436502df1\";}i:4;a:6:{s:5:\"title\";s:17:\"Background Slider\";s:4:\"name\";s:17:\"background_slider\";s:6:\"isfree\";b:0;s:5:\"image\";s:103:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/background_slider.gif\";s:7:\"preview\";s:29:\"elementor-section-backgrounds\";s:11:\"update_hash\";s:32:\"5c1a7800c9266a2aef6d0e4fe4adc749\";}i:5;a:6:{s:5:\"title\";s:23:\"Morph Background Slider\";s:4:\"name\";s:26:\"uc_background_webgl_slider\";s:6:\"isfree\";b:0;s:5:\"image\";s:112:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/uc_background_webgl_slider.gif\";s:7:\"preview\";s:44:\"morph-background-slider-widget-for-elementor\";s:11:\"update_hash\";s:32:\"2d617e8e0e17215f0be5f96bb999c9e2\";}i:6;a:6:{s:5:\"title\";s:17:\"Random Background\";s:4:\"name\";s:24:\"random_background_widget\";s:6:\"isfree\";b:0;s:5:\"image\";s:110:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/random_background_widget.jpg\";s:7:\"preview\";s:38:\"random-background-widget-for-elementor\";s:11:\"update_hash\";s:32:\"2c7b931c7ff69b9f80945029e51af094\";}i:7;a:6:{s:5:\"title\";s:20:\"Fireworks Background\";s:4:\"name\";s:22:\"ue_firework_background\";s:6:\"isfree\";b:0;s:5:\"image\";s:108:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/ue_firework_background.gif\";s:7:\"preview\";s:41:\"fireworks-background-widget-for-elementor\";s:11:\"update_hash\";s:32:\"32e0a8c8dc1495deb9bad1d13347be73\";}i:8;a:6:{s:5:\"title\";s:16:\"Stars Background\";s:4:\"name\";s:14:\"star_particles\";s:6:\"isfree\";b:0;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/star_particles.jpg\";s:7:\"preview\";s:39:\"star-particles-background-for-elementor\";s:11:\"update_hash\";s:32:\"e8a198a2cd9de71fac0cd72c7fabac00\";}i:9;a:6:{s:5:\"title\";s:19:\"Confetti Background\";s:4:\"name\";s:16:\"blox_confetti_bg\";s:6:\"isfree\";b:0;s:5:\"image\";s:102:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/blox_confetti_bg.png\";s:7:\"preview\";s:29:\"elementor-confetti-background\";s:11:\"update_hash\";s:32:\"07ba6542ed364d65911ba54509a391db\";}i:10;a:6:{s:5:\"title\";s:22:\"Snow Flakes Background\";s:4:\"name\";s:16:\"blox_css_snow_bg\";s:6:\"isfree\";b:1;s:5:\"image\";s:102:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/blox_css_snow_bg.jpg\";s:7:\"preview\";s:32:\"elementor-snow-flakes-background\";s:11:\"update_hash\";s:32:\"3f905386915ab31a98ab637b406d874a\";}i:11;a:6:{s:5:\"title\";s:16:\"Animated Squares\";s:4:\"name\";s:31:\"css_animated_squares_background\";s:6:\"isfree\";b:0;s:5:\"image\";s:117:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/css_animated_squares_background.jpg\";s:7:\"preview\";s:37:\"elementor-animated-squares-background\";s:11:\"update_hash\";s:32:\"f37dda6e105556e37153a5528a746901\";}i:12;a:6:{s:5:\"title\";s:11:\"Huge Shapes\";s:4:\"name\";s:30:\"huge_shap_background_animation\";s:6:\"isfree\";b:0;s:5:\"image\";s:116:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/huge_shap_background_animation.png\";s:7:\"preview\";s:32:\"elementor-huge-shapes-background\";s:11:\"update_hash\";s:32:\"9845d185fee78a669c874f33d40f2458\";}i:13;a:6:{s:5:\"title\";s:14:\"Blob Animation\";s:4:\"name\";s:14:\"blob_animation\";s:6:\"isfree\";b:0;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/blob_animation.png\";s:7:\"preview\";s:35:\"elementor-blob-animation-background\";s:11:\"update_hash\";s:32:\"d94074edbed06132a4973fa13df4bdb2\";}i:14;a:6:{s:5:\"title\";s:23:\"Smoke Background Effect\";s:4:\"name\";s:25:\"ue_webgl_fluid_simulation\";s:6:\"isfree\";b:0;s:5:\"image\";s:111:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/ue_webgl_fluid_simulation.jpg\";s:7:\"preview\";s:44:\"smoke-background-effect-widget-for-elementor\";s:11:\"update_hash\";s:32:\"cad37774d058d50d35e02dd77e72af58\";}i:15;a:6:{s:5:\"title\";s:17:\"Sliding Diagonals\";s:4:\"name\";s:35:\"sliding_diagonals_background_effect\";s:6:\"isfree\";b:0;s:5:\"image\";s:121:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/sliding_diagonals_background_effect.jpg\";s:7:\"preview\";s:38:\"elementor-sliding-diagonals-background\";s:11:\"update_hash\";s:32:\"96447155c3efb1df3d423fd513dca431\";}i:16;a:6:{s:5:\"title\";s:12:\"Bubble Float\";s:4:\"name\";s:12:\"bubble_float\";s:6:\"isfree\";b:1;s:5:\"image\";s:98:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/bubble_float.jpg\";s:7:\"preview\";s:37:\"bubble-float-background-for-elementor\";s:11:\"update_hash\";s:32:\"756ce2f56559591f2c4cecb3d662cf2b\";}i:17;a:6:{s:5:\"title\";s:14:\"Moving Stripes\";s:4:\"name\";s:14:\"moving_stripes\";s:6:\"isfree\";b:1;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/moving_stripes.gif\";s:7:\"preview\";s:35:\"moving-stripes-elementor-background\";s:11:\"update_hash\";s:32:\"dc947296468c3181eb83a18742e61851\";}i:18;a:6:{s:5:\"title\";s:16:\"Animated Ripples\";s:4:\"name\";s:16:\"animated_ripples\";s:6:\"isfree\";b:0;s:5:\"image\";s:102:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/animated_ripples.jpg\";s:7:\"preview\";s:37:\"animated-ripples-elementor-background\";s:11:\"update_hash\";s:32:\"ae0ff94f3e63c6af99bf7f4791c06ecc\";}i:19;a:6:{s:5:\"title\";s:12:\"Retro Blocks\";s:4:\"name\";s:21:\"animated_retro_blocks\";s:6:\"isfree\";b:1;s:5:\"image\";s:107:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/animated_retro_blocks.jpg\";s:7:\"preview\";s:37:\"retro-blocks-background-for-elementor\";s:11:\"update_hash\";s:32:\"27f94f1f0c01680fd61a056d00e5a6e4\";}i:20;a:6:{s:5:\"title\";s:14:\"Wave Animation\";s:4:\"name\";s:14:\"wave_animation\";s:6:\"isfree\";b:1;s:5:\"image\";s:100:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/wave_animation.jpg\";s:7:\"preview\";s:40:\"waves-animation-background-for-elementor\";s:11:\"update_hash\";s:32:\"3d8c19e24a684e18e8e7b156424c369c\";}i:21;a:6:{s:5:\"title\";s:18:\"Alternating Colors\";s:4:\"name\";s:18:\"alternating_colors\";s:6:\"isfree\";b:1;s:5:\"image\";s:104:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/alternating_colors.jpg\";s:7:\"preview\";s:43:\"alternating-colors-background-for-elementor\";s:11:\"update_hash\";s:32:\"8c117efd7a6108e9b98a34a6b93ae96b\";}i:22;a:6:{s:5:\"title\";s:5:\"Bokeh\";s:4:\"name\";s:5:\"bokeh\";s:6:\"isfree\";b:0;s:5:\"image\";s:91:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/bokeh.jpg\";s:7:\"preview\";s:30:\"bokeh-background-for-elementor\";s:11:\"update_hash\";s:32:\"03ee23bef07315bc2838baa49b78b09c\";}i:23;a:6:{s:5:\"title\";s:15:\"Shooting Lights\";s:4:\"name\";s:15:\"shooting_lights\";s:6:\"isfree\";b:0;s:5:\"image\";s:101:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/shooting_lights.jpg\";s:7:\"preview\";s:40:\"shooting-lights-background-for-elementor\";s:11:\"update_hash\";s:32:\"857e093dbb6b2ada01a7e13efaaa3ebf\";}i:24;a:6:{s:5:\"title\";s:6:\"Clouds\";s:4:\"name\";s:6:\"clouds\";s:6:\"isfree\";b:1;s:5:\"image\";s:92:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/clouds.jpg\";s:7:\"preview\";s:31:\"clouds-background-for-elementor\";s:11:\"update_hash\";s:32:\"229ae82b1b34b90c64a7039ac26e3bba\";}i:25;a:6:{s:5:\"title\";s:15:\"Diamond Pattern\";s:4:\"name\";s:15:\"diamond_pattern\";s:6:\"isfree\";b:1;s:5:\"image\";s:101:\"https://api.unlimited-elements.com/catalog_unlimited/uc_addontype_bg_addon___Main/diamond_pattern.jpg\";s:7:\"preview\";s:40:\"diamond-pattern-background-for-elementor\";s:11:\"update_hash\";s:32:\"1a9b6628996c4ed162e37786b04ab876\";}}}s:18:\"elementor_template\";a:3:{s:13:\"Template Kits\";a:111:{s:9:\"rest-home\";a:6:{s:5:\"title\";s:18:\"Foodie - Resturant\";s:5:\"image\";s:138:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_foodie_resturant.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:13:\"electric-home\";a:6:{s:5:\"title\";s:21:\"Electro - Electrician\";s:5:\"image\";s:141:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_electro_electrician.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:7:\"digital\";a:6:{s:5:\"title\";s:21:\"Digi - Digital Agency\";s:5:\"image\";s:141:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_digi_digital_agency.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:13:\"rest-home-2-2\";a:5:{s:5:\"title\";s:13:\"Foodie - Home\";s:5:\"image\";s:150:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_foodie_resturant_foodie_home.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:9:\"rest-home\";}s:13:\"gather-home-1\";a:5:{s:5:\"title\";s:15:\"Gather - Home 1\";s:5:\"image\";s:159:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_gather_conference_event_gather_home_1.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:17:\"gather-conference\";}s:13:\"gather-home-2\";a:5:{s:5:\"title\";s:15:\"Gather - Home 2\";s:5:\"image\";s:159:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_gather_conference_event_gather_home_2.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:17:\"gather-conference\";}s:18:\"minimal-conference\";a:5:{s:5:\"title\";s:15:\"Gather - Home 3\";s:5:\"image\";s:159:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_gather_conference_event_gather_home_3.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:17:\"gather-conference\";}s:13:\"gather-home-4\";a:5:{s:5:\"title\";s:15:\"Gather - Home 4\";s:5:\"image\";s:159:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_gather_conference_event_gather_home_4.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:17:\"gather-conference\";}s:13:\"gather-home-5\";a:5:{s:5:\"title\";s:15:\"Gather - Home 5\";s:5:\"image\";s:159:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_gather_conference_event_gather_home_5.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:17:\"gather-conference\";}s:13:\"gather-home-6\";a:5:{s:5:\"title\";s:15:\"Gather - Home 6\";s:5:\"image\";s:159:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_gather_conference_event_gather_home_6.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:17:\"gather-conference\";}s:28:\"template_webinar_classic-zip\";a:5:{s:5:\"title\";s:13:\"Webi - Home 1\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_home_1.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:11:\"webi-home-2\";a:5:{s:5:\"title\";s:13:\"Webi - Home 2\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_home_2.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:22:\"webinar-expert-landing\";a:5:{s:5:\"title\";s:13:\"Webi - Home 3\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_home_3.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:21:\"webinar-fresh-landing\";a:5:{s:5:\"title\";s:13:\"Webi - Home 4\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_home_4.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:13:\"webinar-event\";a:5:{s:5:\"title\";s:13:\"Webi - Home 5\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_home_5.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:26:\"webinar-shapes-landing-new\";a:5:{s:5:\"title\";s:13:\"Webi - Home 6\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_home_6.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:11:\"webi-home-7\";a:5:{s:5:\"title\";s:13:\"Webi - Home 7\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_home_7.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:11:\"webi-home-8\";a:5:{s:5:\"title\";s:13:\"Webi - Home 8\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_home_8.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:11:\"webi-home-9\";a:5:{s:5:\"title\";s:13:\"Webi - Home 9\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_home_9.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:12:\"webi-home-10\";a:5:{s:5:\"title\";s:14:\"Webi - Home 10\";s:5:\"image\";s:147:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_home_10.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:13:\"rhythm-home-1\";a:5:{s:5:\"title\";s:15:\"Rhythm - Home 1\";s:5:\"image\";s:154:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_rhythm_music_event_rhythm_home_1.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:18:\"rhythm-music-event\";}s:13:\"rhythm-home-2\";a:5:{s:5:\"title\";s:15:\"Rhythm - Home 2\";s:5:\"image\";s:154:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_rhythm_music_event_rhythm_home_2.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:18:\"rhythm-music-event\";}s:13:\"rhythm-home-3\";a:5:{s:5:\"title\";s:15:\"Rhythm - Home 3\";s:5:\"image\";s:154:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_rhythm_music_event_rhythm_home_3.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:18:\"rhythm-music-event\";}s:13:\"rhythm-home-4\";a:5:{s:5:\"title\";s:15:\"Rhythm - Home 4\";s:5:\"image\";s:154:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_rhythm_music_event_rhythm_home_4.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:18:\"rhythm-music-event\";}s:13:\"rhythm-home-5\";a:5:{s:5:\"title\";s:15:\"Rhythm - Home 5\";s:5:\"image\";s:154:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_rhythm_music_event_rhythm_home_5.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:18:\"rhythm-music-event\";}s:13:\"rhythm-home-6\";a:5:{s:5:\"title\";s:15:\"Rhythm - Home 6\";s:5:\"image\";s:154:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_rhythm_music_event_rhythm_home_6.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:18:\"rhythm-music-event\";}s:10:\"kiddy-home\";a:5:{s:5:\"title\";s:12:\"Kiddy - Home\";s:5:\"image\";s:158:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_kiddy_school_kindergarten_kiddy_home.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:25:\"kiddy-school-kindergarten\";}s:4:\"yoga\";a:5:{s:5:\"title\";s:11:\"Yoga - Home\";s:5:\"image\";s:141:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_body_yoga_yoga_home.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:9:\"body-yoga\";}s:21:\"halloween-halloween-1\";a:5:{s:5:\"title\";s:11:\"Halloween 1\";s:5:\"image\";s:149:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_scary_halloween_halloween_1.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:15:\"scary-halloween\";}s:11:\"agency-home\";a:6:{s:5:\"title\";s:14:\"Metro - Agency\";s:5:\"image\";s:134:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_metro_agency.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:23:\"agency-home-agency-team\";a:5:{s:5:\"title\";s:12:\"Metro - Team\";s:5:\"image\";s:145:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_metro_agency_metro_team.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:11:\"agency-home\";}s:25:\"agency-home-agency-team-2\";a:5:{s:5:\"title\";s:13:\"Metro - About\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_metro_agency_metro_about.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:11:\"agency-home\";}s:27:\"agency-home-agency-team-2-2\";a:5:{s:5:\"title\";s:16:\"Metro - Projects\";s:5:\"image\";s:149:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_metro_agency_metro_projects.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:11:\"agency-home\";}s:5:\"about\";a:5:{s:5:\"title\";s:14:\"Foodie - About\";s:5:\"image\";s:151:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_foodie_resturant_foodie_about.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:9:\"rest-home\";}s:15:\"agency-home-2-2\";a:5:{s:5:\"title\";s:12:\"Metro - Home\";s:5:\"image\";s:145:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_metro_agency_metro_home.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:11:\"agency-home\";}s:17:\"electric-home-2-2\";a:5:{s:5:\"title\";s:14:\"Electro - Home\";s:5:\"image\";s:154:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_electro_electrician_electro_home.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:13:\"electric-home\";}s:9:\"digital-2\";a:5:{s:5:\"title\";s:11:\"Digi - Home\";s:5:\"image\";s:151:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_digi_digital_agency_digi_home.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:7:\"digital\";}s:10:\"webi-about\";a:5:{s:5:\"title\";s:12:\"Webi - About\";s:5:\"image\";s:145:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_about.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:34:\"weddly-wedding-event-weddly-home-1\";a:5:{s:5:\"title\";s:15:\"Weddly - Home 1\";s:5:\"image\";s:156:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_weddly_wedding_event_weddly_home_1.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"weddly-wedding-event\";}s:30:\"fit-personal-trainer-fit-home1\";a:5:{s:5:\"title\";s:12:\"Fit - Home 1\";s:5:\"image\";s:153:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_fit_personal_trainer_fit_home_1.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"fit-personal-trainer\";}s:11:\"kiddy-about\";a:5:{s:5:\"title\";s:13:\"Kiddy - About\";s:5:\"image\";s:159:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_kiddy_school_kindergarten_kiddy_about.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:25:\"kiddy-school-kindergarten\";}s:13:\"yoga-services\";a:5:{s:5:\"title\";s:15:\"Yoga - Services\";s:5:\"image\";s:145:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_body_yoga_yoga_services.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:9:\"body-yoga\";}s:8:\"yoga-faq\";a:5:{s:5:\"title\";s:10:\"Yoga - FAQ\";s:5:\"image\";s:140:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_body_yoga_yoga_faq.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:9:\"body-yoga\";}s:12:\"yoga-pricing\";a:5:{s:5:\"title\";s:14:\"Yoga - Pricing\";s:5:\"image\";s:144:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_body_yoga_yoga_pricing.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:9:\"body-yoga\";}s:18:\"lawyer-lawyer-home\";a:5:{s:5:\"title\";s:13:\"Lawyer - Home\";s:5:\"image\";s:148:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_justice_lawyer_lawyer_home.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:14:\"justice-lawyer\";}s:19:\"black-friday-home-1\";a:5:{s:5:\"title\";s:21:\"Black Friday - Home 1\";s:5:\"image\";s:161:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_mayhem_black_friday_black_friday_home_1.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:19:\"mayhem-black-friday\";}s:14:\"cristmas-home1\";a:5:{s:5:\"title\";s:16:\"Cristmas - Home1\";s:5:\"image\";s:161:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_spirit_christmas_holiday_cristmas_home1.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:24:\"spirit-christmas-holiday\";}s:21:\"halloween-halloween-2\";a:5:{s:5:\"title\";s:11:\"Halloween 2\";s:5:\"image\";s:149:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_scary_halloween_halloween_2.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:15:\"scary-halloween\";}s:15:\"music-band-home\";a:5:{s:5:\"title\";s:17:\"Music Band - Home\";s:5:\"image\";s:155:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_groove_music_band_music_band_home.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:17:\"groove-music-band\";}s:11:\"rest-events\";a:5:{s:5:\"title\";s:15:\"Foodie - Events\";s:5:\"image\";s:152:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_foodie_resturant_foodie_events.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:9:\"rest-home\";}s:28:\"electric-home-electric-about\";a:5:{s:5:\"title\";s:15:\"Electro - About\";s:5:\"image\";s:155:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_electro_electrician_electro_about.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:13:\"electric-home\";}s:21:\"digital-digital-about\";a:5:{s:5:\"title\";s:15:\"Digital - About\";s:5:\"image\";s:155:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_digi_digital_agency_digital_about.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:7:\"digital\";}s:17:\"webi-testimonials\";a:5:{s:5:\"title\";s:19:\"Webi - Testimonials\";s:5:\"image\";s:152:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_testimonials.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:34:\"weddly-wedding-event-weddly-home-2\";a:5:{s:5:\"title\";s:15:\"Weddly - Home 2\";s:5:\"image\";s:156:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_weddly_wedding_event_weddly_home_2.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"weddly-wedding-event\";}s:16:\"kid-kids-about-2\";a:5:{s:5:\"title\";s:14:\"Kids - About 2\";s:5:\"image\";s:160:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_kiddy_school_kindergarten_kids_about_2.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:25:\"kiddy-school-kindergarten\";}s:19:\"lawyer-lawyer-about\";a:5:{s:5:\"title\";s:14:\"Lawyer - About\";s:5:\"image\";s:149:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_justice_lawyer_lawyer_about.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:14:\"justice-lawyer\";}s:19:\"black-friday-home-2\";a:5:{s:5:\"title\";s:21:\"Black Friday - Home 2\";s:5:\"image\";s:161:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_mayhem_black_friday_black_friday_home_2.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:19:\"mayhem-black-friday\";}s:16:\"christmas-home-2\";a:5:{s:5:\"title\";s:18:\"Christmas - Home 2\";s:5:\"image\";s:163:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_spirit_christmas_holiday_christmas_home_2.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:24:\"spirit-christmas-holiday\";}s:11:\"halloween-4\";a:5:{s:5:\"title\";s:11:\"Halloween 3\";s:5:\"image\";s:149:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_scary_halloween_halloween_3.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:15:\"scary-halloween\";}s:16:\"music-band-about\";a:5:{s:5:\"title\";s:18:\"Music Band - About\";s:5:\"image\";s:156:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_groove_music_band_music_band_about.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:17:\"groove-music-band\";}s:9:\"rest-menu\";a:5:{s:5:\"title\";s:13:\"Foodie - Menu\";s:5:\"image\";s:150:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_foodie_resturant_foodie_menu.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:9:\"rest-home\";}s:31:\"electric-home-electric-services\";a:5:{s:5:\"title\";s:18:\"Electro - Services\";s:5:\"image\";s:158:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_electro_electrician_electro_services.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:13:\"electric-home\";}s:29:\"digital-home-digital-services\";a:5:{s:5:\"title\";s:15:\"Digi - Services\";s:5:\"image\";s:155:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_digi_digital_agency_digi_services.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:7:\"digital\";}s:8:\"webi-faq\";a:5:{s:5:\"title\";s:10:\"Webi - FAQ\";s:5:\"image\";s:143:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar_webi_faq.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:12:\"webi-webinar\";}s:34:\"weddly-wedding-event-weddly-home-3\";a:5:{s:5:\"title\";s:15:\"Weddly - Home 3\";s:5:\"image\";s:156:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_weddly_wedding_event_weddly_home_3.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"weddly-wedding-event\";}s:14:\"kiddy-services\";a:5:{s:5:\"title\";s:16:\"Kiddy - Services\";s:5:\"image\";s:162:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_kiddy_school_kindergarten_kiddy_services.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:25:\"kiddy-school-kindergarten\";}s:14:\"kiddy-teachers\";a:5:{s:5:\"title\";s:16:\"Kiddy - Teachers\";s:5:\"image\";s:162:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_kiddy_school_kindergarten_kiddy_teachers.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:25:\"kiddy-school-kindergarten\";}s:18:\"lawyer-lawyer-work\";a:5:{s:5:\"title\";s:13:\"Lawyer - Work\";s:5:\"image\";s:148:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_justice_lawyer_lawyer_work.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:14:\"justice-lawyer\";}s:19:\"black-friday-home-3\";a:5:{s:5:\"title\";s:21:\"Black Friday - Home 3\";s:5:\"image\";s:161:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_mayhem_black_friday_black_friday_home_3.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:19:\"mayhem-black-friday\";}s:16:\"christmas-home-3\";a:5:{s:5:\"title\";s:18:\"Christmas - Home 3\";s:5:\"image\";s:163:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_spirit_christmas_holiday_christmas_home_3.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:24:\"spirit-christmas-holiday\";}s:21:\"halloween-halloween-3\";a:5:{s:5:\"title\";s:11:\"Halloween 4\";s:5:\"image\";s:149:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_scary_halloween_halloween_4.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:15:\"scary-halloween\";}s:15:\"music-band-news\";a:5:{s:5:\"title\";s:17:\"Music Band - News\";s:5:\"image\";s:155:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_groove_music_band_music_band_news.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:17:\"groove-music-band\";}s:31:\"digital-home-digital-services-2\";a:5:{s:5:\"title\";s:15:\"Digi - Projects\";s:5:\"image\";s:155:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_digi_digital_agency_digi_projects.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:7:\"digital\";}s:34:\"weddly-wedding-event-weddly-home-4\";a:5:{s:5:\"title\";s:15:\"Weddly - Home 4\";s:5:\"image\";s:156:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_weddly_wedding_event_weddly_home_4.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"weddly-wedding-event\";}s:18:\"lawyer-lawyer-news\";a:5:{s:5:\"title\";s:14:\"Lawyer - Study\";s:5:\"image\";s:149:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_justice_lawyer_lawyer_study.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:14:\"justice-lawyer\";}s:19:\"black-friday-home-4\";a:5:{s:5:\"title\";s:21:\"Black Friday - Home 4\";s:5:\"image\";s:161:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_mayhem_black_friday_black_friday_home_4.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:19:\"mayhem-black-friday\";}s:16:\"christmas-home-4\";a:5:{s:5:\"title\";s:19:\"Christmas  - Home 4\";s:5:\"image\";s:163:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_spirit_christmas_holiday_christmas_home_4.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:24:\"spirit-christmas-holiday\";}s:11:\"halloween-5\";a:5:{s:5:\"title\";s:11:\"Halloween 5\";s:5:\"image\";s:149:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_scary_halloween_halloween_5.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:15:\"scary-halloween\";}s:18:\"music-band-gallery\";a:5:{s:5:\"title\";s:19:\"Music Band- Gallery\";s:5:\"image\";s:158:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_groove_music_band_music_band_gallery.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:17:\"groove-music-band\";}s:21:\"digi-home-beauty-home\";a:5:{s:5:\"title\";s:14:\"Essence - Home\";s:5:\"image\";s:149:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_essence_beauty_essence_home.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:6:\"beauty\";}s:34:\"weddly-wedding-event-weddly-home-5\";a:5:{s:5:\"title\";s:15:\"Weddly - Home 5\";s:5:\"image\";s:156:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_weddly_wedding_event_weddly_home_5.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"weddly-wedding-event\";}s:18:\"lawyer-lawyer-team\";a:5:{s:5:\"title\";s:13:\"Lawyer - Team\";s:5:\"image\";s:148:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_justice_lawyer_lawyer_team.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:14:\"justice-lawyer\";}s:19:\"black-friday-home-5\";a:5:{s:5:\"title\";s:21:\"Black Friday - Home 5\";s:5:\"image\";s:161:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_mayhem_black_friday_black_friday_home_5.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:19:\"mayhem-black-friday\";}s:16:\"christmas-home-5\";a:5:{s:5:\"title\";s:18:\"Christmas - Home 5\";s:5:\"image\";s:163:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_spirit_christmas_holiday_christmas_home_5.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:24:\"spirit-christmas-holiday\";}s:6:\"beauty\";a:6:{s:5:\"title\";s:16:\"Essence - Beauty\";s:5:\"image\";s:136:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_essence_beauty.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:19:\"beauty-beauty-about\";a:5:{s:5:\"title\";s:15:\"Essence - About\";s:5:\"image\";s:150:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_essence_beauty_essence_about.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:6:\"beauty\";}s:34:\"weddly-wedding-event-weddly-home-6\";a:5:{s:5:\"title\";s:15:\"Weddly - Home 6\";s:5:\"image\";s:156:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_weddly_wedding_event_weddly_home_6.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"weddly-wedding-event\";}s:19:\"black-friday-home-6\";a:5:{s:5:\"title\";s:21:\"Black Friday - Home 6\";s:5:\"image\";s:161:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_mayhem_black_friday_black_friday_home_6.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:19:\"mayhem-black-friday\";}s:16:\"christmas-home-6\";a:5:{s:5:\"title\";s:18:\"Christmas - Home 6\";s:5:\"image\";s:163:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_spirit_christmas_holiday_christmas_home_6.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:24:\"spirit-christmas-holiday\";}s:22:\"beauty-beauty-services\";a:5:{s:5:\"title\";s:18:\"Essence - Services\";s:5:\"image\";s:153:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_essence_beauty_essence_services.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:6:\"beauty\";}s:12:\"weddly-about\";a:5:{s:5:\"title\";s:14:\"Weddly - About\";s:5:\"image\";s:155:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_weddly_wedding_event_weddly_about.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"weddly-wedding-event\";}s:14:\"weddly-gallery\";a:5:{s:5:\"title\";s:16:\"Weddly - Gallery\";s:5:\"image\";s:157:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_weddly_wedding_event_weddly_gallery.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"weddly-wedding-event\";}s:12:\"weddly-event\";a:5:{s:5:\"title\";s:14:\"Weddly - Event\";s:5:\"image\";s:155:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_weddly_wedding_event_weddly_event.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"weddly-wedding-event\";}s:26:\"beauty-testimonials-beauty\";a:5:{s:5:\"title\";s:16:\"Essence - Beauty\";s:5:\"image\";s:151:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_essence_beauty_essence_beauty.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:6:\"beauty\";}s:17:\"gather-conference\";a:6:{s:5:\"title\";s:25:\"Gather - Conference Event\";s:5:\"image\";s:145:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_gather_conference_event.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:12:\"webi-webinar\";a:6:{s:5:\"title\";s:14:\"Webi - Webinar\";s:5:\"image\";s:134:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_webi_webinar.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:18:\"rhythm-music-event\";a:6:{s:5:\"title\";s:20:\"Rhythm - Music Event\";s:5:\"image\";s:140:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_rhythm_music_event.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:20:\"weddly-wedding-event\";a:6:{s:5:\"title\";s:22:\"Weddly - Wedding Event\";s:5:\"image\";s:142:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_weddly_wedding_event.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:20:\"fit-personal-trainer\";a:6:{s:5:\"title\";s:22:\"Fit - Personal Trainer\";s:5:\"image\";s:142:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_fit_personal_trainer.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:10:\"fit-home-2\";a:5:{s:5:\"title\";s:12:\"Fit - Home 2\";s:5:\"image\";s:153:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_fit_personal_trainer_fit_home_2.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"fit-personal-trainer\";}s:10:\"fit-home-3\";a:5:{s:5:\"title\";s:12:\"Fit - Home 3\";s:5:\"image\";s:153:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_fit_personal_trainer_fit_home_3.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"fit-personal-trainer\";}s:10:\"fit-home-4\";a:5:{s:5:\"title\";s:12:\"Fit - Home 4\";s:5:\"image\";s:153:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_fit_personal_trainer_fit_home_4.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"fit-personal-trainer\";}s:6:\"home-5\";a:5:{s:5:\"title\";s:12:\"Fit - Home 5\";s:5:\"image\";s:153:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_fit_personal_trainer_fit_home_5.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:20:\"fit-personal-trainer\";}s:25:\"kiddy-school-kindergarten\";a:6:{s:5:\"title\";s:29:\"Kiddy - School & Kindergarten\";s:5:\"image\";s:147:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_kiddy_school_kindergarten.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:10:\"yoga-about\";a:5:{s:5:\"title\";s:12:\"Yoga - About\";s:5:\"image\";s:142:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_body_yoga_yoga_about.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:9:\"body-yoga\";}s:9:\"body-yoga\";a:6:{s:5:\"title\";s:11:\"Body - Yoga\";s:5:\"image\";s:131:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_body_yoga.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:14:\"justice-lawyer\";a:6:{s:5:\"title\";s:16:\"Justice - Lawyer\";s:5:\"image\";s:136:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_justice_lawyer.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:15:\"scary-halloween\";a:6:{s:5:\"title\";s:17:\"Scary - Halloween\";s:5:\"image\";s:137:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_scary_halloween.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:19:\"mayhem-black-friday\";a:6:{s:5:\"title\";s:21:\"Mayhem - Black Friday\";s:5:\"image\";s:141:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_mayhem_black_friday.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:24:\"spirit-christmas-holiday\";a:6:{s:5:\"title\";s:26:\"Spirit - Christmas Holiday\";s:5:\"image\";s:146:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_spirit_christmas_holiday.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}s:17:\"groove-music-band\";a:6:{s:5:\"title\";s:19:\"Groove - Music Band\";s:5:\"image\";s:139:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Template Kits/template_groove_music_band.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";s:9:\"is_parent\";b:1;}}s:22:\"Digital Business Cards\";a:7:{s:32:\"freelancer-digital-business-card\";a:5:{s:5:\"title\";s:32:\"Freelancer Digital Business Card\";s:5:\"image\";s:163:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Digital Business Cards/template_freelancer_digital_business_card.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:11:\"doctor-card\";a:5:{s:5:\"title\";s:28:\"Doctor Digital Business Card\";s:5:\"image\";s:159:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Digital Business Cards/template_doctor_digital_business_card.png\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:11:\"lawyer-card\";a:5:{s:5:\"title\";s:28:\"Lawyer Digital Business Card\";s:5:\"image\";s:159:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Digital Business Cards/template_lawyer_digital_business_card.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:21:\"personal-trainer-card\";a:5:{s:5:\"title\";s:38:\"Personal Trainer Digital Business Card\";s:5:\"image\";s:169:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Digital Business Cards/template_personal_trainer_digital_business_card.png\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:9:\"professor\";a:5:{s:5:\"title\";s:31:\"Professor Digital Business Card\";s:5:\"image\";s:162:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Digital Business Cards/template_professor_digital_business_card.png\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:34:\"photographer-digital-business-card\";a:5:{s:5:\"title\";s:34:\"Photographer Digital Business Card\";s:5:\"image\";s:165:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Digital Business Cards/template_photographer_digital_business_card.png\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:28:\"beauty-digital-business-card\";a:5:{s:5:\"title\";s:28:\"Beauty Digital Business Card\";s:5:\"image\";s:159:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___Digital Business Cards/template_beauty_digital_business_card.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}}s:9:\"CV Resume\";a:13:{s:22:\"professional-cv-resume\";a:5:{s:5:\"title\";s:22:\"Professional CV Resume\";s:5:\"image\";s:140:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_professional_cv_resume.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:16:\"simple-cv-resume\";a:5:{s:5:\"title\";s:16:\"Simple CV Resume\";s:5:\"image\";s:134:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_simple_cv_resume.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:15:\"fresh-cv-resume\";a:5:{s:5:\"title\";s:15:\"Fresh CV Resume\";s:5:\"image\";s:133:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_fresh_cv_resume.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:18:\"material-cv-resume\";a:5:{s:5:\"title\";s:18:\"Material CV Resume\";s:5:\"image\";s:136:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_material_cv_resume.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:19:\"portfolio-cv-resume\";a:5:{s:5:\"title\";s:19:\"Portfolio CV Resume\";s:5:\"image\";s:137:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_portfolio_cv_resume.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:21:\"photography-cv-resume\";a:5:{s:5:\"title\";s:21:\"Photography CV Resume\";s:5:\"image\";s:139:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_photography_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:15:\"light-cv-resume\";a:5:{s:5:\"title\";s:15:\"Light CV Resume\";s:5:\"image\";s:133:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_light_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:16:\"artist-cv-resume\";a:5:{s:5:\"title\";s:16:\"Artist CV Resume\";s:5:\"image\";s:134:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_artist_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:14:\"dark-cv-resume\";a:5:{s:5:\"title\";s:14:\"Dark CV Resume\";s:5:\"image\";s:132:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_dark_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:18:\"colorful-cv-resume\";a:5:{s:5:\"title\";s:18:\"Colorful CV Resume\";s:5:\"image\";s:136:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_colorful_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:16:\"cchill-cv-resume\";a:5:{s:5:\"title\";s:15:\"Chill CV Resume\";s:5:\"image\";s:133:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_chill_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:15:\"clean-cv-resume\";a:5:{s:5:\"title\";s:15:\"Clean CV Resume\";s:5:\"image\";s:133:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_clean_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:16:\"modern-cv-resume\";a:5:{s:5:\"title\";s:16:\"Modern CV Resume\";s:5:\"image\";s:134:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_modern_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}}}}s:19:\"catalog_addon_names\";a:1:{s:0:\"\";a:14:{s:22:\"professional-cv-resume\";a:5:{s:5:\"title\";s:22:\"Professional CV Resume\";s:5:\"image\";s:140:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_professional_cv_resume.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:16:\"simple-cv-resume\";a:5:{s:5:\"title\";s:16:\"Simple CV Resume\";s:5:\"image\";s:134:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_simple_cv_resume.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:15:\"fresh-cv-resume\";a:5:{s:5:\"title\";s:15:\"Fresh CV Resume\";s:5:\"image\";s:133:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_fresh_cv_resume.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:18:\"material-cv-resume\";a:5:{s:5:\"title\";s:18:\"Material CV Resume\";s:5:\"image\";s:136:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_material_cv_resume.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:19:\"portfolio-cv-resume\";a:5:{s:5:\"title\";s:19:\"Portfolio CV Resume\";s:5:\"image\";s:137:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_portfolio_cv_resume.jpg\";s:6:\"isfree\";b:1;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:21:\"photography-cv-resume\";a:5:{s:5:\"title\";s:21:\"Photography CV Resume\";s:5:\"image\";s:139:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_photography_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:15:\"light-cv-resume\";a:5:{s:5:\"title\";s:15:\"Light CV Resume\";s:5:\"image\";s:133:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_light_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:16:\"artist-cv-resume\";a:5:{s:5:\"title\";s:16:\"Artist CV Resume\";s:5:\"image\";s:134:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_artist_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:14:\"dark-cv-resume\";a:5:{s:5:\"title\";s:14:\"Dark CV Resume\";s:5:\"image\";s:132:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_dark_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:18:\"colorful-cv-resume\";a:5:{s:5:\"title\";s:18:\"Colorful CV Resume\";s:5:\"image\";s:136:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_colorful_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:16:\"cchill-cv-resume\";a:5:{s:5:\"title\";s:15:\"Chill CV Resume\";s:5:\"image\";s:133:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_chill_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:15:\"clean-cv-resume\";a:5:{s:5:\"title\";s:15:\"Clean CV Resume\";s:5:\"image\";s:133:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_clean_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:16:\"modern-cv-resume\";a:5:{s:5:\"title\";s:16:\"Modern CV Resume\";s:5:\"image\";s:134:\"https://api.unlimited-elements.com/catalog_layouts/unlimited/uc_addontype_elementor_template___CV Resume/template_modern_cv_resume.jpg\";s:6:\"isfree\";b:0;s:3:\"url\";s:0:\"\";s:6:\"parent\";s:0:\"\";}s:3:\"cat\";s:18:\"elementor_template\";}}}','no'),
(37155,'untecreator_state','a:3:{s:22:\"manager_filter_catalog\";s:5:\"mixed\";s:20:\"fitler_active_addons\";s:3:\"all\";s:15:\"last_addons_cat\";s:22:\"ucweb_creative_widgets\";}','yes'),
(37172,'wfls_last_role_change','1654116790','no'),
(37173,'wordfence_version','7.5.10','yes'),
(37174,'wordfence_case','1','yes'),
(37175,'wordfence_installed','1','yes'),
(37176,'wordfenceActivated','0','yes'),
(37177,'wf_plugin_act_error','','yes'),
(37223,'widget_theme-my-login','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(37224,'_tml_installed_at','1654120493','no'),
(37225,'_tml_updated_at','1654120493','no'),
(37226,'_tml_version','7.1.4','no'),
(37260,'wc_facebook_background_product_sync_job_bf2468eae2bf4cb5745b15c4e86c6246','{\"requests\":{\"p-7158\":\"UPDATE\"},\"id\":\"bf2468eae2bf4cb5745b15c4e86c6246\",\"created_at\":\"2022-06-01 23:53:01\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-01 23:53:04\",\"updated_at\":\"2022-06-01 23:53:04\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-01 23:53:04\"}','no'),
(37263,'wc_facebook_background_product_sync_job_81ea8bdc8baf954e4e4f127d46090b84','{\"requests\":{\"p-7178\":\"UPDATE\"},\"id\":\"81ea8bdc8baf954e4e4f127d46090b84\",\"created_at\":\"2022-06-01 23:55:18\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-01 23:55:21\",\"updated_at\":\"2022-06-01 23:55:21\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-01 23:55:21\"}','no'),
(37270,'wc_facebook_background_product_sync_job_5059214542b62fd39efe9659e4577acc','{\"requests\":{\"p-7185\":\"UPDATE\"},\"id\":\"5059214542b62fd39efe9659e4577acc\",\"created_at\":\"2022-06-01 23:57:48\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-01 23:57:52\",\"updated_at\":\"2022-06-01 23:57:52\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-01 23:57:52\"}','no'),
(37273,'wc_facebook_background_product_sync_job_b2f0b329bd75f145cea8d4593c03b062','{\"requests\":{\"p-7188\":\"UPDATE\"},\"id\":\"b2f0b329bd75f145cea8d4593c03b062\",\"created_at\":\"2022-06-01 23:59:57\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-02 00:00:00\",\"updated_at\":\"2022-06-02 00:00:00\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-02 00:00:00\"}','no'),
(37276,'wc_facebook_background_product_sync_job_0ed3247d59b68901678117def68a08e5','{\"requests\":{\"p-7191\":\"UPDATE\"},\"id\":\"0ed3247d59b68901678117def68a08e5\",\"created_at\":\"2022-06-02 00:01:46\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-02 00:01:49\",\"updated_at\":\"2022-06-02 00:01:49\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-02 00:01:49\"}','no'),
(37279,'wc_facebook_background_product_sync_job_d1e7317a73d7a7449ebc0c50e6e90ad5','{\"requests\":{\"p-7196\":\"UPDATE\"},\"id\":\"d1e7317a73d7a7449ebc0c50e6e90ad5\",\"created_at\":\"2022-06-02 00:05:32\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-02 00:05:36\",\"updated_at\":\"2022-06-02 00:05:36\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-02 00:05:36\"}','no'),
(37282,'wc_facebook_background_product_sync_job_9f7604d9ab619fcd6e402deb8ff8daed','{\"requests\":{\"p-7199\":\"UPDATE\"},\"id\":\"9f7604d9ab619fcd6e402deb8ff8daed\",\"created_at\":\"2022-06-02 00:07:24\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-02 00:07:27\",\"updated_at\":\"2022-06-02 00:07:27\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-02 00:07:27\"}','no'),
(37293,'wc_facebook_background_product_sync_job_0ef490ff27e6dc4a01599e6fc3e6c591','{\"requests\":{\"p-7202\":\"UPDATE\"},\"id\":\"0ef490ff27e6dc4a01599e6fc3e6c591\",\"created_at\":\"2022-06-02 00:09:16\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-02 00:09:19\",\"updated_at\":\"2022-06-02 00:09:19\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-02 00:09:19\"}','no'),
(37296,'wc_facebook_background_product_sync_job_dcb14794b660fc3d7934b2c8b543cefc','{\"requests\":{\"p-7207\":\"UPDATE\"},\"id\":\"dcb14794b660fc3d7934b2c8b543cefc\",\"created_at\":\"2022-06-02 00:11:15\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-02 00:11:19\",\"updated_at\":\"2022-06-02 00:11:19\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-02 00:11:19\"}','no'),
(37580,'joinchat','a:26:{s:9:\"telephone\";s:13:\"+447570544158\";s:12:\"message_send\";s:0:\"\";s:12:\"button_image\";i:0;s:10:\"button_tip\";s:0:\"\";s:8:\"position\";s:5:\"right\";s:12:\"button_delay\";i:3;s:12:\"whatsapp_web\";s:3:\"yes\";s:2:\"qr\";s:3:\"yes\";s:12:\"message_text\";s:52:\"Hi, welcome to Choice Resources. How can I help you?\";s:13:\"message_start\";s:9:\"Open chat\";s:5:\"color\";s:7:\"#25d366\";s:9:\"dark_mode\";s:2:\"no\";s:6:\"header\";s:6:\"__wa__\";s:13:\"message_delay\";i:2;s:13:\"message_views\";i:2;s:13:\"message_badge\";s:3:\"yes\";s:10:\"optin_text\";s:0:\"\";s:4:\"gads\";s:0:\"\";s:20:\"message_text_product\";s:0:\"\";s:20:\"message_text_on_sale\";s:0:\"\";s:20:\"message_send_product\";s:0:\"\";s:16:\"woo_btn_position\";s:4:\"none\";s:12:\"woo_btn_text\";s:0:\"\";s:11:\"mobile_only\";s:2:\"no\";s:11:\"optin_check\";s:2:\"no\";s:10:\"visibility\";a:1:{s:3:\"all\";s:3:\"yes\";}}','yes'),
(37601,'wc_facebook_background_product_sync_job_1c24e551231e4dc3b652458b4c393c83','{\"requests\":{\"p-7371\":\"UPDATE\"},\"id\":\"1c24e551231e4dc3b652458b4c393c83\",\"created_at\":\"2022-06-02 17:22:58\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-02 17:23:02\",\"updated_at\":\"2022-06-02 17:23:02\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-02 17:23:02\"}','no'),
(37621,'woocommerce_subscriptions_allow_switching','no','yes'),
(37622,'wcs-schema-WCS_Retry_Table_Maker','1.0.1654191151','yes'),
(37651,'wc_facebook_background_product_sync_job_6aa0c438e90b3168a2eff072d8d0a3f1','{\"requests\":{\"p-7378\":\"UPDATE\"},\"id\":\"6aa0c438e90b3168a2eff072d8d0a3f1\",\"created_at\":\"2022-06-02 18:33:28\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-02 18:33:32\",\"updated_at\":\"2022-06-02 18:33:32\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-02 18:33:32\"}','no'),
(37690,'wc_facebook_background_product_sync_job_35ad70aa728dcd8f680531eee730aa0e','{\"requests\":{\"p-7394\":\"UPDATE\"},\"id\":\"35ad70aa728dcd8f680531eee730aa0e\",\"created_at\":\"2022-06-02 19:27:53\",\"created_by\":1,\"status\":\"completed\",\"started_processing_at\":\"2022-06-02 19:27:57\",\"updated_at\":\"2022-06-02 19:27:57\",\"total\":1,\"progress\":1,\"completed_at\":\"2022-06-02 19:27:57\"}','no'),
(37721,'wcs_paypal_rt_enabled_accounts','[\"sb-yaqqh16326906_api1.business.example.com\"]','yes'),
(37841,'wc_memberships_member_login_redirect_page_id','','yes'),
(38218,'theme_mods_astra','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1654397944;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:12:\"categories-2\";i:3;s:14:\"recent-posts-2\";i:4;s:17:\"recent-comments-2\";i:5;s:8:\"search-2\";}s:9:\"sidebar-1\";a:0:{}s:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:22:\"astra-woo-shop-sidebar\";a:0:{}s:24:\"astra-woo-single-sidebar\";a:0:{}}}}','no'),
(38221,'astra-settings','a:3:{s:18:\"theme-auto-version\";s:5:\"3.8.2\";s:22:\"is_theme_queue_running\";b:0;s:33:\"_astra_pb_compatibility_completed\";b:1;}','yes'),
(38261,'woocommerce_task_list_reminder_bar_hidden','yes','yes'),
(38265,'woocommerce_attribute_lookup_direct_updates','no','yes'),
(38293,'woocommerce_task_list_completed_lists','a:2:{i:0;s:8:\"extended\";i:1;s:19:\"extended_two_column\";}','yes'),
(38294,'woocommerce_task_list_hidden_lists','a:0:{}','yes'),
(38299,'wc_downloads_approved_directories_mode','disabled','yes'),
(38357,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1730777232','no'),
(38358,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:37:{s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:24:\"admin.php?page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:14:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow â€“ one fee, no interest rates, penalties, equity, or personal guarantees. Based on your storeâ€™s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> â€“ all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"Thatâ€™s huge! Youâ€™re well on your way to building a successful online store â€” now itâ€™s time to think about how youâ€™ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"Itâ€™s crucial to get your storeâ€™s checkout as smooth as possible to avoid losing sales. Letâ€™s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your siteâ€™s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help â€” just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! Thereâ€™s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Weâ€™re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"Weâ€™d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:26:\"ecomm-wc-navigation-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"ecomm-wc-navigation-survey\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Weâ€™d like your feedback on the WooCommerce navigation\";s:7:\"content\";s:134:\"Weâ€™re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:63:\"https://automattic.survey.fm/feedback-on-woocommerce-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:38:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:90;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). Itâ€™s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on â€œupdate nowâ€ under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWeâ€™d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how itâ€™s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:17:\"wc-admin-wisepad3\";O:8:\"stdClass\":8:{s:4:\"slug\";s:17:\"wc-admin-wisepad3\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:74:\"Take your business on the go in Canada with WooCommerce In-Person Payments\";s:7:\"content\";s:275:\"Quickly create new orders, accept payment in person for orders placed online, and automatically sync your inventory â€“ no matter where your business takes you. With WooCommerce In-Person Payments and the WisePad 3 card reader, you can bring the power of your store anywhere.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"wc-admin-wisepad3\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Grow my business offline\";}}s:3:\"url\";s:126:\"https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wisepad3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-06-15 10:00:28\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}}}s:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available â€“ please ensure that youâ€™re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"Youâ€™re now running the latest secure version of WooCommerce Payments. Weâ€™ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:37:\"woocommerce_admin_deprecation_q4_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"woocommerce_admin_deprecation_q4_2022\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:41:\"WooCommerce Admin is part of WooCommerce!\";s:7:\"content\";s:163:\"To make sure your store continues to run smoothly, check that WooCommerce is up-to-date â€“ at least version 6.5 â€“ and then disable the WooCommerce Admin plugin.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:37:\"woocommerce_admin_deprecation_q4_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:28:\"Deactivate WooCommerce Admin\";}}s:3:\"url\";s:11:\"plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-11-04 09:00:33\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-01-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:17:\"woocommerce-admin\";}}}}s:23:\"tiktok-targeted-q4-2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"tiktok-targeted-q4-2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:76:\"Get $200 in ad credit from TikTok after you spend $20 on your first campaign\";s:7:\"content\";s:324:\"Reach one billion shoppers with TikTok for WooCommerce this holiday season! Sync your product catalog, capture insights, and create ad campaigns right from your dashboard. Connect your store today to unlock this limited time offer! <a href=\"https://ads.tiktok.com/help/article?aid=10011326\">Terms &amp; conditions apply</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"tiktok-targeted-q4-2022-click\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Launch a campaign\";}}s:3:\"url\";s:140:\"https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok-targeted-q4-2022-click\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-10-25 00:40:14\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-12-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:1000;s:9:\"operation\";s:1:\">\";}}}s:24:\"paypal_paylater_g3_q4_22\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"paypal_paylater_g3_q4_22\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:7:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Turn browsers into buyers with Pay Later\";s:7:\"content\";s:322:\"Add PayPal at checkout, plus give customers a buy now, pay later option from the name they trust. With Pay in 4 &amp; Pay Monthly, available in PayPal Payments, you get paid up front while letting customers spread their payments over time. Boost your average order value and convert more sales â€“ at no extra cost to you.\";}i:1;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en-GB\";s:5:\"title\";s:55:\"Turn browsers into buyers with Pay in 3 & PayPal Credit\";s:7:\"content\";s:324:\"Add PayPal at checkout, plus give customers a buy now, pay later option from the name they trust. With Pay in 3 &amp; PayPal Credit, available in PayPal Payments, you get paid up front while letting customers spread their payments over time. Boost your average order value and convert more sales â€“ at no extra cost to you.\";}i:2;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_AU\";s:5:\"title\";s:39:\"Turn browsers into buyers with Pay in 4\";s:7:\"content\";s:304:\"Add PayPal at checkout, plus give customers a buy now, pay later option from the name they trust. With Pay in 4, available in PayPal Payments, you get paid up front while letting customers spread their payments over time. Boost your average order value and convert more sales â€“ at no extra cost to you.\";}i:3;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"fr_FR\";s:5:\"title\";s:61:\"Transformez les visiteurs en acheteurs avec le Paiement en 4X\";s:7:\"content\";s:321:\"Ajoutez PayPal Ã  vos modes de paiement et proposez notre Paiement en 4X. Disponible dans les Paiements PayPal, le Paiement en 4X vous permet de recevoir votre paiement immÃ©diatement, tandis que vos clients paient en plusieurs fois. Augmentez le panier moyen et boostez vos ventes, sans frais supplÃ©mentaires pour vous.\";}i:4;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"de_DE\";s:5:\"title\";s:127:\"Verwandeln Sie potenzielle KÃ¤ufer*innen mit der PayPal Ratenzahlung und Bezahlung nach 30 Tagen in tatsÃ¤chliche KÃ¤ufer*innen\";s:7:\"content\";s:327:\"Bieten Sie mit PayPal Payments die â€žSpÃ¤ter bezahlenâ€œ-Optionen einer vertrauenswÃ¼rdigen Marke an. Sie erhalten Ihr Geld mit PayPal Ratenzahlung und Bezahlen nach 30 Tagen sofort und Ihre Kund*innen kÃ¶nnen flexibel bezahlen. Steigern Sie den durchschnittlichen Bestellwert und Ihre Conversion â€“ ohne zusÃ¤tzliche Kosten.\";}i:5;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"es_ES\";s:5:\"title\";s:62:\"Convierte a los visitantes en compradores con Paga en 3 plazos\";s:7:\"content\";s:326:\"AÃ±ade PayPal al pago y ofrece a los clientes la opciÃ³n de pagar a plazos con una marca de confianza. Con Paga en 3 plazos de PayPal, los clientes pueden pagar poco a poco y tÃº recibes el importe por adelantado. Contribuye a aumentar el valor medio de tus pedidos y a lograr mÃ¡s ventas, sin ningÃºn coste adicional para ti.\";}i:6;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"it_IT\";s:5:\"title\";s:53:\"Con Paga in 3 rate i visitatori diventano acquirenti.\";s:7:\"content\";s:341:\"Aggiungi PayPal tra i tuoi metodi di pagamento e offri ai tuoi clienti un pagamento a rate di cui si fidano. Con Paga in 3 rate di PayPal tu ricevi il pagamento interamente all\'acquisto e i tuoi clienti possono dilazionarlo in piÃ¹ rate. Promuovi un incremento del valore medio degli ordini e delle conversioni, senza alcun costo aggiuntivo.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"paypal_paylater_g3_q4_22\";s:7:\"locales\";a:7:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:23:\"Install PayPal Payments\";}i:1;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_GB\";s:5:\"label\";s:23:\"Install PayPal Payments\";}i:2;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_AU\";s:5:\"label\";s:23:\"Install PayPal Payments\";}i:3;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"fr_FR\";s:5:\"label\";s:30:\"Installer les Paiements PayPal\";}i:4;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"de_DE\";s:5:\"label\";s:28:\"PayPal Payments installieren\";}i:5;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"es_ES\";s:5:\"label\";s:25:\"Instalar Pagos con PayPal\";}i:6;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"it_IT\";s:5:\"label\";s:25:\"Installa Pagamenti PayPal\";}}s:3:\"url\";s:140:\"https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g3_q4_22\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-11-01 15:00:48\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-01-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"FR\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"DE\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"ES\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IT\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:15:\"paypal-advanced\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:9:\"braintree\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:10:\"paypal-pro\";}}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:6;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:15:\"paypal-standard\";}}i:7;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"paypal-plus-for-germany\";}}i:8;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:35:\"woocommerce-gateway-paypal-checkout\";}}}}}}}}s:24:\"paypal_paylater_g2_q4_22\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"paypal_paylater_g2_q4_22\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Upgrade to PayPal Payments to offer Pay Later at checkout\";s:7:\"content\";s:283:\"PayPal Pay Later is included in PayPal Payments at no additional cost to you. Customers can spread their payments over time while you get paid up front. \r\nThereâ€™s never been a better time to upgrade your PayPal plugin. Simply download it and connect with a PayPal Business account.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"paypal_paylater_g2_q4_22\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:23:\"Install PayPal Payments\";}}s:3:\"url\";s:140:\"https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g2_q4_22\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-11-03 15:00:41\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-02-01 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"FR\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"DE\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"ES\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IT\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:15:\"paypal-advanced\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:9:\"braintree\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:10:\"paypal-pro\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:15:\"paypal-standard\";}}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"paypal-plus-for-germany\";}}i:6;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:35:\"woocommerce-gateway-paypal-checkout\";}}}}}}s:52:\"google_listings_ads_custom_attribute_mapping_q4_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"google_listings_ads_custom_attribute_mapping_q4_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:80:\"Our latest improvement to the Google Listings & Ads extension: Attribute Mapping\";s:7:\"content\";s:230:\"You spoke, we listened. This new feature enables you to easily upload your products, customize your product attributes in one place, and target shoppers with more relevant ads. Extend how far your ad dollars go with each campaign.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"google_listings_ads_custom_attribute_mapping_q4_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:182:\"https://woocommerce.com/document/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_custom_attribute_mapping_q4_2022#attribute-mapping\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-11-30 21:14:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}s:26:\"wc-admin-manualauthcapture\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"wc-admin-manualauthcapture\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:50:\"Miss fewer manual payments in WooCommerce Payments\";s:7:\"content\";s:196:\"Using WooCommerce Payments to manually authorize and capture payments? Weâ€™ve introduced a simplified and more efficient process, so you can miss fewer payments and continue to grow your revenue.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"wc-admin-manualauthcapture\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:172:\"https://woocommerce.com/document/woocommerce-payments/settings-guide/authorize-and-capture/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-manualauthcapture\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-11-30 21:06:05\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-12-23 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}s:21:\"apple_pay_square_q422\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"apple_pay_square_q422\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:33:\"Grow your business with Apple Pay\";s:7:\"content\";s:241:\"Start boosting your online conversions today with Apple Pay â€“ shoppers can safely complete a purchase with a touch or a glance and are more likely to come back. Enable Apple Pay with Square by selecting  Settings &gt; Payments &gt; Square.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"apple_pay_square_q422\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Enable Apple Pay\";}}s:3:\"url\";s:76:\"/wp-admin/admin.php?page=wc-settings&tab=checkout&section=square_credit_card\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-12-07 18:00:39\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-12-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:6:\"square\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:6:\"stripe\";}}}}}}}}s:20:\"apple_pay_wcpay_q422\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"apple_pay_wcpay_q422\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:33:\"Grow your business with Apple Pay\";s:7:\"content\";s:280:\"Start boosting your online conversions today with Apple Pay â€“ shoppers can safely complete a purchase with a touch or a glance and are more likely to come back. Confirm Apple Pay is enabled by selecting Payments &gt; Settings and making sure Enable express checkouts is checked.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"apple_pay_wcpay_q422\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Enable Apple Pay\";}}s:3:\"url\";s:78:\"/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-12-07 18:00:52\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-12-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}s:5:\"en_US\";a:54:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow â€“ one fee, no interest rates, penalties, equity, or personal guarantees. Based on your storeâ€™s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> â€“ all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"Thatâ€™s huge! Youâ€™re well on your way to building a successful online store â€” now itâ€™s time to think about how youâ€™ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"Itâ€™s crucial to get your storeâ€™s checkout as smooth as possible to avoid losing sales. Letâ€™s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:46:\"WooPayments setup - let us know what you think\";s:7:\"content\";s:137:\"Congrats on enabling WooPayments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/woopayments-new-user-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your siteâ€™s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help â€” just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! Thereâ€™s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Weâ€™re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"Weâ€™d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). Itâ€™s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on â€œupdate nowâ€ under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWeâ€™d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how itâ€™s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, weâ€™ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay â€” our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> â€”and weâ€™re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up â€” no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay â€” our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> â€” and youâ€™re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. Weâ€™re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. Weâ€™re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay â€” our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay â€” our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay â€” our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay â€” our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay â€” our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay â€” our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay â€” our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay â€” our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage â€” July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:125:\"https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Security update of WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:147:\"<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}s:24:\"avalara_q3-2023_noAvaTax\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"avalara_q3-2023_noAvaTax\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Automatically calculate VAT in real time\";s:7:\"content\";s:284:\"Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTaxâ€” including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"avalara_q3-2023_noAvaTax\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Automate my sales tax\";}}s:3:\"url\";s:131:\"https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-08 22:32:23\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-09 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-avatax\";}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:100;s:9:\"operation\";s:1:\">\";}}}s:44:\"woocommerce-usermeta-Sept2023-productvendors\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:37:\"Your store requires a security update\";s:7:\"content\";s:339:\"<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:11:\"plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-09-20 00:50:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-product-vendors\";}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"8.1.1\";}}}s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Security update for WooCommerce Stripe Gateway\";s:7:\"content\";s:201:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:36:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-10-18 00:01:58\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.5.4\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.6\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.9.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.0.2\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.1.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.2.2\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.3.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.4.6\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.7.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.8.3\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.9.3\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.0.5\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.1.3\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.3.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.4.3\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.5.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.6.1\";}}}s:29:\"amazon-mcf-reviews-2023-12-07\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"amazon-mcf-reviews-2023-12-07\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Enjoying Amazon MCF for WooCommerce?\";s:7:\"content\";s:292:\"We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and weâ€™d love to make things right!\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"amazon-mcf-review-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Leave a review\";}}s:3:\"url\";s:161:\"https://woocommerce.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"amazon-mcf-support-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Request support\";}}s:3:\"url\";s:142:\"https://woocommerce.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-12-06 15:21:27\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-amazon-fulfillment\";}}}}s:30:\"remove_estimated_deposits_2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"remove_estimated_deposits_2024\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:33:\"Estimated deposits are going away\";s:7:\"content\";s:267:\"To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"view_docs\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:29:\"Learn about Deposit schedules\";}}s:3:\"url\";s:151:\"https://woocommerce.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"6.9\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-01-21 08:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2024-01-31 23:59:59\";}}}}}','no'),
(38364,'elementor_notes_db_version','5','yes'),
(38490,'elementor_pro_stripe_test_secret_key','','yes'),
(38491,'elementor_validate_stripe_api_test_secret_key_button','','yes'),
(38492,'elementor_pro_stripe_live_secret_key','','yes'),
(38493,'elementor_validate_stripe_api_live_secret_key_button','','yes'),
(38494,'elementor_stripe_legal_disclaimer','','yes'),
(38495,'elementor_experiment-page-transitions','default','yes'),
(38496,'elementor_experiment-theme_builder_v2','default','yes'),
(38497,'elementor_experiment-notes','default','yes'),
(38498,'elementor_experiment-e_scroll_snap','default','yes'),
(38557,'woocommerce_task_list_prompt_shown','1','yes'),
(38720,'cartflows-assets-version','1707927940','yes'),
(38721,'cartflows-version','2.0.3','yes'),
(38722,'cf_analytics_installed_time','1654520121','no'),
(38723,'cartflows-elementor-flows-and-steps-1','a:33:{i:0;a:11:{s:2:\"ID\";i:52386;s:5:\"title\";s:17:\"Store Checkout 04\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-04.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-04-600x817.jpg\";s:8:\"category\";a:1:{i:0;s:14:\"store-checkout\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:52388;s:5:\"title\";s:17:\"Store Checkout 04\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-04.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-04-600x817.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/store-checkout-04/\";}i:1;a:6:{s:2:\"ID\";i:52389;s:5:\"title\";s:27:\"Store Checkout Thank You 04\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-04.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-04-600x546.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/store-checkout-thank-you-04/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:200;s:4:\"name\";s:14:\"Store Checkout\";s:4:\"slug\";s:14:\"store-checkout\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:200;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:1;a:11:{s:2:\"ID\";i:52251;s:5:\"title\";s:17:\"Store Checkout 03\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-03-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-03-1-600x999.jpg\";s:8:\"category\";a:1:{i:0;s:14:\"store-checkout\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:52253;s:5:\"title\";s:17:\"Store Checkout 03\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-03-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-03-1-600x999.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/store-checkout-03/\";}i:1;a:6:{s:2:\"ID\";i:52254;s:5:\"title\";s:27:\"Store Checkout Thank You 03\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-03-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-03-1-600x570.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/store-checkout-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:200;s:4:\"name\";s:14:\"Store Checkout\";s:4:\"slug\";s:14:\"store-checkout\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:200;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:2;a:11:{s:2:\"ID\";i:52099;s:5:\"title\";s:17:\"Store Checkout 02\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-02-1.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-02-1-600x1059.jpg\";s:8:\"category\";a:1:{i:0;s:14:\"store-checkout\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:52101;s:5:\"title\";s:17:\"Store Checkout 02\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-02-1.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-02-1-600x1059.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/store-checkout-02/\";}i:1;a:6:{s:2:\"ID\";i:52102;s:5:\"title\";s:27:\"Store Checkout Thank You 02\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-02-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-02-1-600x531.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/store-checkout-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:200;s:4:\"name\";s:14:\"Store Checkout\";s:4:\"slug\";s:14:\"store-checkout\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:200;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:3;a:11:{s:2:\"ID\";i:51946;s:5:\"title\";s:17:\"Store Checkout 01\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-01-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-01-1-600x819.jpg\";s:8:\"category\";a:1:{i:0;s:14:\"store-checkout\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:51948;s:5:\"title\";s:17:\"Store Checkout 01\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-01-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-01-1-600x819.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/store-checkout-01/\";}i:1;a:6:{s:2:\"ID\";i:51949;s:5:\"title\";s:27:\"Store Checkout Thank You 01\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-01-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-01-1-600x575.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/store-checkout-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:200;s:4:\"name\";s:14:\"Store Checkout\";s:4:\"slug\";s:14:\"store-checkout\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:200;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:4;a:11:{s:2:\"ID\";i:47974;s:5:\"title\";s:19:\"Business Consultant\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:125:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-sales-landing-1-600x5151.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:47975;s:5:\"title\";s:33:\"Business Consultant Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:125:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-sales-landing-1-600x5151.jpg\";s:4:\"link\";s:76:\"https://templates.cartflows.com/elementor/business-consultant-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:47976;s:5:\"title\";s:28:\"Business Consultant Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-checkout.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-checkout-600x1149.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/elementor/business-consultant-checkout/\";}i:2;a:6:{s:2:\"ID\";i:47977;s:5:\"title\";s:29:\"Business Consultant Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-thank-you-600x543.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/elementor/business-consultant-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:5;a:11:{s:2:\"ID\";i:42907;s:5:\"title\";s:12:\"CRM Software\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-landing-600x3163.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:42908;s:5:\"title\";s:26:\"CRM Software Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-landing-600x3163.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/elementor/crm-software-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:42909;s:5:\"title\";s:21:\"CRM Software Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-checkout.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-checkout-600x1209.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/crm-software-checkout/\";}i:2;a:6:{s:2:\"ID\";i:43498;s:5:\"title\";s:19:\"CRM Software Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-upsell.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-upsell-600x486.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/crm-software-upsell/\";}i:3;a:6:{s:2:\"ID\";i:42910;s:5:\"title\";s:22:\"CRM Software Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-thank-you-600x858.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/crm-software-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:6;a:11:{s:2:\"ID\";i:41664;s:5:\"title\";s:13:\"SaaS Software\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-landing-1-600x3848.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:41665;s:5:\"title\";s:27:\"SaaS Software Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-landing-1-600x3848.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/saas-software-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:41666;s:5:\"title\";s:22:\"SaaS Software Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-checkout.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-checkout-600x819.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/saas-software-checkout/\";}i:2;a:6:{s:2:\"ID\";i:41667;s:5:\"title\";s:23:\"SaaS Software Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-thank-you-600x885.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/elementor/saas-software-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:7;a:11:{s:2:\"ID\";i:40292;s:5:\"title\";s:27:\"Business Program Membership\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:124:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:133:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-sales-landing-1-600x6305.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:40293;s:5:\"title\";s:41:\"Business Program Membership Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:124:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:133:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-sales-landing-1-600x6305.jpg\";s:4:\"link\";s:84:\"https://templates.cartflows.com/elementor/business-program-membership-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:40294;s:5:\"title\";s:36:\"Business Program Membership Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-checkout.jpg\";s:19:\"thumbnail_image_url\";s:126:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-checkout-600x1356.jpg\";s:4:\"link\";s:79:\"https://templates.cartflows.com/elementor/business-program-membership-checkout/\";}i:2;a:6:{s:2:\"ID\";i:40295;s:5:\"title\";s:37:\"Business Program Membership Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:126:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-thank-you-600x585.jpg\";s:4:\"link\";s:80:\"https://templates.cartflows.com/elementor/business-program-membership-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:8;a:11:{s:2:\"ID\";i:34646;s:5:\"title\";s:36:\"In-person Online Course Registration\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:126:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-sales-landing-600x3312.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:34647;s:5:\"title\";s:36:\"Online Course Inperson Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:126:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-sales-landing-600x3312.jpg\";s:4:\"link\";s:79:\"https://templates.cartflows.com/elementor/online-course-inperson-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:34648;s:5:\"title\";s:31:\"Online Course Inperson Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-checkout.jpg\";s:19:\"thumbnail_image_url\";s:121:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-checkout-600x1355.jpg\";s:4:\"link\";s:74:\"https://templates.cartflows.com/elementor/online-course-inperson-checkout/\";}i:2;a:6:{s:2:\"ID\";i:34649;s:5:\"title\";s:32:\"Online Course Inperson Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:121:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-thank-you-600x528.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/elementor/online-course-inperson-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:8;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:9;a:11:{s:2:\"ID\";i:34034;s:5:\"title\";s:18:\"Online Yoga Course\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-optin.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-optin-600x2798.jpg\";s:8:\"category\";a:2:{i:0;s:12:\"sales-funnel\";i:1;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:34038;s:5:\"title\";s:24:\"Online Yoga Course Optin\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-optin.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-optin-600x2798.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/online-yoga-course-optin/\";}i:1;a:6:{s:2:\"ID\";i:34036;s:5:\"title\";s:27:\"Online Yoga Course Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-checkout.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-checkout-600x2935.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/online-yoga-course-checkout/\";}i:2;a:6:{s:2:\"ID\";i:34037;s:5:\"title\";s:28:\"Online Yoga Course Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-thank-you-600x809.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/elementor/online-yoga-course-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:8;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:10;a:11:{s:2:\"ID\";i:33693;s:5:\"title\";s:9:\"Microwave\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-sales-landing-600x3138.jpg\";s:8:\"category\";a:2:{i:0;s:15:\"product-landing\";i:1;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:33694;s:5:\"title\";s:23:\"Microwave Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-sales-landing-600x3138.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/elementor/microwave-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:33695;s:5:\"title\";s:18:\"Microwave Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-checkout.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-checkout-600x943.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/microwave-checkout/\";}i:2;a:6:{s:2:\"ID\";i:34195;s:5:\"title\";s:16:\"Microwave Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-upsell.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-upsell-600x376.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/elementor/microwave-upsell/\";}i:3;a:6:{s:2:\"ID\";i:33696;s:5:\"title\";s:19:\"Microwave Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-thank-you-600x883.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/microwave-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:11;a:11:{s:2:\"ID\";i:33002;s:5:\"title\";s:21:\"SEO Foundation E-book\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:124:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-sales-landing-600x2712.jpg\";s:8:\"category\";a:2:{i:0;s:15:\"product-landing\";i:1;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:33003;s:5:\"title\";s:34:\"SEO Foundation Ebook Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:124:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-sales-landing-600x2712.jpg\";s:4:\"link\";s:77:\"https://templates.cartflows.com/elementor/seo-foundation-ebook-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:33004;s:5:\"title\";s:29:\"SEO Foundation Ebook Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-checkout.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-checkout-600x461.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/elementor/seo-foundation-ebook-checkout/\";}i:2;a:6:{s:2:\"ID\";i:33005;s:5:\"title\";s:30:\"SEO Foundation Ebook Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-thank-you-600x791.jpg\";s:4:\"link\";s:73:\"https://templates.cartflows.com/elementor/seo-foundation-ebook-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:12;a:11:{s:2:\"ID\";i:32553;s:5:\"title\";s:14:\"Business Coach\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-sales-landing-600x4214.jpg\";s:8:\"category\";a:2:{i:0;s:12:\"sales-funnel\";i:1;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:32554;s:5:\"title\";s:22:\"Business Coach Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-sales-landing-600x4214.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/business-coach-landing/\";}i:1;a:6:{s:2:\"ID\";i:32555;s:5:\"title\";s:23:\"Business Coach Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-checkout.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-checkout-600x663.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/elementor/business-coach-checkout/\";}i:2;a:6:{s:2:\"ID\";i:32556;s:5:\"title\";s:24:\"Business Coach Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-thank-you-600x564.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/business-coach-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:8;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:13;a:11:{s:2:\"ID\";i:31904;s:5:\"title\";s:15:\"Beauty Skincare\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-sales-landing-600x2921.jpg\";s:8:\"category\";a:2:{i:0;s:15:\"product-landing\";i:1;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:31905;s:5:\"title\";s:23:\"Beauty Skincare Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-sales-landing-600x2921.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/elementor/beauty-skincare-landing/\";}i:1;a:6:{s:2:\"ID\";i:31906;s:5:\"title\";s:24:\"Beauty Skincare Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-checkout.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-checkout-596x800.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/beauty-skincare-checkout/\";}i:2;a:6:{s:2:\"ID\";i:31911;s:5:\"title\";s:22:\"Beauty Skincare Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-upsell.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-upsell-349x800.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/beauty-skincare-upsell/\";}i:3;a:6:{s:2:\"ID\";i:31907;s:5:\"title\";s:25:\"Beauty Skincare Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-thank-you-355x800.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/beauty-skincare-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:14;a:11:{s:2:\"ID\";i:31692;s:5:\"title\";s:11:\"Organic Oil\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-sales-landing-600x2480.jpg\";s:8:\"category\";a:2:{i:0;s:15:\"product-landing\";i:1;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:31693;s:5:\"title\";s:25:\"Organic Oil Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-sales-landing-600x2480.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/organic-oil-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:31694;s:5:\"title\";s:20:\"Organic Oil Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-checkout.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-checkout-403x800.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/elementor/organic-oil-checkout/\";}i:2;a:6:{s:2:\"ID\";i:31700;s:5:\"title\";s:18:\"Organic Oil Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-upsell.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-upsell-600x463.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/organic-oil-upsell/\";}i:3;a:6:{s:2:\"ID\";i:31695;s:5:\"title\";s:21:\"Organic Oil Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-thank-you-377x800.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/organic-oil-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:15;a:11:{s:2:\"ID\";i:30832;s:5:\"title\";s:15:\"Online Workshop\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-optin.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-optin-600x3669.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:30836;s:5:\"title\";s:21:\"Online Workshop Optin\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-optin.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-optin-600x3669.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/online-workshop-optin/\";}i:1;a:6:{s:2:\"ID\";i:31303;s:5:\"title\";s:25:\"Online Workshop Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-thank-you-600x341.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/online-workshop-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:8;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:16;a:11:{s:2:\"ID\";i:25175;s:5:\"title\";s:7:\"Webinar\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:94:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/webinar-optin.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/webinar-optin-600x1525.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:25176;s:5:\"title\";s:13:\"Webinar Optin\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:94:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/webinar-optin.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/webinar-optin-600x1525.jpg\";s:4:\"link\";s:56:\"https://templates.cartflows.com/elementor/webinar-optin/\";}i:1;a:6:{s:2:\"ID\";i:25178;s:5:\"title\";s:17:\"Webinar Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/webinar-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/webinar-thank-you-600x413.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/webinar-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:8;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:17;a:11:{s:2:\"ID\";i:24881;s:5:\"title\";s:14:\"Online Courses\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/course-landing01.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/course-landing01-600x2541.jpg\";s:8:\"category\";a:2:{i:0;s:15:\"product-landing\";i:1;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:24882;s:5:\"title\";s:14:\"Course Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/course-landing01.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/course-landing01-600x2541.jpg\";s:4:\"link\";s:57:\"https://templates.cartflows.com/elementor/course-landing/\";}i:1;a:6:{s:2:\"ID\";i:24929;s:5:\"title\";s:15:\"Course Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/course-checkout01.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/course-checkout01-521x800.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/elementor/course-checkout/\";}i:2;a:6:{s:2:\"ID\";i:24936;s:5:\"title\";s:16:\"Course Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/course-thankyou01.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/07/course-thankyou01-600x761.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/elementor/course-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:18;a:11:{s:2:\"ID\";i:20774;s:5:\"title\";s:20:\"Evergreen Product 01\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-01-lamding-page.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-01-lamding-page-315x800.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:20776;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-01-lamding-page.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-01-lamding-page-315x800.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/product01-landing/\";}i:1;a:6:{s:2:\"ID\";i:20814;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-01-checkout-page.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-01-checkout-page-537x800.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/product01-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20822;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/produc-t01-thank-you-page.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/produc-t01-thank-you-page-600x506.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/product01-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:19;a:11:{s:2:\"ID\";i:20723;s:5:\"title\";s:20:\"Evergreen Product 02\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-02-landing-page.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-02-landing-page-218x800.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:20725;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-02-landing-page.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-02-landing-page-218x800.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/product02-landing/\";}i:1;a:6:{s:2:\"ID\";i:20755;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-02-checkout-page.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-02-checkout-page-600x712.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/product02-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20771;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-02-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-02-thank-you-600x560.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/product02-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:20;a:11:{s:2:\"ID\";i:20698;s:5:\"title\";s:20:\"Evergreen Product 03\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product03-landing.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product03-landing-239x800.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:20700;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product03-landing.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product03-landing-239x800.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/product03-landing/\";}i:1;a:6:{s:2:\"ID\";i:20714;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-03-checkout-page.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product-03-checkout-page-600x647.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/product03-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20720;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product03-thankyou2.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/product03-thankyou2-600x490.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/product03-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:21;a:11:{s:2:\"ID\";i:20678;s:5:\"title\";s:15:\"Inline Checkout\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/inline-checkout-01.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/inline-checkout-01-251x800.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:20680;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/inline-checkout-01.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/inline-checkout-01-251x800.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/elementor/inline-checkout/\";}i:1;a:6:{s:2:\"ID\";i:20695;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/inline-thankyou2.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/inline-thankyou2-600x510.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/elementor/inline-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:22;a:11:{s:2:\"ID\";i:20642;s:5:\"title\";s:5:\"eBook\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-landing-page-01.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-landing-page-01-302x800.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:20644;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-landing-page-01.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-landing-page-01-302x800.jpg\";s:4:\"link\";s:56:\"https://templates.cartflows.com/elementor/ebook-landing/\";}i:1;a:6:{s:2:\"ID\";i:20661;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-checkout-page.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-checkout-page-421x800.jpg\";s:4:\"link\";s:57:\"https://templates.cartflows.com/elementor/ebook-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20664;s:5:\"title\";s:12:\"EBook Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:95:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-upsell-1.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-upsell-1-600x391.jpg\";s:4:\"link\";s:55:\"https://templates.cartflows.com/elementor/ebook-upsell/\";}i:3;a:6:{s:2:\"ID\";i:20669;s:5:\"title\";s:14:\"EBook Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-downsell-01.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-downsell-01-600x394.jpg\";s:4:\"link\";s:57:\"https://templates.cartflows.com/elementor/ebook-downsell/\";}i:4;a:6:{s:2:\"ID\";i:20674;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-thankyou2.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/ebook-thankyou2-600x653.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/elementor/ebook-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:23;a:11:{s:2:\"ID\";i:20606;s:5:\"title\";s:18:\"Protein Supplement\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/protein-supplement-01.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/protein-supplement-01-244x800.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:20608;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/protein-supplement-01.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/protein-supplement-01-244x800.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/elementor/protein-supplement-landing/\";}i:1;a:6:{s:2:\"ID\";i:20626;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/protein-supplement-checkout-01.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/protein-supplement-checkout-01-557x800.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/protein-supplement-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20632;s:5:\"title\";s:25:\"Protein Supplement Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/protein-supplement-upsell-2.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/protein-supplement-upsell-2-600x414.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/protein-supplement-upsell/\";}i:3;a:6:{s:2:\"ID\";i:20639;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/protein-supplement-thankyou2.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/protein-supplement-thankyou2-600x474.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/elementor/protein-supplement-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:24;a:11:{s:2:\"ID\";i:20571;s:5:\"title\";s:14:\"Beauty Product\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-landinpage.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-landinpage-240x800.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:20573;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-landinpage.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-landinpage-240x800.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/beauty-product-landing/\";}i:1;a:6:{s:2:\"ID\";i:20584;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-checkout-page-01.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-checkout-page-01-462x800.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/elementor/beauty-product-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20588;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-upsell-01.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-upsell-01-600x405.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/beauty-product-upsell/\";}i:3;a:6:{s:2:\"ID\";i:20596;s:5:\"title\";s:8:\"Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-downsell-01.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-downsell-01-600x470.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/elementor/beauty-product-downsell/\";}i:4;a:6:{s:2:\"ID\";i:20601;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/beauty-thank-you-03-600x677.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/beauty-product-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:25;a:11:{s:2:\"ID\";i:20511;s:5:\"title\";s:11:\"Organic Tea\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/organic-landing-page-01.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/organic-landing-page-01-266x800.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:20513;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/organic-landing-page-01.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/organic-landing-page-01-266x800.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/organic-tea-landing/\";}i:1;a:6:{s:2:\"ID\";i:20557;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/organic-checkout-page.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/organic-checkout-page-519x800.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/elementor/organic-tea-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20563;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/organic-upsell-01.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/organic-upsell-01-600x408.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/organic-tea-upsell/\";}i:3;a:6:{s:2:\"ID\";i:20568;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/organic-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/organic-thank-you-600x562.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/organic-tea-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:26;a:11:{s:2:\"ID\";i:21255;s:5:\"title\";s:26:\"Dog Food Two Step Checkout\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/dog-food-landing-page.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/dog-food-landing-page-231x800.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:21256;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/dog-food-landing-page.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/dog-food-landing-page-231x800.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/dog-food-checkout/\";}i:1;a:6:{s:2:\"ID\";i:21258;s:5:\"title\";s:20:\"Dog Food Upsell Page\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/dog-food-offer-1.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/dog-food-offer-1-600x412.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/elementor/dog-food-offer-1/\";}i:2;a:6:{s:2:\"ID\";i:21260;s:5:\"title\";s:17:\"Dog Food Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/dog-food-offer-2.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/dog-food-offer-2-600x336.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/elementor/dog-food-offer-2/\";}i:3;a:6:{s:2:\"ID\";i:21265;s:5:\"title\";s:18:\"Dog Food Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:94:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/dog-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/dog-thank-you-600x618.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/dog-food-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:27;a:11:{s:2:\"ID\";i:20203;s:5:\"title\";s:16:\"Weight Loss Flow\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/weight-loss-checkout.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/weight-loss-checkout-227x800.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:20205;s:5:\"title\";s:19:\"Weightloss Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/weight-loss-checkout.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/weight-loss-checkout-227x800.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/elementor/weight-loss-checkout/\";}i:1;a:6:{s:2:\"ID\";i:20231;s:5:\"title\";s:14:\"One Time Offer\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/weight-loss-upsell-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/weight-loss-upsell-1-600x495.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/weight-loss-offer-1/\";}i:2;a:6:{s:2:\"ID\";i:20237;s:5:\"title\";s:20:\"Weightloss Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/weight-loss-thankyou.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/weight-loss-thankyou-600x590.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/weight-loss-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:28;a:11:{s:2:\"ID\";i:20113;s:5:\"title\";s:14:\"Download eBook\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/download-the-ebook.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/download-the-ebook-600x517.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:20115;s:5:\"title\";s:18:\"Download The eBook\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/download-the-ebook.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/download-the-ebook-600x517.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/download-the-ebook/\";}i:1;a:6:{s:2:\"ID\";i:20124;s:5:\"title\";s:9:\"Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/download-ebook-thank-you-1.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/download-ebook-thank-you-1-600x776.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/download-ebook-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:8;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:29;a:11:{s:2:\"ID\";i:20092;s:5:\"title\";s:11:\"Music Album\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-landing-page.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-landing-page-362x800.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:20094;s:5:\"title\";s:24:\"Music Album Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-landing-page.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-landing-page-362x800.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/music-album-landing-page/\";}i:1;a:6:{s:2:\"ID\";i:20105;s:5:\"title\";s:20:\"Music Album Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-checkout.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-checkout-600x441.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/elementor/music-album-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20109;s:5:\"title\";s:21:\"Music Album Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-thankyou.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-thankyou-600x416.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/music-album-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:30;a:11:{s:2:\"ID\";i:20073;s:5:\"title\";s:22:\"Email Marketing Course\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-lead.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-lead-407x800.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:20075;s:5:\"title\";s:27:\"Email Marketing Free Course\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-lead.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-lead-407x800.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/elementor/email-marketing-lead/\";}i:1;a:6:{s:2:\"ID\";i:20082;s:5:\"title\";s:27:\"Email Marketing Full Access\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-checkout-1-242x800.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/email-marketing-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20089;s:5:\"title\";s:25:\"Email Marketing Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-thankyou.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-thankyou-600x673.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/email-marketing-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:8;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:31;a:11:{s:2:\"ID\";i:20029;s:5:\"title\";s:18:\"Photoshop Tutorial\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-optin.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-optin-194x800.jpg\";s:8:\"category\";a:2:{i:0;s:12:\"sales-funnel\";i:1;s:15:\"tripwire-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:20031;s:5:\"title\";s:15:\"Learn Photoshop\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-optin.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-optin-194x800.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/elementor/learn-photoshop/\";}i:1;a:6:{s:2:\"ID\";i:20048;s:5:\"title\";s:24:\"Learn Photoshop Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-checkout-1-194x800.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/learn-photoshop-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20067;s:5:\"title\";s:22:\"Learn Photoshop Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-upsell.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-upsell-600x704.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/learn-photoshop-upsell/\";}i:3;a:6:{s:2:\"ID\";i:20070;s:5:\"title\";s:25:\"Learn Photoshop Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-thankyou.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-thankyou-600x502.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/learn-photoshop-thank-you-2/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:35;s:4:\"name\";s:15:\"Tripwire Funnel\";s:4:\"slug\";s:15:\"tripwire-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:35;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:1;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:20;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:32;a:11:{s:2:\"ID\";i:20005;s:5:\"title\";s:23:\"Digital Marketing Guide\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/digital-marketing-checkout-2.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/digital-marketing-checkout-2-235x800.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:20007;s:5:\"title\";s:26:\"Digital Marketing Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/digital-marketing-checkout-2.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/digital-marketing-checkout-2-235x800.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/elementor/digital-marketing-checkout/\";}i:1;a:6:{s:2:\"ID\";i:20025;s:5:\"title\";s:27:\"Digital Marketing Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/digital-marketing-thankyou.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/digital-marketing-thankyou-600x630.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/digital-marketing-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:36;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:17;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:16;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}}','no'),
(38724,'cartflows-divi-flows-and-steps-1','a:9:{i:0;a:11:{s:2:\"ID\";i:19087;s:5:\"title\";s:20:\"Evergreen Product 01\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-landing-02-600x1482.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19089;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-landing-02-600x1482.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/divi/product01-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19108;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-checkout-02-600x825.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/divi/product01-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19113;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-thank-you-02-600x457.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/divi/product01-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:1;a:11:{s:2:\"ID\";i:19059;s:5:\"title\";s:20:\"Evergreen Product 02\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-landing-02-600x1960.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19061;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-landing-02-600x1960.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/divi/product02-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19076;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-checkout-02-600x626.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/divi/product02-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19084;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-thank-you-02-600x497.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/divi/product02-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:2;a:11:{s:2:\"ID\";i:19035;s:5:\"title\";s:20:\"Evergreen Product 03\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-landing-02-600x1873.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19037;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-landing-02-600x1873.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/divi/product03-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19051;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-checkout-02-600x533.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/divi/product03-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19056;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-thank-you-02-600x479.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/divi/product03-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:3;a:11:{s:2:\"ID\";i:19228;s:5:\"title\";s:5:\"Ebook\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:92:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-landing-02-600x1532.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19230;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:92:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-landing-02-600x1532.jpg\";s:4:\"link\";s:54:\"https://templates.cartflows.com/divi/ebook-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19247;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-checkout-02-600x1201.jpg\";s:4:\"link\";s:55:\"https://templates.cartflows.com/divi/ebook-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19250;s:5:\"title\";s:12:\"EBook Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:91:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-upsell-02.jpg\";s:19:\"thumbnail_image_url\";s:99:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-upsell-02-600x398.jpg\";s:4:\"link\";s:53:\"https://templates.cartflows.com/divi/ebook-upsell-02/\";}i:3;a:6:{s:2:\"ID\";i:19254;s:5:\"title\";s:14:\"EBook Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-downsell-02.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-downsell-02-600x394.jpg\";s:4:\"link\";s:55:\"https://templates.cartflows.com/divi/ebook-downsell-02/\";}i:4;a:6:{s:2:\"ID\";i:19258;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:94:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-thank-you-02-600x701.jpg\";s:4:\"link\";s:56:\"https://templates.cartflows.com/divi/ebook-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:4;a:11:{s:2:\"ID\";i:19202;s:5:\"title\";s:18:\"Protein Supplement\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-landing-02-600x1865.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19204;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-landing-02-600x1865.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/divi/protein-supplement-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19215;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-checkout-02-600x882.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/divi/protein-supplement-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19220;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-upsell-02.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-upsell-02-600x351.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/divi/protein-supplement-upsell-02/\";}i:3;a:6:{s:2:\"ID\";i:19225;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-thank-you-02-600x558.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/divi/protein-supplement-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:5;a:11:{s:2:\"ID\";i:19174;s:5:\"title\";s:14:\"Beauty Product\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-landing-02-600x1751.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19176;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-landing-02-600x1751.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/divi/beauty-product-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19186;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-checkout-02-600x975.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/divi/beauty-product-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19189;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-upsell-02.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-upsell-02-600x351.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/divi/beauty-product-upsell-02/\";}i:3;a:6:{s:2:\"ID\";i:19193;s:5:\"title\";s:8:\"Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-downsell-02.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-downsell-02-600x351.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/divi/beauty-product-downsell-02/\";}i:4;a:6:{s:2:\"ID\";i:19197;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-thank-you-02-600x758.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/divi/beauty-product-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:6;a:11:{s:2:\"ID\";i:19137;s:5:\"title\";s:11:\"Organic Tea\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-landing-02-600x1554.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19139;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-landing-02-600x1554.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/divi/organic-tea-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19161;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-checkout-02-600x955.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/divi/organic-tea-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19166;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-upsell-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-upsell-02-600x340.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/divi/organic-tea-upsell-02/\";}i:3;a:6:{s:2:\"ID\";i:19171;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-thank-you-02-600x544.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/divi/organic-tea-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:7;a:11:{s:2:\"ID\";i:19116;s:5:\"title\";s:15:\"Inline Checkout\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:153:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-checkout-02-2020-12-10-18_33_57.png\";s:19:\"thumbnail_image_url\";s:162:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-checkout-02-2020-12-10-18_33_57-600x1874.png\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19118;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:153:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-checkout-02-2020-12-10-18_33_57.png\";s:19:\"thumbnail_image_url\";s:162:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-checkout-02-2020-12-10-18_33_57-600x1874.png\";s:4:\"link\";s:56:\"https://templates.cartflows.com/divi/inline-checkout-02/\";}i:1;a:6:{s:2:\"ID\";i:19134;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:154:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-thank-you-02-2020-12-10-18_34_31.png\";s:19:\"thumbnail_image_url\";s:162:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-thank-you-02-2020-12-10-18_34_31-600x416.png\";s:4:\"link\";s:57:\"https://templates.cartflows.com/divi/inline-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:8;a:11:{s:2:\"ID\";i:18996;s:5:\"title\";s:14:\"Download eBook\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-the-ebook-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-the-ebook-02-600x550.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:18998;s:5:\"title\";s:18:\"Download The eBook\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-the-ebook-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-the-ebook-02-600x550.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/divi/download-the-ebook-02/\";}i:1;a:6:{s:2:\"ID\";i:19005;s:5:\"title\";s:9:\"Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-ebook-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-ebook-thank-you-02-600x500.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/divi/download-ebook-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:1;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}}','no'),
(38725,'cartflows-beaver-builder-flows-and-steps-1','a:12:{i:0;a:11:{s:2:\"ID\";i:19424;s:5:\"title\";s:20:\"Evergreen Product 01\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19425;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-2.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/beaver-builder/product01-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19442;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-checkout-1.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/beaver-builder/product01-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19445;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-thankyou-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-thankyou-1.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/beaver-builder/product01-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:1;a:11:{s:2:\"ID\";i:19395;s:5:\"title\";s:20:\"Evergreen Product 02\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19396;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-2.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/beaver-builder/product02-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19411;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-checkout-1.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/beaver-builder/product02-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19418;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-checkout-2-1.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-checkout-2-1.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/beaver-builder/product02-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:2;a:11:{s:2:\"ID\";i:19372;s:5:\"title\";s:20:\"Evergreen Product 03\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19373;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-2.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/beaver-builder/product03-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19386;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-checkout-1.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/beaver-builder/product03-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19389;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/thank-you-2.jpg\";s:19:\"thumbnail_image_url\";s:97:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/thank-you-2.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/beaver-builder/product03-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:3;a:11:{s:2:\"ID\";i:19352;s:5:\"title\";s:15:\"Inline Checkout\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow4-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow4-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19353;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow4-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow4-2.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/beaver-builder/inline-checkout-01/\";}i:1;a:6:{s:2:\"ID\";i:19367;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/thank-you-4.jpg\";s:19:\"thumbnail_image_url\";s:97:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/thank-you-4.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/beaver-builder/inline-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:4;a:11:{s:2:\"ID\";i:19315;s:5:\"title\";s:5:\"eBook\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-landing.jpg\";s:19:\"thumbnail_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-landing.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19316;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-landing-1.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/beaver-builder/ebook-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19334;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-checkout-1.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/beaver-builder/ebook-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19336;s:5:\"title\";s:12:\"EBook Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebbok-upsell-1.jpg\";s:19:\"thumbnail_image_url\";s:100:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebbok-upsell-1.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/beaver-builder/ebook-upsell-01/\";}i:3;a:6:{s:2:\"ID\";i:19339;s:5:\"title\";s:14:\"EBook Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-doensell-1-1.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-doensell-1-1.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/beaver-builder/ebook-downsell-01/\";}i:4;a:6:{s:2:\"ID\";i:19342;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-thankyou-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-thankyou-1.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/beaver-builder/ebook-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:31;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:31;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:5;a:11:{s:2:\"ID\";i:19289;s:5:\"title\";s:18:\"Protein Supplement\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-landing-2.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19290;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-landing-2.jpg\";s:4:\"link\";s:77:\"https://templates.cartflows.com/beaver-builder/protein-supplement-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19299;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-checkout-1.jpg\";s:4:\"link\";s:78:\"https://templates.cartflows.com/beaver-builder/protein-supplement-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19302;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-upsell-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-upsell-1.jpg\";s:4:\"link\";s:76:\"https://templates.cartflows.com/beaver-builder/protein-supplement-upsell-01/\";}i:3;a:6:{s:2:\"ID\";i:19306;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-thank-you-1.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-thank-you-1.jpg\";s:4:\"link\";s:79:\"https://templates.cartflows.com/beaver-builder/protein-supplement-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:31;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:31;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:6;a:11:{s:2:\"ID\";i:19260;s:5:\"title\";s:14:\"Beauty Product\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/cosmetic-landing-page-2.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/cosmetic-landing-page-2.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19261;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/cosmetic-landing-page-2.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/cosmetic-landing-page-2.jpg\";s:4:\"link\";s:73:\"https://templates.cartflows.com/beaver-builder/beauty-product-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19272;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-checkout-1.jpg\";s:4:\"link\";s:74:\"https://templates.cartflows.com/beaver-builder/beauty-product-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19275;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-upsell-1.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-upsell-1.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/beaver-builder/beauty-product-upsell-01/\";}i:3;a:6:{s:2:\"ID\";i:19277;s:5:\"title\";s:8:\"Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-downsell-1.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-downsell-1.jpg\";s:4:\"link\";s:74:\"https://templates.cartflows.com/beaver-builder/beauty-product-downsell-01/\";}i:4;a:6:{s:2:\"ID\";i:19280;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-thank-you-1.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-thank-you-1.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/beaver-builder/beauty-product-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:31;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:31;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:7;a:11:{s:2:\"ID\";i:19226;s:5:\"title\";s:11:\"Organic Tea\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-landing-2.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19227;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-landing-2.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/beaver-builder/organic-tea-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19247;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-checkout.jpg\";s:19:\"thumbnail_image_url\";s:98:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-checkout.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/beaver-builder/organic-tea-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19250;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-upsell-1.jpg\";s:19:\"thumbnail_image_url\";s:98:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-upsell-1.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/beaver-builder/organic-tea-upsell-01/\";}i:3;a:6:{s:2:\"ID\";i:19253;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-thank-you-1.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-thank-you-1.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/beaver-builder/organic-tea-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:31;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:31;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:8;a:11:{s:2:\"ID\";i:19179;s:5:\"title\";s:14:\"Download eBook\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-2.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19180;s:5:\"title\";s:18:\"Download The eBook\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-2.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-2.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/beaver-builder/download-the-ebook-01/\";}i:1;a:6:{s:2:\"ID\";i:19186;s:5:\"title\";s:9:\"Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-Thank-You-1.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-Thank-You-1.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/beaver-builder/download-ebook-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:35;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:35;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:2;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:9;a:11:{s:2:\"ID\";i:19164;s:5:\"title\";s:22:\"Email Marketing Course\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:114:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-landing-01-2.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-landing-01-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19165;s:5:\"title\";s:27:\"Email Marketing Free Course\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:114:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-landing-01-2.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-landing-01-2.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/beaver-builder/email-marketing-lead-01/\";}i:1;a:6:{s:2:\"ID\";i:19169;s:5:\"title\";s:27:\"Email Marketing Full Access\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:115:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-checkout-01-1.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-checkout-01-1.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/beaver-builder/email-marketing-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19173;s:5:\"title\";s:25:\"Email Marketing Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:116:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-thank-you-01-1.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-thank-you-01-1.jpg\";s:4:\"link\";s:76:\"https://templates.cartflows.com/beaver-builder/email-marketing-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:35;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:35;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:2;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:10;a:11:{s:2:\"ID\";i:19130;s:5:\"title\";s:18:\"Photoshop Tutorial\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-landing-2.jpg\";s:8:\"category\";a:2:{i:0;s:12:\"sales-funnel\";i:1;s:15:\"tripwire-funnel\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19131;s:5:\"title\";s:15:\"Learn Photoshop\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-landing-2.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/beaver-builder/learn-photoshop-01/\";}i:1;a:6:{s:2:\"ID\";i:19142;s:5:\"title\";s:24:\"Learn Photoshop Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-checkout-1.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/beaver-builder/learn-photoshop-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19151;s:5:\"title\";s:22:\"Learn Photoshop Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-upsell-1-1.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-upsell-1-1.jpg\";s:4:\"link\";s:73:\"https://templates.cartflows.com/beaver-builder/learn-photoshop-upsell-01/\";}i:3;a:6:{s:2:\"ID\";i:19153;s:5:\"title\";s:25:\"Learn Photoshop Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-thank-you-1.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-thank-you-1.jpg\";s:4:\"link\";s:76:\"https://templates.cartflows.com/beaver-builder/learn-photoshop-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:31;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:31;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:36;s:4:\"name\";s:15:\"Tripwire Funnel\";s:4:\"slug\";s:15:\"tripwire-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:36;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:1;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:11;a:11:{s:2:\"ID\";i:19060;s:5:\"title\";s:23:\"Digital Marketing Guide\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-checkout.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-checkout.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19061;s:5:\"title\";s:26:\"Digital Marketing Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-checkout.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-checkout.jpg\";s:4:\"link\";s:77:\"https://templates.cartflows.com/beaver-builder/digital-marketing-checkout-01/\";}i:1;a:6:{s:2:\"ID\";i:19063;s:5:\"title\";s:27:\"Digital Marketing Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-thank-you.jpg\";s:4:\"link\";s:78:\"https://templates.cartflows.com/beaver-builder/digital-marketing-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}}','no'),
(38726,'cartflows-gutenberg-flows-and-steps-1','a:10:{i:0;a:11:{s:2:\"ID\";i:19398;s:5:\"title\";s:24:\"Evergreen Product â€“ 01\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-landing-03-600x1534.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19400;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-landing-03-600x1534.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/gutenberg/product01-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19413;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-checkout-03-600x884.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/product01-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19417;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-thank-you-03-600x538.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/gutenberg/product01-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:1;a:11:{s:2:\"ID\";i:19374;s:5:\"title\";s:24:\"Evergreen Product â€“ 02\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-landing-03-600x1921.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19376;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-landing-03-600x1921.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/gutenberg/product02-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19389;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-checkout-03-600x719.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/product02-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19395;s:5:\"title\";s:9:\"Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-thank-you-03-600x567.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/gutenberg/product02-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:2;a:11:{s:2:\"ID\";i:19353;s:5:\"title\";s:24:\"Evergreen Product â€“ 03\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-landing-03-600x1998.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19355;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-landing-03-600x1998.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/gutenberg/product03-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19367;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-checkout-03-600x642.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/product03-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19371;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-thank-you-03-600x489.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/gutenberg/product03-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:3;a:11:{s:2:\"ID\";i:19335;s:5:\"title\";s:15:\"Inline Checkout\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-inline-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-inline-checkout-03-600x1931.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19337;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-inline-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-inline-checkout-03-600x1931.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/gutenberg/inline-checkout-03/\";}i:1;a:6:{s:2:\"ID\";i:19350;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-thank-you-03-600x581.jpg\";s:4:\"link\";s:55:\"https://templates.cartflows.com/gutenberg/thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:4;a:11:{s:2:\"ID\";i:19315;s:5:\"title\";s:18:\"Protein Supplement\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:122:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-landing-03-600x1956.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19317;s:5:\"title\";s:26:\"Protein Supplement Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:122:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-landing-03-600x1956.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/gutenberg/protein-supplement-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19323;s:5:\"title\";s:16:\"Protein Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:114:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:122:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-checkout-03-600x920.jpg\";s:4:\"link\";s:73:\"https://templates.cartflows.com/gutenberg/protein-supplement-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19328;s:5:\"title\";s:25:\"Protein Supplement Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:120:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-upsell-03-600x406.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/gutenberg/protein-supplement-upsell-03/\";}i:3;a:6:{s:2:\"ID\";i:19332;s:5:\"title\";s:17:\"Protein Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:115:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:123:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-thank-you-03-600x535.jpg\";s:4:\"link\";s:74:\"https://templates.cartflows.com/gutenberg/protein-supplement-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:5;a:11:{s:2:\"ID\";i:19281;s:5:\"title\";s:5:\"eBook\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-landing-03-600x1533.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19283;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-landing-03-600x1533.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/gutenberg/ebook-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19299;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-checkout-03-600x1229.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/gutenberg/ebook-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19304;s:5:\"title\";s:12:\"EBook Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-upsell-03-600x366.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/gutenberg/ebook-upsell-03/\";}i:3;a:6:{s:2:\"ID\";i:19308;s:5:\"title\";s:14:\"EBook Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-downsell-03.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-downsell-03-600x365.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/gutenberg/ebook-downsell-03/\";}i:4;a:6:{s:2:\"ID\";i:19312;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-thank-you-03-600x662.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/gutenberg/ebook-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:6;a:11:{s:2:\"ID\";i:19255;s:5:\"title\";s:14:\"Beauty Product\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-landing-03-600x1921.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19257;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-landing-03-600x1921.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/gutenberg/beauty-product-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19264;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-checkout-03-600x1026.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/gutenberg/beauty-product-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19270;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:108:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-upsell-03-600x342.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/gutenberg/beauty-product-upsell-03/\";}i:3;a:6:{s:2:\"ID\";i:19274;s:5:\"title\";s:8:\"Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-downsell-03.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-downsell-03-600x324.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/gutenberg/beauty-product-downsell-03/\";}i:4;a:6:{s:2:\"ID\";i:19278;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-thank-you-03-600x611.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/gutenberg/beauty-product-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:7;a:11:{s:2:\"ID\";i:19224;s:5:\"title\";s:11:\"Organic Tea\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-landing-03-600x1741.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19226;s:5:\"title\";s:19:\"Organic Tea Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-landing-03-600x1741.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/gutenberg/organic-tea-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19244;s:5:\"title\";s:25:\"Organic Tea Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-checkout-03-600x953.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/gutenberg/organic-tea-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19248;s:5:\"title\";s:23:\"Organic Tea Upsell Page\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-upsell-03-600x383.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/organic-tea-upsell-03/\";}i:3;a:6:{s:2:\"ID\";i:19252;s:5:\"title\";s:26:\"Organic Tea Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:108:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-thank-you-03-600x500.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/gutenberg/organic-tea-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:8;a:11:{s:2:\"ID\";i:19182;s:5:\"title\";s:26:\"Dog Food Two Step Checkout\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-checkout-03-600x2160.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19184;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-checkout-03-600x2160.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/gutenberg/dog-food-checkout-03/\";}i:1;a:6:{s:2:\"ID\";i:19200;s:5:\"title\";s:20:\"Dog Food Upsell Page\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-upsell-03-600x365.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/gutenberg/dog-food-upsell-03/\";}i:2;a:6:{s:2:\"ID\";i:19204;s:5:\"title\";s:22:\"Dog Food Downsell Page\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-downsell-03.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-downsell-03-600x428.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/gutenberg/dog-food-downsell-03/\";}i:3;a:6:{s:2:\"ID\";i:19208;s:5:\"title\";s:18:\"Dog Food Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-thank-you-03-600x538.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/dog-food-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:9;a:11:{s:2:\"ID\";i:19211;s:5:\"title\";s:14:\"Download eBook\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-ebook-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-ebook-thank-you-03-600x734.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19213;s:5:\"title\";s:18:\"Download The eBook\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-ebook-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-ebook-thank-you-03-600x734.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/download-the-ebook-03/\";}i:1;a:6:{s:2:\"ID\";i:19220;s:5:\"title\";s:9:\"Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-the-ebook-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-the-ebook-03-600x530.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/gutenberg/download-ebook-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:1;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}}','no'),
(38727,'cartflows-last-export-checksums-latest','yez9*g5cvgS9','no'),
(38730,'cartflows-batch-status-string','All processes are complete','no'),
(38731,'cartflows-elementor-requests','1','no'),
(38733,'cartflows-fresh-site','yes','no'),
(38738,'cartflows-batch-is-complete','yes','no'),
(38840,'_cartflows_common','a:2:{s:15:\"global_checkout\";s:4:\"8121\";s:24:\"override_global_checkout\";s:6:\"enable\";}','yes'),
(38903,'wcf_ca_status','on','yes'),
(38904,'wcf_ca_gdpr_status','on','yes'),
(38905,'wcf_ca_coupon_code_status','off','yes'),
(38906,'wcf_ca_zapier_tracking_status','off','yes'),
(38907,'wcf_ca_delete_plugin_data','off','yes'),
(38908,'wcf_ca_cut_off_time','15','yes'),
(38909,'wcf_ca_from_name','Sales Team','yes'),
(38910,'wcf_ca_from_email','Sales@choiceresources.co.uk','yes'),
(38911,'wcf_ca_reply_email','ivankulongo@gmail.com','yes'),
(38912,'wcf_ca_discount_type','percent','yes'),
(38913,'wcf_ca_coupon_amount','10','yes'),
(38914,'wcf_ca_zapier_cart_abandoned_webhook','','yes'),
(38915,'wcf_ca_gdpr_message','Your email & cart are saved so we can send email reminders about this order.','yes'),
(38916,'wcf_ca_coupon_expiry','0','yes'),
(38917,'wcf_ca_coupon_expiry_unit','hours','yes'),
(38918,'wcf_ca_excludes_orders','a:2:{i:0;s:10:\"processing\";i:1;s:9:\"completed\";}','yes'),
(38919,'wcf_ca_version','1.2.26','yes'),
(38938,'wcf_ca_cron_run_time','15','yes'),
(38939,'wcf_ca_ignore_users','','yes'),
(38940,'wcar_email_admin_on_recovery','','yes'),
(38941,'wcf_ca_global_param','','yes'),
(38942,'wcf_ca_auto_delete_coupons','','yes'),
(38943,'wcf_ca_delete_coupons','','yes'),
(38944,'wcf_ca_send_recovery_report_emails_to_admin','on','yes'),
(38945,'wcf_ca_admin_email','ivankulongo@gmail.com','yes'),
(38961,'wpforms_version','1.7.4.2','yes'),
(38962,'wpforms_version_lite','1.7.4.2','yes'),
(38963,'wpforms_activated','a:1:{s:4:\"lite\";i:1654545375;}','yes'),
(38968,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(38969,'wpforms_admin_notices','a:1:{s:14:\"review_request\";a:2:{s:4:\"time\";i:1654545380;s:9:\"dismissed\";b:0;}}','yes'),
(38970,'_transient_wpforms_htaccess_file','a:3:{s:4:\"size\";i:737;s:5:\"mtime\";i:1654545383;s:5:\"ctime\";i:1654545383;}','yes'),
(38971,'wpforms_notifications','a:4:{s:6:\"update\";i:1654545491;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),
(38972,'wpforms_email_summaries_fetch_info_blocks_last_run','1654545491','yes'),
(38973,'wpforms_process_forms_locator_status','completed','yes'),
(38974,'wpforms_challenge','a:13:{s:6:\"status\";s:7:\"skipped\";s:4:\"step\";i:0;s:7:\"user_id\";i:1;s:7:\"form_id\";i:0;s:10:\"embed_page\";i:0;s:16:\"embed_page_title\";s:0:\"\";s:16:\"started_date_gmt\";s:19:\"2022-06-06 19:58:26\";s:17:\"finished_date_gmt\";s:19:\"2022-06-06 19:58:26\";s:13:\"seconds_spent\";i:0;s:12:\"seconds_left\";i:300;s:13:\"feedback_sent\";b:0;s:19:\"feedback_contact_me\";b:0;s:13:\"window_closed\";s:0:\"\";}','yes'),
(38991,'wppb_review_request_status','0','yes'),
(38992,'wppb_old_add_ons_status','a:20:{s:42:\"pd-add-on-multiple-admin-e-mails/index.php\";b:0;s:41:\"pb-add-on-customization-toolbox/index.php\";b:0;s:44:\"pb-add-on-email-confirmation-field/index.php\";b:0;s:37:\"pb-add-on-placeholder-labels/pbpl.php\";b:0;s:78:\"pb-add-on-gdpr-communication-preferences/pb-gdpr-communication-preferences.php\";b:0;s:30:\"pb-add-on-labels-edit/pble.php\";b:0;s:44:\"pb-add-on-maximum-character-length/index.php\";b:0;s:48:\"pb-add-on-custom-css-classes-on-fields/index.php\";b:0;s:32:\"pb-add-on-import-export/pbie.php\";b:0;s:30:\"pb-add-on-buddypress/index.php\";b:0;s:34:\"pb-add-on-social-connect/index.php\";b:0;s:31:\"pb-add-on-woocommerce/index.php\";b:0;s:36:\"pb-add-on-multi-step-forms/index.php\";b:0;s:41:\"pb-add-on-mailchimp-integration/index.php\";b:0;s:27:\"pb-add-on-bbpress/index.php\";b:0;s:36:\"pb-add-on-campaign-monitor/index.php\";b:0;s:36:\"pb-add-on-field-visibility/index.php\";b:0;s:50:\"pb-add-on-edit-profile-approved-by-admin/index.php\";b:0;s:40:\"pb-add-on-custom-profile-menus/index.php\";b:0;s:40:\"pb-add-on-mailpoet-integration/index.php\";b:0;}','yes'),
(38993,'wppb_free_add_ons_settings','a:5:{s:30:\"gdpr-communication-preferences\";b:1;s:11:\"labels-edit\";b:0;s:24:\"maximum-character-length\";b:0;s:28:\"custom-css-classes-on-fields\";b:0;s:13:\"import-export\";b:0;}','yes'),
(38994,'wppb_advanced_add_ons_settings','a:11:{s:10:\"buddypress\";b:0;s:14:\"social-connect\";b:0;s:11:\"woocommerce\";b:0;s:16:\"multi-step-forms\";b:0;s:21:\"mailchimp-integration\";b:0;s:7:\"bbpress\";b:0;s:16:\"campaign-monitor\";b:0;s:16:\"field-visibility\";b:0;s:30:\"edit-profile-approved-by-admin\";b:0;s:20:\"custom-profile-menus\";b:0;s:20:\"mailpoet-integration\";b:0;}','yes'),
(38995,'wppb_toolbox_forms_settings','a:8:{s:18:\"placeholder-labels\";s:0:\"\";s:32:\"restricted-email-domains-message\";s:81:\"The email address you are trying to register with is not allowed on this website.\";s:25:\"confirm-user-email-change\";s:3:\"yes\";s:11:\"remember-me\";s:3:\"yes\";s:26:\"recover-password-autologin\";s:3:\"yes\";s:18:\"users-can-register\";s:3:\"yes\";s:20:\"redirect-delay-timer\";i:0;s:12:\"admin-emails\";s:21:\"ivankulongo@gmail.com\";}','yes'),
(38996,'wppb_toolbox_fields_settings','a:3:{s:23:\"restricted-words-fields\";a:0:{}s:21:\"restricted-words-data\";a:0:{}s:24:\"restricted-words-message\";s:38:\"Your submission contains banned words.\";}','yes'),
(38997,'wppb_toolbox_userlisting_settings','a:0:{}','yes'),
(38998,'wppb_toolbox_shortcodes_settings','a:0:{}','yes'),
(38999,'wppb_toolbox_admin_settings','a:2:{s:21:\"multiple-admin-emails\";s:0:\"\";s:12:\"admin-emails\";s:21:\"ivankulongo@gmail.com\";}','yes'),
(39000,'widget_wppb-login-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(39001,'wppb_version','3.7.6','yes'),
(39002,'wppb_manage_fields','a:11:{i:0;a:21:{s:2:\"id\";i:1;s:5:\"field\";s:24:\"Default - Name (Heading)\";s:9:\"meta-name\";s:0:\"\";s:11:\"field-title\";s:4:\"Name\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:2:\"No\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}i:1;a:21:{s:2:\"id\";i:2;s:5:\"field\";s:18:\"Default - Username\";s:9:\"meta-name\";s:0:\"\";s:11:\"field-title\";s:8:\"Username\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:3:\"Yes\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}i:2;a:21:{s:2:\"id\";i:3;s:5:\"field\";s:20:\"Default - First Name\";s:9:\"meta-name\";s:10:\"first_name\";s:11:\"field-title\";s:10:\"First Name\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:2:\"No\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}i:3;a:21:{s:2:\"id\";i:4;s:5:\"field\";s:19:\"Default - Last Name\";s:9:\"meta-name\";s:9:\"last_name\";s:11:\"field-title\";s:9:\"Last Name\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:2:\"No\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}i:4;a:21:{s:2:\"id\";i:6;s:5:\"field\";s:34:\"Default - Display name publicly as\";s:9:\"meta-name\";s:0:\"\";s:11:\"field-title\";s:24:\"Display name publicly as\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:2:\"No\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}i:5;a:21:{s:2:\"id\";i:7;s:5:\"field\";s:32:\"Default - Contact Info (Heading)\";s:9:\"meta-name\";s:0:\"\";s:11:\"field-title\";s:12:\"Contact Info\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:2:\"No\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}i:6;a:21:{s:2:\"id\";i:8;s:5:\"field\";s:16:\"Default - E-mail\";s:9:\"meta-name\";s:0:\"\";s:11:\"field-title\";s:6:\"E-mail\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:3:\"Yes\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}i:7;a:21:{s:2:\"id\";i:10;s:5:\"field\";s:34:\"Default - About Yourself (Heading)\";s:9:\"meta-name\";s:0:\"\";s:11:\"field-title\";s:14:\"About Yourself\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:2:\"No\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}i:8;a:21:{s:2:\"id\";i:9;s:5:\"field\";s:17:\"Default - Website\";s:9:\"meta-name\";s:0:\"\";s:11:\"field-title\";s:7:\"Website\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:2:\"No\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}i:9;a:21:{s:2:\"id\";i:12;s:5:\"field\";s:18:\"Default - Password\";s:9:\"meta-name\";s:0:\"\";s:11:\"field-title\";s:8:\"Password\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:3:\"Yes\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}i:10;a:21:{s:2:\"id\";i:13;s:5:\"field\";s:25:\"Default - Repeat Password\";s:9:\"meta-name\";s:0:\"\";s:11:\"field-title\";s:15:\"Repeat Password\";s:11:\"description\";s:0:\"\";s:8:\"required\";s:3:\"Yes\";s:18:\"overwrite-existing\";s:2:\"No\";s:9:\"row-count\";s:1:\"5\";s:24:\"allowed-image-extensions\";s:2:\".*\";s:25:\"allowed-upload-extensions\";s:2:\".*\";s:11:\"avatar-size\";s:3:\"100\";s:11:\"date-format\";s:8:\"mm/dd/yy\";s:18:\"terms-of-agreement\";s:0:\"\";s:7:\"options\";s:0:\"\";s:6:\"labels\";s:0:\"\";s:10:\"public-key\";s:0:\"\";s:11:\"private-key\";s:0:\"\";s:13:\"default-value\";s:0:\"\";s:14:\"default-option\";s:0:\"\";s:15:\"default-options\";s:0:\"\";s:15:\"default-content\";s:0:\"\";}}','yes'),
(39003,'wppb_general_settings','a:7:{s:18:\"automaticallyLogIn\";s:2:\"No\";s:17:\"emailConfirmation\";s:2:\"no\";s:21:\"activationLandingPage\";s:0:\"\";s:11:\"rolesEditor\";s:2:\"no\";s:9:\"loginWith\";s:13:\"usernameemail\";s:23:\"minimum_password_length\";s:1:\"8\";s:25:\"minimum_password_strength\";s:6:\"strong\";}','yes'),
(39004,'wppb_module_settings','a:6:{s:16:\"wppb_userListing\";s:4:\"hide\";s:19:\"wppb_customRedirect\";s:4:\"hide\";s:20:\"wppb_emailCustomizer\";s:4:\"hide\";s:29:\"wppb_multipleEditProfileForms\";s:4:\"hide\";s:30:\"wppb_multipleRegistrationForms\";s:4:\"hide\";s:19:\"wppb_repeaterFields\";s:4:\"hide\";}','yes'),
(39005,'wppb_pages_created','true','yes'),
(39006,'wppb_display_admin_settings','a:10:{s:13:\"Administrator\";s:7:\"default\";s:6:\"Editor\";s:4:\"hide\";s:6:\"Author\";s:4:\"hide\";s:11:\"Contributor\";s:4:\"hide\";s:10:\"Subscriber\";s:4:\"hide\";s:8:\"Customer\";s:4:\"hide\";s:12:\"Shop manager\";s:4:\"hide\";s:15:\"Amelia Customer\";s:4:\"hide\";s:15:\"Amelia Employee\";s:4:\"hide\";s:14:\"Amelia Manager\";s:4:\"hide\";}','yes'),
(39009,'wppb_content_restriction_settings','a:6:{s:13:\"restrict_type\";s:7:\"message\";s:12:\"redirect_url\";s:0:\"\";s:18:\"message_logged_out\";s:0:\"\";s:17:\"message_logged_in\";s:0:\"\";s:12:\"post_preview\";s:4:\"none\";s:19:\"post_preview_length\";s:2:\"20\";}','yes'),
(39010,'wppb_private_website_settings','a:5:{s:15:\"private_website\";s:2:\"no\";s:11:\"redirect_to\";s:0:\"\";s:13:\"allowed_pages\";a:0:{}s:10:\"hide_menus\";s:2:\"no\";s:16:\"disable_rest_api\";s:3:\"yes\";}','yes'),
(39156,'simple301redirects_version','2.0.6','yes'),
(39161,'301_redirects','a:1:{s:13:\"/wp-login.php\";s:378:\"https://choiceresources.co.uk/log-in/?loginerror=PHN0cm9uZz5FUlJPUjwvc3Ryb25nPjogVGhlIHBhc3N3b3JkIHlvdSBlbnRlcmVkIGlzIGluY29ycmVjdC4gPGEgaHJlZj0iaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsvbG9zdHBhc3N3b3JkLyIgdGl0bGU9IlBhc3N3b3JkIExvc3QgYW5kIEZvdW5kLiITG9zdCB5b3VyIHBhc3N3b3JkPzwvYT4&_wpnonce=f15c03d7df&request_form_location=page&wppb_referer_url=httpschoiceresources.co.ukregister\";}','yes'),
(39185,'forminator_free_install_date','1654614602','no'),
(39186,'wpmudev_recommended_plugins_registered','a:1:{s:25:\"forminator/forminator.php\";a:1:{s:13:\"registered_at\";i:1654614603;}}','no'),
(39187,'forminator_version','1.29.0','yes'),
(39188,'widget_forminator_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(39189,'forminator_appearance_presets','a:2:{s:7:\"default\";s:14:\"Default Preset\";s:13:\"639a415a7692f\";s:9:\"New forms\";}','yes'),
(39194,'forminator_captcha_key','6Le1uTggAAAAABv8BxHGjC4cmfhOP6IyzQDNDHvg','yes'),
(39195,'forminator_captcha_secret','6Le1uTggAAAAAAqHEeWiNw0yGThRIMU6S49hIoeQ','yes'),
(39196,'forminator_v2_invisible_captcha_key','','yes'),
(39197,'forminator_v2_invisible_captcha_secret','','yes'),
(39198,'forminator_v3_captcha_key','','yes'),
(39199,'forminator_v3_captcha_secret','','yes'),
(39200,'forminator_hcaptcha_key','','yes'),
(39201,'forminator_hcaptcha_secret','','yes'),
(39202,'forminator_captcha_tab_saved','recaptcha','yes'),
(39203,'forminator_captcha_language','','yes'),
(39204,'forminator_form_privacy_settings','a:0:{}','yes'),
(39213,'forminator_posts_map','a:2:{i:19539;a:1:{i:0;i:19823;}i:20612;a:1:{i:0;i:29;}}','yes'),
(39335,'user_count','2','no'),
(39336,'db_upgraded','','yes'),
(39361,'woocommerce_sales_record_date','2022-11-16','yes'),
(39362,'woocommerce_sales_record_amount','139.98','yes'),
(39411,'forminator_submissions_form_type','forminator_forms','yes'),
(39412,'forminator_submissions_form_id','19539','yes'),
(39688,'rsssl_activated_plugin','1','yes'),
(39709,'woocommerce_subscriptions_is_active','1','yes'),
(39712,'wc_memberships_is_active','yes','yes'),
(39891,'updraft_lock_08076cb0b382','1654653983','no'),
(39997,'updraft_lock_00bdbe8cce00','1654654105','no'),
(40076,'updraft_lock_8440b26c0f43','1654654154','no'),
(40437,'googlesitekitpersistent_remote_features','a:21:{s:18:\"adBlockerDetection\";a:1:{s:7:\"enabled\";b:1;}s:9:\"adsModule\";a:1:{s:7:\"enabled\";b:1;}s:14:\"adsenseSetupV2\";a:1:{s:7:\"enabled\";b:1;}s:15:\"conversionInfra\";a:1:{s:7:\"enabled\";b:1;}s:16:\"dashboardSharing\";a:1:{s:7:\"enabled\";b:1;}s:19:\"enhancedMeasurement\";a:1:{s:7:\"enabled\";b:1;}s:19:\"ga4ActivationBanner\";a:1:{s:7:\"enabled\";b:0;}s:12:\"ga4Reporting\";a:1:{s:7:\"enabled\";b:1;}s:8:\"ga4setup\";a:1:{s:7:\"enabled\";b:1;}s:10:\"gteSupport\";a:1:{s:7:\"enabled\";b:1;}s:14:\"helpVisibility\";a:1:{s:7:\"enabled\";b:1;}s:13:\"ideaHubModule\";a:1:{s:7:\"enabled\";b:0;}s:10:\"keyMetrics\";a:1:{s:7:\"enabled\";b:1;}s:9:\"rrmModule\";a:1:{s:7:\"enabled\";b:0;}s:14:\"serviceSetupV2\";a:1:{s:7:\"enabled\";b:1;}s:16:\"unifiedDashboard\";a:1:{s:7:\"enabled\";b:1;}s:12:\"userFeedback\";a:1:{s:7:\"enabled\";b:1;}s:17:\"widgets.dashboard\";a:1:{s:7:\"enabled\";b:1;}s:21:\"widgets.pageDashboard\";a:1:{s:7:\"enabled\";b:1;}s:14:\"zeroDataStates\";a:1:{s:7:\"enabled\";b:1;}s:15:\"last_updated_at\";i:1730179125;}','yes'),
(42569,'woocommerce_new_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:21:\"ivankulongo@gmail.com\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Congratulations on the sale.\";s:10:\"email_type\";s:4:\"html\";}','yes'),
(45428,'forminator_activated_addons','a:1:{i:0;s:9:\"mailchimp\";}','yes'),
(45429,'forminator_addon_mailchimp_version','1.0','yes'),
(45430,'forminator_addon_mailchimp_settings','a:1:{s:23:\"62a21cc936f093.84268957\";a:3:{s:7:\"api_key\";s:37:\"378c5ecca0b541d423b16a70632fb188-us17\";s:10:\"identifier\";s:0:\"\";s:17:\"connected_account\";a:3:{s:10:\"account_id\";s:25:\"a3a816175111933448c756f14\";s:12:\"account_name\";s:16:\"Ognol UK Limited\";s:5:\"email\";s:21:\"amnakulongo@gmail.com\";}}}','yes'),
(45436,'forminator_mailchimp_378c5ecca0b541d423b16a70632fb188-us17','a:1:{i:0;O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"49270b5bc0\";s:4:\"name\";s:16:\"Ognol UK Limited\";}}','yes'),
(45624,'_site_transient_mailchimp-woocommerce-gdpr-fields.49270b5bc0','a:1:{i:0;a:3:{s:23:\"marketing_permission_id\";s:10:\"6ffad30bf6\";s:4:\"text\";s:5:\"Email\";s:7:\"enabled\";b:1;}}','no'),
(46585,'wp_calendar_block_has_published_posts','1','yes'),
(50799,'forminator_skip_pro_notice','1','yes'),
(126092,'cdp_copy_logs_times','a:50:{i:0;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.09363603591918945;s:6:\"perOne\";d:0.09363603591918945;s:4:\"data\";i:1715285737;s:6:\"memory\";i:36247264;s:4:\"peak\";i:4194304;}i:1;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.04388904571533203;s:6:\"perOne\";d:0.04388904571533203;s:4:\"data\";i:1715079998;s:6:\"memory\";i:31650808;s:4:\"peak\";i:10485760;}i:2;a:6:{s:6:\"amount\";s:2:\"15\";s:4:\"time\";d:0.3487880229949951;s:6:\"perOne\";d:0.023252534866333007;s:4:\"data\";i:1715079954;s:6:\"memory\";i:31665704;s:4:\"peak\";i:16777216;}i:3;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.051798105239868164;s:6:\"perOne\";d:0.051798105239868164;s:4:\"data\";i:1714594096;s:6:\"memory\";i:41234832;s:4:\"peak\";i:31457280;}i:4;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.060594797134399414;s:6:\"perOne\";d:0.060594797134399414;s:4:\"data\";i:1714594067;s:6:\"memory\";i:39506688;s:4:\"peak\";i:14680064;}i:5;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.05909919738769531;s:6:\"perOne\";d:0.05909919738769531;s:4:\"data\";i:1714570772;s:6:\"memory\";i:28825360;s:4:\"peak\";i:18874368;}i:6;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.059004783630371094;s:6:\"perOne\";d:0.059004783630371094;s:4:\"data\";i:1712156741;s:6:\"memory\";i:49379240;s:4:\"peak\";i:46137344;}i:7;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.055314064025878906;s:6:\"perOne\";d:0.055314064025878906;s:4:\"data\";i:1712153037;s:6:\"memory\";i:29683200;s:4:\"peak\";i:10485760;}i:8;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.07437705993652344;s:6:\"perOne\";d:0.07437705993652344;s:4:\"data\";i:1712152429;s:6:\"memory\";i:29770776;s:4:\"peak\";i:23068672;}i:9;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.13026690483093262;s:6:\"perOne\";d:0.13026690483093262;s:4:\"data\";i:1712150618;s:6:\"memory\";i:29649368;s:4:\"peak\";i:10485760;}i:10;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.4078359603881836;s:6:\"perOne\";d:0.4078359603881836;s:4:\"data\";i:1707320498;s:6:\"memory\";i:160222112;s:4:\"peak\";i:37748736;}i:11;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.09121298789978027;s:6:\"perOne\";d:0.09121298789978027;s:4:\"data\";i:1704024120;s:6:\"memory\";i:153160400;s:4:\"peak\";i:17825792;}i:12;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.07030606269836426;s:6:\"perOne\";d:0.07030606269836426;s:4:\"data\";i:1691927880;s:6:\"memory\";i:149525000;s:4:\"peak\";i:48234496;}i:13;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.07449793815612793;s:6:\"perOne\";d:0.07449793815612793;s:4:\"data\";i:1691149270;s:6:\"memory\";i:148770504;s:4:\"peak\";i:60817408;}i:14;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.053243160247802734;s:6:\"perOne\";d:0.053243160247802734;s:4:\"data\";i:1691147740;s:6:\"memory\";i:149706896;s:4:\"peak\";i:54525952;}i:15;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.07162594795227051;s:6:\"perOne\";d:0.07162594795227051;s:4:\"data\";i:1685024767;s:6:\"memory\";i:149200416;s:4:\"peak\";i:39845888;}i:16;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.10955619812011719;s:6:\"perOne\";d:0.10955619812011719;s:4:\"data\";i:1682101871;s:6:\"memory\";i:162673320;s:4:\"peak\";i:52428800;}i:17;a:6:{s:6:\"amount\";s:1:\"6\";s:4:\"time\";d:0.2016310691833496;s:6:\"perOne\";d:0.03360517819722494;s:4:\"data\";i:1681930398;s:6:\"memory\";i:148503472;s:4:\"peak\";i:52428800;}i:18;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.10643506050109863;s:6:\"perOne\";d:0.10643506050109863;s:4:\"data\";i:1681930374;s:6:\"memory\";i:148766936;s:4:\"peak\";i:81788928;}i:19;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.04853415489196777;s:6:\"perOne\";d:0.04853415489196777;s:4:\"data\";i:1681930256;s:6:\"memory\";i:148458152;s:4:\"peak\";i:150994944;}i:20;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.05341291427612305;s:6:\"perOne\";d:0.05341291427612305;s:4:\"data\";i:1681930196;s:6:\"memory\";i:148478936;s:4:\"peak\";i:90177536;}i:21;a:6:{s:6:\"amount\";s:1:\"8\";s:4:\"time\";d:0.22400784492492676;s:6:\"perOne\";d:0.028000980615615845;s:4:\"data\";i:1681929378;s:6:\"memory\";i:148856632;s:4:\"peak\";i:18874368;}i:22;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.07836794853210449;s:6:\"perOne\";d:0.07836794853210449;s:4:\"data\";i:1681767259;s:6:\"memory\";i:148666480;s:4:\"peak\";i:60817408;}i:23;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.0437321662902832;s:6:\"perOne\";d:0.0437321662902832;s:4:\"data\";i:1681766903;s:6:\"memory\";i:148667664;s:4:\"peak\";i:67108864;}i:24;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.042192935943603516;s:6:\"perOne\";d:0.042192935943603516;s:4:\"data\";i:1681764777;s:6:\"memory\";i:148520632;s:4:\"peak\";i:29360128;}i:25;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.05144906044006348;s:6:\"perOne\";d:0.05144906044006348;s:4:\"data\";i:1681747726;s:6:\"memory\";i:150952792;s:4:\"peak\";i:17825792;}i:26;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.04606986045837402;s:6:\"perOne\";d:0.04606986045837402;s:4:\"data\";i:1680638233;s:6:\"memory\";i:148456456;s:4:\"peak\";i:17825792;}i:27;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.07196211814880371;s:6:\"perOne\";d:0.07196211814880371;s:4:\"data\";i:1680630415;s:6:\"memory\";i:148831240;s:4:\"peak\";i:39845888;}i:28;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.04445695877075195;s:6:\"perOne\";d:0.04445695877075195;s:4:\"data\";i:1680505543;s:6:\"memory\";i:148752432;s:4:\"peak\";i:150994944;}i:29;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:1.0973389148712158;s:6:\"perOne\";d:1.0973389148712158;s:4:\"data\";i:1680023789;s:6:\"memory\";i:323352752;s:4:\"peak\";i:492830720;}i:30;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.7504181861877441;s:6:\"perOne\";d:0.7504181861877441;s:4:\"data\";i:1679725633;s:6:\"memory\";i:323342392;s:4:\"peak\";i:413138944;}i:31;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.1936030387878418;s:6:\"perOne\";d:0.1936030387878418;s:4:\"data\";i:1679673435;s:6:\"memory\";i:176635416;s:4:\"peak\";i:85983232;}i:32;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.07844209671020508;s:6:\"perOne\";d:0.07844209671020508;s:4:\"data\";i:1678916311;s:6:\"memory\";i:147544568;s:4:\"peak\";i:17825792;}i:33;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.031054973602294922;s:6:\"perOne\";d:0.031054973602294922;s:4:\"data\";i:1678913256;s:6:\"memory\";i:147512840;s:4:\"peak\";i:17825792;}i:34;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.03563189506530762;s:6:\"perOne\";d:0.03563189506530762;s:4:\"data\";i:1677957396;s:6:\"memory\";i:145730600;s:4:\"peak\";i:17825792;}i:35;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.03262686729431152;s:6:\"perOne\";d:0.03262686729431152;s:4:\"data\";i:1677956742;s:6:\"memory\";i:145730048;s:4:\"peak\";i:35651584;}i:36;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.033965110778808594;s:6:\"perOne\";d:0.033965110778808594;s:4:\"data\";i:1677956248;s:6:\"memory\";i:145772264;s:4:\"peak\";i:17825792;}i:37;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.04680299758911133;s:6:\"perOne\";d:0.04680299758911133;s:4:\"data\";i:1676568186;s:6:\"memory\";i:145919848;s:4:\"peak\";i:17825792;}i:38;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.04708981513977051;s:6:\"perOne\";d:0.04708981513977051;s:4:\"data\";i:1676568010;s:6:\"memory\";i:146110864;s:4:\"peak\";i:17825792;}i:39;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.07272696495056152;s:6:\"perOne\";d:0.07272696495056152;s:4:\"data\";i:1676567748;s:6:\"memory\";i:145918920;s:4:\"peak\";i:148897792;}i:40;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.04363203048706055;s:6:\"perOne\";d:0.04363203048706055;s:4:\"data\";i:1676567371;s:6:\"memory\";i:145925256;s:4:\"peak\";i:148897792;}i:41;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.03401803970336914;s:6:\"perOne\";d:0.03401803970336914;s:4:\"data\";i:1676564045;s:6:\"memory\";i:145919792;s:4:\"peak\";i:17825792;}i:42;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.035904884338378906;s:6:\"perOne\";d:0.035904884338378906;s:4:\"data\";i:1674146978;s:6:\"memory\";i:145888136;s:4:\"peak\";i:17825792;}i:43;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.043406009674072266;s:6:\"perOne\";d:0.043406009674072266;s:4:\"data\";i:1674146930;s:6:\"memory\";i:145791832;s:4:\"peak\";i:148897792;}i:44;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.04020810127258301;s:6:\"perOne\";d:0.04020810127258301;s:4:\"data\";i:1674135198;s:6:\"memory\";i:145877392;s:4:\"peak\";i:17825792;}i:45;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.03626585006713867;s:6:\"perOne\";d:0.03626585006713867;s:4:\"data\";i:1674134651;s:6:\"memory\";i:145876888;s:4:\"peak\";i:23068672;}i:46;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.03973889350891113;s:6:\"perOne\";d:0.03973889350891113;s:4:\"data\";i:1674133579;s:6:\"memory\";i:145693344;s:4:\"peak\";i:27262976;}i:47;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.03552699089050293;s:6:\"perOne\";d:0.03552699089050293;s:4:\"data\";i:1674084894;s:6:\"memory\";i:145470024;s:4:\"peak\";i:146800640;}i:48;a:6:{s:6:\"amount\";s:1:\"2\";s:4:\"time\";d:0.04742097854614258;s:6:\"perOne\";d:0.02371048927307129;s:4:\"data\";i:1674084622;s:6:\"memory\";i:145737336;s:4:\"peak\";i:17825792;}i:49;a:6:{s:6:\"amount\";s:1:\"1\";s:4:\"time\";d:0.030701160430908203;s:6:\"perOne\";d:0.030701160430908203;s:4:\"data\";i:1673812414;s:6:\"memory\";i:145086176;s:4:\"peak\";i:17825792;}}','yes'),
(136866,'cdp_latest_slow_performance','1','yes'),
(137144,'cdp_dismiss_perf_notice','1','yes'),
(262128,'updraft_lock_a66c51387265','1660006096','no'),
(273810,'category_children','a:0:{}','yes'),
(275245,'woocommerce_demo_store_notice','','yes'),
(315523,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(315524,'mc4wp_version','4.9.7','yes'),
(315525,'mc4wp_flash_messages','a:0:{}','no'),
(315541,'mc4wp','a:6:{s:19:\"grecaptcha_site_key\";s:0:\"\";s:21:\"grecaptcha_secret_key\";s:0:\"\";s:7:\"api_key\";s:37:\"378c5ecca0b541d423b16a70632fb188-us17\";s:20:\"allow_usage_tracking\";i:0;s:15:\"debug_log_level\";s:7:\"warning\";s:18:\"first_activated_on\";i:1661180193;}','yes'),
(315564,'mc4wp_default_form_id','14865','yes'),
(315843,'mc4wp_form_stylesheets','a:0:{}','yes'),
(1249913,'woocommerce_flat_rate_1_settings','a:3:{s:5:\"title\";s:9:\"Flat rate\";s:10:\"tax_status\";s:4:\"none\";s:4:\"cost\";s:4:\"3.95\";}','yes'),
(1251288,'wpcbr_force_geo_location','1','yes'),
(1251289,'wpcbr_debug_mode','0','yes'),
(1251290,'wpcbr_default_message','','yes'),
(1251291,'wpcbr_message_position','13','yes'),
(1251292,'wpcbr_redirect_404_page','0','yes'),
(1251293,'wpcbr_choose_the_page_to_redirect','14483','yes'),
(1251294,'product_visibility','show_catalog_visibility','yes'),
(1251295,'wpcbr_hide_restricted_product_variation','0','yes'),
(1255243,'wc_blocks_surface_cart_checkout_probability','21','yes'),
(1634855,'updraft_lock_235e6cec2cc8','1670542313','no'),
(1635350,'forminator_version_upgraded','1','yes'),
(1635351,'forminator_default_report_entry','1','yes'),
(1635371,'rsssl_show_onboarding','1','no'),
(1635372,'rsssl_options','a:8:{s:11:\"ssl_enabled\";b:1;s:19:\"mixed_content_fixer\";b:1;s:8:\"redirect\";s:11:\"wp_redirect\";s:20:\"do_not_edit_htaccess\";b:0;s:19:\"dismiss_all_notices\";b:0;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:12:\"site_has_ssl\";s:1:\"1\";s:19:\"review_notice_shown\";s:1:\"1\";}','yes'),
(1635373,'rsssl_6_upgrade_completed','1','no'),
(1635383,'_cartflows_store_checkout','8120','yes'),
(1635384,'_cartflows_old_global_checkout','8121','yes'),
(1635385,'cartflows_show_weekly_report_email_notice','yes','yes'),
(1635386,'_cartflows_permalink','a:3:{s:9:\"permalink\";s:14:\"cartflows_step\";s:19:\"permalink_flow_base\";s:14:\"cartflows_flow\";s:19:\"permalink_structure\";s:0:\"\";}','yes'),
(1635436,'alg_wc_wl_responsiveness_max_width','768','yes'),
(1635437,'alg_wc_wl_responsiveness_max_height','400','yes'),
(1635438,'alg_wc_wl_responsiveness_evaluation_method','max_width_or_max_height','yes'),
(1635439,'alg_wc_wl_guest_user_data_type','cookie','yes'),
(1635444,'woocommerce_downloads_deliver_inline','','no'),
(1635445,'woocommerce_navigation_enabled','no','yes'),
(1635446,'woocommerce_feature_custom_order_tables_enabled','no','yes'),
(1635489,'_transient_woocommerce_shipping_task_zone_count_transient','1','yes'),
(1635495,'wpmudev_notices','a:3:{s:7:\"plugins\";a:1:{s:10:\"forminator\";i:1670544864;}s:5:\"queue\";a:1:{s:10:\"forminator\";a:3:{s:5:\"email\";i:1670544864;s:4:\"rate\";i:1671149664;s:8:\"giveaway\";i:1670717664;}}s:4:\"done\";a:0:{}}','no'),
(1635496,'woolentor_info_news_feed_data','a:2:{s:6:\"banner\";s:333:\"            <a href=\'https://woolentor.com/pricing/?utm_source=free-plugin&utm_medium=wl-dashboard-widget&utm_campaign=upgrade-premium\' target=\'_blank\'>\n                <img src=\"https://library.shoplentor.com/wp-content/uploads/2024/10/hasthemes-halloween-deals.png\" alt=\" Halloween deals on ShopLentor\" />\n            </a>\n        \";s:4:\"feed\";a:4:{i:0;a:4:{s:5:\"title\";s:67:\"Newly Released Popup Builder: Supercharge your sales and engagement\";s:11:\"description\";s:166:\"Skyrocket your email lists, get more leads, and increase sales using the ultimate conversion optimization toolkit globally. Unlock ShopLentorâ€™s Popup Builder today!\";s:3:\"url\";s:36:\"https://woolentor.com/popup-builder/\";s:6:\"status\";s:1:\"1\";}i:1;a:4:{s:5:\"title\";s:79:\"How to make the default WooCommerce Checkout look like Shopify using ShopLentor\";s:11:\"description\";s:171:\"Shopify Style Checkout Page is an effective way for you to create an easy and beautiful checkout process while also providing your customers with the best user experience.\";s:3:\"url\";s:72:\"https://woolentor.com/doc/how-to-make-woocommerce-checkout-like-shopify/\";s:6:\"status\";s:1:\"1\";}i:2;a:4:{s:5:\"title\";s:74:\"24 Powerful WooCommerce modules offered by ShopLentor (Formerly WooLentor)\";s:11:\"description\";s:240:\"This unique Elementor based WooCommerce page builder plugin offers plenty of WooCommerce modules that come to personalize the look and feel of your WooCommerce pages from scratch, while also making your WooCommerce store more user-friendly.\";s:3:\"url\";s:52:\"https://woolentor.com/woolentor-woocommerce-modules/\";s:6:\"status\";s:1:\"1\";}i:3;a:4:{s:5:\"title\";s:66:\"56 WooCommerce Gutenberg Blocks by ShopLentor (Formerly WooLentor)\";s:11:\"description\";s:107:\"Enhance your WooCommerce store with general-purpose Gutenberg blocks that can be used on any page you want.\";s:3:\"url\";s:39:\"https://woolentor.com/gutenberg-blocks/\";s:6:\"status\";s:1:\"1\";}}}','off'),
(1635513,'forminator_dismiss_feature_1200','1','yes'),
(1705251,'eael_setup_wizard','init','yes'),
(1705252,'eael_save_settings','a:64:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";i:1;s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";i:1;s:10:\"ninja-form\";i:1;s:9:\"formstack\";i:1;s:12:\"gravity-form\";i:1;s:12:\"caldera-form\";i:1;s:7:\"wpforms\";i:1;s:10:\"fluentform\";i:1;s:8:\"typeform\";i:1;s:24:\"betterdocs-category-grid\";i:1;s:23:\"betterdocs-category-box\";i:1;s:22:\"betterdocs-search-form\";i:1;s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:24:\"crowdfundly-organization\";i:1;s:24:\"crowdfundly-all-campaign\";i:1;s:27:\"crowdfundly-single-campaign\";i:1;s:12:\"woo-checkout\";i:1;s:8:\"woo-cart\";i:1;s:14:\"login-register\";i:1;s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";i:1;s:20:\"woo-product-carousel\";i:1;s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";i:1;s:18:\"interactive-circle\";i:1;s:14:\"better-payment\";i:1;s:11:\"nft-gallery\";i:1;s:16:\"business-reviews\";i:1;s:8:\"svg-draw\";i:1;s:9:\"promotion\";i:1;s:9:\"custom-js\";i:1;s:16:\"reading-progress\";i:1;s:16:\"table-of-content\";i:1;s:15:\"post-duplicator\";i:1;s:13:\"scroll-to-top\";i:1;s:12:\"wrapper-link\";i:1;}','yes'),
(1705255,'eael_version','5.9.9','yes'),
(1705312,'eael_editor_updated_at','1730150154','yes'),
(1705313,'eael_global_settings','a:1:{s:22:\"eael_ext_scroll_to_top\";a:0:{}}','yes'),
(1707082,'woocommerce_admin_created_default_shipping_zones','yes','yes'),
(1707083,'woocommerce_admin_reviewed_default_shipping_zones','yes','yes'),
(1708195,'woocommerce_customer_new_account_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:35:\"We look forward to seeing you soon.\";s:10:\"email_type\";s:4:\"html\";}','yes'),
(1740333,'um_last_version_upgrade','2.5.1','yes'),
(1740334,'um_first_activation_date','1671047442','yes'),
(1740335,'um_version','2.5.1','yes'),
(1740336,'__ultimatemember_sitekey','choiceresources.co.uk-SCAHV5UYNjxKkzrhCwHI','yes'),
(1740337,'um_is_installed','1','yes'),
(1740338,'um_core_forms','a:3:{s:8:\"register\";i:19814;s:5:\"login\";i:19815;s:7:\"profile\";i:19816;}','yes'),
(1740339,'um_core_directories','a:1:{s:7:\"members\";i:19817;}','yes'),
(1740340,'um_options','a:173:{s:30:\"restricted_access_post_metabox\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:31:\"disable_restriction_pre_queries\";i:0;s:19:\"uninstall_on_delete\";i:0;s:14:\"permalink_base\";s:10:\"user_login\";s:12:\"display_name\";s:9:\"full_name\";s:18:\"display_name_field\";s:0:\"\";s:15:\"author_redirect\";i:1;s:12:\"members_page\";i:1;s:13:\"use_gravatars\";i:0;s:37:\"use_um_gravatar_default_builtin_image\";s:7:\"default\";s:29:\"use_um_gravatar_default_image\";i:0;s:18:\"require_strongpass\";i:0;s:18:\"password_min_chars\";i:8;s:18:\"password_max_chars\";i:30;s:20:\"account_tab_password\";i:1;s:19:\"account_tab_privacy\";i:1;s:25:\"account_tab_notifications\";i:1;s:18:\"account_tab_delete\";i:1;s:19:\"delete_account_text\";s:151:\"Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below.\";s:36:\"delete_account_no_pass_required_text\";s:152:\"Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account, click on the button below.\";s:12:\"account_name\";i:1;s:20:\"account_name_disable\";i:0;s:20:\"account_name_require\";i:1;s:13:\"account_email\";i:1;s:24:\"account_general_password\";i:0;s:25:\"account_hide_in_directory\";i:1;s:33:\"account_hide_in_directory_default\";s:2:\"No\";s:17:\"photo_thumb_sizes\";a:3:{i:0;i:40;i:1;i:80;i:2;i:190;}s:17:\"cover_thumb_sizes\";a:2:{i:0;i:300;i:1;i:600;}s:10:\"accessible\";i:0;s:15:\"access_redirect\";s:0:\"\";s:19:\"access_exclude_uris\";a:0:{}s:20:\"home_page_accessible\";i:1;s:24:\"category_page_accessible\";i:1;s:29:\"restricted_post_title_replace\";i:1;s:28:\"restricted_access_post_title\";s:18:\"Restricted content\";s:25:\"restricted_access_message\";s:0:\"\";s:17:\"restricted_blocks\";i:0;s:13:\"enable_blocks\";i:0;s:24:\"restricted_block_message\";s:0:\"\";s:27:\"enable_reset_password_limit\";i:1;s:27:\"reset_password_limit_number\";i:3;s:14:\"blocked_emails\";s:0:\"\";s:13:\"blocked_words\";s:47:\"admin\r\nadministrator\r\nwebmaster\r\nsupport\r\nstaff\";s:24:\"allowed_choice_callbacks\";s:0:\"\";s:26:\"allow_url_redirect_confirm\";i:1;s:14:\"default_avatar\";s:0:\"\";s:13:\"default_cover\";s:0:\"\";s:28:\"disable_profile_photo_upload\";i:0;s:21:\"profile_show_metaicon\";i:0;s:12:\"profile_menu\";i:1;s:24:\"profile_menu_default_tab\";s:4:\"main\";s:18:\"profile_menu_icons\";i:1;s:13:\"form_asterisk\";i:0;s:13:\"profile_title\";s:28:\"{display_name} | {site_name}\";s:12:\"profile_desc\";s:83:\"{display_name} is on {site_name}. Join {site_name} to view {display_name}\'s profile\";s:11:\"admin_email\";s:21:\"ivankulongo@gmail.com\";s:9:\"mail_from\";s:16:\"Choice Resources\";s:14:\"mail_from_addr\";s:21:\"ivankulongo@gmail.com\";s:10:\"email_html\";i:1;s:25:\"image_orientation_by_exif\";i:0;s:17:\"image_compression\";i:60;s:15:\"image_max_width\";i:1000;s:15:\"cover_min_width\";i:1000;s:22:\"profile_photo_max_size\";i:999999999;s:20:\"cover_photo_max_size\";i:999999999;s:22:\"custom_roles_increment\";i:1;s:28:\"um_profile_object_cache_stop\";i:0;s:16:\"rest_api_version\";s:3:\"2.0\";s:26:\"member_directory_own_table\";i:0;s:21:\"profile_show_html_bio\";i:0;s:15:\"profile_noindex\";i:0;s:27:\"activation_link_expiry_time\";s:0:\"\";s:16:\"profile_tab_main\";i:1;s:24:\"profile_tab_main_privacy\";i:0;s:22:\"profile_tab_main_roles\";s:0:\"\";s:17:\"profile_tab_posts\";i:1;s:25:\"profile_tab_posts_privacy\";i:0;s:23:\"profile_tab_posts_roles\";s:0:\"\";s:20:\"profile_tab_comments\";i:1;s:28:\"profile_tab_comments_privacy\";i:0;s:26:\"profile_tab_comments_roles\";s:0:\"\";s:16:\"welcome_email_on\";b:1;s:17:\"welcome_email_sub\";s:23:\"Welcome to {site_name}!\";s:13:\"welcome_email\";s:365:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account is now active.<br /><br />To login please visit the following url:<br /><br />{login_url} <br /><br />Your account e-mail: {email} <br />Your account username: {username} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:18:\"checkmail_email_on\";s:1:\"1\";s:19:\"checkmail_email_sub\";s:28:\"Please activate your account\";s:15:\"checkmail_email\";s:304:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! To activate your account, please click the link below to confirm your email address:<br /><br />{account_activation_link} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks, <br />{site_name}\";s:16:\"pending_email_on\";b:0;s:17:\"pending_email_sub\";s:30:\"[{site_name}] New user account\";s:13:\"pending_email\";s:309:\"Hi {display_name}, <br /><br />Thank you for signing up with {site_name}! Your account is currently being reviewed by a member of our team.<br /><br />Please allow us some time to process your request.<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"approved_email_on\";b:0;s:18:\"approved_email_sub\";s:41:\"Your account at {site_name} is now active\";s:14:\"approved_email\";s:438:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account has been approved and is now active.<br /><br />To login please visit the following url:<br /><br />{login_url}<br /><br />Your account e-mail: {email}<br />Your account username: {username}<br />Set your account password: {password_reset_link}<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"rejected_email_on\";b:0;s:18:\"rejected_email_sub\";s:30:\"Your account has been rejected\";s:14:\"rejected_email\";s:288:\"Hi {display_name},<br /><br />Thank you for applying for membership to {site_name}! We have reviewed your information and unfortunately we are unable to accept you as a member at this moment.<br /><br />Please feel free to apply again at a future date.<br /><br />Thanks,<br />{site_name}\";s:17:\"inactive_email_on\";b:1;s:18:\"inactive_email_sub\";s:33:\"Your account has been deactivated\";s:14:\"inactive_email\";s:250:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deactivated.<br /><br />If you would like your account to be reactivated please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"deletion_email_on\";b:1;s:18:\"deletion_email_sub\";s:29:\"Your account has been deleted\";s:14:\"deletion_email\";s:355:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deleted. All of your personal information has been permanently deleted and you will no longer be able to login to {site_name}.<br /><br />If your account has been deleted by accident please contact us at {admin_email} <br />Thanks,<br />{site_name}\";s:16:\"resetpw_email_on\";b:1;s:17:\"resetpw_email_sub\";s:19:\"Reset your password\";s:13:\"resetpw_email\";s:303:\"Hi {display_name},<br /><br />We received a request to reset the password for your account. If you made this request, click the link below to change your password:<br /><br />{password_reset_link}<br /><br />If you didn\'t make this request, you can ignore this email <br /><br />Thanks,<br />{site_name}\";s:18:\"changedpw_email_on\";b:1;s:19:\"changedpw_email_sub\";s:42:\"Your {site_name} password has been changed\";s:15:\"changedpw_email\";s:307:\"Hi {display_name},<br /><br />You recently changed the password associated with your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:23:\"changedaccount_email_on\";b:1;s:24:\"changedaccount_email_sub\";s:39:\"Your account at {site_name} was updated\";s:20:\"changedaccount_email\";s:278:\"Hi {display_name},<br /><br />You recently updated your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:24:\"notification_new_user_on\";b:1;s:25:\"notification_new_user_sub\";s:30:\"[{site_name}] New user account\";s:21:\"notification_new_user\";s:211:\"{display_name} has just created an account on {site_name}. To view their profile click here:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:22:\"notification_review_on\";b:0;s:23:\"notification_review_sub\";s:38:\"[{site_name}] New user awaiting review\";s:19:\"notification_review\";s:277:\"{display_name} has just applied for membership to {site_name} and is waiting to be reviewed.<br /><br />To review this member please click the following link:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:24:\"notification_deletion_on\";b:0;s:25:\"notification_deletion_sub\";s:29:\"[{site_name}] Account deleted\";s:21:\"notification_deletion\";s:58:\"{display_name} has just deleted their {site_name} account.\";s:9:\"core_user\";i:19821;s:10:\"core_login\";i:19822;s:13:\"core_register\";i:19823;s:12:\"core_members\";i:19824;s:11:\"core_logout\";i:19825;s:12:\"core_account\";i:19826;s:19:\"core_password-reset\";i:19827;s:17:\"profile_show_name\";i:1;s:25:\"profile_show_social_links\";i:0;s:16:\"profile_show_bio\";i:1;s:20:\"profile_bio_maxchars\";i:180;s:19:\"profile_header_menu\";s:2:\"bc\";s:18:\"profile_empty_text\";i:1;s:22:\"profile_empty_text_emo\";i:1;s:12:\"profile_role\";a:0:{}s:16:\"profile_template\";s:7:\"profile\";s:17:\"profile_max_width\";s:6:\"1000px\";s:22:\"profile_area_max_width\";s:5:\"600px\";s:13:\"profile_align\";s:6:\"center\";s:13:\"profile_icons\";s:5:\"label\";s:28:\"profile_disable_photo_upload\";i:0;s:17:\"profile_photosize\";s:3:\"190\";s:21:\"profile_cover_enabled\";i:1;s:17:\"profile_coversize\";s:8:\"original\";s:19:\"profile_cover_ratio\";s:5:\"2.7:1\";s:19:\"profile_photocorner\";s:1:\"1\";s:17:\"profile_header_bg\";s:0:\"\";s:24:\"profile_primary_btn_word\";s:14:\"Update Profile\";s:21:\"profile_secondary_btn\";s:1:\"1\";s:26:\"profile_secondary_btn_word\";s:6:\"Cancel\";s:13:\"register_role\";s:1:\"0\";s:17:\"register_template\";s:8:\"register\";s:18:\"register_max_width\";s:5:\"450px\";s:14:\"register_align\";s:6:\"center\";s:14:\"register_icons\";s:5:\"label\";s:25:\"register_primary_btn_word\";s:8:\"Register\";s:22:\"register_secondary_btn\";i:1;s:27:\"register_secondary_btn_word\";s:5:\"Login\";s:26:\"register_secondary_btn_url\";s:0:\"\";s:14:\"login_template\";s:5:\"login\";s:15:\"login_max_width\";s:5:\"450px\";s:11:\"login_align\";s:6:\"center\";s:11:\"login_icons\";s:5:\"label\";s:22:\"login_primary_btn_word\";s:5:\"Login\";s:22:\"login_forgot_pass_link\";i:1;s:21:\"login_show_rememberme\";i:1;s:19:\"login_secondary_btn\";i:1;s:24:\"login_secondary_btn_word\";s:8:\"Register\";s:23:\"login_secondary_btn_url\";s:0:\"\";s:18:\"directory_template\";s:7:\"members\";s:16:\"directory_header\";s:21:\"{total_users} Members\";s:23:\"directory_header_single\";s:20:\"{total_users} Member\";}','yes'),
(1740341,'um_role_subscriber_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
(1740342,'um_role_author_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
(1740343,'um_role_contributor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
(1740344,'um_role_editor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
(1740345,'um_role_administrator_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
(1740348,'_transient_um_count_users_approved','24','yes'),
(1740349,'widget_um_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1740352,'_transient_um_count_users_pending_dot','0','yes'),
(1740440,'um_cache_fonticons','a:1283:{i:0;s:13:\"um-icon-alert\";i:1;s:21:\"um-icon-alert-circled\";i:2;s:19:\"um-icon-android-add\";i:3;s:26:\"um-icon-android-add-circle\";i:4;s:27:\"um-icon-android-alarm-clock\";i:5;s:21:\"um-icon-android-alert\";i:6;s:20:\"um-icon-android-apps\";i:7;s:23:\"um-icon-android-archive\";i:8;s:26:\"um-icon-android-arrow-back\";i:9;s:26:\"um-icon-android-arrow-down\";i:10;s:30:\"um-icon-android-arrow-dropdown\";i:11;s:37:\"um-icon-android-arrow-dropdown-circle\";i:12;s:30:\"um-icon-android-arrow-dropleft\";i:13;s:37:\"um-icon-android-arrow-dropleft-circle\";i:14;s:31:\"um-icon-android-arrow-dropright\";i:15;s:38:\"um-icon-android-arrow-dropright-circle\";i:16;s:28:\"um-icon-android-arrow-dropup\";i:17;s:35:\"um-icon-android-arrow-dropup-circle\";i:18;s:29:\"um-icon-android-arrow-forward\";i:19;s:24:\"um-icon-android-arrow-up\";i:20;s:22:\"um-icon-android-attach\";i:21;s:19:\"um-icon-android-bar\";i:22;s:23:\"um-icon-android-bicycle\";i:23;s:20:\"um-icon-android-boat\";i:24;s:24:\"um-icon-android-bookmark\";i:25;s:20:\"um-icon-android-bulb\";i:26;s:19:\"um-icon-android-bus\";i:27;s:24:\"um-icon-android-calendar\";i:28;s:20:\"um-icon-android-call\";i:29;s:22:\"um-icon-android-camera\";i:30;s:22:\"um-icon-android-cancel\";i:31;s:19:\"um-icon-android-car\";i:32;s:20:\"um-icon-android-cart\";i:33;s:20:\"um-icon-android-chat\";i:34;s:24:\"um-icon-android-checkbox\";i:35;s:30:\"um-icon-android-checkbox-blank\";i:36;s:32:\"um-icon-android-checkbox-outline\";i:37;s:38:\"um-icon-android-checkbox-outline-blank\";i:38;s:32:\"um-icon-android-checkmark-circle\";i:39;s:25:\"um-icon-android-clipboard\";i:40;s:21:\"um-icon-android-close\";i:41;s:21:\"um-icon-android-cloud\";i:42;s:28:\"um-icon-android-cloud-circle\";i:43;s:26:\"um-icon-android-cloud-done\";i:44;s:29:\"um-icon-android-cloud-outline\";i:45;s:29:\"um-icon-android-color-palette\";i:46;s:23:\"um-icon-android-compass\";i:47;s:23:\"um-icon-android-contact\";i:48;s:24:\"um-icon-android-contacts\";i:49;s:24:\"um-icon-android-contract\";i:50;s:22:\"um-icon-android-create\";i:51;s:22:\"um-icon-android-delete\";i:52;s:23:\"um-icon-android-desktop\";i:53;s:24:\"um-icon-android-document\";i:54;s:20:\"um-icon-android-done\";i:55;s:24:\"um-icon-android-done-all\";i:56;s:24:\"um-icon-android-download\";i:57;s:22:\"um-icon-android-drafts\";i:58;s:20:\"um-icon-android-exit\";i:59;s:22:\"um-icon-android-expand\";i:60;s:24:\"um-icon-android-favorite\";i:61;s:32:\"um-icon-android-favorite-outline\";i:62;s:20:\"um-icon-android-film\";i:63;s:22:\"um-icon-android-folder\";i:64;s:27:\"um-icon-android-folder-open\";i:65;s:22:\"um-icon-android-funnel\";i:66;s:21:\"um-icon-android-globe\";i:67;s:20:\"um-icon-android-hand\";i:68;s:23:\"um-icon-android-hangout\";i:69;s:21:\"um-icon-android-happy\";i:70;s:20:\"um-icon-android-home\";i:71;s:21:\"um-icon-android-image\";i:72;s:22:\"um-icon-android-laptop\";i:73;s:20:\"um-icon-android-list\";i:74;s:22:\"um-icon-android-locate\";i:75;s:20:\"um-icon-android-lock\";i:76;s:20:\"um-icon-android-mail\";i:77;s:19:\"um-icon-android-map\";i:78;s:20:\"um-icon-android-menu\";i:79;s:26:\"um-icon-android-microphone\";i:80;s:30:\"um-icon-android-microphone-off\";i:81;s:31:\"um-icon-android-more-horizontal\";i:82;s:29:\"um-icon-android-more-vertical\";i:83;s:24:\"um-icon-android-navigate\";i:84;s:29:\"um-icon-android-notifications\";i:85;s:34:\"um-icon-android-notifications-none\";i:86;s:33:\"um-icon-android-notifications-off\";i:87;s:20:\"um-icon-android-open\";i:88;s:23:\"um-icon-android-options\";i:89;s:22:\"um-icon-android-people\";i:90;s:22:\"um-icon-android-person\";i:91;s:26:\"um-icon-android-person-add\";i:92;s:31:\"um-icon-android-phone-landscape\";i:93;s:30:\"um-icon-android-phone-portrait\";i:94;s:19:\"um-icon-android-pin\";i:95;s:21:\"um-icon-android-plane\";i:96;s:25:\"um-icon-android-playstore\";i:97;s:21:\"um-icon-android-print\";i:98;s:32:\"um-icon-android-radio-button-off\";i:99;s:31:\"um-icon-android-radio-button-on\";i:100;s:23:\"um-icon-android-refresh\";i:101;s:22:\"um-icon-android-remove\";i:102;s:29:\"um-icon-android-remove-circle\";i:103;s:26:\"um-icon-android-restaurant\";i:104;s:19:\"um-icon-android-sad\";i:105;s:22:\"um-icon-android-search\";i:106;s:20:\"um-icon-android-send\";i:107;s:24:\"um-icon-android-settings\";i:108;s:21:\"um-icon-android-share\";i:109;s:25:\"um-icon-android-share-alt\";i:110;s:20:\"um-icon-android-star\";i:111;s:25:\"um-icon-android-star-half\";i:112;s:28:\"um-icon-android-star-outline\";i:113;s:25:\"um-icon-android-stopwatch\";i:114;s:22:\"um-icon-android-subway\";i:115;s:21:\"um-icon-android-sunny\";i:116;s:20:\"um-icon-android-sync\";i:117;s:23:\"um-icon-android-textsms\";i:118;s:20:\"um-icon-android-time\";i:119;s:21:\"um-icon-android-train\";i:120;s:22:\"um-icon-android-unlock\";i:121;s:22:\"um-icon-android-upload\";i:122;s:27:\"um-icon-android-volume-down\";i:123;s:27:\"um-icon-android-volume-mute\";i:124;s:26:\"um-icon-android-volume-off\";i:125;s:25:\"um-icon-android-volume-up\";i:126;s:20:\"um-icon-android-walk\";i:127;s:23:\"um-icon-android-warning\";i:128;s:21:\"um-icon-android-watch\";i:129;s:20:\"um-icon-android-wifi\";i:130;s:16:\"um-icon-aperture\";i:131;s:15:\"um-icon-archive\";i:132;s:20:\"um-icon-arrow-down-a\";i:133;s:20:\"um-icon-arrow-down-b\";i:134;s:20:\"um-icon-arrow-down-c\";i:135;s:20:\"um-icon-arrow-expand\";i:136;s:29:\"um-icon-arrow-graph-down-left\";i:137;s:30:\"um-icon-arrow-graph-down-right\";i:138;s:27:\"um-icon-arrow-graph-up-left\";i:139;s:28:\"um-icon-arrow-graph-up-right\";i:140;s:20:\"um-icon-arrow-left-a\";i:141;s:20:\"um-icon-arrow-left-b\";i:142;s:20:\"um-icon-arrow-left-c\";i:143;s:18:\"um-icon-arrow-move\";i:144;s:20:\"um-icon-arrow-resize\";i:145;s:25:\"um-icon-arrow-return-left\";i:146;s:26:\"um-icon-arrow-return-right\";i:147;s:21:\"um-icon-arrow-right-a\";i:148;s:21:\"um-icon-arrow-right-b\";i:149;s:21:\"um-icon-arrow-right-c\";i:150;s:20:\"um-icon-arrow-shrink\";i:151;s:18:\"um-icon-arrow-swap\";i:152;s:18:\"um-icon-arrow-up-a\";i:153;s:18:\"um-icon-arrow-up-b\";i:154;s:18:\"um-icon-arrow-up-c\";i:155;s:16:\"um-icon-asterisk\";i:156;s:10:\"um-icon-at\";i:157;s:17:\"um-icon-backspace\";i:158;s:25:\"um-icon-backspace-outline\";i:159;s:11:\"um-icon-bag\";i:160;s:24:\"um-icon-battery-charging\";i:161;s:21:\"um-icon-battery-empty\";i:162;s:20:\"um-icon-battery-full\";i:163;s:20:\"um-icon-battery-half\";i:164;s:19:\"um-icon-battery-low\";i:165;s:14:\"um-icon-beaker\";i:166;s:12:\"um-icon-beer\";i:167;s:17:\"um-icon-bluetooth\";i:168;s:15:\"um-icon-bonfire\";i:169;s:16:\"um-icon-bookmark\";i:170;s:14:\"um-icon-bowtie\";i:171;s:17:\"um-icon-briefcase\";i:172;s:11:\"um-icon-bug\";i:173;s:18:\"um-icon-calculator\";i:174;s:16:\"um-icon-calendar\";i:175;s:14:\"um-icon-camera\";i:176;s:12:\"um-icon-card\";i:177;s:12:\"um-icon-cash\";i:178;s:15:\"um-icon-chatbox\";i:179;s:23:\"um-icon-chatbox-working\";i:180;s:17:\"um-icon-chatboxes\";i:181;s:18:\"um-icon-chatbubble\";i:182;s:26:\"um-icon-chatbubble-working\";i:183;s:19:\"um-icon-chatbubbles\";i:184;s:17:\"um-icon-checkmark\";i:185;s:25:\"um-icon-checkmark-circled\";i:186;s:23:\"um-icon-checkmark-round\";i:187;s:20:\"um-icon-chevron-down\";i:188;s:20:\"um-icon-chevron-left\";i:189;s:21:\"um-icon-chevron-right\";i:190;s:18:\"um-icon-chevron-up\";i:191;s:17:\"um-icon-clipboard\";i:192;s:13:\"um-icon-clock\";i:193;s:13:\"um-icon-close\";i:194;s:21:\"um-icon-close-circled\";i:195;s:19:\"um-icon-close-round\";i:196;s:25:\"um-icon-closed-captioning\";i:197;s:13:\"um-icon-cloud\";i:198;s:12:\"um-icon-code\";i:199;s:21:\"um-icon-code-download\";i:200;s:20:\"um-icon-code-working\";i:201;s:14:\"um-icon-coffee\";i:202;s:15:\"um-icon-compass\";i:203;s:15:\"um-icon-compose\";i:204;s:23:\"um-icon-connection-bars\";i:205;s:16:\"um-icon-contrast\";i:206;s:12:\"um-icon-crop\";i:207;s:12:\"um-icon-cube\";i:208;s:12:\"um-icon-disc\";i:209;s:16:\"um-icon-document\";i:210;s:21:\"um-icon-document-text\";i:211;s:12:\"um-icon-drag\";i:212;s:13:\"um-icon-earth\";i:213;s:13:\"um-icon-easel\";i:214;s:12:\"um-icon-edit\";i:215;s:11:\"um-icon-egg\";i:216;s:13:\"um-icon-eject\";i:217;s:13:\"um-icon-email\";i:218;s:20:\"um-icon-email-unread\";i:219;s:24:\"um-icon-erlenmeyer-flask\";i:220;s:32:\"um-icon-erlenmeyer-flask-bubbles\";i:221;s:11:\"um-icon-eye\";i:222;s:20:\"um-icon-eye-disabled\";i:223;s:14:\"um-icon-female\";i:224;s:14:\"um-icon-filing\";i:225;s:19:\"um-icon-film-marker\";i:226;s:16:\"um-icon-fireball\";i:227;s:12:\"um-icon-flag\";i:228;s:13:\"um-icon-flame\";i:229;s:13:\"um-icon-flash\";i:230;s:17:\"um-icon-flash-off\";i:231;s:14:\"um-icon-folder\";i:232;s:12:\"um-icon-fork\";i:233;s:17:\"um-icon-fork-repo\";i:234;s:15:\"um-icon-forward\";i:235;s:14:\"um-icon-funnel\";i:236;s:14:\"um-icon-gear-a\";i:237;s:14:\"um-icon-gear-b\";i:238;s:12:\"um-icon-grid\";i:239;s:14:\"um-icon-hammer\";i:240;s:13:\"um-icon-happy\";i:241;s:21:\"um-icon-happy-outline\";i:242;s:17:\"um-icon-headphone\";i:243;s:13:\"um-icon-heart\";i:244;s:20:\"um-icon-heart-broken\";i:245;s:12:\"um-icon-help\";i:246;s:17:\"um-icon-help-buoy\";i:247;s:20:\"um-icon-help-circled\";i:248;s:12:\"um-icon-home\";i:249;s:16:\"um-icon-icecream\";i:250;s:13:\"um-icon-image\";i:251;s:14:\"um-icon-images\";i:252;s:19:\"um-icon-information\";i:253;s:27:\"um-icon-information-circled\";i:254;s:13:\"um-icon-ionic\";i:255;s:17:\"um-icon-ios-alarm\";i:256;s:25:\"um-icon-ios-alarm-outline\";i:257;s:18:\"um-icon-ios-albums\";i:258;s:26:\"um-icon-ios-albums-outline\";i:259;s:28:\"um-icon-ios-americanfootball\";i:260;s:36:\"um-icon-ios-americanfootball-outline\";i:261;s:21:\"um-icon-ios-analytics\";i:262;s:29:\"um-icon-ios-analytics-outline\";i:263;s:22:\"um-icon-ios-arrow-back\";i:264;s:22:\"um-icon-ios-arrow-down\";i:265;s:25:\"um-icon-ios-arrow-forward\";i:266;s:22:\"um-icon-ios-arrow-left\";i:267;s:23:\"um-icon-ios-arrow-right\";i:268;s:27:\"um-icon-ios-arrow-thin-down\";i:269;s:27:\"um-icon-ios-arrow-thin-left\";i:270;s:28:\"um-icon-ios-arrow-thin-right\";i:271;s:25:\"um-icon-ios-arrow-thin-up\";i:272;s:20:\"um-icon-ios-arrow-up\";i:273;s:14:\"um-icon-ios-at\";i:274;s:22:\"um-icon-ios-at-outline\";i:275;s:19:\"um-icon-ios-barcode\";i:276;s:27:\"um-icon-ios-barcode-outline\";i:277;s:20:\"um-icon-ios-baseball\";i:278;s:28:\"um-icon-ios-baseball-outline\";i:279;s:22:\"um-icon-ios-basketball\";i:280;s:30:\"um-icon-ios-basketball-outline\";i:281;s:16:\"um-icon-ios-bell\";i:282;s:24:\"um-icon-ios-bell-outline\";i:283;s:16:\"um-icon-ios-body\";i:284;s:24:\"um-icon-ios-body-outline\";i:285;s:16:\"um-icon-ios-bolt\";i:286;s:24:\"um-icon-ios-bolt-outline\";i:287;s:16:\"um-icon-ios-book\";i:288;s:24:\"um-icon-ios-book-outline\";i:289;s:21:\"um-icon-ios-bookmarks\";i:290;s:29:\"um-icon-ios-bookmarks-outline\";i:291;s:15:\"um-icon-ios-box\";i:292;s:23:\"um-icon-ios-box-outline\";i:293;s:21:\"um-icon-ios-briefcase\";i:294;s:29:\"um-icon-ios-briefcase-outline\";i:295;s:20:\"um-icon-ios-browsers\";i:296;s:28:\"um-icon-ios-browsers-outline\";i:297;s:22:\"um-icon-ios-calculator\";i:298;s:30:\"um-icon-ios-calculator-outline\";i:299;s:20:\"um-icon-ios-calendar\";i:300;s:28:\"um-icon-ios-calendar-outline\";i:301;s:18:\"um-icon-ios-camera\";i:302;s:26:\"um-icon-ios-camera-outline\";i:303;s:16:\"um-icon-ios-cart\";i:304;s:24:\"um-icon-ios-cart-outline\";i:305;s:21:\"um-icon-ios-chatboxes\";i:306;s:29:\"um-icon-ios-chatboxes-outline\";i:307;s:22:\"um-icon-ios-chatbubble\";i:308;s:30:\"um-icon-ios-chatbubble-outline\";i:309;s:21:\"um-icon-ios-checkmark\";i:310;s:27:\"um-icon-ios-checkmark-empty\";i:311;s:29:\"um-icon-ios-checkmark-outline\";i:312;s:25:\"um-icon-ios-circle-filled\";i:313;s:26:\"um-icon-ios-circle-outline\";i:314;s:17:\"um-icon-ios-clock\";i:315;s:25:\"um-icon-ios-clock-outline\";i:316;s:17:\"um-icon-ios-close\";i:317;s:23:\"um-icon-ios-close-empty\";i:318;s:25:\"um-icon-ios-close-outline\";i:319;s:17:\"um-icon-ios-cloud\";i:320;s:26:\"um-icon-ios-cloud-download\";i:321;s:34:\"um-icon-ios-cloud-download-outline\";i:322;s:25:\"um-icon-ios-cloud-outline\";i:323;s:24:\"um-icon-ios-cloud-upload\";i:324;s:32:\"um-icon-ios-cloud-upload-outline\";i:325;s:18:\"um-icon-ios-cloudy\";i:326;s:24:\"um-icon-ios-cloudy-night\";i:327;s:32:\"um-icon-ios-cloudy-night-outline\";i:328;s:26:\"um-icon-ios-cloudy-outline\";i:329;s:15:\"um-icon-ios-cog\";i:330;s:23:\"um-icon-ios-cog-outline\";i:331;s:24:\"um-icon-ios-color-filter\";i:332;s:32:\"um-icon-ios-color-filter-outline\";i:333;s:22:\"um-icon-ios-color-wand\";i:334;s:30:\"um-icon-ios-color-wand-outline\";i:335;s:19:\"um-icon-ios-compose\";i:336;s:27:\"um-icon-ios-compose-outline\";i:337;s:19:\"um-icon-ios-contact\";i:338;s:27:\"um-icon-ios-contact-outline\";i:339;s:16:\"um-icon-ios-copy\";i:340;s:24:\"um-icon-ios-copy-outline\";i:341;s:16:\"um-icon-ios-crop\";i:342;s:23:\"um-icon-ios-crop-strong\";i:343;s:20:\"um-icon-ios-download\";i:344;s:28:\"um-icon-ios-download-outline\";i:345;s:16:\"um-icon-ios-drag\";i:346;s:17:\"um-icon-ios-email\";i:347;s:25:\"um-icon-ios-email-outline\";i:348;s:15:\"um-icon-ios-eye\";i:349;s:23:\"um-icon-ios-eye-outline\";i:350;s:23:\"um-icon-ios-fastforward\";i:351;s:31:\"um-icon-ios-fastforward-outline\";i:352;s:18:\"um-icon-ios-filing\";i:353;s:26:\"um-icon-ios-filing-outline\";i:354;s:16:\"um-icon-ios-film\";i:355;s:24:\"um-icon-ios-film-outline\";i:356;s:16:\"um-icon-ios-flag\";i:357;s:24:\"um-icon-ios-flag-outline\";i:358;s:17:\"um-icon-ios-flame\";i:359;s:25:\"um-icon-ios-flame-outline\";i:360;s:17:\"um-icon-ios-flask\";i:361;s:25:\"um-icon-ios-flask-outline\";i:362;s:18:\"um-icon-ios-flower\";i:363;s:26:\"um-icon-ios-flower-outline\";i:364;s:18:\"um-icon-ios-folder\";i:365;s:26:\"um-icon-ios-folder-outline\";i:366;s:20:\"um-icon-ios-football\";i:367;s:28:\"um-icon-ios-football-outline\";i:368;s:29:\"um-icon-ios-game-controller-a\";i:369;s:37:\"um-icon-ios-game-controller-a-outline\";i:370;s:29:\"um-icon-ios-game-controller-b\";i:371;s:37:\"um-icon-ios-game-controller-b-outline\";i:372;s:16:\"um-icon-ios-gear\";i:373;s:24:\"um-icon-ios-gear-outline\";i:374;s:19:\"um-icon-ios-glasses\";i:375;s:27:\"um-icon-ios-glasses-outline\";i:376;s:21:\"um-icon-ios-grid-view\";i:377;s:29:\"um-icon-ios-grid-view-outline\";i:378;s:17:\"um-icon-ios-heart\";i:379;s:25:\"um-icon-ios-heart-outline\";i:380;s:16:\"um-icon-ios-help\";i:381;s:22:\"um-icon-ios-help-empty\";i:382;s:24:\"um-icon-ios-help-outline\";i:383;s:16:\"um-icon-ios-home\";i:384;s:24:\"um-icon-ios-home-outline\";i:385;s:20:\"um-icon-ios-infinite\";i:386;s:28:\"um-icon-ios-infinite-outline\";i:387;s:23:\"um-icon-ios-information\";i:388;s:29:\"um-icon-ios-information-empty\";i:389;s:31:\"um-icon-ios-information-outline\";i:390;s:25:\"um-icon-ios-ionic-outline\";i:391;s:18:\"um-icon-ios-keypad\";i:392;s:26:\"um-icon-ios-keypad-outline\";i:393;s:21:\"um-icon-ios-lightbulb\";i:394;s:29:\"um-icon-ios-lightbulb-outline\";i:395;s:16:\"um-icon-ios-list\";i:396;s:24:\"um-icon-ios-list-outline\";i:397;s:20:\"um-icon-ios-location\";i:398;s:28:\"um-icon-ios-location-outline\";i:399;s:18:\"um-icon-ios-locked\";i:400;s:26:\"um-icon-ios-locked-outline\";i:401;s:16:\"um-icon-ios-loop\";i:402;s:23:\"um-icon-ios-loop-strong\";i:403;s:19:\"um-icon-ios-medical\";i:404;s:27:\"um-icon-ios-medical-outline\";i:405;s:18:\"um-icon-ios-medkit\";i:406;s:26:\"um-icon-ios-medkit-outline\";i:407;s:15:\"um-icon-ios-mic\";i:408;s:19:\"um-icon-ios-mic-off\";i:409;s:23:\"um-icon-ios-mic-outline\";i:410;s:17:\"um-icon-ios-minus\";i:411;s:23:\"um-icon-ios-minus-empty\";i:412;s:25:\"um-icon-ios-minus-outline\";i:413;s:19:\"um-icon-ios-monitor\";i:414;s:27:\"um-icon-ios-monitor-outline\";i:415;s:16:\"um-icon-ios-moon\";i:416;s:24:\"um-icon-ios-moon-outline\";i:417;s:16:\"um-icon-ios-more\";i:418;s:24:\"um-icon-ios-more-outline\";i:419;s:24:\"um-icon-ios-musical-note\";i:420;s:25:\"um-icon-ios-musical-notes\";i:421;s:20:\"um-icon-ios-navigate\";i:422;s:28:\"um-icon-ios-navigate-outline\";i:423;s:21:\"um-icon-ios-nutrition\";i:424;s:29:\"um-icon-ios-nutrition-outline\";i:425;s:17:\"um-icon-ios-paper\";i:426;s:25:\"um-icon-ios-paper-outline\";i:427;s:22:\"um-icon-ios-paperplane\";i:428;s:30:\"um-icon-ios-paperplane-outline\";i:429;s:23:\"um-icon-ios-partlysunny\";i:430;s:31:\"um-icon-ios-partlysunny-outline\";i:431;s:17:\"um-icon-ios-pause\";i:432;s:25:\"um-icon-ios-pause-outline\";i:433;s:15:\"um-icon-ios-paw\";i:434;s:23:\"um-icon-ios-paw-outline\";i:435;s:18:\"um-icon-ios-people\";i:436;s:26:\"um-icon-ios-people-outline\";i:437;s:18:\"um-icon-ios-person\";i:438;s:26:\"um-icon-ios-person-outline\";i:439;s:21:\"um-icon-ios-personadd\";i:440;s:29:\"um-icon-ios-personadd-outline\";i:441;s:18:\"um-icon-ios-photos\";i:442;s:26:\"um-icon-ios-photos-outline\";i:443;s:15:\"um-icon-ios-pie\";i:444;s:23:\"um-icon-ios-pie-outline\";i:445;s:16:\"um-icon-ios-pint\";i:446;s:24:\"um-icon-ios-pint-outline\";i:447;s:16:\"um-icon-ios-play\";i:448;s:24:\"um-icon-ios-play-outline\";i:449;s:16:\"um-icon-ios-plus\";i:450;s:22:\"um-icon-ios-plus-empty\";i:451;s:24:\"um-icon-ios-plus-outline\";i:452;s:20:\"um-icon-ios-pricetag\";i:453;s:28:\"um-icon-ios-pricetag-outline\";i:454;s:21:\"um-icon-ios-pricetags\";i:455;s:29:\"um-icon-ios-pricetags-outline\";i:456;s:19:\"um-icon-ios-printer\";i:457;s:27:\"um-icon-ios-printer-outline\";i:458;s:17:\"um-icon-ios-pulse\";i:459;s:24:\"um-icon-ios-pulse-strong\";i:460;s:17:\"um-icon-ios-rainy\";i:461;s:25:\"um-icon-ios-rainy-outline\";i:462;s:21:\"um-icon-ios-recording\";i:463;s:29:\"um-icon-ios-recording-outline\";i:464;s:16:\"um-icon-ios-redo\";i:465;s:24:\"um-icon-ios-redo-outline\";i:466;s:19:\"um-icon-ios-refresh\";i:467;s:25:\"um-icon-ios-refresh-empty\";i:468;s:27:\"um-icon-ios-refresh-outline\";i:469;s:18:\"um-icon-ios-reload\";i:470;s:26:\"um-icon-ios-reverse-camera\";i:471;s:34:\"um-icon-ios-reverse-camera-outline\";i:472;s:18:\"um-icon-ios-rewind\";i:473;s:26:\"um-icon-ios-rewind-outline\";i:474;s:16:\"um-icon-ios-rose\";i:475;s:24:\"um-icon-ios-rose-outline\";i:476;s:18:\"um-icon-ios-search\";i:477;s:25:\"um-icon-ios-search-strong\";i:478;s:20:\"um-icon-ios-settings\";i:479;s:27:\"um-icon-ios-settings-strong\";i:480;s:19:\"um-icon-ios-shuffle\";i:481;s:26:\"um-icon-ios-shuffle-strong\";i:482;s:24:\"um-icon-ios-skipbackward\";i:483;s:32:\"um-icon-ios-skipbackward-outline\";i:484;s:23:\"um-icon-ios-skipforward\";i:485;s:31:\"um-icon-ios-skipforward-outline\";i:486;s:17:\"um-icon-ios-snowy\";i:487;s:23:\"um-icon-ios-speedometer\";i:488;s:31:\"um-icon-ios-speedometer-outline\";i:489;s:16:\"um-icon-ios-star\";i:490;s:21:\"um-icon-ios-star-half\";i:491;s:24:\"um-icon-ios-star-outline\";i:492;s:21:\"um-icon-ios-stopwatch\";i:493;s:29:\"um-icon-ios-stopwatch-outline\";i:494;s:17:\"um-icon-ios-sunny\";i:495;s:25:\"um-icon-ios-sunny-outline\";i:496;s:21:\"um-icon-ios-telephone\";i:497;s:29:\"um-icon-ios-telephone-outline\";i:498;s:22:\"um-icon-ios-tennisball\";i:499;s:30:\"um-icon-ios-tennisball-outline\";i:500;s:24:\"um-icon-ios-thunderstorm\";i:501;s:32:\"um-icon-ios-thunderstorm-outline\";i:502;s:16:\"um-icon-ios-time\";i:503;s:24:\"um-icon-ios-time-outline\";i:504;s:17:\"um-icon-ios-timer\";i:505;s:25:\"um-icon-ios-timer-outline\";i:506;s:18:\"um-icon-ios-toggle\";i:507;s:26:\"um-icon-ios-toggle-outline\";i:508;s:17:\"um-icon-ios-trash\";i:509;s:25:\"um-icon-ios-trash-outline\";i:510;s:16:\"um-icon-ios-undo\";i:511;s:24:\"um-icon-ios-undo-outline\";i:512;s:20:\"um-icon-ios-unlocked\";i:513;s:28:\"um-icon-ios-unlocked-outline\";i:514;s:18:\"um-icon-ios-upload\";i:515;s:26:\"um-icon-ios-upload-outline\";i:516;s:20:\"um-icon-ios-videocam\";i:517;s:28:\"um-icon-ios-videocam-outline\";i:518;s:23:\"um-icon-ios-volume-high\";i:519;s:22:\"um-icon-ios-volume-low\";i:520;s:21:\"um-icon-ios-wineglass\";i:521;s:29:\"um-icon-ios-wineglass-outline\";i:522;s:17:\"um-icon-ios-world\";i:523;s:25:\"um-icon-ios-world-outline\";i:524;s:12:\"um-icon-ipad\";i:525;s:14:\"um-icon-iphone\";i:526;s:12:\"um-icon-ipod\";i:527;s:11:\"um-icon-jet\";i:528;s:11:\"um-icon-key\";i:529;s:13:\"um-icon-knife\";i:530;s:14:\"um-icon-laptop\";i:531;s:12:\"um-icon-leaf\";i:532;s:14:\"um-icon-levels\";i:533;s:17:\"um-icon-lightbulb\";i:534;s:12:\"um-icon-link\";i:535;s:14:\"um-icon-load-a\";i:536;s:14:\"um-icon-load-b\";i:537;s:14:\"um-icon-load-c\";i:538;s:14:\"um-icon-load-d\";i:539;s:16:\"um-icon-location\";i:540;s:24:\"um-icon-lock-combination\";i:541;s:14:\"um-icon-locked\";i:542;s:14:\"um-icon-log-in\";i:543;s:15:\"um-icon-log-out\";i:544;s:12:\"um-icon-loop\";i:545;s:14:\"um-icon-magnet\";i:546;s:12:\"um-icon-male\";i:547;s:11:\"um-icon-man\";i:548;s:11:\"um-icon-map\";i:549;s:14:\"um-icon-medkit\";i:550;s:13:\"um-icon-merge\";i:551;s:13:\"um-icon-mic-a\";i:552;s:13:\"um-icon-mic-b\";i:553;s:13:\"um-icon-mic-c\";i:554;s:13:\"um-icon-minus\";i:555;s:21:\"um-icon-minus-circled\";i:556;s:19:\"um-icon-minus-round\";i:557;s:15:\"um-icon-model-s\";i:558;s:15:\"um-icon-monitor\";i:559;s:12:\"um-icon-more\";i:560;s:13:\"um-icon-mouse\";i:561;s:18:\"um-icon-music-note\";i:562;s:15:\"um-icon-navicon\";i:563;s:21:\"um-icon-navicon-round\";i:564;s:16:\"um-icon-navigate\";i:565;s:15:\"um-icon-network\";i:566;s:18:\"um-icon-no-smoking\";i:567;s:15:\"um-icon-nuclear\";i:568;s:14:\"um-icon-outlet\";i:569;s:18:\"um-icon-paintbrush\";i:570;s:19:\"um-icon-paintbucket\";i:571;s:22:\"um-icon-paper-airplane\";i:572;s:17:\"um-icon-paperclip\";i:573;s:13:\"um-icon-pause\";i:574;s:14:\"um-icon-person\";i:575;s:18:\"um-icon-person-add\";i:576;s:22:\"um-icon-person-stalker\";i:577;s:17:\"um-icon-pie-graph\";i:578;s:11:\"um-icon-pin\";i:579;s:16:\"um-icon-pinpoint\";i:580;s:13:\"um-icon-pizza\";i:581;s:13:\"um-icon-plane\";i:582;s:14:\"um-icon-planet\";i:583;s:12:\"um-icon-play\";i:584;s:19:\"um-icon-playstation\";i:585;s:12:\"um-icon-plus\";i:586;s:20:\"um-icon-plus-circled\";i:587;s:18:\"um-icon-plus-round\";i:588;s:14:\"um-icon-podium\";i:589;s:13:\"um-icon-pound\";i:590;s:13:\"um-icon-power\";i:591;s:16:\"um-icon-pricetag\";i:592;s:17:\"um-icon-pricetags\";i:593;s:15:\"um-icon-printer\";i:594;s:20:\"um-icon-pull-request\";i:595;s:18:\"um-icon-qr-scanner\";i:596;s:13:\"um-icon-quote\";i:597;s:19:\"um-icon-radio-waves\";i:598;s:14:\"um-icon-record\";i:599;s:15:\"um-icon-refresh\";i:600;s:13:\"um-icon-reply\";i:601;s:17:\"um-icon-reply-all\";i:602;s:16:\"um-icon-ribbon-a\";i:603;s:16:\"um-icon-ribbon-b\";i:604;s:11:\"um-icon-sad\";i:605;s:19:\"um-icon-sad-outline\";i:606;s:16:\"um-icon-scissors\";i:607;s:14:\"um-icon-search\";i:608;s:16:\"um-icon-settings\";i:609;s:13:\"um-icon-share\";i:610;s:15:\"um-icon-shuffle\";i:611;s:21:\"um-icon-skip-backward\";i:612;s:20:\"um-icon-skip-forward\";i:613;s:22:\"um-icon-social-android\";i:614;s:30:\"um-icon-social-android-outline\";i:615;s:22:\"um-icon-social-angular\";i:616;s:30:\"um-icon-social-angular-outline\";i:617;s:20:\"um-icon-social-apple\";i:618;s:28:\"um-icon-social-apple-outline\";i:619;s:22:\"um-icon-social-bitcoin\";i:620;s:30:\"um-icon-social-bitcoin-outline\";i:621;s:21:\"um-icon-social-buffer\";i:622;s:29:\"um-icon-social-buffer-outline\";i:623;s:21:\"um-icon-social-chrome\";i:624;s:29:\"um-icon-social-chrome-outline\";i:625;s:22:\"um-icon-social-codepen\";i:626;s:30:\"um-icon-social-codepen-outline\";i:627;s:19:\"um-icon-social-css3\";i:628;s:27:\"um-icon-social-css3-outline\";i:629;s:27:\"um-icon-social-designernews\";i:630;s:35:\"um-icon-social-designernews-outline\";i:631;s:23:\"um-icon-social-dribbble\";i:632;s:31:\"um-icon-social-dribbble-outline\";i:633;s:22:\"um-icon-social-dropbox\";i:634;s:30:\"um-icon-social-dropbox-outline\";i:635;s:19:\"um-icon-social-euro\";i:636;s:27:\"um-icon-social-euro-outline\";i:637;s:23:\"um-icon-social-facebook\";i:638;s:31:\"um-icon-social-facebook-outline\";i:639;s:25:\"um-icon-social-foursquare\";i:640;s:33:\"um-icon-social-foursquare-outline\";i:641;s:28:\"um-icon-social-freebsd-devil\";i:642;s:21:\"um-icon-social-github\";i:643;s:29:\"um-icon-social-github-outline\";i:644;s:21:\"um-icon-social-google\";i:645;s:29:\"um-icon-social-google-outline\";i:646;s:25:\"um-icon-social-googleplus\";i:647;s:33:\"um-icon-social-googleplus-outline\";i:648;s:25:\"um-icon-social-hackernews\";i:649;s:33:\"um-icon-social-hackernews-outline\";i:650;s:20:\"um-icon-social-html5\";i:651;s:28:\"um-icon-social-html5-outline\";i:652;s:24:\"um-icon-social-instagram\";i:653;s:32:\"um-icon-social-instagram-outline\";i:654;s:25:\"um-icon-social-javascript\";i:655;s:33:\"um-icon-social-javascript-outline\";i:656;s:23:\"um-icon-social-linkedin\";i:657;s:31:\"um-icon-social-linkedin-outline\";i:658;s:23:\"um-icon-social-markdown\";i:659;s:21:\"um-icon-social-nodejs\";i:660;s:22:\"um-icon-social-octocat\";i:661;s:24:\"um-icon-social-pinterest\";i:662;s:32:\"um-icon-social-pinterest-outline\";i:663;s:21:\"um-icon-social-python\";i:664;s:21:\"um-icon-social-reddit\";i:665;s:29:\"um-icon-social-reddit-outline\";i:666;s:18:\"um-icon-social-rss\";i:667;s:26:\"um-icon-social-rss-outline\";i:668;s:19:\"um-icon-social-sass\";i:669;s:20:\"um-icon-social-skype\";i:670;s:28:\"um-icon-social-skype-outline\";i:671;s:23:\"um-icon-social-snapchat\";i:672;s:31:\"um-icon-social-snapchat-outline\";i:673;s:21:\"um-icon-social-tumblr\";i:674;s:29:\"um-icon-social-tumblr-outline\";i:675;s:18:\"um-icon-social-tux\";i:676;s:21:\"um-icon-social-twitch\";i:677;s:29:\"um-icon-social-twitch-outline\";i:678;s:22:\"um-icon-social-twitter\";i:679;s:30:\"um-icon-social-twitter-outline\";i:680;s:18:\"um-icon-social-usd\";i:681;s:26:\"um-icon-social-usd-outline\";i:682;s:20:\"um-icon-social-vimeo\";i:683;s:28:\"um-icon-social-vimeo-outline\";i:684;s:23:\"um-icon-social-whatsapp\";i:685;s:31:\"um-icon-social-whatsapp-outline\";i:686;s:22:\"um-icon-social-windows\";i:687;s:30:\"um-icon-social-windows-outline\";i:688;s:24:\"um-icon-social-wordpress\";i:689;s:32:\"um-icon-social-wordpress-outline\";i:690;s:20:\"um-icon-social-yahoo\";i:691;s:28:\"um-icon-social-yahoo-outline\";i:692;s:18:\"um-icon-social-yen\";i:693;s:26:\"um-icon-social-yen-outline\";i:694;s:22:\"um-icon-social-youtube\";i:695;s:30:\"um-icon-social-youtube-outline\";i:696;s:16:\"um-icon-soup-can\";i:697;s:24:\"um-icon-soup-can-outline\";i:698;s:20:\"um-icon-speakerphone\";i:699;s:19:\"um-icon-speedometer\";i:700;s:13:\"um-icon-spoon\";i:701;s:12:\"um-icon-star\";i:702;s:18:\"um-icon-stats-bars\";i:703;s:13:\"um-icon-steam\";i:704;s:12:\"um-icon-stop\";i:705;s:19:\"um-icon-thermometer\";i:706;s:18:\"um-icon-thumbsdown\";i:707;s:16:\"um-icon-thumbsup\";i:708;s:14:\"um-icon-toggle\";i:709;s:21:\"um-icon-toggle-filled\";i:710;s:19:\"um-icon-transgender\";i:711;s:15:\"um-icon-trash-a\";i:712;s:15:\"um-icon-trash-b\";i:713;s:14:\"um-icon-trophy\";i:714;s:14:\"um-icon-tshirt\";i:715;s:22:\"um-icon-tshirt-outline\";i:716;s:16:\"um-icon-umbrella\";i:717;s:18:\"um-icon-university\";i:718;s:16:\"um-icon-unlocked\";i:719;s:14:\"um-icon-upload\";i:720;s:11:\"um-icon-usb\";i:721;s:19:\"um-icon-videocamera\";i:722;s:19:\"um-icon-volume-high\";i:723;s:18:\"um-icon-volume-low\";i:724;s:21:\"um-icon-volume-medium\";i:725;s:19:\"um-icon-volume-mute\";i:726;s:12:\"um-icon-wand\";i:727;s:17:\"um-icon-waterdrop\";i:728;s:12:\"um-icon-wifi\";i:729;s:17:\"um-icon-wineglass\";i:730;s:13:\"um-icon-woman\";i:731;s:14:\"um-icon-wrench\";i:732;s:12:\"um-icon-xbox\";i:733;s:21:\"um-faicon-sticky-note\";i:734;s:15:\"um-faicon-glass\";i:735;s:15:\"um-faicon-music\";i:736;s:16:\"um-faicon-search\";i:737;s:20:\"um-faicon-envelope-o\";i:738;s:15:\"um-faicon-heart\";i:739;s:14:\"um-faicon-star\";i:740;s:16:\"um-faicon-star-o\";i:741;s:14:\"um-faicon-user\";i:742;s:14:\"um-faicon-film\";i:743;s:18:\"um-faicon-th-large\";i:744;s:12:\"um-faicon-th\";i:745;s:17:\"um-faicon-th-list\";i:746;s:15:\"um-faicon-check\";i:747;s:16:\"um-faicon-remove\";i:748;s:15:\"um-faicon-close\";i:749;s:15:\"um-faicon-times\";i:750;s:21:\"um-faicon-search-plus\";i:751;s:22:\"um-faicon-search-minus\";i:752;s:19:\"um-faicon-power-off\";i:753;s:16:\"um-faicon-signal\";i:754;s:14:\"um-faicon-gear\";i:755;s:13:\"um-faicon-cog\";i:756;s:17:\"um-faicon-trash-o\";i:757;s:14:\"um-faicon-home\";i:758;s:16:\"um-faicon-file-o\";i:759;s:17:\"um-faicon-clock-o\";i:760;s:14:\"um-faicon-road\";i:761;s:18:\"um-faicon-download\";i:762;s:29:\"um-faicon-arrow-circle-o-down\";i:763;s:27:\"um-faicon-arrow-circle-o-up\";i:764;s:15:\"um-faicon-inbox\";i:765;s:23:\"um-faicon-play-circle-o\";i:766;s:22:\"um-faicon-rotate-right\";i:767;s:16:\"um-faicon-repeat\";i:768;s:17:\"um-faicon-refresh\";i:769;s:18:\"um-faicon-list-alt\";i:770;s:14:\"um-faicon-lock\";i:771;s:14:\"um-faicon-flag\";i:772;s:20:\"um-faicon-headphones\";i:773;s:20:\"um-faicon-volume-off\";i:774;s:21:\"um-faicon-volume-down\";i:775;s:19:\"um-faicon-volume-up\";i:776;s:16:\"um-faicon-qrcode\";i:777;s:17:\"um-faicon-barcode\";i:778;s:13:\"um-faicon-tag\";i:779;s:14:\"um-faicon-tags\";i:780;s:14:\"um-faicon-book\";i:781;s:18:\"um-faicon-bookmark\";i:782;s:15:\"um-faicon-print\";i:783;s:16:\"um-faicon-camera\";i:784;s:14:\"um-faicon-font\";i:785;s:14:\"um-faicon-bold\";i:786;s:16:\"um-faicon-italic\";i:787;s:21:\"um-faicon-text-height\";i:788;s:20:\"um-faicon-text-width\";i:789;s:20:\"um-faicon-align-left\";i:790;s:22:\"um-faicon-align-center\";i:791;s:21:\"um-faicon-align-right\";i:792;s:23:\"um-faicon-align-justify\";i:793;s:14:\"um-faicon-list\";i:794;s:16:\"um-faicon-dedent\";i:795;s:17:\"um-faicon-outdent\";i:796;s:16:\"um-faicon-indent\";i:797;s:22:\"um-faicon-video-camera\";i:798;s:15:\"um-faicon-photo\";i:799;s:15:\"um-faicon-image\";i:800;s:19:\"um-faicon-picture-o\";i:801;s:16:\"um-faicon-pencil\";i:802;s:20:\"um-faicon-map-marker\";i:803;s:16:\"um-faicon-adjust\";i:804;s:14:\"um-faicon-tint\";i:805;s:14:\"um-faicon-edit\";i:806;s:25:\"um-faicon-pencil-square-o\";i:807;s:24:\"um-faicon-share-square-o\";i:808;s:24:\"um-faicon-check-square-o\";i:809;s:16:\"um-faicon-arrows\";i:810;s:23:\"um-faicon-step-backward\";i:811;s:23:\"um-faicon-fast-backward\";i:812;s:18:\"um-faicon-backward\";i:813;s:14:\"um-faicon-play\";i:814;s:15:\"um-faicon-pause\";i:815;s:14:\"um-faicon-stop\";i:816;s:17:\"um-faicon-forward\";i:817;s:22:\"um-faicon-fast-forward\";i:818;s:22:\"um-faicon-step-forward\";i:819;s:15:\"um-faicon-eject\";i:820;s:22:\"um-faicon-chevron-left\";i:821;s:23:\"um-faicon-chevron-right\";i:822;s:21:\"um-faicon-plus-circle\";i:823;s:22:\"um-faicon-minus-circle\";i:824;s:22:\"um-faicon-times-circle\";i:825;s:22:\"um-faicon-check-circle\";i:826;s:25:\"um-faicon-question-circle\";i:827;s:21:\"um-faicon-info-circle\";i:828;s:20:\"um-faicon-crosshairs\";i:829;s:24:\"um-faicon-times-circle-o\";i:830;s:24:\"um-faicon-check-circle-o\";i:831;s:13:\"um-faicon-ban\";i:832;s:20:\"um-faicon-arrow-left\";i:833;s:21:\"um-faicon-arrow-right\";i:834;s:18:\"um-faicon-arrow-up\";i:835;s:20:\"um-faicon-arrow-down\";i:836;s:22:\"um-faicon-mail-forward\";i:837;s:15:\"um-faicon-share\";i:838;s:16:\"um-faicon-expand\";i:839;s:18:\"um-faicon-compress\";i:840;s:14:\"um-faicon-plus\";i:841;s:15:\"um-faicon-minus\";i:842;s:18:\"um-faicon-asterisk\";i:843;s:28:\"um-faicon-exclamation-circle\";i:844;s:14:\"um-faicon-gift\";i:845;s:14:\"um-faicon-leaf\";i:846;s:14:\"um-faicon-fire\";i:847;s:13:\"um-faicon-eye\";i:848;s:19:\"um-faicon-eye-slash\";i:849;s:17:\"um-faicon-warning\";i:850;s:30:\"um-faicon-exclamation-triangle\";i:851;s:15:\"um-faicon-plane\";i:852;s:18:\"um-faicon-calendar\";i:853;s:16:\"um-faicon-random\";i:854;s:17:\"um-faicon-comment\";i:855;s:16:\"um-faicon-magnet\";i:856;s:20:\"um-faicon-chevron-up\";i:857;s:22:\"um-faicon-chevron-down\";i:858;s:17:\"um-faicon-retweet\";i:859;s:23:\"um-faicon-shopping-cart\";i:860;s:16:\"um-faicon-folder\";i:861;s:21:\"um-faicon-folder-open\";i:862;s:18:\"um-faicon-arrows-v\";i:863;s:18:\"um-faicon-arrows-h\";i:864;s:21:\"um-faicon-bar-chart-o\";i:865;s:19:\"um-faicon-bar-chart\";i:866;s:24:\"um-faicon-twitter-square\";i:867;s:25:\"um-faicon-facebook-square\";i:868;s:22:\"um-faicon-camera-retro\";i:869;s:13:\"um-faicon-key\";i:870;s:15:\"um-faicon-gears\";i:871;s:14:\"um-faicon-cogs\";i:872;s:18:\"um-faicon-comments\";i:873;s:21:\"um-faicon-thumbs-o-up\";i:874;s:23:\"um-faicon-thumbs-o-down\";i:875;s:19:\"um-faicon-star-half\";i:876;s:17:\"um-faicon-heart-o\";i:877;s:18:\"um-faicon-sign-out\";i:878;s:25:\"um-faicon-linkedin-square\";i:879;s:20:\"um-faicon-thumb-tack\";i:880;s:23:\"um-faicon-external-link\";i:881;s:17:\"um-faicon-sign-in\";i:882;s:16:\"um-faicon-trophy\";i:883;s:23:\"um-faicon-github-square\";i:884;s:16:\"um-faicon-upload\";i:885;s:17:\"um-faicon-lemon-o\";i:886;s:15:\"um-faicon-phone\";i:887;s:18:\"um-faicon-square-o\";i:888;s:20:\"um-faicon-bookmark-o\";i:889;s:22:\"um-faicon-phone-square\";i:890;s:17:\"um-faicon-twitter\";i:891;s:18:\"um-faicon-facebook\";i:892;s:16:\"um-faicon-github\";i:893;s:16:\"um-faicon-unlock\";i:894;s:21:\"um-faicon-credit-card\";i:895;s:13:\"um-faicon-rss\";i:896;s:15:\"um-faicon-hdd-o\";i:897;s:18:\"um-faicon-bullhorn\";i:898;s:14:\"um-faicon-bell\";i:899;s:21:\"um-faicon-certificate\";i:900;s:22:\"um-faicon-hand-o-right\";i:901;s:21:\"um-faicon-hand-o-left\";i:902;s:19:\"um-faicon-hand-o-up\";i:903;s:21:\"um-faicon-hand-o-down\";i:904;s:27:\"um-faicon-arrow-circle-left\";i:905;s:28:\"um-faicon-arrow-circle-right\";i:906;s:25:\"um-faicon-arrow-circle-up\";i:907;s:27:\"um-faicon-arrow-circle-down\";i:908;s:15:\"um-faicon-globe\";i:909;s:16:\"um-faicon-wrench\";i:910;s:15:\"um-faicon-tasks\";i:911;s:16:\"um-faicon-filter\";i:912;s:19:\"um-faicon-briefcase\";i:913;s:20:\"um-faicon-arrows-alt\";i:914;s:15:\"um-faicon-group\";i:915;s:15:\"um-faicon-users\";i:916;s:15:\"um-faicon-chain\";i:917;s:14:\"um-faicon-link\";i:918;s:15:\"um-faicon-cloud\";i:919;s:15:\"um-faicon-flask\";i:920;s:13:\"um-faicon-cut\";i:921;s:18:\"um-faicon-scissors\";i:922;s:14:\"um-faicon-copy\";i:923;s:17:\"um-faicon-files-o\";i:924;s:19:\"um-faicon-paperclip\";i:925;s:14:\"um-faicon-save\";i:926;s:18:\"um-faicon-floppy-o\";i:927;s:16:\"um-faicon-square\";i:928;s:17:\"um-faicon-navicon\";i:929;s:17:\"um-faicon-reorder\";i:930;s:14:\"um-faicon-bars\";i:931;s:17:\"um-faicon-list-ul\";i:932;s:17:\"um-faicon-list-ol\";i:933;s:23:\"um-faicon-strikethrough\";i:934;s:19:\"um-faicon-underline\";i:935;s:15:\"um-faicon-table\";i:936;s:15:\"um-faicon-magic\";i:937;s:15:\"um-faicon-truck\";i:938;s:19:\"um-faicon-pinterest\";i:939;s:26:\"um-faicon-pinterest-square\";i:940;s:28:\"um-faicon-google-plus-square\";i:941;s:21:\"um-faicon-google-plus\";i:942;s:15:\"um-faicon-money\";i:943;s:20:\"um-faicon-caret-down\";i:944;s:18:\"um-faicon-caret-up\";i:945;s:20:\"um-faicon-caret-left\";i:946;s:21:\"um-faicon-caret-right\";i:947;s:17:\"um-faicon-columns\";i:948;s:18:\"um-faicon-unsorted\";i:949;s:14:\"um-faicon-sort\";i:950;s:19:\"um-faicon-sort-down\";i:951;s:19:\"um-faicon-sort-desc\";i:952;s:17:\"um-faicon-sort-up\";i:953;s:18:\"um-faicon-sort-asc\";i:954;s:18:\"um-faicon-envelope\";i:955;s:18:\"um-faicon-linkedin\";i:956;s:21:\"um-faicon-rotate-left\";i:957;s:14:\"um-faicon-undo\";i:958;s:15:\"um-faicon-legal\";i:959;s:15:\"um-faicon-gavel\";i:960;s:19:\"um-faicon-dashboard\";i:961;s:20:\"um-faicon-tachometer\";i:962;s:19:\"um-faicon-comment-o\";i:963;s:20:\"um-faicon-comments-o\";i:964;s:15:\"um-faicon-flash\";i:965;s:14:\"um-faicon-bolt\";i:966;s:17:\"um-faicon-sitemap\";i:967;s:18:\"um-faicon-umbrella\";i:968;s:15:\"um-faicon-paste\";i:969;s:19:\"um-faicon-clipboard\";i:970;s:21:\"um-faicon-lightbulb-o\";i:971;s:18:\"um-faicon-exchange\";i:972;s:24:\"um-faicon-cloud-download\";i:973;s:22:\"um-faicon-cloud-upload\";i:974;s:17:\"um-faicon-user-md\";i:975;s:21:\"um-faicon-stethoscope\";i:976;s:18:\"um-faicon-suitcase\";i:977;s:16:\"um-faicon-bell-o\";i:978;s:16:\"um-faicon-coffee\";i:979;s:17:\"um-faicon-cutlery\";i:980;s:21:\"um-faicon-file-text-o\";i:981;s:20:\"um-faicon-building-o\";i:982;s:20:\"um-faicon-hospital-o\";i:983;s:19:\"um-faicon-ambulance\";i:984;s:16:\"um-faicon-medkit\";i:985;s:21:\"um-faicon-fighter-jet\";i:986;s:14:\"um-faicon-beer\";i:987;s:18:\"um-faicon-h-square\";i:988;s:21:\"um-faicon-plus-square\";i:989;s:27:\"um-faicon-angle-double-left\";i:990;s:28:\"um-faicon-angle-double-right\";i:991;s:25:\"um-faicon-angle-double-up\";i:992;s:27:\"um-faicon-angle-double-down\";i:993;s:20:\"um-faicon-angle-left\";i:994;s:21:\"um-faicon-angle-right\";i:995;s:18:\"um-faicon-angle-up\";i:996;s:20:\"um-faicon-angle-down\";i:997;s:17:\"um-faicon-desktop\";i:998;s:16:\"um-faicon-laptop\";i:999;s:16:\"um-faicon-tablet\";i:1000;s:22:\"um-faicon-mobile-phone\";i:1001;s:16:\"um-faicon-mobile\";i:1002;s:18:\"um-faicon-circle-o\";i:1003;s:20:\"um-faicon-quote-left\";i:1004;s:21:\"um-faicon-quote-right\";i:1005;s:17:\"um-faicon-spinner\";i:1006;s:16:\"um-faicon-circle\";i:1007;s:20:\"um-faicon-mail-reply\";i:1008;s:15:\"um-faicon-reply\";i:1009;s:20:\"um-faicon-github-alt\";i:1010;s:18:\"um-faicon-folder-o\";i:1011;s:23:\"um-faicon-folder-open-o\";i:1012;s:17:\"um-faicon-smile-o\";i:1013;s:17:\"um-faicon-frown-o\";i:1014;s:15:\"um-faicon-meh-o\";i:1015;s:17:\"um-faicon-gamepad\";i:1016;s:20:\"um-faicon-keyboard-o\";i:1017;s:16:\"um-faicon-flag-o\";i:1018;s:24:\"um-faicon-flag-checkered\";i:1019;s:18:\"um-faicon-terminal\";i:1020;s:14:\"um-faicon-code\";i:1021;s:24:\"um-faicon-mail-reply-all\";i:1022;s:19:\"um-faicon-reply-all\";i:1023;s:25:\"um-faicon-star-half-empty\";i:1024;s:24:\"um-faicon-star-half-full\";i:1025;s:21:\"um-faicon-star-half-o\";i:1026;s:24:\"um-faicon-location-arrow\";i:1027;s:14:\"um-faicon-crop\";i:1028;s:19:\"um-faicon-code-fork\";i:1029;s:16:\"um-faicon-unlink\";i:1030;s:22:\"um-faicon-chain-broken\";i:1031;s:18:\"um-faicon-question\";i:1032;s:14:\"um-faicon-info\";i:1033;s:21:\"um-faicon-exclamation\";i:1034;s:21:\"um-faicon-superscript\";i:1035;s:19:\"um-faicon-subscript\";i:1036;s:16:\"um-faicon-eraser\";i:1037;s:22:\"um-faicon-puzzle-piece\";i:1038;s:20:\"um-faicon-microphone\";i:1039;s:26:\"um-faicon-microphone-slash\";i:1040;s:16:\"um-faicon-shield\";i:1041;s:20:\"um-faicon-calendar-o\";i:1042;s:27:\"um-faicon-fire-extinguisher\";i:1043;s:16:\"um-faicon-rocket\";i:1044;s:16:\"um-faicon-maxcdn\";i:1045;s:29:\"um-faicon-chevron-circle-left\";i:1046;s:30:\"um-faicon-chevron-circle-right\";i:1047;s:27:\"um-faicon-chevron-circle-up\";i:1048;s:29:\"um-faicon-chevron-circle-down\";i:1049;s:15:\"um-faicon-html5\";i:1050;s:14:\"um-faicon-css3\";i:1051;s:16:\"um-faicon-anchor\";i:1052;s:20:\"um-faicon-unlock-alt\";i:1053;s:18:\"um-faicon-bullseye\";i:1054;s:20:\"um-faicon-ellipsis-h\";i:1055;s:20:\"um-faicon-ellipsis-v\";i:1056;s:20:\"um-faicon-rss-square\";i:1057;s:21:\"um-faicon-play-circle\";i:1058;s:16:\"um-faicon-ticket\";i:1059;s:22:\"um-faicon-minus-square\";i:1060;s:24:\"um-faicon-minus-square-o\";i:1061;s:18:\"um-faicon-level-up\";i:1062;s:20:\"um-faicon-level-down\";i:1063;s:22:\"um-faicon-check-square\";i:1064;s:23:\"um-faicon-pencil-square\";i:1065;s:30:\"um-faicon-external-link-square\";i:1066;s:22:\"um-faicon-share-square\";i:1067;s:17:\"um-faicon-compass\";i:1068;s:21:\"um-faicon-toggle-down\";i:1069;s:29:\"um-faicon-caret-square-o-down\";i:1070;s:19:\"um-faicon-toggle-up\";i:1071;s:27:\"um-faicon-caret-square-o-up\";i:1072;s:22:\"um-faicon-toggle-right\";i:1073;s:30:\"um-faicon-caret-square-o-right\";i:1074;s:14:\"um-faicon-euro\";i:1075;s:13:\"um-faicon-eur\";i:1076;s:13:\"um-faicon-gbp\";i:1077;s:16:\"um-faicon-dollar\";i:1078;s:13:\"um-faicon-usd\";i:1079;s:15:\"um-faicon-rupee\";i:1080;s:13:\"um-faicon-inr\";i:1081;s:13:\"um-faicon-cny\";i:1082;s:13:\"um-faicon-rmb\";i:1083;s:13:\"um-faicon-yen\";i:1084;s:13:\"um-faicon-jpy\";i:1085;s:15:\"um-faicon-ruble\";i:1086;s:16:\"um-faicon-rouble\";i:1087;s:13:\"um-faicon-rub\";i:1088;s:13:\"um-faicon-won\";i:1089;s:13:\"um-faicon-krw\";i:1090;s:17:\"um-faicon-bitcoin\";i:1091;s:13:\"um-faicon-btc\";i:1092;s:14:\"um-faicon-file\";i:1093;s:19:\"um-faicon-file-text\";i:1094;s:24:\"um-faicon-sort-alpha-asc\";i:1095;s:25:\"um-faicon-sort-alpha-desc\";i:1096;s:25:\"um-faicon-sort-amount-asc\";i:1097;s:26:\"um-faicon-sort-amount-desc\";i:1098;s:26:\"um-faicon-sort-numeric-asc\";i:1099;s:27:\"um-faicon-sort-numeric-desc\";i:1100;s:19:\"um-faicon-thumbs-up\";i:1101;s:21:\"um-faicon-thumbs-down\";i:1102;s:24:\"um-faicon-youtube-square\";i:1103;s:17:\"um-faicon-youtube\";i:1104;s:14:\"um-faicon-xing\";i:1105;s:21:\"um-faicon-xing-square\";i:1106;s:22:\"um-faicon-youtube-play\";i:1107;s:17:\"um-faicon-dropbox\";i:1108;s:24:\"um-faicon-stack-overflow\";i:1109;s:19:\"um-faicon-instagram\";i:1110;s:16:\"um-faicon-flickr\";i:1111;s:13:\"um-faicon-adn\";i:1112;s:19:\"um-faicon-bitbucket\";i:1113;s:26:\"um-faicon-bitbucket-square\";i:1114;s:16:\"um-faicon-tumblr\";i:1115;s:23:\"um-faicon-tumblr-square\";i:1116;s:25:\"um-faicon-long-arrow-down\";i:1117;s:23:\"um-faicon-long-arrow-up\";i:1118;s:25:\"um-faicon-long-arrow-left\";i:1119;s:26:\"um-faicon-long-arrow-right\";i:1120;s:15:\"um-faicon-apple\";i:1121;s:17:\"um-faicon-windows\";i:1122;s:17:\"um-faicon-android\";i:1123;s:15:\"um-faicon-linux\";i:1124;s:18:\"um-faicon-dribbble\";i:1125;s:15:\"um-faicon-skype\";i:1126;s:20:\"um-faicon-foursquare\";i:1127;s:16:\"um-faicon-trello\";i:1128;s:16:\"um-faicon-female\";i:1129;s:14:\"um-faicon-male\";i:1130;s:16:\"um-faicon-gittip\";i:1131;s:15:\"um-faicon-sun-o\";i:1132;s:16:\"um-faicon-moon-o\";i:1133;s:17:\"um-faicon-archive\";i:1134;s:13:\"um-faicon-bug\";i:1135;s:12:\"um-faicon-vk\";i:1136;s:15:\"um-faicon-weibo\";i:1137;s:16:\"um-faicon-renren\";i:1138;s:19:\"um-faicon-pagelines\";i:1139;s:24:\"um-faicon-stack-exchange\";i:1140;s:30:\"um-faicon-arrow-circle-o-right\";i:1141;s:29:\"um-faicon-arrow-circle-o-left\";i:1142;s:21:\"um-faicon-toggle-left\";i:1143;s:29:\"um-faicon-caret-square-o-left\";i:1144;s:22:\"um-faicon-dot-circle-o\";i:1145;s:20:\"um-faicon-wheelchair\";i:1146;s:22:\"um-faicon-vimeo-square\";i:1147;s:22:\"um-faicon-turkish-lira\";i:1148;s:13:\"um-faicon-try\";i:1149;s:23:\"um-faicon-plus-square-o\";i:1150;s:23:\"um-faicon-space-shuttle\";i:1151;s:15:\"um-faicon-slack\";i:1152;s:25:\"um-faicon-envelope-square\";i:1153;s:19:\"um-faicon-wordpress\";i:1154;s:16:\"um-faicon-openid\";i:1155;s:21:\"um-faicon-institution\";i:1156;s:14:\"um-faicon-bank\";i:1157;s:20:\"um-faicon-university\";i:1158;s:22:\"um-faicon-mortar-board\";i:1159;s:24:\"um-faicon-graduation-cap\";i:1160;s:15:\"um-faicon-yahoo\";i:1161;s:16:\"um-faicon-google\";i:1162;s:16:\"um-faicon-reddit\";i:1163;s:23:\"um-faicon-reddit-square\";i:1164;s:28:\"um-faicon-stumbleupon-circle\";i:1165;s:21:\"um-faicon-stumbleupon\";i:1166;s:19:\"um-faicon-delicious\";i:1167;s:14:\"um-faicon-digg\";i:1168;s:20:\"um-faicon-pied-piper\";i:1169;s:24:\"um-faicon-pied-piper-alt\";i:1170;s:16:\"um-faicon-drupal\";i:1171;s:16:\"um-faicon-joomla\";i:1172;s:18:\"um-faicon-language\";i:1173;s:13:\"um-faicon-fax\";i:1174;s:18:\"um-faicon-building\";i:1175;s:15:\"um-faicon-child\";i:1176;s:13:\"um-faicon-paw\";i:1177;s:15:\"um-faicon-spoon\";i:1178;s:14:\"um-faicon-cube\";i:1179;s:15:\"um-faicon-cubes\";i:1180;s:17:\"um-faicon-behance\";i:1181;s:24:\"um-faicon-behance-square\";i:1182;s:15:\"um-faicon-steam\";i:1183;s:22:\"um-faicon-steam-square\";i:1184;s:17:\"um-faicon-recycle\";i:1185;s:20:\"um-faicon-automobile\";i:1186;s:13:\"um-faicon-car\";i:1187;s:13:\"um-faicon-cab\";i:1188;s:14:\"um-faicon-taxi\";i:1189;s:14:\"um-faicon-tree\";i:1190;s:17:\"um-faicon-spotify\";i:1191;s:20:\"um-faicon-deviantart\";i:1192;s:20:\"um-faicon-soundcloud\";i:1193;s:18:\"um-faicon-database\";i:1194;s:20:\"um-faicon-file-pdf-o\";i:1195;s:21:\"um-faicon-file-word-o\";i:1196;s:22:\"um-faicon-file-excel-o\";i:1197;s:27:\"um-faicon-file-powerpoint-o\";i:1198;s:22:\"um-faicon-file-photo-o\";i:1199;s:24:\"um-faicon-file-picture-o\";i:1200;s:22:\"um-faicon-file-image-o\";i:1201;s:20:\"um-faicon-file-zip-o\";i:1202;s:24:\"um-faicon-file-archive-o\";i:1203;s:22:\"um-faicon-file-sound-o\";i:1204;s:22:\"um-faicon-file-audio-o\";i:1205;s:22:\"um-faicon-file-movie-o\";i:1206;s:22:\"um-faicon-file-video-o\";i:1207;s:21:\"um-faicon-file-code-o\";i:1208;s:14:\"um-faicon-vine\";i:1209;s:17:\"um-faicon-codepen\";i:1210;s:18:\"um-faicon-jsfiddle\";i:1211;s:19:\"um-faicon-life-bouy\";i:1212;s:19:\"um-faicon-life-buoy\";i:1213;s:20:\"um-faicon-life-saver\";i:1214;s:17:\"um-faicon-support\";i:1215;s:19:\"um-faicon-life-ring\";i:1216;s:24:\"um-faicon-circle-o-notch\";i:1217;s:12:\"um-faicon-ra\";i:1218;s:15:\"um-faicon-rebel\";i:1219;s:12:\"um-faicon-ge\";i:1220;s:16:\"um-faicon-empire\";i:1221;s:20:\"um-faicon-git-square\";i:1222;s:13:\"um-faicon-git\";i:1223;s:21:\"um-faicon-hacker-news\";i:1224;s:23:\"um-faicon-tencent-weibo\";i:1225;s:12:\"um-faicon-qq\";i:1226;s:16:\"um-faicon-wechat\";i:1227;s:16:\"um-faicon-weixin\";i:1228;s:14:\"um-faicon-send\";i:1229;s:21:\"um-faicon-paper-plane\";i:1230;s:16:\"um-faicon-send-o\";i:1231;s:23:\"um-faicon-paper-plane-o\";i:1232;s:17:\"um-faicon-history\";i:1233;s:21:\"um-faicon-circle-thin\";i:1234;s:16:\"um-faicon-header\";i:1235;s:19:\"um-faicon-paragraph\";i:1236;s:17:\"um-faicon-sliders\";i:1237;s:19:\"um-faicon-share-alt\";i:1238;s:26:\"um-faicon-share-alt-square\";i:1239;s:14:\"um-faicon-bomb\";i:1240;s:23:\"um-faicon-soccer-ball-o\";i:1241;s:18:\"um-faicon-futbol-o\";i:1242;s:13:\"um-faicon-tty\";i:1243;s:20:\"um-faicon-binoculars\";i:1244;s:14:\"um-faicon-plug\";i:1245;s:20:\"um-faicon-slideshare\";i:1246;s:16:\"um-faicon-twitch\";i:1247;s:14:\"um-faicon-yelp\";i:1248;s:21:\"um-faicon-newspaper-o\";i:1249;s:14:\"um-faicon-wifi\";i:1250;s:20:\"um-faicon-calculator\";i:1251;s:16:\"um-faicon-paypal\";i:1252;s:23:\"um-faicon-google-wallet\";i:1253;s:17:\"um-faicon-cc-visa\";i:1254;s:23:\"um-faicon-cc-mastercard\";i:1255;s:21:\"um-faicon-cc-discover\";i:1256;s:17:\"um-faicon-cc-amex\";i:1257;s:19:\"um-faicon-cc-paypal\";i:1258;s:19:\"um-faicon-cc-stripe\";i:1259;s:20:\"um-faicon-bell-slash\";i:1260;s:22:\"um-faicon-bell-slash-o\";i:1261;s:15:\"um-faicon-trash\";i:1262;s:19:\"um-faicon-copyright\";i:1263;s:12:\"um-faicon-at\";i:1264;s:20:\"um-faicon-eyedropper\";i:1265;s:21:\"um-faicon-paint-brush\";i:1266;s:23:\"um-faicon-birthday-cake\";i:1267;s:20:\"um-faicon-area-chart\";i:1268;s:19:\"um-faicon-pie-chart\";i:1269;s:20:\"um-faicon-line-chart\";i:1270;s:16:\"um-faicon-lastfm\";i:1271;s:23:\"um-faicon-lastfm-square\";i:1272;s:20:\"um-faicon-toggle-off\";i:1273;s:19:\"um-faicon-toggle-on\";i:1274;s:17:\"um-faicon-bicycle\";i:1275;s:13:\"um-faicon-bus\";i:1276;s:17:\"um-faicon-ioxhost\";i:1277;s:19:\"um-faicon-angellist\";i:1278;s:12:\"um-faicon-cc\";i:1279;s:16:\"um-faicon-shekel\";i:1280;s:16:\"um-faicon-sheqel\";i:1281;s:13:\"um-faicon-ils\";i:1282;s:18:\"um-faicon-meanpath\";}','yes'),
(1740445,'um_existing_rows_19814','a:1:{i:0;s:9:\"_um_row_1\";}','yes'),
(1740446,'um_form_rowdata_19814','a:1:{s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}','yes'),
(1740710,'um_cache_userdata_1','a:326:{s:2:\"ID\";i:1;s:10:\"user_login\";s:5:\"admin\";s:9:\"user_pass\";s:34:\"$P$B2LXEasiVXT.1oOxlZsGewd/2nRDGz.\";s:13:\"user_nicename\";s:5:\"admin\";s:10:\"user_email\";s:21:\"ivankulongo@gmail.com\";s:8:\"user_url\";s:28:\"http://choiceresources.co.uk\";s:15:\"user_registered\";s:19:\"2021-03-30 03:15:01\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"admin\";s:13:\"administrator\";b:1;s:8:\"wp_roles\";s:13:\"administrator\";s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:22:\"edit_wpt_product_table\";b:1;s:23:\"edit_wpt_product_tables\";b:1;s:30:\"edit_others_wpt_product_tables\";b:1;s:26:\"publish_wpt_product_tables\";b:1;s:22:\"read_wpt_product_table\";b:1;s:31:\"read_private_wpt_product_tables\";b:1;s:24:\"delete_wpt_product_table\";b:1;s:24:\"manage_wpt_product_table\";b:1;s:20:\"edit_membership_plan\";b:1;s:20:\"read_membership_plan\";b:1;s:22:\"delete_membership_plan\";b:1;s:21:\"edit_membership_plans\";b:1;s:28:\"edit_others_membership_plans\";b:1;s:23:\"delete_membership_plans\";b:1;s:24:\"publish_membership_plans\";b:1;s:29:\"read_private_membership_plans\";b:1;s:31:\"delete_private_membership_plans\";b:1;s:33:\"delete_published_membership_plans\";b:1;s:30:\"delete_others_membership_plans\";b:1;s:29:\"edit_private_membership_plans\";b:1;s:31:\"edit_published_membership_plans\";b:1;s:20:\"edit_user_membership\";b:1;s:20:\"read_user_membership\";b:1;s:22:\"delete_user_membership\";b:1;s:21:\"edit_user_memberships\";b:1;s:28:\"edit_others_user_memberships\";b:1;s:23:\"delete_user_memberships\";b:1;s:24:\"publish_user_memberships\";b:1;s:29:\"read_private_user_memberships\";b:1;s:31:\"delete_private_user_memberships\";b:1;s:33:\"delete_published_user_memberships\";b:1;s:30:\"delete_others_user_memberships\";b:1;s:29:\"edit_private_user_memberships\";b:1;s:31:\"edit_published_user_memberships\";b:1;s:35:\"manage_woocommerce_membership_plans\";b:1;s:35:\"manage_woocommerce_user_memberships\";b:1;s:10:\"copy_posts\";b:1;s:16:\"amelia_read_menu\";b:1;s:21:\"amelia_read_dashboard\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:21:\"amelia_read_employees\";b:1;s:20:\"amelia_read_services\";b:1;s:20:\"amelia_read_packages\";b:1;s:21:\"amelia_read_locations\";b:1;s:19:\"amelia_read_coupons\";b:1;s:21:\"amelia_read_customers\";b:1;s:19:\"amelia_read_finance\";b:1;s:25:\"amelia_read_notifications\";b:1;s:21:\"amelia_read_customize\";b:1;s:25:\"amelia_read_custom_fields\";b:1;s:20:\"amelia_read_settings\";b:1;s:27:\"amelia_read_others_calendar\";b:1;s:31:\"amelia_read_others_appointments\";b:1;s:28:\"amelia_read_others_employees\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:22:\"amelia_write_dashboard\";b:1;s:21:\"amelia_write_calendar\";b:1;s:25:\"amelia_write_appointments\";b:1;s:19:\"amelia_write_events\";b:1;s:22:\"amelia_write_employees\";b:1;s:21:\"amelia_write_services\";b:1;s:21:\"amelia_write_packages\";b:1;s:22:\"amelia_write_locations\";b:1;s:20:\"amelia_write_coupons\";b:1;s:22:\"amelia_write_customers\";b:1;s:20:\"amelia_write_finance\";b:1;s:26:\"amelia_write_notifications\";b:1;s:22:\"amelia_write_customize\";b:1;s:26:\"amelia_write_custom_fields\";b:1;s:21:\"amelia_write_settings\";b:1;s:19:\"amelia_write_status\";b:1;s:28:\"amelia_write_others_calendar\";b:1;s:32:\"amelia_write_others_appointments\";b:1;s:29:\"amelia_write_others_employees\";b:1;s:26:\"amelia_write_others_events\";b:1;s:27:\"amelia_write_others_finance\";b:1;s:29:\"amelia_write_others_dashboard\";b:1;s:23:\"amelia_delete_dashboard\";b:1;s:22:\"amelia_delete_calendar\";b:1;s:26:\"amelia_delete_appointments\";b:1;s:20:\"amelia_delete_events\";b:1;s:23:\"amelia_delete_employees\";b:1;s:22:\"amelia_delete_services\";b:1;s:22:\"amelia_delete_packages\";b:1;s:23:\"amelia_delete_locations\";b:1;s:21:\"amelia_delete_coupons\";b:1;s:23:\"amelia_delete_customers\";b:1;s:21:\"amelia_delete_finance\";b:1;s:27:\"amelia_delete_notifications\";b:1;s:23:\"amelia_delete_customize\";b:1;s:27:\"amelia_delete_custom_fields\";b:1;s:22:\"amelia_delete_settings\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;s:25:\"cartflows_manage_settings\";b:1;s:28:\"cartflows_manage_flows_steps\";b:1;s:17:\"manage_forminator\";b:1;s:15:\"manage_security\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:5:\"admin\";s:10:\"first_name\";s:4:\"Ivan\";s:9:\"last_name\";s:7:\"Kulongo\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:18:\"show_welcome_panel\";s:1:\"1\";s:39:\"wphu_dashboard_quick_press_last_post_id\";s:5:\"19065\";s:25:\"community-events-location\";s:36:\"a:1:{s:2:\"ip\";s:13:\"213.205.216.0\";}\";s:34:\"wphu_elementor_connect_common_data\";s:350:\"a:6:{s:9:\"client_id\";s:32:\"lx7wLoysZRr4F7RqxsrIIJ76Uu1mmlw6\";s:11:\"auth_secret\";s:32:\"K4HRSBslmZh6bAqGh4Tld4SPY4jWpbCY\";s:12:\"access_token\";s:32:\"qw6M75okmN5NDef79Lp1H4coDgI6xlxd\";s:19:\"access_token_secret\";s:32:\"Zv7OpTie18A80vgFkNd1zwpvGFrz1whS\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:21:\"amnakulongo@gmail.com\";}}\";s:27:\"_woocommerce_tracks_anon_id\";s:28:\"woo:e7EIYpdwzMSIGL0rluMtmDJr\";s:11:\"last_update\";s:10:\"1671044605\";s:49:\"woocommerce_admin_task_list_tracked_started_tasks\";s:29:\"{\"products\":1,\"appearance\":2}\";s:14:\"wc_last_active\";s:10:\"1670976000\";s:22:\"elementor_introduction\";s:46:\"a:2:{s:10:\"rightClick\";b:1;s:7:\"exit_to\";b:1;}\";s:18:\"wphu_user-settings\";s:305:\"libraryContent=browse&ampampampampampampampeditor=html&ampampampampampampeditor=tinymce&ampampampampampampmfold=o&ampampampampampeditor=tinymce&ampampampampampmfold=o&ampampampmfold=f&ampampeditor=tinymce&ampamphidetb=0&ampampmfold=o&ampeditor=tinymce&ampadvImgDetails=show&editor=tinymce&hidetb=1&mfold=o\";s:23:\"wphu_user-settings-time\";s:10:\"1670895708\";s:52:\"_wc_memberships_show_admin_restricted_content_notice\";s:2:\"no\";s:44:\"_wc_memberships_hidden_profile_field_columns\";s:6:\"a:0:{}\";s:18:\"billing_first_name\";s:4:\"Ivan\";s:17:\"billing_last_name\";s:7:\"Kulongo\";s:17:\"billing_address_1\";s:16:\"20 Hatfield Road\";s:12:\"billing_city\";s:8:\"Dagenham\";s:13:\"billing_state\";s:5:\"Essex\";s:16:\"billing_postcode\";s:7:\"RM9 6JR\";s:15:\"billing_country\";s:2:\"GB\";s:13:\"billing_email\";s:21:\"ivankulongo@gmail.com\";s:13:\"billing_phone\";s:9:\"782873017\";s:15:\"shipping_method\";s:0:\"\";s:27:\"_wcs_subscription_ids_cache\";s:18:\"a:1:{i:0;i:17436;}\";s:15:\"paying_customer\";s:1:\"1\";s:15:\"_alg_wc_wl_item\";s:4:\"1021\";s:15:\"billing_company\";s:0:\"\";s:17:\"billing_address_2\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:30:\"woolentor_viewed_products_list\";s:1878:\"a:90:{i:1654538563;i:6575;i:1659706250;i:7394;i:1659706269;i:5663;i:1659712418;i:7191;i:1659713822;i:5670;i:1659718157;i:5660;i:1660032917;i:6706;i:1660033902;i:7196;i:1660035538;i:7185;i:1660035557;i:7158;i:1660035711;i:14484;i:1660035847;i:7188;i:1660035900;i:7199;i:1660035927;i:7371;i:1660036029;i:7178;i:1660041824;i:7207;i:1660465759;i:14496;i:1660465786;i:14493;i:1660466128;i:14490;i:1660467205;i:7202;i:1660477915;i:14487;i:1660489638;i:14787;i:1660493298;i:14778;i:1660493315;i:14771;i:1660493376;i:14769;i:1660493381;i:14801;i:1660493529;i:14798;i:1660493546;i:14795;i:1660493636;i:14785;i:1661708414;i:14835;i:1661729437;i:14838;i:1667868270;i:14904;i:1667868532;i:14890;i:1667868596;i:14888;i:1667950042;i:16329;i:1668041822;i:16347;i:1668118688;i:14902;i:1668118815;i:14900;i:1668118901;i:5666;i:1668118902;i:14761;i:1668119172;i:6569;i:1668131304;i:14908;i:1668131997;i:14894;i:1668132013;i:14910;i:1668132035;i:14886;i:1668132356;i:14906;i:1668634291;i:16300;i:1668646951;i:17389;i:1668648957;i:17391;i:1668648960;i:17381;i:1668649878;i:17393;i:1668652874;i:1067;i:1668813045;i:17385;i:1668813046;i:16325;i:1668813064;i:16321;i:1668813219;i:16342;i:1668813220;i:17383;i:1669663493;i:17311;i:1669663745;i:17399;i:1669669412;i:17372;i:1669775699;i:17309;i:1669775714;i:17303;i:1669775986;i:17313;i:1669776223;i:18071;i:1669776632;i:16311;i:1669776650;i:17298;i:1669777068;i:17412;i:1669924624;i:19040;i:1669924783;i:16333;i:1669924784;i:17294;i:1669924821;i:17288;i:1669924923;i:19034;i:1669924970;i:19032;i:1669924974;i:19038;i:1669924983;i:19044;i:1669924988;i:19042;i:1669925069;i:18980;i:1669925115;i:16306;i:1669925144;i:16316;i:1670529057;i:18879;i:1670980934;i:19173;i:1670981105;i:16337;i:1670981153;i:18081;i:1670981179;i:17416;i:1670981181;i:18972;i:1670981182;i:17404;i:1670981424;i:19311;i:1670981433;i:19306;i:1670981441;i:19643;i:1671037687;i:19257;}\";s:23:\"_paypal_subscription_id\";s:19:\"B-0GC126888M6260839\";s:45:\"wphu_elementor_pro_enable_notes_notifications\";s:1:\"1\";s:24:\"cartflows-5-start-notice\";s:14:\"delayed-notice\";s:26:\"cartflows-ca-5-star-notice\";s:16:\"notice-dismissed\";s:32:\"_wppb_email_change_request_nonce\";s:10:\"3929229479\";s:34:\"_wppb_pending_email_change_request\";s:80:\"a:2:{s:4:\"hash\";s:32:\"d41d8cd98f00b204e9800998ecf8427e\";s:9:\"new_email\";s:0:\"\";}\";s:15:\"cf-optin-notice\";s:16:\"notice-dismissed\";s:41:\"wphu_googlesitekit_site_verification_file\";s:16:\"3afd25314adb220d\";s:31:\"wphu_googlesitekit_access_token\";s:524:\"Q748U1qvRw1UavtcrLqZWWQxQ0o0L2lVUU0vc2J3ZXhWV0tVdWhkRk9FbWlsZ0kyZTU2VmJQTVZydHRSVUgvdjhRQ0Q5cE1NbnFRZFAwYTkyUk41cmtlcjJNL1h6djcza2NJNzJNeVViUjNmQkVaL2dGNWdRRm5lMnQ3bXFFTmNuYmtqWUhJclplSnZ5bG9EeDBBdzN1TmRnMmoxSkpFbW1oOXpNZkFhdlIxOWxWUmtjS1JPdDIzRmhCQ1Blei9MdlV6MDZsZHFmRDlzUkFSbkZxSW4vQUNyelcyYkthdldlcUdPYkpyRmkzbHROU1J1UjhPUUxhSWRYK09GcE5oSFJCMVhqbHA1RnQ0MEdjck1iaTEzdkhBT1NBQTN4WFE4VzZUWTVVTENEY2tBanJGQjZYWkQ4SVJUaklUcEZ4eE1UK3c0aDNmUkNLWEhaelFBaXpGVFlYVW52SHNMQkR2em03VDdxaTR3V0FkellZTFNReUNBc1lPR2lsQXgzK1NiT1AzanlBPT0=\";s:42:\"wphu_googlesitekit_access_token_expires_in\";s:4:\"3599\";s:42:\"wphu_googlesitekit_access_token_created_at\";s:10:\"1671048665\";s:32:\"wphu_googlesitekit_refresh_token\";s:448:\"4NYxUXYtMpOuI7kv5s1HH21oYWcrcmNvdnBPYVNSeG55ZGJTQ3BEYmtEV01nQUhaUGtaOTVOMzlzNUsrRW5ZWEFhUjE0SlcyUkpwZGpvY1M5K3hIVjVpV2ppQ0p4OGJueUJvTXZlR2tURnRhSDJWSlhqaHFpbC9qQTlXUU5FckZ2SUYwRHlsekhIdGVhUGlQN21wTlVSZGx4TkhneSs2UUwwRjh0M3lZS29aU212OW5xa2FEdzkrTmtreERHRG1qNFpRR1VWOU9iY2FiUDdRRWNYNVorbTk2VnkwQnd1NDZjZ3ovMWhJZlF4RWJZOGl3cERxcVdMMVA4SDBEWjllbGVuUkV0MG51VjBNZ3RhR3RvQU1KdDgvdGVwMnRRMGtEeHJVUGFWc0ZmQlB4VEdHd1BSNVJRL0hYekV5eVJiNlVBejErYXVWc2NTRnVKVDVv\";s:30:\"wphu_googlesitekit_auth_scopes\";s:377:\"a:7:{i:0;s:48:\"https://www.googleapis.com/auth/adsense.readonly\";i:1;s:42:\"https://www.googleapis.com/auth/webmasters\";i:2;s:50:\"https://www.googleapis.com/auth/analytics.readonly\";i:3;s:6:\"openid\";i:4;s:48:\"https://www.googleapis.com/auth/userinfo.profile\";i:5;s:48:\"https://www.googleapis.com/auth/siteverification\";i:6;s:46:\"https://www.googleapis.com/auth/userinfo.email\";}\";s:41:\"wphu_googlesitekit_additional_auth_scopes\";s:6:\"a:0:{}\";s:26:\"wphu_googlesitekit_profile\";s:155:\"a:2:{s:5:\"email\";s:21:\"ivankulongo@gmail.com\";s:5:\"photo\";s:88:\"https://lh3.googleusercontent.com/a-/AOh14Gg5xA5IMMU0PUafyd-OK3vGHnT_zjN-ouIfuR6vfg=s100\";}\";s:44:\"wphu_googlesitekitpersistent_initial_version\";s:6:\"1.75.0\";s:37:\"wphu_googlesitekit_site_verified_meta\";s:8:\"verified\";s:70:\"wphu_googlesitekit_transient_timeout_googlesitekit_user_input_settings\";s:10:\"1655260288\";s:62:\"wphu_googlesitekit_transient_googlesitekit_user_input_settings\";s:186:\"a:2:{s:13:\"postFrequency\";a:3:{s:10:\"answeredBy\";s:1:\"0\";s:5:\"scope\";s:4:\"user\";s:6:\"values\";a:0:{}}s:4:\"role\";a:3:{s:10:\"answeredBy\";s:1:\"0\";s:5:\"scope\";s:4:\"user\";s:6:\"values\";a:0:{}}}\";s:35:\"wphu_googlesitekit_user_input_state\";s:7:\"missing\";s:34:\"wphu_googlesitekit_survey_timeouts\";s:41:\"a:1:{s:14:\"view_dashboard\";i:1654741896;}\";s:35:\"mailchimp_woocommerce_is_subscribed\";s:1:\"1\";s:26:\"wphu_persisted_preferences\";s:237:\"a:2:{s:14:\"core/edit-post\";a:3:{s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:3:{i:0;s:11:\"post-status\";i:1;s:9:\"post-link\";i:2;s:14:\"featured-image\";}s:26:\"isComplementaryAreaVisible\";b:1;}s:9:\"_modified\";s:24:\"2022-11-29T02:25:25.856Z\";}\";s:30:\"_woocommerce_persistent_cart_1\";s:23:\"a:1:{s:4:\"cart\";a:0:{}}\";s:12:\"_order_count\";s:2:\"28\";s:21:\"elementor_preferences\";s:36:\"a:1:{s:7:\"exit_to\";s:9:\"dashboard\";}\";s:44:\"woocommerce_admin_help_panel_highlight_shown\";s:5:\"\"yes\"\";s:20:\"default_password_nag\";s:0:\"\";s:14:\"account_status\";s:8:\"approved\";s:24:\"um_member_directory_data\";s:137:\"a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}\";s:35:\"um_user_profile_url_slug_user_login\";s:5:\"admin\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:13:\"administrator\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:18:\"can_access_wpadmin\";i:1;s:20:\"can_not_see_adminbar\";i:0;s:17:\"can_edit_everyone\";i:1;s:19:\"can_delete_everyone\";i:1;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:16:\"default_homepage\";i:1;s:11:\"after_login\";s:14:\"redirect_admin\";s:12:\"after_logout\";s:13:\"redirect_home\";s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:1;s:26:\"can_access_private_profile\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:1;}','no'),
(1740750,'um_cache_userdata_44','a:53:{s:2:\"ID\";i:44;s:10:\"user_login\";s:24:\"Jasminekulongo@gmail.com\";s:9:\"user_pass\";s:34:\"$P$BCIJ2Llt5nSeRo87PbA52ul6FGp6ED0\";s:13:\"user_nicename\";s:23:\"jasminekulongogmail-com\";s:10:\"user_email\";s:21:\"jasminekulongo@il.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2022-11-08 09:36:59\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:24:\"Jasminekulongo@gmail.com\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:24:\"Jasminekulongo@gmail.com\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:27:\"_wcs_subscription_ids_cache\";s:6:\"a:0:{}\";s:35:\"mailchimp_woocommerce_is_subscribed\";s:0:\"\";s:14:\"wc_last_active\";s:10:\"1668124800\";s:30:\"_woocommerce_persistent_cart_1\";s:23:\"a:1:{s:4:\"cart\";a:0:{}}\";s:12:\"_order_count\";s:1:\"0\";s:30:\"woolentor_viewed_products_list\";s:27:\"a:1:{i:1667957392;i:16306;}\";s:14:\"account_status\";s:8:\"approved\";s:24:\"um_member_directory_data\";s:137:\"a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}\";s:44:\"um_email_as_username_Jasminekulongogmail-com\";s:24:\"Jasminekulongo@gmail.com\";s:35:\"um_user_profile_url_slug_user_login\";s:23:\"Jasminekulongogmail-com\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:10:\"subscriber\";s:5:\"roles\";a:1:{i:0;s:10:\"subscriber\";}s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:16:\"default_homepage\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:0;}','no'),
(1741772,'forminator_appearance_preset_639a415a7692f','a:6:{s:17:\"form-border-style\";s:5:\"solid\";s:12:\"form-padding\";s:0:\"\";s:11:\"form-border\";s:0:\"\";s:12:\"fields-style\";s:4:\"open\";s:10:\"form-style\";s:7:\"default\";s:15:\"indicator-label\";s:13:\"Submitting...\";}','yes'),
(1741788,'forminator_appearance_preset_default','a:10:{s:17:\"form-border-style\";s:5:\"solid\";s:12:\"form-padding\";s:6:\"custom\";s:11:\"form-border\";s:6:\"custom\";s:12:\"fields-style\";s:4:\"open\";s:10:\"form-style\";s:7:\"default\";s:15:\"indicator-label\";s:13:\"Submitting...\";s:16:\"form-padding-top\";s:3:\"-76\";s:18:\"form-border-radius\";s:0:\"\";s:14:\"use-custom-css\";s:0:\"\";s:17:\"form-padding-left\";s:4:\"-103\";}','yes'),
(1744988,'fluentmail-settings','a:3:{s:8:\"mappings\";a:1:{s:26:\"info@choiceresources.co.uk\";s:32:\"31c5b61fb8499507f15e0e84ef8ab2e2\";}s:11:\"connections\";a:1:{s:32:\"31c5b61fb8499507f15e0e84ef8ab2e2\";a:2:{s:5:\"title\";s:11:\"SMTP server\";s:17:\"provider_settings\";a:14:{s:11:\"sender_name\";s:16:\"Choice Resources\";s:12:\"sender_email\";s:26:\"info@choiceresources.co.uk\";s:15:\"force_from_name\";s:2:\"no\";s:16:\"force_from_email\";s:3:\"yes\";s:11:\"return_path\";s:3:\"yes\";s:4:\"host\";s:21:\"choiceresources.co.uk\";s:4:\"port\";s:3:\"465\";s:4:\"auth\";s:3:\"yes\";s:8:\"username\";s:26:\"info@choiceresources.co.uk\";s:8:\"password\";s:10:\"#Teacher12\";s:8:\"auto_tls\";s:3:\"yes\";s:10:\"encryption\";s:3:\"ssl\";s:9:\"key_store\";s:2:\"db\";s:8:\"provider\";s:4:\"smtp\";}}}s:4:\"misc\";a:4:{s:10:\"log_emails\";s:3:\"yes\";s:23:\"log_saved_interval_days\";s:2:\"14\";s:22:\"disable_fluentcrm_logs\";s:2:\"no\";s:18:\"default_connection\";s:32:\"31c5b61fb8499507f15e0e84ef8ab2e2\";}}','yes'),
(1755949,'cf_analytics_optin','no','yes'),
(1756385,'rul_version','3.0.8.5','no'),
(1756386,'loginwp_from_ab_initio','true','yes'),
(1756387,'loginwp_install_date','2022-12-15 16:20:12','yes'),
(1758753,'plugin_erident_settings','a:33:{s:19:\"dashboard_data_left\";s:38:\"Thank you for creating with WordPress.\";s:20:\"dashboard_data_right\";s:27:\"Â© 2022 All Rights Reserved\";s:20:\"dashboard_image_logo\";s:70:\"https://choiceresources.co.uk/wp-content/uploads/2022/12/Logo-logo.png\";s:26:\"dashboard_image_logo_width\";i:300;s:27:\"dashboard_image_logo_height\";i:300;s:20:\"dashboard_power_text\";s:32:\"Powered by Choiceresources.co.uk\";s:21:\"dashboard_login_width\";i:400;s:22:\"dashboard_login_radius\";i:4;s:22:\"dashboard_login_border\";s:6:\"double\";s:22:\"dashboard_border_thick\";i:2;s:22:\"dashboard_border_color\";s:7:\"#dddddd\";s:18:\"dashboard_login_bg\";s:7:\"#ffffff\";s:20:\"dashboard_text_color\";s:7:\"#3c434a\";s:26:\"dashboard_input_text_color\";s:7:\"#2c3338\";s:25:\"dashboard_label_text_size\";i:14;s:25:\"dashboard_input_text_size\";i:24;s:20:\"dashboard_link_color\";s:7:\"#ffffff\";s:21:\"dashboard_link_shadow\";s:7:\"#ffffff\";s:27:\"dashboard_check_form_shadow\";i:1;s:26:\"dashboard_check_backtoblog\";i:1;s:21:\"dashboard_form_shadow\";s:7:\"#3d3d3d\";s:22:\"dashboard_button_color\";s:7:\"#f8049c\";s:27:\"dashboard_button_text_color\";s:7:\"#FFFFFF\";s:12:\"top_bg_color\";s:7:\"#2ea5eb\";s:12:\"top_bg_image\";s:0:\"\";s:13:\"top_bg_repeat\";s:9:\"no-repeat\";s:11:\"top_bg_xpos\";s:4:\"left\";s:11:\"top_bg_ypos\";s:3:\"top\";s:14:\"login_bg_image\";s:0:\"\";s:15:\"login_bg_repeat\";s:6:\"repeat\";s:13:\"login_bg_xpos\";s:4:\"left\";s:13:\"login_bg_ypos\";s:3:\"top\";s:11:\"top_bg_size\";s:4:\"auto\";}','yes'),
(1758777,'rsssl_upgraded_to_6_dismissed','1','no'),
(1758971,'forminator_days_rating_later_dismiss','1','yes'),
(1758983,'rsssl_6_notice_dismissed','1','no'),
(1758995,'rsssl_onboarding_dismissed','1','no'),
(1759003,'_transient_rsssl_http_methods_allowed','a:1:{s:7:\"allowed\";a:18:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";i:2;s:3:\"PUT\";i:3;s:6:\"DELETE\";i:4;s:4:\"HEAD\";i:5;s:7:\"OPTIONS\";i:6;s:7:\"CONNECT\";i:7;s:5:\"TRACE\";i:8;s:5:\"TRACK\";i:9;s:5:\"PATCH\";i:10;s:4:\"COPY\";i:11;s:4:\"LINK\";i:12;s:6:\"UNLINK\";i:13;s:5:\"PURGE\";i:14;s:4:\"LOCK\";i:15;s:6:\"UNLOCK\";i:16;s:8:\"PROPFIND\";i:17;s:4:\"VIEW\";}}','yes'),
(2050285,'updraft_lock_9471bc237ccf','1672579549','no'),
(2050307,'_elementor_pro_license_v2_data_fallback','a:2:{s:7:\"timeout\";i:1730290907;s:5:\"value\";s:2739:\"{\"expires\":\"2025-09-08 23:35:28\",\"subscription_id\":\"10254663\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"editor_comments\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\"],\"tier\":\"advanced\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}','off'),
(2050308,'_elementor_pro_license_v2_data','a:2:{s:7:\"timeout\";i:1730247707;s:5:\"value\";s:2739:\"{\"expires\":\"2025-09-08 23:35:28\",\"subscription_id\":\"10254663\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"editor_comments\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\"],\"tier\":\"advanced\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}','off'),
(2084006,'txfx_plt_schema_version','3','yes'),
(2157060,'pda_options','a:1:{s:19:\"view_by_logged_user\";b:0;}','yes'),
(2157064,'updated_htaccess_success','1','yes'),
(2157128,'pda_free_migrated','true','yes'),
(2157224,'rsssl_wp_version_detected','found','no'),
(2157231,'FREE_PDA_SETTINGS','a:3:{s:24:\"enable_image_hot_linking\";b:0;s:22:\"search_result_page_404\";N;s:24:\"enable_directory_listing\";N;}','yes'),
(2253078,'_templately_migrate','2.2.3','no'),
(2253166,'eael_admin_menu_notice','5','no'),
(2258925,'updraft_pcloud','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-eceb93b5712545b42c95d711625a0e21\";a:0:{}}}','yes'),
(2258999,'updraft_remotesites','','yes'),
(2259000,'updraft_migrator_localkeys','','yes'),
(2259001,'updraft_central_localkeys','','yes'),
(2277330,'betterdocs_db_version','1.0','yes'),
(2277333,'betterdocs_settings','a:96:{s:11:\"multiple_kb\";s:0:\"\";s:16:\"builtin_doc_page\";i:1;s:20:\"breadcrumb_doc_title\";s:4:\"Docs\";s:9:\"docs_slug\";s:4:\"docs\";s:9:\"docs_page\";i:0;s:13:\"category_slug\";s:13:\"docs-category\";s:8:\"tag_slug\";s:8:\"docs-tag\";s:21:\"disable_root_slug_mkb\";s:0:\"\";s:19:\"permalink_structure\";s:4:\"docs\";s:8:\"doc_page\";i:0;s:11:\"live_search\";i:1;s:14:\"advance_search\";s:0:\"\";s:22:\"child_category_exclude\";s:0:\"\";s:21:\"popular_keyword_limit\";i:5;s:19:\"search_letter_limit\";i:3;s:18:\"search_placeholder\";s:8:\"Search..\";s:18:\"search_button_text\";s:6:\"Search\";s:21:\"search_not_found_text\";s:26:\"Sorry, no docs were found.\";s:19:\"search_result_image\";i:1;s:15:\"kb_based_search\";s:0:\"\";s:14:\"masonry_layout\";i:1;s:13:\"terms_orderby\";s:16:\"betterdocs_order\";s:25:\"alphabetically_order_term\";s:0:\"\";s:11:\"terms_order\";s:3:\"ASC\";s:25:\"alphabetically_order_post\";s:16:\"betterdocs_order\";s:10:\"docs_order\";s:3:\"ASC\";s:18:\"nested_subcategory\";s:0:\"\";s:13:\"column_number\";i:3;s:12:\"posts_number\";i:10;s:10:\"post_count\";i:1;s:10:\"count_text\";s:8:\"articles\";s:19:\"count_text_singular\";s:7:\"article\";s:15:\"exploremore_btn\";i:1;s:19:\"exploremore_btn_txt\";s:12:\"Explore More\";s:10:\"doc_single\";i:0;s:10:\"enable_toc\";i:1;s:9:\"toc_title\";s:17:\"Table of Contents\";s:13:\"toc_hierarchy\";i:1;s:15:\"toc_list_number\";i:1;s:17:\"toc_dynamic_title\";i:0;s:17:\"enable_sticky_toc\";i:1;s:17:\"sticky_toc_offset\";i:100;s:22:\"collapsible_toc_mobile\";s:0:\"\";s:21:\"supported_heading_tag\";a:6:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;i:5;i:6;}s:17:\"enable_post_title\";i:1;s:14:\"title_link_ctc\";i:1;s:17:\"enable_breadcrumb\";i:1;s:20:\"breadcrumb_home_text\";s:4:\"Home\";s:19:\"breadcrumb_home_url\";s:29:\"https://choiceresources.co.uk\";s:26:\"enable_breadcrumb_category\";i:1;s:23:\"enable_breadcrumb_title\";i:1;s:23:\"enable_sidebar_cat_list\";i:1;s:17:\"enable_print_icon\";i:1;s:11:\"enable_tags\";i:1;s:14:\"email_feedback\";i:1;s:18:\"feedback_link_text\";s:29:\"Still stuck? How can we help?\";s:12:\"feedback_url\";s:0:\"\";s:19:\"feedback_form_title\";s:16:\"How can we help?\";s:13:\"email_address\";s:21:\"ivankulongo@gmail.com\";s:21:\"show_last_update_time\";i:1;s:17:\"enable_navigation\";i:1;s:14:\"enable_comment\";s:0:\"\";s:13:\"enable_credit\";i:1;s:18:\"archive_page_title\";i:0;s:22:\"enable_archive_sidebar\";i:1;s:26:\"archive_nested_subcategory\";i:1;s:15:\"customizer_link\";i:0;s:11:\"search_form\";s:24:\"[betterdocs_search_form]\";s:13:\"feedback_form\";s:26:\"[betterdocs_feedback_form]\";s:13:\"category_grid\";s:26:\"[betterdocs_category_grid]\";s:12:\"category_box\";s:25:\"[betterdocs_category_box]\";s:13:\"category_list\";s:26:\"[betterdocs_category_list]\";s:17:\"faq_modern_layout\";s:28:\"[betterdocs_faq_list_modern]\";s:18:\"faq_classic_layout\";s:29:\"[betterdocs_faq_list_classic]\";s:9:\"rms_title\";i:0;s:13:\"article_roles\";s:13:\"administrator\";s:14:\"settings_roles\";s:13:\"administrator\";s:15:\"analytics_roles\";s:13:\"administrator\";s:25:\"content_restriction_title\";i:0;s:26:\"enable_content_restriction\";s:0:\"\";s:18:\"content_visibility\";s:3:\"all\";s:17:\"restrict_template\";s:3:\"all\";s:17:\"restrict_category\";s:3:\"all\";s:23:\"restricted_redirect_url\";s:0:\"\";s:16:\"enable_reporting\";i:0;s:19:\"reporting_frequency\";s:17:\"betterdocs_weekly\";s:13:\"reporting_day\";s:6:\"monday\";s:15:\"reporting_email\";s:21:\"ivankulongo@gmail.com\";s:25:\"reporting_subject_updated\";s:58:\"Your Documentation Performance of Choice Resources Website\";s:21:\"select_reporting_data\";a:3:{i:0;s:8:\"overview\";i:1;s:8:\"top-docs\";i:2;s:11:\"most-search\";}s:11:\"test_report\";i:0;s:8:\"ia_title\";i:0;s:14:\"ia_description\";i:0;s:19:\"enable_disable_free\";s:0:\"\";s:22:\"ia_enable_preview_free\";s:0:\"\";s:8:\"ia_image\";i:0;}','yes'),
(2277335,'betterdocs_notices','a:3:{s:6:\"opt_in\";a:1:{s:5:\"start\";i:1674077146;}s:7:\"version\";s:5:\"1.0.0\";s:6:\"review\";a:2:{s:5:\"start\";i:1675805151;s:10:\"recurrence\";i:30;}}','no'),
(2277336,'_betterdocs_caps_assigned','1.0.0','yes'),
(2287460,'elementor_google_font','1','yes'),
(2287461,'elementor_experiment-nested-elements','active','yes'),
(2287462,'elementor_experiment-e_lazyload','active','yes'),
(2287463,'elementor_experiment-kit-elements-defaults','default','yes'),
(2287464,'elementor_experiment-loop','active','yes'),
(2287501,'elementor_font_awesome_pro_kit_id','','yes'),
(3222135,'wt_cli_version','3.1.8','yes'),
(3222136,'cky_cookie_consent_lite_db_version','3.1.8','yes'),
(3222138,'cky_missing_tables','a:0:{}','yes'),
(3222139,'_transient_cky_banners_transient_prefix','0.19326800 1678906239','yes'),
(3222140,'cky_banner_template','a:1:{s:2:\"en\";a:2:{s:4:\"html\";s:10046:\"<div class=\"cky-overlay cky-hide\"></div><div class=\"cky-btn-revisit-wrapper cky-revisit-hide\" data-cky-tag=\"revisit-consent\" data-tooltip=\"Cookie Settings\" style=\"background-color:#0056a7\"> <button class=\"cky-btn-revisit\" aria-label=\"Cookie Settings\"> <img src=\"https://choiceresources.co.uk/wp-content/plugins/cookie-law-info/lite/frontend/images/revisit.svg\" alt=\"Revisit consent button\"> </button></div><div class=\"cky-consent-container cky-hide\"> <div class=\"cky-consent-bar\" data-cky-tag=\"notice\" style=\"background-color:#FFFFFF;border-color:#f4f4f4;color:#212121\">  <div class=\"cky-notice\"> <p class=\"cky-title\" data-cky-tag=\"title\" style=\"color:#212121\">We value your privacy</p><div class=\"cky-notice-group\"> <div class=\"cky-notice-des\" data-cky-tag=\"description\" style=\"color:#212121\"> <p>We use cookies to enhance your browsing experience, serve personalized ads or content, and analyze our traffic. By clicking \"Accept All\", you consent to our use of cookies.</p> </div><div class=\"cky-notice-btn-wrapper\" data-cky-tag=\"notice-buttons\"> <button class=\"cky-btn cky-btn-customize\" aria-label=\"Customize\" data-cky-tag=\"settings-button\" style=\"color:#1863dc;background-color:transparent;border-color:#1863dc\">Customize</button> <button class=\"cky-btn cky-btn-reject\" aria-label=\"Reject All\" data-cky-tag=\"reject-button\" style=\"color:#1863dc;background-color:transparent;border-color:#1863dc\">Reject All</button> <button class=\"cky-btn cky-btn-accept\" aria-label=\"Accept All\" data-cky-tag=\"accept-button\" style=\"color:#FFFFFF;background-color:#1863dc;border-color:#1863dc\">Accept All</button>  </div></div></div></div></div><div class=\"cky-modal\"> <div class=\"cky-preference-center\" data-cky-tag=\"detail\" style=\"color:#212121;background-color:#FFFFFF;border-color:#F4F4F4\"> <div class=\"cky-preference-header\"> <span class=\"cky-preference-title\" data-cky-tag=\"detail-title\" style=\"color:#212121\">Customize Consent Preferences</span> <button class=\"cky-btn-close\" aria-label=\"[cky_preference_close_label]\" data-cky-tag=\"detail-close\"> <img src=\"https://choiceresources.co.uk/wp-content/plugins/cookie-law-info/lite/frontend/images/close.svg\" alt=\"Close\"> </button> </div><div class=\"cky-preference-body-wrapper\"> <div class=\"cky-preference-content-wrapper\" data-cky-tag=\"detail-description\" style=\"color:#212121\"> <p>We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.</p><p>The cookies that are categorized as \"Necessary\" are stored on your browser as they are essential for enabling the basic functionalities of the site. </p><p>We also use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. These cookies will only be stored in your browser with your prior consent.</p><p>You can choose to enable or disable some or all of these cookies but disabling some of them may affect your browsing experience.</p> </div><div class=\"cky-accordion-wrapper\" data-cky-tag=\"detail-categories\"> <div class=\"cky-accordion\" id=\"ckyDetailCategorynecessary\"> <div class=\"cky-accordion-item\"> <div class=\"cky-accordion-chevron\"><i class=\"cky-chevron-right\"></i></div> <div class=\"cky-accordion-header-wrapper\"> <div class=\"cky-accordion-header\"><button class=\"cky-accordion-btn\" aria-label=\"Necessary\" data-cky-tag=\"detail-category-title\" style=\"color:#212121\">Necessary</button><span class=\"cky-always-active\">Always Active</span> <div class=\"cky-switch\" data-cky-tag=\"detail-category-toggle\"><input type=\"checkbox\" id=\"ckySwitchnecessary\"></div> </div> <div class=\"cky-accordion-header-des\" data-cky-tag=\"detail-category-description\" style=\"color:#212121\"> <p>Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.</p></div> </div> </div> <div class=\"cky-accordion-body\"> <div class=\"cky-audit-table\" data-cky-tag=\"audit-table\" style=\"color:#212121;background-color:#f4f4f4;border-color:#ebebeb\"><p class=\"cky-empty-cookies-text\">No cookies to display.</p></div> </div> </div><div class=\"cky-accordion\" id=\"ckyDetailCategoryfunctional\"> <div class=\"cky-accordion-item\"> <div class=\"cky-accordion-chevron\"><i class=\"cky-chevron-right\"></i></div> <div class=\"cky-accordion-header-wrapper\"> <div class=\"cky-accordion-header\"><button class=\"cky-accordion-btn\" aria-label=\"Functional\" data-cky-tag=\"detail-category-title\" style=\"color:#212121\">Functional</button><span class=\"cky-always-active\">Always Active</span> <div class=\"cky-switch\" data-cky-tag=\"detail-category-toggle\"><input type=\"checkbox\" id=\"ckySwitchfunctional\"></div> </div> <div class=\"cky-accordion-header-des\" data-cky-tag=\"detail-category-description\" style=\"color:#212121\"> <p>Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.</p></div> </div> </div> <div class=\"cky-accordion-body\"> <div class=\"cky-audit-table\" data-cky-tag=\"audit-table\" style=\"color:#212121;background-color:#f4f4f4;border-color:#ebebeb\"><p class=\"cky-empty-cookies-text\">No cookies to display.</p></div> </div> </div><div class=\"cky-accordion\" id=\"ckyDetailCategoryanalytics\"> <div class=\"cky-accordion-item\"> <div class=\"cky-accordion-chevron\"><i class=\"cky-chevron-right\"></i></div> <div class=\"cky-accordion-header-wrapper\"> <div class=\"cky-accordion-header\"><button class=\"cky-accordion-btn\" aria-label=\"Analytics\" data-cky-tag=\"detail-category-title\" style=\"color:#212121\">Analytics</button><span class=\"cky-always-active\">Always Active</span> <div class=\"cky-switch\" data-cky-tag=\"detail-category-toggle\"><input type=\"checkbox\" id=\"ckySwitchanalytics\"></div> </div> <div class=\"cky-accordion-header-des\" data-cky-tag=\"detail-category-description\" style=\"color:#212121\"> <p>Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.</p></div> </div> </div> <div class=\"cky-accordion-body\"> <div class=\"cky-audit-table\" data-cky-tag=\"audit-table\" style=\"color:#212121;background-color:#f4f4f4;border-color:#ebebeb\"><p class=\"cky-empty-cookies-text\">No cookies to display.</p></div> </div> </div><div class=\"cky-accordion\" id=\"ckyDetailCategoryperformance\"> <div class=\"cky-accordion-item\"> <div class=\"cky-accordion-chevron\"><i class=\"cky-chevron-right\"></i></div> <div class=\"cky-accordion-header-wrapper\"> <div class=\"cky-accordion-header\"><button class=\"cky-accordion-btn\" aria-label=\"Performance\" data-cky-tag=\"detail-category-title\" style=\"color:#212121\">Performance</button><span class=\"cky-always-active\">Always Active</span> <div class=\"cky-switch\" data-cky-tag=\"detail-category-toggle\"><input type=\"checkbox\" id=\"ckySwitchperformance\"></div> </div> <div class=\"cky-accordion-header-des\" data-cky-tag=\"detail-category-description\" style=\"color:#212121\"> <p>Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.</p></div> </div> </div> <div class=\"cky-accordion-body\"> <div class=\"cky-audit-table\" data-cky-tag=\"audit-table\" style=\"color:#212121;background-color:#f4f4f4;border-color:#ebebeb\"><p class=\"cky-empty-cookies-text\">No cookies to display.</p></div> </div> </div><div class=\"cky-accordion\" id=\"ckyDetailCategoryadvertisement\"> <div class=\"cky-accordion-item\"> <div class=\"cky-accordion-chevron\"><i class=\"cky-chevron-right\"></i></div> <div class=\"cky-accordion-header-wrapper\"> <div class=\"cky-accordion-header\"><button class=\"cky-accordion-btn\" aria-label=\"Advertisement\" data-cky-tag=\"detail-category-title\" style=\"color:#212121\">Advertisement</button><span class=\"cky-always-active\">Always Active</span> <div class=\"cky-switch\" data-cky-tag=\"detail-category-toggle\"><input type=\"checkbox\" id=\"ckySwitchadvertisement\"></div> </div> <div class=\"cky-accordion-header-des\" data-cky-tag=\"detail-category-description\" style=\"color:#212121\"> <p>Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.</p></div> </div> </div> <div class=\"cky-accordion-body\"> <div class=\"cky-audit-table\" data-cky-tag=\"audit-table\" style=\"color:#212121;background-color:#f4f4f4;border-color:#ebebeb\"><p class=\"cky-empty-cookies-text\">No cookies to display.</p></div> </div> </div> </div></div><div class=\"cky-footer-wrapper\"> <span class=\"cky-footer-shadow\"></span> <div class=\"cky-prefrence-btn-wrapper\" data-cky-tag=\"detail-buttons\"> <button class=\"cky-btn cky-btn-reject\" aria-label=\"Reject All\" data-cky-tag=\"detail-reject-button\" style=\"color:#1863dc;background-color:transparent;border-color:#1863dc\"> Reject All </button> <button class=\"cky-btn cky-btn-preferences\" aria-label=\"Save My Preferences\" data-cky-tag=\"detail-save-button\" style=\"color:#1863dc;background-color:transparent;border-color:#1863dc\"> Save My Preferences </button> <button class=\"cky-btn cky-btn-accept\" aria-label=\"Accept All\" data-cky-tag=\"detail-accept-button\" style=\"color:#ffffff;background-color:#1863dc;border-color:#1863dc\"> Accept All </button> </div><div style=\"padding: 8px 24px;font-size: 12px;font-weight: 400;line-height: 20px;text-align: right;border-radius: 0 0 6px 6px;direction: ltr;justify-content: flex-end;align-items: center;background-color:#EDEDED;color:#293C5B\" data-cky-tag=\"detail-powered-by\"> Powered by <a target=\"_blank\" rel=\"noopener\" href=\"https://www.cookieyes.com/product/cookie-consent\" style=\"margin-left: 5px;line-height: 0\"><img src=\"https://choiceresources.co.uk/wp-content/plugins/cookie-law-info/lite/frontend/images/poweredbtcky.svg\" alt=\"Cookieyes logo\" style=\"width: 78px;height: 13px;margin: 0\"></a> </div></div></div></div>\";s:6:\"styles\";s:19864:\".cky-overlay{background: #000000; opacity: 0.4; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999999;}.cky-hide{display: none;}.cky-btn-revisit-wrapper{display: flex; align-items: center; justify-content: center; background: #0056a7; width: 45px; height: 45px; border-radius: 50%; position: fixed; z-index: 999999; cursor: pointer;}.cky-revisit-bottom-left{bottom: 15px; left: 15px;}.cky-revisit-bottom-right{bottom: 15px; right: 15px;}.cky-btn-revisit-wrapper .cky-btn-revisit{display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; position: relative; margin: 0; padding: 0;}.cky-btn-revisit-wrapper .cky-btn-revisit img{max-width: fit-content; margin: 0; height: 30px; width: 30px;}.cky-revisit-bottom-left:hover::before{content: attr(data-tooltip); position: absolute; background: #4e4b66; color: #ffffff; left: calc(100% + 7px); font-size: 12px; line-height: 16px; width: max-content; padding: 4px 8px; border-radius: 4px;}.cky-revisit-bottom-left:hover::after{position: absolute; content: \"\"; border: 5px solid transparent; left: calc(100% + 2px); border-left-width: 0; border-right-color: #4e4b66;}.cky-revisit-bottom-right:hover::before{content: attr(data-tooltip); position: absolute; background: #4e4b66; color: #ffffff; right: calc(100% + 7px); font-size: 12px; line-height: 16px; width: max-content; padding: 4px 8px; border-radius: 4px;}.cky-revisit-bottom-right:hover::after{position: absolute; content: \"\"; border: 5px solid transparent; right: calc(100% + 2px); border-right-width: 0; border-left-color: #4e4b66;}.cky-revisit-hide{display: none;}.cky-consent-container{position: fixed; width: 440px; box-sizing: border-box; z-index: 9999999; border-radius: 6px;}.cky-consent-container .cky-consent-bar{background: #ffffff; border: 1px solid; padding: 20px 26px; box-shadow: 0 -1px 10px 0 #acabab4d; border-radius: 6px;}.cky-box-bottom-left{bottom: 40px; left: 40px;}.cky-box-bottom-right{bottom: 40px; right: 40px;}.cky-box-top-left{top: 40px; left: 40px;}.cky-box-top-right{top: 40px; right: 40px;}.cky-custom-brand-logo-wrapper .cky-custom-brand-logo{width: 100px; height: auto; margin: 0 0 12px 0;}.cky-notice .cky-title{color: #212121; font-weight: 700; font-size: 18px; line-height: 24px; margin: 0 0 12px 0;}.cky-notice-des *,.cky-preference-content-wrapper *,.cky-accordion-header-des *,.cky-gpc-wrapper .cky-gpc-desc *{font-size: 14px;}.cky-notice-des{color: #212121; font-size: 14px; line-height: 24px; font-weight: 400;}.cky-notice-des img{height: 25px; width: 25px;}.cky-consent-bar .cky-notice-des p,.cky-gpc-wrapper .cky-gpc-desc p,.cky-preference-body-wrapper .cky-preference-content-wrapper p,.cky-accordion-header-wrapper .cky-accordion-header-des p,.cky-cookie-des-table li div:last-child p{color: inherit; margin-top: 0;}.cky-notice-des P:last-child,.cky-preference-content-wrapper p:last-child,.cky-cookie-des-table li div:last-child p:last-child,.cky-gpc-wrapper .cky-gpc-desc p:last-child{margin-bottom: 0;}.cky-notice-des a.cky-policy,.cky-notice-des button.cky-policy{font-size: 14px; color: #1863dc; white-space: nowrap; cursor: pointer; background: transparent; border: 1px solid; text-decoration: underline;}.cky-notice-des button.cky-policy{padding: 0;}.cky-notice-des a.cky-policy:focus-visible,.cky-notice-des button.cky-policy:focus-visible,.cky-preference-content-wrapper .cky-show-desc-btn:focus-visible,.cky-accordion-header .cky-accordion-btn:focus-visible,.cky-preference-header .cky-btn-close:focus-visible,.cky-switch input[type=\"checkbox\"]:focus-visible,.cky-footer-wrapper a:focus-visible,.cky-btn:focus-visible{outline: 2px solid #1863dc; outline-offset: 2px;}.cky-btn:focus:not(:focus-visible),.cky-accordion-header .cky-accordion-btn:focus:not(:focus-visible),.cky-preference-content-wrapper .cky-show-desc-btn:focus:not(:focus-visible),.cky-btn-revisit-wrapper .cky-btn-revisit:focus:not(:focus-visible),.cky-preference-header .cky-btn-close:focus:not(:focus-visible),.cky-consent-bar .cky-banner-btn-close:focus:not(:focus-visible){outline: 0;}button.cky-show-desc-btn:not(:hover):not(:active){color: #1863dc; background: transparent;}button.cky-accordion-btn:not(:hover):not(:active),button.cky-banner-btn-close:not(:hover):not(:active),button.cky-btn-revisit:not(:hover):not(:active),button.cky-btn-close:not(:hover):not(:active){background: transparent;}.cky-consent-bar button:hover,.cky-modal.cky-modal-open button:hover,.cky-consent-bar button:focus,.cky-modal.cky-modal-open button:focus{text-decoration: none;}.cky-notice-btn-wrapper{display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; margin-top: 16px;}.cky-notice-btn-wrapper .cky-btn{text-shadow: none; box-shadow: none;}.cky-btn{flex: auto; max-width: 100%; font-size: 14px; font-family: inherit; line-height: 24px; padding: 8px; font-weight: 500; margin: 0 8px 0 0; border-radius: 2px; cursor: pointer; text-align: center; text-transform: none; min-height: 0;}.cky-btn:hover{opacity: 0.8;}.cky-btn-customize{color: #1863dc; background: transparent; border: 2px solid #1863dc;}.cky-btn-reject{color: #1863dc; background: transparent; border: 2px solid #1863dc;}.cky-btn-accept{background: #1863dc; color: #ffffff; border: 2px solid #1863dc;}.cky-btn:last-child{margin-right: 0;}@media (max-width: 576px){.cky-box-bottom-left{bottom: 0; left: 0;}.cky-box-bottom-right{bottom: 0; right: 0;}.cky-box-top-left{top: 0; left: 0;}.cky-box-top-right{top: 0; right: 0;}}@media (max-width: 440px){.cky-box-bottom-left, .cky-box-bottom-right, .cky-box-top-left, .cky-box-top-right{width: 100%; max-width: 100%;}.cky-consent-container .cky-consent-bar{padding: 20px 0;}.cky-custom-brand-logo-wrapper, .cky-notice .cky-title, .cky-notice-des, .cky-notice-btn-wrapper{padding: 0 24px;}.cky-notice-des{max-height: 40vh; overflow-y: scroll;}.cky-notice-btn-wrapper{flex-direction: column; margin-top: 0;}.cky-btn{width: 100%; margin: 10px 0 0 0;}.cky-notice-btn-wrapper .cky-btn-customize{order: 2;}.cky-notice-btn-wrapper .cky-btn-reject{order: 3;}.cky-notice-btn-wrapper .cky-btn-accept{order: 1; margin-top: 16px;}}@media (max-width: 352px){.cky-notice .cky-title{font-size: 16px;}.cky-notice-des *{font-size: 12px;}.cky-notice-des, .cky-btn{font-size: 12px;}}.cky-modal.cky-modal-open{display: flex; visibility: visible; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); transform: translate(-50%, -50%); top: 50%; left: 50%; transition: all 1s ease;}.cky-modal{box-shadow: 0 32px 68px rgba(0, 0, 0, 0.3); margin: 0 auto; position: fixed; max-width: 100%; background: #ffffff; top: 50%; box-sizing: border-box; border-radius: 6px; z-index: 999999999; color: #212121; -webkit-transform: translate(-50%, 100%); -moz-transform: translate(-50%, 100%); -ms-transform: translate(-50%, 100%); -o-transform: translate(-50%, 100%); transform: translate(-50%, 100%); visibility: hidden; transition: all 0s ease;}.cky-preference-center{max-height: 79vh; overflow: hidden; width: 845px; overflow: hidden; flex: 1 1 0; display: flex; flex-direction: column; border-radius: 6px;}.cky-preference-header{display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid;}.cky-preference-header .cky-preference-title{font-size: 18px; font-weight: 700; line-height: 24px;}.cky-preference-header .cky-btn-close{margin: 0; cursor: pointer; vertical-align: middle; padding: 0; background: none; border: none; width: auto; height: auto; min-height: 0; line-height: 0; text-shadow: none; box-shadow: none;}.cky-preference-header .cky-btn-close img{margin: 0; height: 10px; width: 10px;}.cky-preference-body-wrapper{padding: 0 24px; flex: 1; overflow: auto; box-sizing: border-box;}.cky-preference-content-wrapper,.cky-gpc-wrapper .cky-gpc-desc{font-size: 14px; line-height: 24px; font-weight: 400; padding: 12px 0;}.cky-preference-content-wrapper{border-bottom: 1px solid;}.cky-preference-content-wrapper img{height: 25px; width: 25px;}.cky-preference-content-wrapper .cky-show-desc-btn{font-size: 14px; font-family: inherit; color: #1863dc; text-decoration: none; line-height: 24px; padding: 0; margin: 0; white-space: nowrap; cursor: pointer; background: transparent; border-color: transparent; text-transform: none; min-height: 0; text-shadow: none; box-shadow: none;}.cky-accordion-wrapper{margin-bottom: 10px;}.cky-accordion{border-bottom: 1px solid;}.cky-accordion:last-child{border-bottom: none;}.cky-accordion .cky-accordion-item{display: flex; margin-top: 10px;}.cky-accordion .cky-accordion-body{display: none;}.cky-accordion.cky-accordion-active .cky-accordion-body{display: block; padding: 0 22px; margin-bottom: 16px;}.cky-accordion-header-wrapper{cursor: pointer; width: 100%;}.cky-accordion-item .cky-accordion-header{display: flex; justify-content: space-between; align-items: center;}.cky-accordion-header .cky-accordion-btn{font-size: 16px; font-family: inherit; color: #212121; line-height: 24px; background: none; border: none; font-weight: 700; padding: 0; margin: 0; cursor: pointer; text-transform: none; min-height: 0; text-shadow: none; box-shadow: none;}.cky-accordion-header .cky-always-active{color: #008000; font-weight: 600; line-height: 24px; font-size: 14px;}.cky-accordion-header-des{font-size: 14px; line-height: 24px; margin: 10px 0 16px 0;}.cky-accordion-chevron{margin-right: 22px; position: relative; cursor: pointer;}.cky-accordion-chevron-hide{display: none;}.cky-accordion .cky-accordion-chevron i::before{content: \"\"; position: absolute; border-right: 1.4px solid; border-bottom: 1.4px solid; border-color: inherit; height: 6px; width: 6px; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); transition: all 0.2s ease-in-out; top: 8px;}.cky-accordion.cky-accordion-active .cky-accordion-chevron i::before{-webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg);}.cky-audit-table{background: #f4f4f4; border-radius: 6px;}.cky-audit-table .cky-empty-cookies-text{color: inherit; font-size: 12px; line-height: 24px; margin: 0; padding: 10px;}.cky-audit-table .cky-cookie-des-table{font-size: 12px; line-height: 24px; font-weight: normal; padding: 15px 10px; border-bottom: 1px solid; border-bottom-color: inherit; margin: 0;}.cky-audit-table .cky-cookie-des-table:last-child{border-bottom: none;}.cky-audit-table .cky-cookie-des-table li{list-style-type: none; display: flex; padding: 3px 0;}.cky-audit-table .cky-cookie-des-table li:first-child{padding-top: 0;}.cky-cookie-des-table li div:first-child{width: 100px; font-weight: 600; word-break: break-word; word-wrap: break-word;}.cky-cookie-des-table li div:last-child{flex: 1; word-break: break-word; word-wrap: break-word; margin-left: 8px;}.cky-footer-shadow{display: block; width: 100%; height: 40px; background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%); position: absolute; bottom: calc(100% - 1px);}.cky-footer-wrapper{position: relative;}.cky-prefrence-btn-wrapper{display: flex; flex-wrap: wrap; align-items: center; justify-content: center; padding: 22px 24px; border-top: 1px solid;}.cky-prefrence-btn-wrapper .cky-btn{flex: auto; max-width: 100%; text-shadow: none; box-shadow: none;}.cky-btn-preferences{color: #1863dc; background: transparent; border: 2px solid #1863dc;}.cky-preference-header,.cky-preference-body-wrapper,.cky-preference-content-wrapper,.cky-accordion-wrapper,.cky-accordion,.cky-accordion-wrapper,.cky-footer-wrapper,.cky-prefrence-btn-wrapper{border-color: inherit;}@media (max-width: 845px){.cky-modal{max-width: calc(100% - 16px);}}@media (max-width: 576px){.cky-modal{max-width: 100%;}.cky-preference-center{max-height: 100vh;}.cky-prefrence-btn-wrapper{flex-direction: column;}.cky-accordion.cky-accordion-active .cky-accordion-body{padding-right: 0;}.cky-prefrence-btn-wrapper .cky-btn{width: 100%; margin: 10px 0 0 0;}.cky-prefrence-btn-wrapper .cky-btn-reject{order: 3;}.cky-prefrence-btn-wrapper .cky-btn-accept{order: 1; margin-top: 0;}.cky-prefrence-btn-wrapper .cky-btn-preferences{order: 2;}}@media (max-width: 425px){.cky-accordion-chevron{margin-right: 15px;}.cky-notice-btn-wrapper{margin-top: 0;}.cky-accordion.cky-accordion-active .cky-accordion-body{padding: 0 15px;}}@media (max-width: 352px){.cky-preference-header .cky-preference-title{font-size: 16px;}.cky-preference-header{padding: 16px 24px;}.cky-preference-content-wrapper *, .cky-accordion-header-des *{font-size: 12px;}.cky-preference-content-wrapper, .cky-preference-content-wrapper .cky-show-more, .cky-accordion-header .cky-always-active, .cky-accordion-header-des, .cky-preference-content-wrapper .cky-show-desc-btn, .cky-notice-des a.cky-policy{font-size: 12px;}.cky-accordion-header .cky-accordion-btn{font-size: 14px;}}.cky-switch{display: flex;}.cky-switch input[type=\"checkbox\"]{position: relative; width: 44px; height: 24px; margin: 0; background: #d0d5d2; -webkit-appearance: none; border-radius: 50px; cursor: pointer; outline: 0; border: none; top: 0;}.cky-switch input[type=\"checkbox\"]:checked{background: #1863dc;}.cky-switch input[type=\"checkbox\"]:before{position: absolute; content: \"\"; height: 20px; width: 20px; left: 2px; bottom: 2px; border-radius: 50%; background-color: white; -webkit-transition: 0.4s; transition: 0.4s; margin: 0;}.cky-switch input[type=\"checkbox\"]:after{display: none;}.cky-switch input[type=\"checkbox\"]:checked:before{-webkit-transform: translateX(20px); -ms-transform: translateX(20px); transform: translateX(20px);}@media (max-width: 425px){.cky-switch input[type=\"checkbox\"]{width: 38px; height: 21px;}.cky-switch input[type=\"checkbox\"]:before{height: 17px; width: 17px;}.cky-switch input[type=\"checkbox\"]:checked:before{-webkit-transform: translateX(17px); -ms-transform: translateX(17px); transform: translateX(17px);}}.cky-consent-bar .cky-banner-btn-close{position: absolute; right: 9px; top: 5px; background: none; border: none; cursor: pointer; padding: 0; margin: 0; min-height: 0; line-height: 0; height: auto; width: auto; text-shadow: none; box-shadow: none;}.cky-consent-bar .cky-banner-btn-close img{height: 9px; width: 9px; margin: 0;}.cky-notice-group{font-size: 14px; line-height: 24px; font-weight: 400; color: #212121;}.cky-notice-btn-wrapper .cky-btn-do-not-sell{font-size: 14px; line-height: 24px; padding: 6px 0; margin: 0; font-weight: 500; background: none; border-radius: 2px; border: none; white-space: nowrap; cursor: pointer; text-align: left; color: #1863dc; background: transparent; border-color: transparent; box-shadow: none; text-shadow: none;}.cky-consent-bar .cky-banner-btn-close:focus-visible,.cky-notice-btn-wrapper .cky-btn-do-not-sell:focus-visible,.cky-opt-out-btn-wrapper .cky-btn:focus-visible,.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox:focus-visible{outline: 2px solid #1863dc; outline-offset: 2px;}@media (max-width: 440px){.cky-consent-container{width: 100%;}}@media (max-width: 352px){.cky-notice-des a.cky-policy, .cky-notice-btn-wrapper .cky-btn-do-not-sell{font-size: 12px;}}.cky-opt-out-wrapper{padding: 12px 0;}.cky-opt-out-wrapper .cky-opt-out-checkbox-wrapper{display: flex; align-items: center;}.cky-opt-out-checkbox-wrapper .cky-opt-out-checkbox-label{font-size: 16px; font-weight: 700; line-height: 24px; margin: 0 0 0 12px; cursor: pointer;}.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox{background-color: #ffffff; border: 1px solid black; width: 20px; height: 18.5px; margin: 0; -webkit-appearance: none; position: relative; display: flex; align-items: center; justify-content: center; border-radius: 2px; cursor: pointer;}.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox:checked{background-color: #1863dc; border: none;}.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox:checked::after{left: 6px; bottom: 4px; width: 7px; height: 13px; border: solid #ffffff; border-width: 0 3px 3px 0; border-radius: 2px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); content: \"\"; position: absolute; box-sizing: border-box;}.cky-opt-out-checkbox-wrapper.cky-disabled .cky-opt-out-checkbox-label,.cky-opt-out-checkbox-wrapper.cky-disabled input[type=\"checkbox\"].cky-opt-out-checkbox{cursor: no-drop;}.cky-gpc-wrapper{margin: 0 0 0 32px;}.cky-footer-wrapper .cky-opt-out-btn-wrapper{display: flex; flex-wrap: wrap; align-items: center; justify-content: center; padding: 22px 24px;}.cky-opt-out-btn-wrapper .cky-btn{flex: auto; max-width: 100%; text-shadow: none; box-shadow: none;}.cky-opt-out-btn-wrapper .cky-btn-cancel{border: 1px solid #dedfe0; background: transparent; color: #858585;}.cky-opt-out-btn-wrapper .cky-btn-confirm{background: #1863dc; color: #ffffff; border: 1px solid #1863dc;}@media (max-width: 352px){.cky-opt-out-checkbox-wrapper .cky-opt-out-checkbox-label{font-size: 14px;}.cky-gpc-wrapper .cky-gpc-desc, .cky-gpc-wrapper .cky-gpc-desc *{font-size: 12px;}.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox{width: 16px; height: 16px;}.cky-opt-out-checkbox-wrapper input[type=\"checkbox\"].cky-opt-out-checkbox:checked::after{left: 5px; bottom: 4px; width: 3px; height: 9px;}.cky-gpc-wrapper{margin: 0 0 0 28px;}}.video-placeholder-youtube{background-size: 100% 100%; background-position: center; background-repeat: no-repeat; background-color: #b2b0b059; position: relative; display: flex; align-items: center; justify-content: center; max-width: 100%;}.video-placeholder-text-youtube{text-align: center; align-items: center; padding: 10px 16px; background-color: #000000cc; color: #ffffff; border: 1px solid; border-radius: 2px; cursor: pointer;}.video-placeholder-normal{background-image: url(\"/wp-content/plugins/cookie-law-info/lite/frontend/images/placeholder.svg\"); background-size: 80px; background-position: center; background-repeat: no-repeat; background-color: #b2b0b059; position: relative; display: flex; align-items: flex-end; justify-content: center; max-width: 100%;}.video-placeholder-text-normal{align-items: center; padding: 10px 16px; text-align: center; border: 1px solid; border-radius: 2px; cursor: pointer;}.cky-rtl{direction: rtl; text-align: right;}.cky-rtl .cky-banner-btn-close{left: 9px; right: auto;}.cky-rtl .cky-notice-btn-wrapper .cky-btn:last-child{margin-right: 8px;}.cky-rtl .cky-notice-btn-wrapper .cky-btn:first-child{margin-right: 0;}.cky-rtl .cky-notice-btn-wrapper{margin-left: 0; margin-right: 15px;}.cky-rtl .cky-prefrence-btn-wrapper .cky-btn{margin-right: 8px;}.cky-rtl .cky-prefrence-btn-wrapper .cky-btn:first-child{margin-right: 0;}.cky-rtl .cky-accordion .cky-accordion-chevron i::before{border: none; border-left: 1.4px solid; border-top: 1.4px solid; left: 12px;}.cky-rtl .cky-accordion.cky-accordion-active .cky-accordion-chevron i::before{-webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg);}@media (max-width: 768px){.cky-rtl .cky-notice-btn-wrapper{margin-right: 0;}}@media (max-width: 576px){.cky-rtl .cky-notice-btn-wrapper .cky-btn:last-child{margin-right: 0;}.cky-rtl .cky-prefrence-btn-wrapper .cky-btn{margin-right: 0;}.cky-rtl .cky-accordion.cky-accordion-active .cky-accordion-body{padding: 0 22px 0 0;}}@media (max-width: 425px){.cky-rtl .cky-accordion.cky-accordion-active .cky-accordion-body{padding: 0 15px 0 0;}}.cky-rtl .cky-opt-out-btn-wrapper .cky-btn{margin-right: 12px;}.cky-rtl .cky-opt-out-btn-wrapper .cky-btn:first-child{margin-right: 0;}.cky-rtl .cky-opt-out-checkbox-wrapper .cky-opt-out-checkbox-label{margin: 0 12px 0 0;}\";}}','yes'),
(3222141,'cky_banners_table_version','3.1.8','yes'),
(3222142,'_transient_cky_banner_template_transient_prefix','0.21626200 1678906239','yes'),
(3222143,'cky_settings','a:6:{s:4:\"site\";a:2:{s:3:\"url\";s:29:\"https://choiceresources.co.uk\";s:9:\"installed\";i:1678906268;}s:3:\"api\";a:1:{s:5:\"token\";s:959:\"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiIxIiwianRpIjoiYTA5Y2U4MDU0OTI0NTU5ODAyMDkzMzIwMTlmYzFlNTAwOTY0OWI2OWFlZjQ0NTQ2MjllZGFiZDk3MTc5OGZhZjQ4MjQ5NTNlNDUwOWU1YjYiLCJpYXQiOjE2Nzg5MDY3ODIsIm5iZiI6MTY3ODkwNjc4MiwiZXhwIjoyMzEwMDU4NzgyLCJzdWIiOiIyMzIyNzAiLCJzY29wZXMiOltdfQ.NaIYx-N-2bJQQQ8OrxuAuQcqWFDPnX8av_KQ_zf99G_0KDv1nJRxPY66IGfOVBa0KjBJX1_bMnNJMgkQHz8juEYVQBgChZYc22ZitFIelixfRdAbOAWZLoIfXoHA-auQcfe56uC7ChbPTsG1lx-LTt0VAVR8Bvr2V1yX2dX0m-FGuOkGt1FsiRsT1Ja04hVPqrJI_kc7XH69YnBDtN6vAXpUl-IzpxMJYRfqaVEZNYgCTqXPygyINYOJUpFciC5kMiiNy9DBh6nJBXrsH7W_UOyc7OBoAkcNaEud3l3BZi0kN_9NLgwMG6KHrj1jPLa8VY6vypQm_F63QK9BXezBIr1-PJGU2SQoM9c7WQRhHDdoZ_HTqc_ijPWANBHkgoKDb8MJJ3IuHqH-5Qg8WS2H6HbcSln09b-WLMhtgUfNN9FrcGdeaC1J22RKtZVxKZhTi2HFjbiVv4cruFAjUOyfFue9saA12eNBMohRSOLex0ldNEEsDTgqlWzLTqRqhKRiSV16qO2A55lJVvWPcBYttoq_YoRZLqEdLTOQfIW8IKD3R6y0zCy9infCe4ZOPlDdAQXH_YxgJXN-LF5zyjQDZTbnV-b20WhYUvwcKeyD2XCXeO-xDX8pYCTGeBMUZIJBrPAw4IsViqt_8aKqfUSE8ShX9pDycEFpdBaylvoh9X4\";}s:7:\"account\";a:6:{s:5:\"email\";s:21:\"amnakulongo@gmail.com\";s:6:\"domain\";s:0:\"\";s:9:\"connected\";b:1;s:4:\"plan\";s:4:\"free\";s:10:\"website_id\";s:6:\"315058\";s:11:\"website_key\";s:24:\"e85b40dd25e78971ffea1980\";}s:12:\"consent_logs\";a:1:{s:6:\"status\";b:1;}s:9:\"languages\";a:2:{s:8:\"selected\";a:1:{i:0;s:2:\"en\";}s:7:\"default\";s:2:\"en\";}s:10:\"onboarding\";a:1:{s:4:\"step\";i:2;}}','yes'),
(3222144,'_transient_cky_cookies_transient_prefix','0.22988600 1678906239','yes'),
(3222145,'_transient_cky_categories_transient_prefix','0.23431200 1678906239','yes'),
(3222146,'cky_cookie_category_table_version','3.1.8','yes'),
(3222147,'cky_cookie_table_version','3.1.8','yes'),
(3306845,'using_application_passwords','1','no'),
(3348547,'rsssl_admin_notices','empty','yes'),
(3348560,'rsssl_plusone_count','empty','yes'),
(3353754,'_transient_cky_consent_logs_transient_prefix','0.93527400 1679601143','yes'),
(3353755,'_transient_cky_transient_0.93527400 1679601143_statistics','a:3:{i:0;a:2:{s:4:\"type\";s:8:\"accepted\";s:5:\"count\";i:18;}i:1;a:2:{s:4:\"type\";s:8:\"rejected\";s:5:\"count\";i:3;}i:2;a:2:{s:4:\"type\";s:7:\"partial\";s:5:\"count\";i:2;}}','yes'),
(3353781,'_transient_cky_transient_0.19326800 1678906239_all','a:2:{i:1;O:8:\"stdClass\":7:{s:9:\"banner_id\";i:1;s:4:\"name\";s:4:\"GDPR\";s:4:\"slug\";s:6:\"gdpr-1\";s:8:\"settings\";a:4:{s:8:\"settings\";a:11:{s:2:\"id\";s:8:\"banner-1\";s:4:\"type\";s:3:\"box\";s:8:\"position\";s:11:\"bottom-left\";s:9:\"versionID\";s:5:\"6.0.0\";s:13:\"applicableLaw\";s:4:\"gdpr\";s:9:\"languages\";a:2:{s:7:\"default\";s:2:\"en\";s:8:\"selected\";a:1:{i:0;s:2:\"en\";}}s:13:\"templateGroup\";s:7:\"default\";s:10:\"customHtml\";a:1:{s:6:\"status\";b:0;}s:5:\"theme\";s:5:\"light\";s:13:\"consentExpiry\";a:2:{s:6:\"status\";b:1;s:5:\"value\";s:3:\"365\";}s:7:\"ruleSet\";a:1:{i:0;a:2:{s:4:\"code\";s:3:\"ALL\";s:7:\"regions\";a:0:{}}}}s:10:\"behaviours\";a:5:{s:20:\"reloadBannerOnAccept\";a:1:{s:6:\"status\";b:0;}s:22:\"loadAnalyticsByDefault\";a:1:{s:6:\"status\";b:0;}s:10:\"animations\";a:2:{s:6:\"onLoad\";s:7:\"animate\";s:6:\"onHide\";s:6:\"sticky\";}s:15:\"legacyFunctions\";a:5:{s:6:\"accept\";a:2:{s:6:\"action\";s:11:\"acceptClose\";s:6:\"newTab\";b:0;}s:6:\"reject\";a:2:{s:6:\"action\";s:11:\"rejectClose\";s:6:\"newTab\";b:0;}s:4:\"idle\";a:2:{s:6:\"action\";s:11:\"acceptClose\";s:5:\"delay\";s:4:\"1000\";}s:10:\"navigation\";a:1:{s:6:\"action\";s:11:\"acceptClose\";}s:10:\"pageScroll\";a:1:{s:6:\"action\";s:11:\"acceptClose\";}}s:10:\"respectGPC\";a:1:{s:6:\"status\";b:0;}}s:6:\"config\";a:7:{s:6:\"notice\";a:5:{s:6:\"status\";b:1;s:3:\"tag\";s:6:\"notice\";s:4:\"type\";s:9:\"container\";s:6:\"styles\";a:2:{s:16:\"background-color\";s:7:\"#FFFFFF\";s:12:\"border-color\";s:7:\"#f4f4f4\";}s:8:\"elements\";a:5:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:5:\"title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:11:\"description\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:9:\"brandLogo\";a:3:{s:6:\"status\";b:0;s:3:\"tag\";s:10:\"brand-logo\";s:4:\"meta\";a:1:{s:3:\"url\";s:1:\"#\";}}s:7:\"buttons\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:14:\"notice-buttons\";s:4:\"type\";s:9:\"container\";s:8:\"elements\";a:5:{s:6:\"accept\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:13:\"accept-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:16:\"background-color\";s:7:\"#1863DC\";s:12:\"border-color\";s:7:\"#1863DC\";}}s:6:\"reject\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:13:\"reject-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:7:\"#1863DC\";}}s:8:\"settings\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:15:\"settings-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:7:\"#1863DC\";}}s:8:\"readMore\";a:5:{s:6:\"status\";b:0;s:3:\"tag\";s:15:\"readmore-button\";s:4:\"type\";s:4:\"link\";s:4:\"meta\";a:2:{s:8:\"noFollow\";b:1;s:6:\"newTab\";b:1;}s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:11:\"transparent\";}}s:9:\"donotSell\";a:4:{s:6:\"status\";b:0;s:3:\"tag\";s:16:\"donotsell-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:11:\"transparent\";}}}}s:11:\"closeButton\";a:2:{s:6:\"status\";b:0;s:3:\"tag\";s:12:\"close-button\";}}}s:15:\"categoryPreview\";a:4:{s:6:\"status\";b:0;s:4:\"type\";s:9:\"container\";s:3:\"tag\";s:23:\"detail-category-preview\";s:8:\"elements\";a:3:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:29:\"detail-category-preview-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:6:\"toggle\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:30:\"detail-category-preview-toggle\";s:4:\"type\";s:6:\"toggle\";s:6:\"states\";a:2:{s:6:\"active\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#1863DC\";}}s:8:\"inactive\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#D0D5D2\";}}}}s:7:\"buttons\";a:3:{s:6:\"status\";b:1;s:3:\"tag\";s:31:\"detail-category-preview-buttons\";s:8:\"elements\";a:1:{s:4:\"save\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:35:\"detail-category-preview-save-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:7:\"#1863DC\";}}}}}}s:16:\"preferenceCenter\";a:5:{s:6:\"status\";b:1;s:3:\"tag\";s:6:\"detail\";s:4:\"type\";s:9:\"container\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#212121\";s:16:\"background-color\";s:7:\"#FFFFFF\";s:12:\"border-color\";s:7:\"#f4f4f4\";}s:8:\"elements\";a:6:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:12:\"detail-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:18:\"detail-description\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:11:\"closeButton\";a:3:{s:6:\"status\";b:1;s:4:\"type\";s:6:\"button\";s:3:\"tag\";s:12:\"detail-close\";}s:10:\"categories\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:17:\"detail-categories\";s:4:\"type\";s:9:\"container\";s:8:\"elements\";a:3:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:21:\"detail-category-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:27:\"detail-category-description\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:6:\"toggle\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:22:\"detail-category-toggle\";s:4:\"type\";s:6:\"toggle\";s:6:\"states\";a:2:{s:6:\"active\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#1863DC\";}}s:8:\"inactive\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#D0D5D2\";}}}}}}s:7:\"buttons\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:14:\"detail-buttons\";s:4:\"type\";s:9:\"container\";s:8:\"elements\";a:3:{s:6:\"accept\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:20:\"detail-accept-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:16:\"background-color\";s:7:\"#1863DC\";s:12:\"border-color\";s:7:\"#1863DC\";}}s:6:\"reject\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:20:\"detail-reject-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:7:\"#1863DC\";}}s:4:\"save\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:18:\"detail-save-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:7:\"#1863DC\";}}}}s:9:\"poweredBy\";a:3:{s:6:\"status\";b:1;s:3:\"tag\";s:17:\"detail-powered-by\";s:6:\"styles\";a:2:{s:16:\"background-color\";s:7:\"#EDEDED\";s:5:\"color\";s:7:\"#293C5B\";}}}}s:11:\"optoutPopup\";a:5:{s:6:\"status\";b:0;s:3:\"tag\";s:12:\"optout-popup\";s:4:\"type\";s:9:\"container\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#212121\";s:16:\"background-color\";s:7:\"#FFFFFF\";s:12:\"border-color\";s:7:\"#F4F4F4\";}s:8:\"elements\";a:7:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:12:\"optout-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:18:\"optout-description\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:9:\"optOption\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:13:\"optout-option\";s:4:\"type\";s:9:\"container\";s:8:\"elements\";a:2:{s:6:\"toggle\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:20:\"optout-option-toggle\";s:4:\"type\";s:6:\"toggle\";s:6:\"states\";a:2:{s:6:\"active\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#1863dc\";}}s:8:\"inactive\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#FFFFFF\";}}}}s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:19:\"optout-option-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}}}s:9:\"gpcOption\";a:4:{s:4:\"type\";s:9:\"container\";s:3:\"tag\";s:17:\"optout-gpc-option\";s:6:\"status\";b:0;s:8:\"elements\";a:1:{s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:29:\"optout-gpc-option-description\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}}}s:9:\"poweredBy\";a:3:{s:6:\"status\";b:1;s:3:\"tag\";s:17:\"optout-powered-by\";s:6:\"styles\";a:2:{s:16:\"background-color\";s:7:\"#EDEDED\";s:5:\"color\";s:7:\"#293C5B\";}}s:7:\"buttons\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:14:\"optout-buttons\";s:4:\"type\";s:9:\"container\";s:8:\"elements\";a:2:{s:7:\"confirm\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:21:\"optout-confirm-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#f4f4f4\";s:16:\"background-color\";s:7:\"#1863dc\";s:12:\"border-color\";s:7:\"#1863dc\";}}s:6:\"cancel\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:20:\"optout-cancel-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#858585\";s:16:\"background-color\";s:7:\"#FFFFFF\";s:12:\"border-color\";s:7:\"#dedfe0\";}}}}s:11:\"closeButton\";a:3:{s:6:\"status\";b:1;s:3:\"tag\";s:12:\"optout-close\";s:4:\"type\";s:6:\"button\";}}}s:10:\"auditTable\";a:5:{s:6:\"status\";b:1;s:3:\"tag\";s:11:\"audit-table\";s:4:\"type\";s:5:\"table\";s:4:\"meta\";a:1:{s:7:\"headers\";a:3:{i:0;s:2:\"id\";i:1;s:8:\"duration\";i:2;s:11:\"description\";}}s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#212121\";s:16:\"background-color\";s:7:\"#f4f4f4\";s:12:\"border-color\";s:7:\"#ebebeb\";}}s:14:\"revisitConsent\";a:6:{s:6:\"status\";b:1;s:3:\"tag\";s:15:\"revisit-consent\";s:8:\"position\";s:11:\"bottom-left\";s:4:\"meta\";a:1:{s:3:\"url\";s:1:\"#\";}s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#0056A7\";}s:8:\"elements\";a:1:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:21:\"revisit-consent-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#0056a7\";}}}}s:16:\"videoPlaceholder\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:17:\"video-placeholder\";s:6:\"styles\";a:2:{s:16:\"background-color\";s:7:\"#000000\";s:12:\"border-color\";s:7:\"#000000\";}s:8:\"elements\";a:1:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:17:\"placeholder-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}}}}s:4:\"meta\";a:2:{s:9:\"customCSS\";s:0:\"\";s:10:\"customHTML\";s:0:\"\";}}s:8:\"contents\";a:1:{s:2:\"en\";a:7:{s:6:\"notice\";a:1:{s:8:\"elements\";a:5:{s:5:\"title\";s:21:\"We value your privacy\";s:11:\"description\";s:179:\"<p>We use cookies to enhance your browsing experience, serve personalized ads or content, and analyze our traffic. By clicking \"Accept All\", you consent to our use of cookies.</p>\";s:11:\"privacyLink\";s:0:\"\";s:7:\"buttons\";a:1:{s:8:\"elements\";a:5:{s:6:\"accept\";s:10:\"Accept All\";s:6:\"reject\";s:10:\"Reject All\";s:8:\"settings\";s:9:\"Customize\";s:8:\"readMore\";s:13:\"Cookie Policy\";s:9:\"donotSell\";s:44:\"Do Not Sell or Share My Personal Information\";}}s:11:\"closeButton\";s:5:\"Close\";}}s:15:\"categoryPreview\";a:1:{s:8:\"elements\";a:1:{s:7:\"buttons\";a:1:{s:8:\"elements\";a:1:{s:4:\"save\";s:19:\"Save My Preferences\";}}}}s:16:\"preferenceCenter\";a:1:{s:8:\"elements\";a:7:{s:5:\"title\";s:29:\"Customize Consent Preferences\";s:11:\"description\";s:717:\"<p>We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.</p><p>The cookies that are categorized as \"Necessary\" are stored on your browser as they are essential for enabling the basic functionalities of the site. </p><p>We also use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. These cookies will only be stored in your browser with your prior consent.</p><p>You can choose to enable or disable some or all of these cookies but disabling some of them may affect your browsing experience.</p>\";s:8:\"showMore\";s:9:\"Show more\";s:8:\"showLess\";s:9:\"Show less\";s:8:\"category\";a:1:{s:8:\"elements\";a:3:{s:13:\"alwaysEnabled\";s:13:\"Always Active\";s:6:\"enable\";s:6:\"Enable\";s:7:\"disable\";s:7:\"Disable\";}}s:7:\"buttons\";a:1:{s:8:\"elements\";a:3:{s:6:\"accept\";s:10:\"Accept All\";s:4:\"save\";s:19:\"Save My Preferences\";s:6:\"reject\";s:10:\"Reject All\";}}s:11:\"closeButton\";s:5:\"Close\";}}s:11:\"optoutPopup\";a:1:{s:8:\"elements\";a:8:{s:5:\"title\";s:19:\"Opt-out Preferences\";s:11:\"description\";s:480:\"<p>We use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. However, you can opt out of these cookies by checking \"Do Not Sell or Share My Personal Information\" and clicking the \"Save My Preferences\" button. Once you opt out, you can opt in again at any time by unchecking \"Do Not Sell or Share My Personal Information\" and clicking the \"Save My Preferences\" button.</p>\";s:9:\"optOption\";a:1:{s:8:\"elements\";a:3:{s:5:\"title\";s:44:\"Do Not Sell or Share My Personal Information\";s:6:\"enable\";s:6:\"Enable\";s:7:\"disable\";s:7:\"Disable\";}}s:9:\"gpcOption\";a:1:{s:8:\"elements\";a:1:{s:11:\"description\";s:186:\"<p>Your opt-out settings for this website have been respected since we deteted a <b>Gobal Privacy Control</b> signal from your browser and, therefore, you cannot change this setting.</p>\";}}s:8:\"showLess\";s:9:\"Show less\";s:8:\"showMore\";s:9:\"Show more\";s:7:\"buttons\";a:1:{s:8:\"elements\";a:2:{s:6:\"cancel\";s:6:\"Cancel\";s:7:\"confirm\";s:19:\"Save My Preferences\";}}s:11:\"closeButton\";s:5:\"Close\";}}s:14:\"revisitConsent\";a:1:{s:8:\"elements\";a:1:{s:5:\"title\";s:15:\"Cookie Settings\";}}s:10:\"auditTable\";a:1:{s:8:\"elements\";a:2:{s:7:\"headers\";a:1:{s:8:\"elements\";a:3:{s:2:\"id\";s:6:\"Cookie\";s:8:\"duration\";s:8:\"Duration\";s:11:\"description\";s:11:\"Description\";}}s:7:\"message\";s:22:\"No cookies to display.\";}}s:16:\"videoPlaceholder\";a:1:{s:8:\"elements\";a:1:{s:5:\"title\";s:44:\"Please accept cookies to access this content\";}}}}s:14:\"banner_default\";i:1;s:6:\"status\";i:1;}i:2;O:8:\"stdClass\":7:{s:9:\"banner_id\";i:2;s:4:\"name\";s:4:\"CCPA\";s:4:\"slug\";s:6:\"ccpa-2\";s:8:\"settings\";a:4:{s:8:\"settings\";a:11:{s:2:\"id\";s:8:\"banner-1\";s:4:\"type\";s:3:\"box\";s:8:\"position\";s:11:\"bottom-left\";s:9:\"versionID\";s:5:\"6.0.0\";s:13:\"applicableLaw\";s:4:\"ccpa\";s:9:\"languages\";a:2:{s:7:\"default\";s:2:\"en\";s:8:\"selected\";a:1:{i:0;s:2:\"en\";}}s:13:\"templateGroup\";s:7:\"default\";s:10:\"customHtml\";a:1:{s:6:\"status\";b:0;}s:5:\"theme\";s:5:\"light\";s:13:\"consentExpiry\";a:2:{s:6:\"status\";b:1;s:5:\"value\";s:3:\"365\";}s:7:\"ruleSet\";a:1:{i:0;a:2:{s:4:\"code\";s:3:\"ALL\";s:7:\"regions\";a:0:{}}}}s:10:\"behaviours\";a:5:{s:20:\"reloadBannerOnAccept\";a:1:{s:6:\"status\";b:0;}s:22:\"loadAnalyticsByDefault\";a:1:{s:6:\"status\";b:0;}s:10:\"animations\";a:2:{s:6:\"onLoad\";s:7:\"animate\";s:6:\"onHide\";s:6:\"sticky\";}s:15:\"legacyFunctions\";a:5:{s:6:\"accept\";a:2:{s:6:\"action\";s:11:\"acceptClose\";s:6:\"newTab\";b:0;}s:6:\"reject\";a:2:{s:6:\"action\";s:11:\"rejectClose\";s:6:\"newTab\";b:0;}s:4:\"idle\";a:2:{s:6:\"action\";s:11:\"acceptClose\";s:5:\"delay\";s:4:\"1000\";}s:10:\"navigation\";a:1:{s:6:\"action\";s:11:\"acceptClose\";}s:10:\"pageScroll\";a:1:{s:6:\"action\";s:11:\"acceptClose\";}}s:10:\"respectGPC\";a:1:{s:6:\"status\";b:0;}}s:6:\"config\";a:7:{s:6:\"notice\";a:5:{s:6:\"status\";b:1;s:3:\"tag\";s:6:\"notice\";s:4:\"type\";s:9:\"container\";s:6:\"styles\";a:2:{s:16:\"background-color\";s:7:\"#FFFFFF\";s:12:\"border-color\";s:7:\"#f4f4f4\";}s:8:\"elements\";a:5:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:5:\"title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:11:\"description\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:9:\"brandLogo\";a:3:{s:6:\"status\";b:0;s:3:\"tag\";s:10:\"brand-logo\";s:4:\"meta\";a:1:{s:3:\"url\";s:1:\"#\";}}s:7:\"buttons\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:14:\"notice-buttons\";s:4:\"type\";s:9:\"container\";s:8:\"elements\";a:5:{s:6:\"accept\";a:4:{s:6:\"status\";b:0;s:3:\"tag\";s:13:\"accept-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:16:\"background-color\";s:7:\"#1863DC\";s:12:\"border-color\";s:7:\"#1863DC\";}}s:6:\"reject\";a:4:{s:6:\"status\";b:0;s:3:\"tag\";s:13:\"reject-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:7:\"#1863DC\";}}s:8:\"settings\";a:4:{s:6:\"status\";b:0;s:3:\"tag\";s:15:\"settings-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:7:\"#1863DC\";}}s:8:\"readMore\";a:5:{s:6:\"status\";b:0;s:3:\"tag\";s:15:\"readmore-button\";s:4:\"type\";s:4:\"link\";s:4:\"meta\";a:2:{s:8:\"noFollow\";b:1;s:6:\"newTab\";b:1;}s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:11:\"transparent\";}}s:9:\"donotSell\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:16:\"donotsell-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:11:\"transparent\";}}}}s:11:\"closeButton\";a:2:{s:6:\"status\";b:1;s:3:\"tag\";s:12:\"close-button\";}}}s:15:\"categoryPreview\";a:4:{s:6:\"status\";b:0;s:4:\"type\";s:9:\"container\";s:3:\"tag\";s:23:\"detail-category-preview\";s:8:\"elements\";a:3:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:29:\"detail-category-preview-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:6:\"toggle\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:30:\"detail-category-preview-toggle\";s:4:\"type\";s:6:\"toggle\";s:6:\"states\";a:2:{s:6:\"active\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#1863DC\";}}s:8:\"inactive\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#D0D5D2\";}}}}s:7:\"buttons\";a:3:{s:6:\"status\";b:1;s:3:\"tag\";s:31:\"detail-category-preview-buttons\";s:8:\"elements\";a:1:{s:4:\"save\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:35:\"detail-category-preview-save-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:7:\"#1863DC\";}}}}}}s:16:\"preferenceCenter\";a:5:{s:6:\"status\";b:0;s:3:\"tag\";s:6:\"detail\";s:4:\"type\";s:9:\"container\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#212121\";s:16:\"background-color\";s:7:\"#FFFFFF\";s:12:\"border-color\";s:7:\"#f4f4f4\";}s:8:\"elements\";a:6:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:12:\"detail-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:18:\"detail-description\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:11:\"closeButton\";a:3:{s:6:\"status\";b:1;s:4:\"type\";s:6:\"button\";s:3:\"tag\";s:12:\"detail-close\";}s:10:\"categories\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:17:\"detail-categories\";s:4:\"type\";s:9:\"container\";s:8:\"elements\";a:3:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:21:\"detail-category-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:27:\"detail-category-description\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:6:\"toggle\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:22:\"detail-category-toggle\";s:4:\"type\";s:6:\"toggle\";s:6:\"states\";a:2:{s:6:\"active\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#1863DC\";}}s:8:\"inactive\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#D0D5D2\";}}}}}}s:7:\"buttons\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:14:\"detail-buttons\";s:4:\"type\";s:9:\"container\";s:8:\"elements\";a:3:{s:6:\"accept\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:20:\"detail-accept-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:16:\"background-color\";s:7:\"#1863DC\";s:12:\"border-color\";s:7:\"#1863DC\";}}s:6:\"reject\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:20:\"detail-reject-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:7:\"#1863DC\";}}s:4:\"save\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:18:\"detail-save-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#1863DC\";s:16:\"background-color\";s:11:\"transparent\";s:12:\"border-color\";s:7:\"#1863DC\";}}}}s:9:\"poweredBy\";a:3:{s:6:\"status\";b:1;s:3:\"tag\";s:17:\"detail-powered-by\";s:6:\"styles\";a:2:{s:16:\"background-color\";s:7:\"#EDEDED\";s:5:\"color\";s:7:\"#293C5B\";}}}}s:11:\"optoutPopup\";a:5:{s:6:\"status\";b:1;s:3:\"tag\";s:12:\"optout-popup\";s:4:\"type\";s:9:\"container\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#212121\";s:16:\"background-color\";s:7:\"#FFFFFF\";s:12:\"border-color\";s:7:\"#F4F4F4\";}s:8:\"elements\";a:7:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:12:\"optout-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:18:\"optout-description\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}s:9:\"optOption\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:13:\"optout-option\";s:4:\"type\";s:9:\"container\";s:8:\"elements\";a:2:{s:6:\"toggle\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:20:\"optout-option-toggle\";s:4:\"type\";s:6:\"toggle\";s:6:\"states\";a:2:{s:6:\"active\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#1863dc\";}}s:8:\"inactive\";a:1:{s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#FFFFFF\";}}}}s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:19:\"optout-option-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}}}s:9:\"gpcOption\";a:4:{s:4:\"type\";s:9:\"container\";s:3:\"tag\";s:17:\"optout-gpc-option\";s:6:\"status\";b:0;s:8:\"elements\";a:1:{s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:29:\"optout-gpc-option-description\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#212121\";}}}}s:9:\"poweredBy\";a:3:{s:6:\"status\";b:1;s:3:\"tag\";s:17:\"optout-powered-by\";s:6:\"styles\";a:2:{s:16:\"background-color\";s:7:\"#EDEDED\";s:5:\"color\";s:7:\"#293C5B\";}}s:7:\"buttons\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:14:\"optout-buttons\";s:4:\"type\";s:9:\"container\";s:8:\"elements\";a:2:{s:7:\"confirm\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:21:\"optout-confirm-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#f4f4f4\";s:16:\"background-color\";s:7:\"#1863dc\";s:12:\"border-color\";s:7:\"#1863dc\";}}s:6:\"cancel\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:20:\"optout-cancel-button\";s:4:\"type\";s:6:\"button\";s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#858585\";s:16:\"background-color\";s:7:\"#FFFFFF\";s:12:\"border-color\";s:7:\"#dedfe0\";}}}}s:11:\"closeButton\";a:3:{s:6:\"status\";b:1;s:3:\"tag\";s:12:\"optout-close\";s:4:\"type\";s:6:\"button\";}}}s:10:\"auditTable\";a:5:{s:6:\"status\";b:0;s:3:\"tag\";s:11:\"audit-table\";s:4:\"type\";s:5:\"table\";s:4:\"meta\";a:1:{s:7:\"headers\";a:3:{i:0;s:2:\"id\";i:1;s:8:\"duration\";i:2;s:11:\"description\";}}s:6:\"styles\";a:3:{s:5:\"color\";s:7:\"#212121\";s:16:\"background-color\";s:7:\"#f4f4f4\";s:12:\"border-color\";s:7:\"#ebebeb\";}}s:14:\"revisitConsent\";a:6:{s:6:\"status\";b:1;s:3:\"tag\";s:15:\"revisit-consent\";s:8:\"position\";s:11:\"bottom-left\";s:4:\"meta\";a:1:{s:3:\"url\";s:1:\"#\";}s:6:\"styles\";a:1:{s:16:\"background-color\";s:7:\"#0056A7\";}s:8:\"elements\";a:1:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:21:\"revisit-consent-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#0056a7\";}}}}s:16:\"videoPlaceholder\";a:4:{s:6:\"status\";b:1;s:3:\"tag\";s:17:\"video-placeholder\";s:6:\"styles\";a:2:{s:16:\"background-color\";s:7:\"#000000\";s:12:\"border-color\";s:7:\"#000000\";}s:8:\"elements\";a:1:{s:5:\"title\";a:4:{s:4:\"type\";s:4:\"text\";s:3:\"tag\";s:17:\"placeholder-title\";s:6:\"status\";b:1;s:6:\"styles\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}}}}s:4:\"meta\";a:2:{s:9:\"customCSS\";s:0:\"\";s:10:\"customHTML\";s:0:\"\";}}s:8:\"contents\";a:1:{s:2:\"en\";a:7:{s:6:\"notice\";a:1:{s:8:\"elements\";a:5:{s:5:\"title\";s:21:\"We value your privacy\";s:11:\"description\";s:189:\"This website or its third-party tools process personal data. You can opt out of the sale of your personal information by clicking on the \"Do Not Sell or Share My Personal Information\" link.\";s:11:\"privacyLink\";s:0:\"\";s:7:\"buttons\";a:1:{s:8:\"elements\";a:5:{s:6:\"accept\";s:10:\"Accept All\";s:6:\"reject\";s:10:\"Reject All\";s:8:\"settings\";s:9:\"Customize\";s:8:\"readMore\";s:13:\"Cookie Policy\";s:9:\"donotSell\";s:44:\"Do Not Sell or Share My Personal Information\";}}s:11:\"closeButton\";s:5:\"Close\";}}s:15:\"categoryPreview\";a:1:{s:8:\"elements\";a:1:{s:7:\"buttons\";a:1:{s:8:\"elements\";a:1:{s:4:\"save\";s:19:\"Save My Preferences\";}}}}s:16:\"preferenceCenter\";a:1:{s:8:\"elements\";a:7:{s:5:\"title\";s:29:\"Customize Consent Preferences\";s:11:\"description\";s:717:\"<p>We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.</p><p>The cookies that are categorized as \"Necessary\" are stored on your browser as they are essential for enabling the basic functionalities of the site. </p><p>We also use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. These cookies will only be stored in your browser with your prior consent.</p><p>You can choose to enable or disable some or all of these cookies but disabling some of them may affect your browsing experience.</p>\";s:8:\"showMore\";s:9:\"Show more\";s:8:\"showLess\";s:9:\"Show less\";s:8:\"category\";a:1:{s:8:\"elements\";a:3:{s:13:\"alwaysEnabled\";s:13:\"Always Active\";s:6:\"enable\";s:6:\"Enable\";s:7:\"disable\";s:7:\"Disable\";}}s:7:\"buttons\";a:1:{s:8:\"elements\";a:3:{s:6:\"accept\";s:10:\"Accept All\";s:4:\"save\";s:19:\"Save My Preferences\";s:6:\"reject\";s:10:\"Reject All\";}}s:11:\"closeButton\";s:5:\"Close\";}}s:11:\"optoutPopup\";a:1:{s:8:\"elements\";a:8:{s:5:\"title\";s:19:\"Opt-out Preferences\";s:11:\"description\";s:480:\"<p>We use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. However, you can opt out of these cookies by checking \"Do Not Sell or Share My Personal Information\" and clicking the \"Save My Preferences\" button. Once you opt out, you can opt in again at any time by unchecking \"Do Not Sell or Share My Personal Information\" and clicking the \"Save My Preferences\" button.</p>\";s:9:\"optOption\";a:1:{s:8:\"elements\";a:3:{s:5:\"title\";s:44:\"Do Not Sell or Share My Personal Information\";s:6:\"enable\";s:6:\"Enable\";s:7:\"disable\";s:7:\"Disable\";}}s:9:\"gpcOption\";a:1:{s:8:\"elements\";a:1:{s:11:\"description\";s:186:\"<p>Your opt-out settings for this website have been respected since we deteted a <b>Gobal Privacy Control</b> signal from your browser and, therefore, you cannot change this setting.</p>\";}}s:8:\"showLess\";s:9:\"Show less\";s:8:\"showMore\";s:9:\"Show more\";s:7:\"buttons\";a:1:{s:8:\"elements\";a:2:{s:6:\"cancel\";s:6:\"Cancel\";s:7:\"confirm\";s:19:\"Save My Preferences\";}}s:11:\"closeButton\";s:5:\"Close\";}}s:14:\"revisitConsent\";a:1:{s:8:\"elements\";a:1:{s:5:\"title\";s:15:\"Cookie Settings\";}}s:10:\"auditTable\";a:1:{s:8:\"elements\";a:2:{s:7:\"headers\";a:1:{s:8:\"elements\";a:3:{s:2:\"id\";s:6:\"Cookie\";s:8:\"duration\";s:8:\"Duration\";s:11:\"description\";s:11:\"Description\";}}s:7:\"message\";s:22:\"No cookies to display.\";}}s:16:\"videoPlaceholder\";a:1:{s:8:\"elements\";a:1:{s:5:\"title\";s:44:\"Please accept cookies to access this content\";}}}}s:14:\"banner_default\";i:0;s:6:\"status\";i:0;}}','yes'),
(3363359,'updraft_lock_11c16fee5be7','1679655617','no'),
(3363492,'siteground_optimizer_default_enable_cache','0','no'),
(3363493,'siteground_optimizer_default_autoflush_cache','0','no'),
(3363494,'siteground_optimizer_supercacher_permissions','1','no'),
(3363495,'sg_cachepress','a:8:{s:12:\"enable_cache\";i:1;s:15:\"autoflush_cache\";i:1;s:16:\"enable_memcached\";i:0;s:11:\"show_notice\";i:0;s:8:\"is_nginx\";i:0;s:13:\"checked_nginx\";i:0;s:9:\"first_run\";i:0;s:9:\"last_fail\";i:0;}','yes'),
(3363496,'siteground_optimizer_enable_cache','0','yes'),
(3363497,'siteground_optimizer_autoflush_cache','1','yes'),
(3363498,'siteground_optimizer_enable_memcached','0','yes'),
(3363499,'siteground_optimizer_show_notice','0','yes'),
(3363500,'siteground_optimizer_is_nginx','0','yes'),
(3363501,'siteground_optimizer_checked_nginx','0','yes'),
(3363502,'siteground_optimizer_first_run','0','yes'),
(3363503,'siteground_optimizer_last_fail','0','yes'),
(3363504,'siteground_optimizer_ssl_enabled','0','yes'),
(3363505,'siteground_optimizer_optimize_html','1','yes'),
(3363506,'siteground_optimizer_optimize_javascript','1','yes'),
(3363507,'siteground_optimizer_optimize_javascript_async','1','yes'),
(3363508,'siteground_optimizer_optimize_css','1','yes'),
(3363509,'siteground_optimizer_combine_css','1','yes'),
(3363510,'siteground_optimizer_remove_query_strings','1','yes'),
(3363511,'siteground_optimizer_disable_emojis','0','yes'),
(3363513,'siteground_optimizer_version','7.4.0','yes'),
(3363514,'siteground_optimizer_update_timestamp','1693886757','yes'),
(3363515,'siteground_optimizer_phpcompat_status','1','yes'),
(3363516,'siteground_optimizer_phpcompat_progress','0','yes'),
(3363517,'siteground_optimizer_phpcompat_is_compatible','0','yes'),
(3363518,'siteground_optimizer_phpcompat_result','a:0:{}','yes'),
(3363519,'siteground_optimizer_image_optimization_completed','1','no'),
(3363520,'siteground_optimizer_enable_gzip_compression','1','yes'),
(3363521,'siteground_optimizer_enable_browser_caching','1','yes'),
(3363523,'siteground_optimizer_async_javascript_exclude','a:3:{i:0;s:11:\"jquery-core\";i:1;s:14:\"jquery-migrate\";i:2;s:6:\"jquery\";}','yes'),
(3363524,'siteground_optimizer_excluded_lazy_load_classes','a:1:{i:0;s:9:\"skip-lazy\";}','yes'),
(3363527,'siteground_optimizer_whats_new','a:1:{i:0;a:7:{s:4:\"type\";s:7:\"default\";s:5:\"title\";s:22:\"Web Fonts Optimization\";s:4:\"text\";s:271:\"With this optimization we are changing the default way to load Google fonts in order to save HTTP requests. In addition to that, all other fonts that your website uses will be properly preloaded so browsers take the least possible amount of time to cache and render them.\";s:4:\"icon\";s:33:\"presentational-fonts-optimization\";s:10:\"icon_color\";s:6:\"salmon\";s:12:\"optimization\";s:18:\"optimize_web_fonts\";s:6:\"button\";a:3:{s:4:\"text\";s:10:\"Enable Now\";s:5:\"color\";s:7:\"primary\";s:4:\"link\";s:8:\"frontend\";}}}','yes'),
(3363528,'siteground_optimizer_quality_webp','85','yes'),
(3363529,'siteground_optimizer_quality_type','lossy','yes'),
(3363533,'siteground_optimizer_heartbeat_post_interval','120','yes'),
(3363534,'siteground_optimizer_heartbeat_dashboard_interval','120','yes'),
(3363535,'siteground_optimizer_heartbeat_frontend_interval','120','yes'),
(3363536,'siteground_optimizer_excluded_lazy_load_media_types','a:6:{i:0;s:18:\"lazyload_gravatars\";i:1;s:19:\"lazyload_thumbnails\";i:2;s:19:\"lazyload_responsive\";i:3;s:20:\"lazyload_textwidgets\";i:4;s:19:\"lazyload_shortcodes\";i:5;s:20:\"lazyload_woocommerce\";}','yes'),
(3363537,'siteground_settings_optimizer_hello','1','yes'),
(3363538,'siteground_optimizer_database_optimization','a:7:{i:0;s:15:\"optimize_tables\";i:1;s:18:\"delete_auto_drafts\";i:2;s:16:\"delete_revisions\";i:3;s:20:\"delete_trashed_posts\";i:4;s:20:\"delete_spam_comments\";i:5;s:21:\"delete_trash_comments\";i:6;s:18:\"expired_transients\";}','yes'),
(3363550,'siteground_settings_optimizer','1','yes'),
(3363551,'siteground_settings_optimizer_timestamp','1679655762','yes'),
(3363552,'siteground_data_consent','0','yes'),
(3363553,'siteground_data_consent_timestamp','1679655762','yes'),
(3363554,'siteground_email_consent','0','yes'),
(3363555,'siteground_email_consent_timestamp','1679655762','yes'),
(3363587,'elementor_controls_usage','a:8:{s:7:\"wp-page\";a:28:{s:6:\"column\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:10;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:2;}s:14:\"section_border\";a:0:{}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:0:{}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:5:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;}s:14:\"section_border\";a:0:{}s:21:\"section_background_uc\";a:2:{s:18:\"uc_background_type\";i:2;s:32:\"blox_css_snow_bg_animation_speed\";i:2;}s:21:\"section_shape_divider\";a:0:{}s:26:\"section_background_overlay\";a:0:{}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:0:{}s:19:\"_section_responsive\";a:0:{}s:15:\"section_effects\";a:0:{}}s:15:\"stax-visibility\";a:2:{s:31:\"stax_visibility_general_section\";a:1:{s:25:\"stax_visibility_show_hide\";i:1;}s:33:\"stax_visibility_user_role_section\";a:2:{s:33:\"stax_visibility_user_role_enabled\";i:1;s:36:\"stax_visibility_user_role_conditions\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:-99;s:8:\"controls\";a:5:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:-99;s:5:\"align\";i:-3;s:7:\"link_to\";i:8;s:10:\"image_size\";i:11;s:4:\"link\";i:5;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:6:{s:21:\"_element_width_tablet\";i:-12;s:14:\"_element_width\";i:-37;s:21:\"_element_custom_width\";i:-37;s:21:\"_element_width_mobile\";i:-18;s:10:\"_flex_size\";i:-54;s:11:\"_element_id\";i:1;}s:18:\"_section_transform\";a:16:{s:28:\"_transform_translate_popover\";i:-23;s:28:\"_transform_translateY_effect\";i:-11;s:35:\"_transform_translateY_effect_mobile\";i:-30;s:30:\"_transform_scale_popover_hover\";i:-6;s:35:\"_transform_translateY_effect_tablet\";i:-20;s:25:\"_transform_rotateZ_effect\";i:-23;s:30:\"_transform_scale_effect_tablet\";i:-18;s:30:\"_transform_scale_effect_mobile\";i:-20;s:29:\"_transform_scale_effect_hover\";i:-6;s:25:\"_transform_rotate_popover\";i:-18;s:24:\"_transform_scale_popover\";i:-20;s:23:\"_transform_scale_effect\";i:8;s:34:\"_transform_translate_popover_hover\";i:6;s:34:\"_transform_translateX_effect_hover\";i:6;s:31:\"_transform_rotate_popover_hover\";i:2;s:31:\"_transform_rotateZ_effect_hover\";i:2;}s:15:\"_section_border\";a:2:{s:13:\"_border_color\";i:-10;s:14:\"_border_border\";i:-8;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:-5;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:-13;s:16:\"_animation_delay\";i:1;s:18:\"animation_duration\";i:6;}s:19:\"_section_responsive\";a:0:{}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:4:{s:5:\"width\";i:-6;s:19:\"image_border_radius\";i:-16;s:32:\"image_box_shadow_box_shadow_type\";i:-25;s:27:\"image_box_shadow_box_shadow\";i:-22;}s:21:\"section_style_caption\";a:0:{}}s:15:\"stax-visibility\";a:2:{s:31:\"stax_visibility_general_section\";a:0:{}s:33:\"stax_visibility_user_role_section\";a:0:{}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:0:{}}}}s:6:\"button\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:14:\"section_button\";a:8:{s:4:\"text\";i:20;s:4:\"size\";i:6;s:10:\"icon_align\";i:19;s:5:\"align\";i:-26;s:4:\"link\";i:-2;s:13:\"selected_icon\";i:17;s:13:\"button_css_id\";i:7;s:11:\"icon_indent\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:27:{s:21:\"typography_typography\";i:19;s:20:\"typography_font_size\";i:19;s:21:\"background_background\";i:18;s:16:\"background_color\";i:19;s:21:\"background_color_stop\";i:11;s:18:\"background_color_b\";i:18;s:25:\"background_gradient_angle\";i:11;s:22:\"typography_font_weight\";i:21;s:15:\"hover_animation\";i:6;s:25:\"typography_text_transform\";i:23;s:25:\"typography_letter_spacing\";i:23;s:28:\"text_shadow_text_shadow_type\";i:32;s:23:\"text_shadow_text_shadow\";i:31;s:33:\"button_box_shadow_box_shadow_type\";i:29;s:28:\"button_box_shadow_box_shadow\";i:29;s:12:\"border_color\";i:-18;s:17:\"button_text_color\";i:-3;s:13:\"border_border\";i:6;s:12:\"border_width\";i:-13;s:12:\"text_padding\";i:4;s:11:\"hover_color\";i:14;s:5:\"align\";i:47;s:22:\"typography_font_family\";i:50;s:13:\"border_radius\";i:41;s:29:\"button_background_hover_color\";i:-2;s:12:\"align_mobile\";i:4;s:22:\"typography_line_height\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:8;s:14:\"_element_width\";i:11;s:21:\"_element_custom_width\";i:11;s:10:\"_flex_size\";i:0;s:21:\"_element_width_mobile\";i:1;s:8:\"_padding\";i:4;s:21:\"_element_width_tablet\";i:4;}s:15:\"_section_border\";a:6:{s:14:\"_border_radius\";i:19;s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:27:\"_box_shadow_box_shadow_type\";i:4;s:22:\"_box_shadow_box_shadow\";i:4;}s:15:\"section_effects\";a:6:{s:10:\"_animation\";i:9;s:29:\"motion_fx_motion_fx_scrolling\";i:8;s:22:\"motion_fx_scale_effect\";i:4;s:21:\"motion_fx_scale_speed\";i:8;s:25:\"motion_fx_scale_direction\";i:5;s:18:\"animation_duration\";i:4;}s:19:\"_section_background\";a:10:{s:17:\"_background_color\";i:8;s:22:\"_background_background\";i:21;s:28:\"_background_hover_background\";i:3;s:19:\"_background_color_b\";i:4;s:25:\"_background_gradient_type\";i:4;s:17:\"_background_image\";i:4;s:20:\"_background_position\";i:4;s:18:\"_background_repeat\";i:4;s:16:\"_background_size\";i:4;s:22:\"_background_color_stop\";i:3;}s:19:\"_section_responsive\";a:0:{}s:18:\"_section_transform\";a:5:{s:35:\"_transform_translateY_effect_mobile\";i:7;s:30:\"_transform_scale_popover_hover\";i:7;s:29:\"_transform_scale_effect_hover\";i:7;s:36:\"_transform_scale_effect_hover_mobile\";i:1;s:28:\"_transform_translate_popover\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_shape\";i:4;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:0:{}}}}s:17:\"animated-headline\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:6:{s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:14:\"headline_style\";i:6;s:14:\"animation_type\";i:6;s:13:\"rotating_text\";i:6;s:10:\"after_text\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:8:{s:27:\"title_typography_typography\";i:2;s:11:\"words_color\";i:2;s:11:\"title_color\";i:8;s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:4;s:27:\"words_typography_typography\";i:-3;s:28:\"text_stroke_text_stroke_type\";i:-4;s:24:\"text_stroke_stroke_color\";i:1;}s:20:\"section_style_marker\";a:0:{}}s:8:\"advanced\";a:7:{s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:8;s:17:\"_background_color\";i:7;s:22:\"_background_color_stop\";i:7;s:19:\"_background_color_b\";i:7;s:25:\"_background_gradient_type\";i:7;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_radius\";i:9;s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translateX_effect\";i:8;s:28:\"_transform_translateY_effect\";i:8;s:35:\"_transform_translateY_effect_mobile\";i:8;}s:14:\"_section_style\";a:7:{s:8:\"_padding\";i:9;s:14:\"_element_width\";i:9;s:21:\"_element_width_mobile\";i:9;s:21:\"_element_custom_width\";i:9;s:10:\"_flex_size\";i:9;s:7:\"_margin\";i:1;s:21:\"_element_width_tablet\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:6;s:18:\"animation_duration\";i:8;}s:19:\"_section_responsive\";a:0:{}s:18:\"section_custom_css\";a:0:{}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:2;}s:15:\"section_effects\";a:0:{}}}}s:22:\"woocommerce-my-account\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:25:\"section_menu_icon_content\";a:4:{s:4:\"tabs\";i:2;s:20:\"tabs_content_spacing\";i:1;s:13:\"tabs_position\";i:1;s:14:\"tabs_alignment\";i:1;}s:26:\"section_additional_options\";a:1:{s:25:\"customize_dashboard_check\";i:1;}}s:5:\"style\";a:4:{s:10:\"tabs_style\";a:6:{s:38:\"tabs_normal_box_shadow_box_shadow_type\";i:1;s:33:\"tabs_normal_box_shadow_box_shadow\";i:1;s:16:\"tabs_border_type\";i:1;s:18:\"tabs_border_radius\";i:1;s:12:\"tabs_spacing\";i:1;s:19:\"tabs_divider_weight\";i:1;}s:14:\"sections_title\";a:1:{s:36:\"my_account_sections_background_color\";i:1;}s:16:\"typography_title\";a:1:{s:49:\"section_titles_typography_text_shadow_text_shadow\";i:1;}s:13:\"forms_section\";a:1:{s:41:\"forms_fields_normal_background_background\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:-1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:-1;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:-1;s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:-1;s:25:\"icon_typography_font_size\";i:-1;s:10:\"text_color\";i:3;s:11:\"text_indent\";i:3;s:27:\"icon_typography_font_family\";i:3;s:27:\"icon_typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:3;}}}}s:27:\"wp-widget-forminator_widget\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:11:\"wc-elements\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_product\";a:1:{s:7:\"element\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:16:\"woocommerce-cart\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:2;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:5:{s:33:\"section_cart_tabs_checkout_button\";a:12:{s:33:\"checkout_button_normal_text_color\";i:1;s:44:\"checkout_button_normal_background_background\";i:1;s:39:\"checkout_button_normal_background_color\";i:1;s:41:\"checkout_button_normal_background_color_b\";i:1;s:37:\"checkout_button_typography_typography\";i:1;s:38:\"checkout_button_typography_font_family\";i:1;s:36:\"checkout_button_typography_font_size\";i:1;s:32:\"checkout_button_hover_text_color\";i:1;s:43:\"checkout_button_hover_background_background\";i:1;s:38:\"checkout_button_hover_background_color\";i:1;s:40:\"checkout_button_hover_background_color_b\";i:1;s:31:\"checkout_button_hover_animation\";i:1;}s:28:\"section_cart_tabs_typography\";a:11:{s:20:\"sections_title_color\";i:1;s:37:\"sections_titles_typography_typography\";i:1;s:38:\"sections_titles_typography_font_family\";i:1;s:36:\"sections_titles_typography_font_size\";i:1;s:38:\"sections_titles_typography_font_weight\";i:1;s:43:\"sections_descriptions_typography_typography\";i:1;s:44:\"sections_descriptions_typography_font_family\";i:1;s:44:\"sections_radio_buttons_typography_typography\";i:1;s:45:\"sections_radio_buttons_typography_font_family\";i:1;s:42:\"sections_descriptions_typography_font_size\";i:1;s:43:\"sections_radio_buttons_typography_font_size\";i:1;}s:23:\"section_cart_tabs_forms\";a:7:{s:33:\"forms_field_typography_typography\";i:1;s:34:\"forms_field_typography_font_family\";i:1;s:45:\"forms_fields_focus_box_shadow_box_shadow_type\";i:1;s:34:\"forms_button_typography_typography\";i:1;s:35:\"forms_button_typography_font_family\";i:1;s:33:\"forms_button_typography_font_size\";i:1;s:32:\"forms_field_typography_font_size\";i:1;}s:18:\"tabs_order_summary\";a:11:{s:25:\"order_summary_title_color\";i:1;s:41:\"order_summary_title_typography_typography\";i:1;s:42:\"order_summary_title_typography_font_family\";i:1;s:40:\"order_summary_title_typography_font_size\";i:1;s:42:\"order_summary_title_typography_font_weight\";i:1;s:41:\"order_summary_items_typography_typography\";i:1;s:42:\"order_summary_items_typography_font_family\";i:1;s:46:\"order_summary_variations_typography_typography\";i:1;s:47:\"order_summary_variations_typography_font_family\";i:1;s:40:\"order_summary_items_typography_font_size\";i:1;s:45:\"order_summary_variations_typography_font_size\";i:1;}s:19:\"section_cart_totals\";a:3:{s:28:\"totals_typography_typography\";i:1;s:29:\"totals_typography_font_family\";i:1;s:27:\"totals_typography_font_size\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:-16;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:0:{}}s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:-16;s:10:\"title_text\";i:-16;s:16:\"description_text\";i:-12;s:8:\"position\";i:-24;s:15:\"position_mobile\";i:-6;}}s:5:\"style\";a:3:{s:18:\"section_style_icon\";a:4:{s:13:\"primary_color\";i:-16;s:9:\"icon_size\";i:-7;s:10:\"icon_space\";i:-5;s:6:\"rotate\";i:1;}s:21:\"section_style_content\";a:12:{s:27:\"title_typography_typography\";i:-16;s:28:\"title_typography_font_family\";i:-4;s:26:\"title_typography_font_size\";i:-16;s:28:\"title_typography_font_weight\";i:-12;s:33:\"description_typography_typography\";i:-10;s:31:\"title_typography_letter_spacing\";i:-5;s:34:\"description_typography_font_family\";i:-4;s:34:\"description_typography_font_weight\";i:6;s:17:\"description_color\";i:6;s:11:\"title_color\";i:1;s:29:\"title_shadow_text_shadow_type\";i:1;s:24:\"title_shadow_text_shadow\";i:1;}s:17:\"section_style_box\";a:5:{s:8:\"position\";i:12;s:15:\"position_tablet\";i:12;s:10:\"icon_space\";i:7;s:15:\"position_mobile\";i:1;s:10:\"text_align\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:29:\"motion_fx_motion_fx_scrolling\";i:2;s:21:\"motion_fx_scale_speed\";i:2;}s:14:\"_section_style\";a:6:{s:21:\"_element_width_tablet\";i:10;s:21:\"_element_width_mobile\";i:8;s:10:\"_flex_size\";i:9;s:14:\"_element_width\";i:3;s:21:\"_element_custom_width\";i:3;s:8:\"_padding\";i:2;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;s:17:\"_background_image\";i:2;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:-2;s:14:\"_border_radius\";i:-2;s:13:\"_border_color\";i:2;}}}}s:14:\"call-to-action\";a:2:{s:5:\"count\";i:14;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:18:\"section_main_image\";a:4:{s:6:\"layout\";i:-1;s:8:\"bg_image\";i:14;s:13:\"layout_mobile\";i:1;s:13:\"bg_image_size\";i:1;}s:15:\"section_content\";a:5:{s:5:\"title\";i:14;s:11:\"description\";i:11;s:6:\"button\";i:10;s:13:\"graphic_image\";i:-2;s:4:\"link\";i:2;}}s:5:\"style\";a:3:{s:9:\"box_style\";a:4:{s:7:\"padding\";i:-2;s:10:\"min-height\";i:1;s:17:\"vertical_position\";i:1;s:16:\"image_min_height\";i:15;}s:21:\"section_content_style\";a:18:{s:27:\"title_typography_typography\";i:-1;s:28:\"title_typography_font_family\";i:-1;s:26:\"title_typography_font_size\";i:-2;s:28:\"title_typography_font_weight\";i:-2;s:31:\"title_typography_text_transform\";i:-2;s:27:\"title_typography_font_style\";i:-2;s:32:\"title_typography_text_decoration\";i:-2;s:28:\"title_typography_line_height\";i:-2;s:31:\"title_typography_letter_spacing\";i:-2;s:29:\"title_typography_word_spacing\";i:-2;s:13:\"title_spacing\";i:-2;s:19:\"description_spacing\";i:-2;s:16:\"content_bg_color\";i:-1;s:11:\"title_color\";i:-1;s:17:\"description_color\";i:-2;s:33:\"description_typography_typography\";i:2;s:34:\"description_typography_font_family\";i:-1;s:32:\"description_typography_font_size\";i:1;}s:12:\"button_style\";a:18:{s:28:\"button_typography_typography\";i:-1;s:29:\"button_typography_font_family\";i:-1;s:27:\"button_typography_font_size\";i:-1;s:29:\"button_typography_font_weight\";i:-2;s:32:\"button_typography_text_transform\";i:-2;s:28:\"button_typography_font_style\";i:-2;s:33:\"button_typography_text_decoration\";i:-2;s:29:\"button_typography_line_height\";i:-2;s:32:\"button_typography_letter_spacing\";i:-2;s:30:\"button_typography_word_spacing\";i:-2;s:17:\"button_text_color\";i:-2;s:23:\"button_background_color\";i:-2;s:19:\"button_border_color\";i:-2;s:23:\"button_hover_text_color\";i:-2;s:29:\"button_hover_background_color\";i:-2;s:19:\"button_border_width\";i:-2;s:20:\"button_border_radius\";i:-1;s:11:\"button_size\";i:-2;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:0:{}s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:25:\"eael-woo-product-carousel\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:37:\"eael_section_product_carousel_layouts\";a:6:{s:32:\"eael_product_carousel_show_title\";i:3;s:28:\"eael_product_carousel_rating\";i:3;s:27:\"eael_product_carousel_price\";i:3;s:37:\"eael_product_carousel_image_size_size\";i:3;s:37:\"eael_product_carousel_image_clickable\";i:3;s:37:\"eael_product_carousel_title_clickable\";i:3;}s:26:\"section_additional_options\";a:6:{s:15:\"carousel_effect\";i:3;s:15:\"carousel_rotate\";i:3;s:6:\"arrows\";i:3;s:4:\"dots\";i:3;s:14:\"autoplay_speed\";i:3;s:16:\"carousel_stretch\";i:3;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;s:19:\"_background_color_b\";i:3;}s:15:\"_section_border\";a:6:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;s:14:\"_border_radius\";i:3;s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}s:5:\"style\";a:1:{s:28:\"eael_product_carousel_styles\";a:1:{s:35:\"eael_product_carousel_border_border\";i:3;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:22:\"typography_font_family\";i:-28;s:10:\"text_color\";i:26;s:22:\"typography_line_height\";i:19;s:23:\"text_shadow_text_shadow\";i:10;s:28:\"text_shadow_text_shadow_type\";i:3;s:5:\"align\";i:13;s:21:\"typography_font_style\";i:2;s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;}}s:8:\"advanced\";a:6:{s:19:\"_section_background\";a:8:{s:17:\"_background_image\";i:9;s:17:\"_background_color\";i:1;s:24:\"_background_color_b_stop\";i:6;s:26:\"_background_gradient_angle\";i:5;s:22:\"_background_background\";i:27;s:19:\"_background_color_b\";i:21;s:25:\"_background_gradient_type\";i:16;s:22:\"_background_color_stop\";i:5;}s:15:\"_section_border\";a:5:{s:14:\"_border_border\";i:9;s:13:\"_border_width\";i:9;s:14:\"_border_radius\";i:21;s:27:\"_box_shadow_box_shadow_type\";i:12;s:22:\"_box_shadow_box_shadow\";i:8;}s:14:\"_section_style\";a:7:{s:21:\"_element_width_tablet\";i:16;s:21:\"_element_width_mobile\";i:27;s:7:\"_margin\";i:21;s:8:\"_padding\";i:18;s:14:\"_element_width\";i:28;s:21:\"_element_custom_width\";i:28;s:10:\"_flex_size\";i:31;}s:15:\"section_effects\";a:9:{s:21:\"motion_fx_scale_speed\";i:-10;s:29:\"motion_fx_motion_fx_scrolling\";i:8;s:17:\"_animation_mobile\";i:5;s:25:\"motion_fx_scale_direction\";i:7;s:22:\"motion_fx_scale_effect\";i:0;s:24:\"motion_fx_opacity_effect\";i:10;s:27:\"motion_fx_opacity_direction\";i:5;s:10:\"_animation\";i:4;s:18:\"animation_duration\";i:5;}s:18:\"_section_transform\";a:9:{s:28:\"_transform_translateX_effect\";i:9;s:35:\"_transform_translateX_effect_tablet\";i:5;s:35:\"_transform_translateX_effect_mobile\";i:5;s:28:\"_transform_translateY_effect\";i:9;s:35:\"_transform_translateY_effect_tablet\";i:5;s:35:\"_transform_translateY_effect_mobile\";i:9;s:30:\"_transform_scale_popover_hover\";i:-3;s:30:\"_transform_scale_effect_mobile\";i:-1;s:36:\"_transform_scale_effect_hover_mobile\";i:5;}s:16:\"_section_masking\";a:4:{s:11:\"_mask_shape\";i:12;s:12:\"_mask_switch\";i:3;s:11:\"_mask_image\";i:4;s:10:\"_mask_size\";i:1;}}}}s:11:\"menu-anchor\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:12;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:-142;s:8:\"controls\";a:3:{s:5:\"style\";a:4:{s:18:\"section_background\";a:16:{s:33:\"background_motion_fx_scale_effect\";i:6;s:36:\"background_motion_fx_scale_direction\";i:6;s:16:\"background_color\";i:-26;s:21:\"background_color_stop\";i:1;s:21:\"background_background\";i:31;s:16:\"background_image\";i:13;s:40:\"background_motion_fx_motion_fx_scrolling\";i:2;s:18:\"background_color_b\";i:11;s:19:\"background_bg_width\";i:1;s:38:\"background_motion_fx_translateX_effect\";i:1;s:37:\"background_motion_fx_translateX_speed\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:24:\"background_gradient_type\";i:1;s:23:\"background_color_b_stop\";i:1;}s:26:\"section_background_overlay\";a:2:{s:35:\"background_overlay_hover_transition\";i:1;s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:10:{s:24:\"shape_divider_top_height\";i:-43;s:23:\"shape_divider_top_width\";i:5;s:26:\"shape_divider_bottom_color\";i:6;s:27:\"shape_divider_bottom_height\";i:6;s:17:\"shape_divider_top\";i:4;s:23:\"shape_divider_top_color\";i:4;s:26:\"shape_divider_bottom_width\";i:7;s:26:\"shape_divider_top_negative\";i:5;s:29:\"shape_divider_bottom_negative\";i:1;s:34:\"shape_divider_bottom_above_content\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_border\";i:-11;s:12:\"border_width\";i:-11;s:12:\"border_color\";i:-11;s:13:\"border_radius\";i:3;s:21:\"box_shadow_box_shadow\";i:4;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:13:\"content_width\";i:-42;s:5:\"width\";i:-51;s:20:\"flex_justify_content\";i:-119;s:16:\"flex_align_items\";i:-90;s:8:\"flex_gap\";i:-30;s:9:\"flex_wrap\";i:4;s:10:\"min_height\";i:-1;s:14:\"flex_direction\";i:51;s:11:\"boxed_width\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:4:{s:6:\"margin\";i:-20;s:10:\"_flex_size\";i:-20;s:7:\"padding\";i:12;s:16:\"_flex_align_self\";i:1;}s:15:\"section_effects\";a:0:{}s:18:\"_section_transform\";a:0:{}}}}s:26:\"woocommerce-product-rating\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:0:{}}s:6:\"spacer\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:4;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:2:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;}s:13:\"section_email\";a:1:{s:13:\"email_subject\";i:1;}s:15:\"section_email_2\";a:1:{s:15:\"email_subject_2\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:15:\"invalid_message\";i:1;}s:15:\"section_buttons\";a:1:{s:12:\"button_align\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:7:\"row_gap\";i:1;s:26:\"html_typography_typography\";i:1;}s:19:\"section_field_style\";a:3:{s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;s:18:\"field_border_color\";i:1;}s:20:\"section_button_style\";a:3:{s:23:\"button_background_color\";i:1;s:20:\"button_border_radius\";i:1;s:28:\"button_typography_typography\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"_section_border\";a:4:{s:14:\"_border_radius\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:6:\"rating\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}s:7:\"content\";a:1:{s:14:\"section_rating\";a:1:{s:14:\"icon_alignment\";i:1;}}}}s:20:\"testimonial-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:1:{s:6:\"slides\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_content_style\";a:7:{s:11:\"content_gap\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;}s:18:\"section_navigation\";a:4:{s:15:\"pagination_size\";i:1;s:25:\"pagination_color_inactive\";i:1;s:16:\"pagination_color\";i:1;s:12:\"arrows_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:6:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"section_effects\";a:2:{s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;s:13:\"_border_width\";i:1;}}}}s:23:\"eael-filterable-gallery\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:4:{s:7:\"content\";a:4:{s:24:\"eael_section_fg_settings\";a:6:{s:21:\"eael_fg_items_to_show\";i:4;s:24:\"eael_fg_grid_item_height\";i:1;s:29:\"eael_section_fg_link_icon_new\";i:1;s:29:\"eael_fg_grid_hover_transition\";i:1;s:21:\"eael_fg_caption_style\";i:2;s:7:\"columns\";i:4;}s:32:\"eael_section_fg_control_settings\";a:2:{s:16:\"eael_fg_controls\";i:4;s:13:\"filter_enable\";i:3;}s:29:\"eael_section_fg_grid_settings\";a:2:{s:21:\"eael_fg_gallery_items\";i:4;s:19:\"eael_item_randomize\";i:2;}s:18:\"section_pagination\";a:2:{s:10:\"pagination\";i:2;s:15:\"images_per_page\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:0:{}}s:5:\"style\";a:6:{s:38:\"eael_section_fg_control_style_settings\";a:12:{s:31:\"eael_fg_control_active_bg_color\";i:1;s:22:\"eael_fg_control_margin\";i:1;s:37:\"eael_fg_control_typography_typography\";i:1;s:38:\"eael_fg_control_typography_font_family\";i:1;s:36:\"eael_fg_control_typography_font_size\";i:1;s:38:\"eael_fg_control_typography_font_weight\";i:1;s:41:\"eael_fg_control_typography_text_transform\";i:1;s:37:\"eael_fg_control_typography_font_style\";i:1;s:33:\"eael_fg_control_normal_text_color\";i:1;s:36:\"eael_fg_control_normal_border_radius\";i:1;s:38:\"eael_fg_control_shadow_box_shadow_type\";i:1;s:33:\"eael_fg_control_shadow_box_shadow\";i:1;}s:29:\"section_loadmore_button_style\";a:2:{s:32:\"load_more_button_bg_color_normal\";i:1;s:38:\"load_more_button_typography_typography\";i:1;}s:35:\"eael_section_fg_item_style_settings\";a:6:{s:35:\"eael_fg_item_shadow_box_shadow_type\";i:1;s:30:\"eael_fg_item_shadow_box_shadow\";i:1;s:26:\"eael_fg_item_border_border\";i:1;s:25:\"eael_fg_item_border_width\";i:1;s:25:\"eael_fg_item_border_color\";i:1;s:30:\"eael_fg_item_container_padding\";i:1;}s:43:\"eael_section_fg_item_content_style_settings\";a:13:{s:29:\"eael_fg_item_content_bg_color\";i:1;s:34:\"eael_fg_item_content_border_border\";i:1;s:33:\"eael_fg_item_content_border_color\";i:1;s:38:\"eael_fg_item_content_shadow_box_shadow\";i:1;s:32:\"eael_fg_item_content_title_color\";i:1;s:38:\"eael_fg_item_content_title_hover_color\";i:1;s:48:\"eael_fg_item_content_title_typography_typography\";i:1;s:49:\"eael_fg_item_content_title_typography_font_weight\";i:1;s:47:\"eael_fg_item_content_text_typography_typography\";i:1;s:48:\"eael_fg_item_content_text_typography_font_weight\";i:1;s:30:\"eael_fg_item_content_alignment\";i:1;s:49:\"eael_fg_item_content_title_typography_font_family\";i:1;s:48:\"eael_fg_item_content_text_typography_font_family\";i:1;}s:30:\"eael_section_fg_style_settings\";a:3:{s:24:\"eael_fg_container_margin\";i:1;s:16:\"eael_fg_bg_color\";i:1;s:25:\"eael_fg_container_padding\";i:1;}s:39:\"eael_section_fg_item_cap_style_settings\";a:1:{s:25:\"eael_fg_item_cap_bg_color\";i:1;}}s:15:\"stax-visibility\";a:2:{s:31:\"stax_visibility_general_section\";a:2:{s:25:\"stax_visibility_show_hide\";i:1;s:30:\"stax_visibility_condition_type\";i:1;}s:33:\"stax_visibility_user_role_section\";a:1:{s:36:\"stax_visibility_user_role_conditions\";i:1;}}}}s:14:\"media-carousel\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:4;s:6:\"effect\";i:4;s:15:\"slides_per_view\";i:4;}}s:5:\"style\";a:2:{s:20:\"section_slides_style\";a:2:{s:19:\"slide_border_radius\";i:4;s:22:\"slide_background_color\";i:3;}s:18:\"section_navigation\";a:1:{s:16:\"pagination_color\";i:4;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:4;s:14:\"_element_width\";i:4;s:21:\"_element_width_tablet\";i:4;s:21:\"_element_width_mobile\";i:4;s:21:\"_element_custom_width\";i:4;s:10:\"_flex_size\";i:4;}s:15:\"section_effects\";a:2:{s:22:\"motion_fx_scale_effect\";i:4;s:21:\"motion_fx_scale_speed\";i:4;}s:18:\"_section_transform\";a:1:{s:36:\"_transform_scale_effect_hover_mobile\";i:4;}s:19:\"_section_background\";a:5:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;s:19:\"_background_color_b\";i:4;s:25:\"_background_gradient_type\";i:4;s:17:\"_background_image\";i:3;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:4;s:14:\"_border_radius\";i:4;s:27:\"_box_shadow_box_shadow_type\";i:4;}}}}s:6:\"slides\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:1:{s:6:\"slides\";i:1;}s:22:\"section_slider_options\";a:2:{s:10:\"transition\";i:1;s:17:\"content_animation\";i:1;}}s:5:\"style\";a:5:{s:20:\"section_style_slides\";a:1:{s:17:\"content_max_width\";i:1;}s:19:\"section_style_title\";a:2:{s:15:\"heading_spacing\";i:1;s:13:\"heading_color\";i:1;}s:25:\"section_style_description\";a:4:{s:19:\"description_spacing\";i:1;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:32:\"description_typography_font_size\";i:1;}s:20:\"section_style_button\";a:5:{s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:20:\"button_border_radius\";i:1;s:17:\"button_text_color\";i:1;s:23:\"button_background_color\";i:1;}s:24:\"section_style_navigation\";a:5:{s:11:\"arrows_size\";i:1;s:12:\"arrows_color\";i:1;s:9:\"dots_size\";i:1;s:19:\"dots_color_inactive\";i:1;s:10:\"dots_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:6:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"section_effects\";a:2:{s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:24:\"eael-woo-product-gallery\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:36:\"eael_section_product_gallery_layouts\";a:3:{s:39:\"eael_woo_product_gallery_terms_show_all\";i:1;s:39:\"eael_woo_product_gallery_terms_all_text\";i:1;s:36:\"eael_woo_product_gallery_terms_thumb\";i:1;}s:37:\"eael_section_product_gallery_settings\";a:1:{s:35:\"eael_product_gallery_products_count\";i:1;}}s:5:\"style\";a:3:{s:28:\"eael_section_product_gallery\";a:2:{s:47:\"eael_product_gallery_item_typography_typography\";i:1;s:36:\"eael_product_gallery_item_background\";i:1;}s:39:\"eael_section_product_gallery_typography\";a:7:{s:40:\"eael_product_gallery_product_title_color\";i:1;s:56:\"eael_product_gallery_product_title_typography_typography\";i:1;s:57:\"eael_product_gallery_product_title_typography_font_family\";i:1;s:40:\"eael_product_gallery_product_price_color\";i:1;s:56:\"eael_product_gallery_product_price_typography_typography\";i:1;s:61:\"eael_product_gallery_product_price_typography_text_decoration\";i:1;s:42:\"eael_product_gallery_sale_badge_background\";i:1;}s:43:\"eael_section_product_gallery_buttons_styles\";a:1:{s:39:\"eael_product_gallery_buttons_background\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_weight\";i:1;s:5:\"align\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:21:\"_element_width_tablet\";i:1;s:10:\"_flex_size\";i:1;}}}}}s:7:\"wp-post\";a:17:{s:9:\"icon-list\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:11;s:4:\"view\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:11;s:9:\"icon_size\";i:11;s:11:\"text_indent\";i:6;}s:18:\"section_text_style\";a:7:{s:10:\"text_color\";i:11;s:11:\"text_indent\";i:3;s:26:\"icon_typography_typography\";i:11;s:27:\"icon_typography_font_family\";i:11;s:25:\"icon_typography_font_size\";i:11;s:27:\"icon_typography_font_weight\";i:9;s:16:\"text_color_hover\";i:1;}s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:2;s:17:\"icon_align_mobile\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:9;s:23:\"_element_vertical_align\";i:9;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:5;s:26:\"_background_video_fallback\";i:5;s:23:\"_background_hover_image\";i:5;s:32:\"_background_hover_video_fallback\";i:5;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:5;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:6;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:6;s:3:\"gap\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:6;s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:5:\"align\";i:3;s:12:\"_inline_size\";i:4;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:2;}s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:4;s:7:\"z_index\";i:3;s:6:\"margin\";i:3;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:9;s:25:\"background_video_fallback\";i:7;s:22:\"background_hover_image\";i:7;s:31:\"background_hover_video_fallback\";i:7;}s:14:\"section_border\";a:6:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:13:\"border_radius\";i:3;s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:3;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_image\";i:7;s:33:\"background_overlay_video_fallback\";i:7;s:30:\"background_overlay_hover_image\";i:7;s:39:\"background_overlay_hover_video_fallback\";i:7;s:29:\"background_overlay_background\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:6;s:3:\"gap\";i:8;s:16:\"content_position\";i:3;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:5:{s:18:\"section_background\";a:9:{s:16:\"background_color\";i:6;s:21:\"background_color_stop\";i:3;s:18:\"background_color_b\";i:3;s:23:\"background_color_b_stop\";i:3;s:21:\"background_background\";i:6;s:16:\"background_image\";i:8;s:25:\"background_video_fallback\";i:6;s:22:\"background_hover_image\";i:6;s:31:\"background_hover_video_fallback\";i:6;}s:14:\"section_border\";a:3:{s:12:\"border_width\";i:5;s:13:\"border_border\";i:2;s:12:\"border_color\";i:2;}s:21:\"section_background_uc\";a:8:{s:16:\"clouds_image_one\";i:8;s:16:\"clouds_image_two\";i:8;s:18:\"clouds_image_three\";i:8;s:17:\"clouds_image_four\";i:8;s:23:\"wave_animation_wave_top\";i:8;s:26:\"wave_animation_wave_middle\";i:8;s:26:\"wave_animation_wave_bottom\";i:8;s:32:\"blox_css_snow_bg_animation_speed\";i:2;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_color_b\";i:2;s:24:\"background_overlay_image\";i:6;s:33:\"background_overlay_video_fallback\";i:6;s:30:\"background_overlay_hover_image\";i:6;s:39:\"background_overlay_hover_video_fallback\";i:6;}s:21:\"section_shape_divider\";a:3:{s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:7;s:6:\"margin\";i:3;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:2;s:13:\"selected_icon\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:1;s:4:\"size\";i:1;s:10:\"icon_align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:22:{s:16:\"background_color\";i:2;s:17:\"button_text_color\";i:1;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:2;s:12:\"text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;s:11:\"hover_color\";i:1;s:22:\"typography_font_family\";i:2;s:23:\"text_shadow_text_shadow\";i:2;s:5:\"align\";i:1;s:25:\"typography_text_transform\";i:1;s:25:\"typography_letter_spacing\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;s:21:\"background_background\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:33:\"button_box_shadow_box_shadow_type\";i:1;s:28:\"button_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:4:{s:19:\"_section_background\";a:0:{}s:14:\"_section_style\";a:4:{s:10:\"_flex_size\";i:1;s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:5:\"align\";i:4;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:2;s:25:\"typography_letter_spacing\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:4:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:0:{}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:6;s:10:\"title_text\";i:6;s:16:\"description_text\";i:6;s:10:\"title_size\";i:6;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_align\";i:6;s:18:\"title_bottom_space\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:28:\"title_typography_line_height\";i:6;s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:28:\"title_typography_font_weight\";i:6;s:17:\"description_color\";i:6;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:6;s:13:\"_border_width\";i:6;s:13:\"_border_color\";i:6;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:6;s:26:\"_background_video_fallback\";i:6;s:23:\"_background_hover_image\";i:6;s:32:\"_background_hover_video_fallback\";i:6;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:6;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:3;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:8;s:11:\"boxed_width\";i:5;s:13:\"content_width\";i:6;s:20:\"flex_justify_content\";i:6;s:16:\"flex_align_items\";i:4;s:5:\"width\";i:5;s:8:\"flex_gap\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:4;s:7:\"padding\";i:3;s:10:\"_flex_size\";i:4;}s:15:\"section_effects\";a:0:{}s:18:\"_section_transform\";a:0:{}}s:5:\"style\";a:4:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:5;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:32:\"background_motion_fx_scale_speed\";i:2;s:36:\"background_motion_fx_scale_direction\";i:2;s:33:\"background_motion_fx_scale_effect\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;}s:21:\"section_shape_divider\";a:6:{s:17:\"shape_divider_top\";i:3;s:23:\"shape_divider_top_color\";i:4;s:23:\"shape_divider_top_width\";i:4;s:24:\"shape_divider_top_height\";i:4;s:26:\"shape_divider_bottom_color\";i:2;s:27:\"shape_divider_bottom_height\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:2;}}}}s:16:\"theme-post-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:9:\"post-info\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}}}s:25:\"theme-post-featured-image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:13:\"post-comments\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:5:\"_skin\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:10:\"_flex_size\";i:1;}}}}s:15:\"post-navigation\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:13:\"checkout-form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:5:{s:28:\"section_general_style_fields\";a:5:{s:20:\"global_primary_color\";i:1;s:17:\"global_text_color\";i:1;s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:27:\"global_typography_font_size\";i:1;}s:28:\"section_heading_style_fields\";a:5:{s:18:\"heading_text_color\";i:1;s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_family\";i:1;s:28:\"heading_typography_font_size\";i:1;s:30:\"heading_typography_font_weight\";i:1;}s:13:\"input_section\";a:4:{s:32:\"input_text_typography_typography\";i:1;s:33:\"input_text_typography_font_family\";i:1;s:11:\"input_skins\";i:1;s:31:\"input_text_typography_font_size\";i:1;}s:14:\"button_section\";a:4:{s:29:\"buttons_typography_typography\";i:1;s:30:\"buttons_typography_font_family\";i:1;s:28:\"buttons_typography_font_size\";i:1;s:30:\"buttons_typography_font_weight\";i:1;}s:28:\"section_payment_style_fields\";a:2:{s:24:\"payment_section_bg_color\";i:1;s:21:\"payment_info_bg_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:18:\"order-details-form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:23:\"section_thankyou_fields\";a:1:{s:13:\"thankyou_text\";i:1;}}s:5:\"style\";a:7:{s:34:\"order_details_form_spacing_styling\";a:2:{s:15:\"heading_spacing\";i:1;s:16:\"sections_spacing\";i:1;}s:34:\"order_details_form_heading_styling\";a:6:{s:13:\"heading_align\";i:1;s:13:\"heading_color\";i:1;s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_family\";i:1;s:28:\"heading_typography_font_size\";i:1;s:30:\"heading_typography_font_weight\";i:1;}s:34:\"order_details_form_general_styling\";a:9:{s:21:\"section_heading_color\";i:1;s:37:\"section_heading_typography_typography\";i:1;s:38:\"section_heading_typography_font_family\";i:1;s:36:\"section_heading_typography_font_size\";i:1;s:18:\"section_text_color\";i:1;s:34:\"section_text_typography_typography\";i:1;s:35:\"section_text_typography_font_family\";i:1;s:39:\"section_all_background_color_background\";i:1;s:34:\"section_all_background_color_color\";i:1;}s:28:\"section_order_review_styling\";a:3:{s:42:\"section_order_review_typography_typography\";i:1;s:43:\"section_order_review_typography_font_family\";i:1;s:41:\"section_order_review_typography_font_size\";i:1;}s:25:\"section_downloads_styling\";a:2:{s:47:\"section_downloads_heading_typography_typography\";i:1;s:48:\"section_downloads_heading_typography_font_family\";i:1;}s:29:\"section_order_details_styling\";a:7:{s:51:\"section_order_details_heading_typography_typography\";i:1;s:52:\"section_order_details_heading_typography_font_family\";i:1;s:52:\"section_order_details_heading_typography_font_weight\";i:1;s:35:\"section_order_details_heading_color\";i:1;s:48:\"section_order_details_text_typography_typography\";i:1;s:49:\"section_order_details_text_typography_font_family\";i:1;s:47:\"section_order_details_text_typography_font_size\";i:1;}s:32:\"section_customer_details_styling\";a:7:{s:54:\"section_customer_details_heading_typography_typography\";i:1;s:55:\"section_customer_details_heading_typography_font_family\";i:1;s:55:\"section_customer_details_heading_typography_font_weight\";i:1;s:38:\"section_customer_details_heading_color\";i:1;s:51:\"section_customer_details_text_typography_typography\";i:1;s:52:\"section_customer_details_text_typography_font_family\";i:1;s:50:\"section_customer_details_text_typography_font_size\";i:1;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}}s:5:\"popup\";a:8:{s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:2;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:1;s:21:\"typography_font_style\";i:1;s:26:\"typography_text_decoration\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:11:\"_flex_order\";i:1;}}}}s:14:\"wc-add-to-cart\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_product\";a:1:{s:10:\"product_id\";i:1;}s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"icon_indent\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:17:\"button_text_color\";i:1;s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:11:\"_flex_order\";i:1;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:28:\"_transform_translateY_effect\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:8:\"flex_gap\";i:3;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:3;s:20:\"flex_justify_content\";i:2;s:16:\"flex_align_items\";i:2;s:13:\"content_width\";i:1;s:10:\"min_height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_background_uc\";a:7:{s:16:\"clouds_image_one\";i:3;s:16:\"clouds_image_two\";i:3;s:18:\"clouds_image_three\";i:3;s:17:\"clouds_image_four\";i:3;s:23:\"wave_animation_wave_top\";i:3;s:26:\"wave_animation_wave_middle\";i:3;s:26:\"wave_animation_wave_bottom\";i:3;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:2;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:6:{s:6:\"layout\";i:1;s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:10:\"text_align\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:10:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:18:\"menu_space_between\";i:1;}s:22:\"section_style_dropdown\";a:14:{s:19:\"color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:26:\"color_dropdown_item_active\";i:1;s:37:\"background_color_dropdown_item_active\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_family\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;s:35:\"dropdown_box_shadow_box_shadow_type\";i:1;s:30:\"dropdown_box_shadow_box_shadow\";i:1;s:32:\"padding_horizontal_dropdown_item\";i:1;s:30:\"padding_vertical_dropdown_item\";i:1;s:21:\"dropdown_top_distance\";i:1;}s:12:\"style_toggle\";a:2:{s:12:\"toggle_color\";i:1;s:23:\"toggle_background_color\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:3:{s:12:\"button_align\";i:1;s:20:\"selected_button_icon\";i:1;s:17:\"button_icon_align\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:15:\"invalid_message\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:1:{s:10:\"column_gap\";i:1;}s:19:\"section_field_style\";a:9:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:31:\"field_typography_text_transform\";i:1;s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:19:\"button_text_padding\";i:1;}}}}}s:6:\"header\";a:5:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:4:\"menu\";i:1;s:7:\"pointer\";i:1;s:10:\"full_width\";i:1;s:11:\"align_items\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:12:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_line_height\";i:1;s:28:\"menu_typography_word_spacing\";i:1;s:15:\"color_menu_item\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:18:\"menu_space_between\";i:1;s:27:\"menu_typography_font_family\";i:1;s:23:\"border_radius_menu_item\";i:1;}s:12:\"style_toggle\";a:4:{s:12:\"toggle_color\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:23:\"toggle_background_color\";i:1;}s:22:\"section_style_dropdown\";a:7:{s:30:\"background_color_dropdown_item\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:22:\"dropdown_border_border\";i:1;s:21:\"dropdown_border_color\";i:1;s:19:\"color_dropdown_item\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_family\";i:1;}}s:15:\"stax-visibility\";a:2:{s:33:\"stax_visibility_user_role_section\";a:2:{s:33:\"stax_visibility_user_role_enabled\";i:1;s:36:\"stax_visibility_user_role_conditions\";i:1;}s:31:\"stax_visibility_general_section\";a:1:{s:25:\"stax_visibility_show_hide\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:22:\"_background_background\";i:1;s:19:\"_background_color_b\";i:1;s:28:\"_background_hover_background\";i:1;s:25:\"_background_hover_color_b\";i:1;}s:14:\"_section_style\";a:2:{s:21:\"_element_width_mobile\";i:1;s:10:\"_flex_size\";i:1;}}}}s:21:\"woocommerce-menu-cart\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:25:\"section_menu_icon_content\";a:2:{s:4:\"icon\";i:1;s:20:\"hide_empty_indicator\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_toggle_style\";a:3:{s:24:\"toggle_button_text_color\";i:1;s:24:\"toggle_button_icon_color\";i:1;s:26:\"toggle_button_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:4:{s:22:\"_background_background\";i:1;s:19:\"_background_color_b\";i:1;s:28:\"_background_hover_background\";i:1;s:25:\"_background_hover_color_b\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}s:21:\"section_shape_divider\";a:5:{s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:23:\"shape_divider_top_width\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:24:\"shape_divider_top_height\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:1:{s:25:\"motion_fx_scale_direction\";i:1;}}}}}s:11:\"single-post\";a:8:{s:6:\"spacer\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:6;s:11:\"boxed_width\";i:3;s:13:\"content_width\";i:4;s:20:\"flex_justify_content\";i:4;s:16:\"flex_align_items\";i:4;s:5:\"width\";i:3;s:8:\"flex_gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:10:\"_flex_size\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:2;}s:21:\"section_shape_divider\";a:4:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:2;s:23:\"shape_divider_top_width\";i:2;s:24:\"shape_divider_top_height\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:16:\"theme-post-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:9:\"post-info\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}}}s:25:\"theme-post-featured-image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:13:\"post-comments\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:5:\"_skin\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:10:\"_flex_size\";i:1;}}}}s:15:\"post-navigation\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:4:\"link\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:12:{s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:11:\"hover_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}}}}}s:6:\"footer\";a:7:{s:17:\"animated-headline\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:14:\"headline_style\";i:1;s:11:\"before_text\";i:1;s:13:\"rotating_text\";i:1;s:22:\"rotate_iteration_delay\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:33:\"highlighted_text_background_color\";i:1;s:22:\"highlighted_text_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:6:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"section_effects\";a:2:{s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:7:\"_margin\";i:1;}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:6;s:16:\"flex_align_items\";i:7;s:13:\"content_width\";i:6;s:5:\"width\";i:6;s:20:\"flex_justify_content\";i:7;s:8:\"flex_gap\";i:5;s:11:\"boxed_width\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:10:\"_flex_size\";i:6;}}s:5:\"style\";a:3:{s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;}s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:16:\"background_image\";i:1;}s:21:\"section_shape_divider\";a:3:{s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:9;s:10:\"title_text\";i:9;s:16:\"description_text\";i:9;s:4:\"link\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:6:{s:8:\"position\";i:9;s:15:\"position_mobile\";i:9;s:26:\"content_vertical_alignment\";i:3;s:10:\"text_align\";i:3;s:10:\"icon_space\";i:3;s:18:\"title_bottom_space\";i:3;}s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:9;s:9:\"icon_size\";i:9;}s:21:\"section_style_content\";a:4:{s:27:\"title_typography_typography\";i:9;s:28:\"title_typography_font_family\";i:9;s:26:\"title_typography_font_size\";i:9;s:11:\"title_color\";i:5;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:4;s:14:\"_border_radius\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:3;s:21:\"_element_custom_width\";i:3;s:10:\"_flex_size\";i:3;s:21:\"_element_width_tablet\";i:2;s:21:\"_element_width_mobile\";i:1;}}}}}s:9:\"loop-item\";a:1:{s:9:\"container\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:14:\"flex_direction\";i:1;s:13:\"content_width\";i:1;s:5:\"width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:10:\"_flex_size\";i:1;}}}}}s:7:\"product\";a:11:{s:6:\"spacer\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:5:\"width\";i:4;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:6;s:20:\"flex_justify_content\";i:3;s:13:\"content_width\";i:4;s:16:\"flex_align_items\";i:2;s:8:\"flex_gap\";i:2;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:4:{s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:5;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:4;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:10:\"_flex_size\";i:1;}}}}s:26:\"woocommerce-product-images\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:25:\"woocommerce-product-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:26:\"woocommerce-product-rating\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:24:\"woocommerce-product-meta\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:25:\"woocommerce-product-price\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:19:\"section_price_style\";a:1:{s:11:\"price_color\";i:1;}}}}s:29:\"wl-single-product-description\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:21:\"product_style_section\";a:3:{s:26:\"text_typography_typography\";i:1;s:27:\"text_typography_font_family\";i:1;s:25:\"text_typography_font_size\";i:1;}}}}s:14:\"wc-add-to-cart\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:21:\"_element_width_mobile\";i:1;}s:15:\"section_effects\";a:5:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:25:\"motion_fx_scale_direction\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:5:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_shape\";i:1;}}}}s:18:\"wl-product-related\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:1:{s:27:\"_box_shadow_box_shadow_type\";i:1;}}}}}}','off'),
(3363591,'elementor_1_elementor_pro_updater_batch_a5acafea5e8eab120d803c8f','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),
(3363593,'elementor_1_elementor_updater_batch_9ea63485dd5011451c26b79540b5','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),
(3364428,'siteground_optimizer_smart_cache_purge_queue','a:0:{}','yes'),
(3365047,'siteground_optimizer_total_non_converted_images','2363','yes'),
(3368811,'ams_wc_cart_url','https://choiceresources.co.uk/cart/','yes'),
(3465608,'woocommerce_new_product_management_enabled','no','yes'),
(3465763,'siteground_optimizer_file_caching','1','yes'),
(3465764,'siteground_optimizer_file_cache_secret','8f233047fc8ea3312afff250148120a8','yes'),
(3465820,'siteground_optimizer_excluded_urls','a:2:{i:0;s:10:\"/checkout/\";i:1;s:12:\"/my-account/\";}','yes'),
(3466022,'siteground_optimizer_preload_combined_css','1','yes'),
(3466047,'siteground_optimizer_combine_javascript','0','yes'),
(3466074,'siteground_optimizer_optimize_web_fonts','1','yes'),
(3466127,'siteground_optimizer_lazyload_images','1','yes'),
(3466144,'siteground_optimizer_resize_images','1920','yes'),
(3697938,'ald_installed','1682091140','yes'),
(3697939,'ald_plugin_version','3.3.1','yes'),
(3698141,'ald_options','a:2:{s:16:\"general_loadmore\";a:1:{s:6:\"cFTk20\";a:7:{s:13:\"wrapper_title\";s:16:\"Wrapper Title #1\";s:12:\"btn_selector\";s:102:\".elementor-gallery__container e-gallery-container e-gallery-masonry e-gallery--ltr e-gallery--lazyload\";s:13:\"load_selector\";s:65:\".e-gallery-item elementor-gallery-item elementor-animated-content\";s:13:\"visible_items\";s:0:\"\";s:10:\"load_items\";s:0:\"\";s:12:\"button_label\";s:9:\"load more\";s:12:\"display_type\";s:7:\"default\";}}s:10:\"custom_css\";s:0:\"\";}','yes'),
(3878030,'updraft_lock_4dd8650c735c','1684193775','no'),
(3878578,'eael_show_reset_password_on_form_submit_1','1','no');
INSERT INTO `wphu_options` VALUES
(3880276,'elementor_pro_remote_info_api_data_3.12.0','a:2:{s:7:\"timeout\";i:1684271876;s:5:\"value\";s:197147:\"{\"stable_version\":\"3.13.1\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:183497:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Tweak: Added \'Active item state\' [..] in the Mega menu for anchor links [ED-9887] (#2319)<\\/li>\\n<li>Tweak: Accessible navigation arrows in Loop Carousel [ED-9944] (#2300)<\\/li>\\n<li>Tweak: Accessible Slides widget images [ED-9961] (#2316)<\\/li>\\n<li>Tweak: Accessible navigation arrows in Slides Carousel [ED-9945] (#2299)<\\/li>\\n<li>Tweak: Accessible CTA widget images [ED-9957] (#2314)<\\/li>\\n<li>Tweak: Accessible navigation arrows in Carousel (media, testimonial, reviews) [ED-9946] (#2301)<\\/li>\\n<li>Tweak: Accessible Media Carousel widget images [ED-9960] (#2315)<\\/li>\\n<li>Fix: Move Mega Menu submenu screenshot to the Typescript folder. [ED-10065] (#2356)<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget [ED-10048] (#2350)<\\/li>\\n<li>Tweak: Added new cli library command - clear cached conditions [ED-9959] (#2313)<\\/li>\\n<li>Revert &quot;Revert &quot;Internal: Stop sending <code>set_site_owner<\\/code> request [BA-1u2026 (#2378)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget [ED-9763] (#2345)<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor\\/Admin images [ED-10099] (#2368)<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget [ED-10102] (#2370)<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget [ED-10098] (#2366)<\\/li>\\n<li>Tweak: Make Table of Content widget keyboard accessible [ED-10047] (#2349)<\\/li>\\n<li>Fix: Make mobile hamburger in WordPress menu widget keyboard accessible [ED-9568] (#2348)<\\/li>\\n<li>Fix: Update Playwright conditional experiment modal closure. [ED-10205] (#2393)<\\/li>\\n<li>Fix: Merge from 3_12 into 3_13 [ED-10252] (#2400)<\\/li>\\n<li>Fix: Merge 312 into 313 (#2430)<\\/li>\\n<li>Tweak: Make search widget keyboard accessible [ED-9391] (#2352)<\\/li>\\n<li>Tweak: Dynamic values of query control on import [ED-10263] (#2406)<\\/li>\\n<li>Tweak: Canvas differentiation between page parts [ED-10202] (#2392)<\\/li>\\n<li>Tweak: Provided an option to assign Post Excerpt from content [ED-10128] (#2435)<\\/li>\\n<li>Fix: Cart fragment regardless if mini cart template is disabled [ED-10319] (#2427)<\\/li>\\n<li>Fix: Active icon is not working as expected in Menu widget [ED-10391] (#2449)<\\/li>\\n<li>Tweak: Make Gallery widget images keyboard accessible [ED-10383] (#2446)<\\/li>\\n<li>Fix: Menu Cart shows empty when using custom icons for \'Close Cart\' and\\/or \'Remove Item\'  [ED-10400] (#2464)<\\/li>\\n<li>Fix: Revert 10202 [ED-10384] (#2453)<\\/li>\\n<li>Fix: Mega Menu Content width is affected by the widget\'s width - branch Hein [ED-10308] (#2485)<\\/li>\\n<li>Tweak: Changed Menu Items HTML structure in Mega Menu Widget [ED-10408] (#2494)<\\/li>\\n<li>Fix: CLI - command <code>wp plugin list<\\/code> failed [ED-10136] (#2498)<\\/li>\\n<li>Fix: Publish Beta &amp; Dev Release - Pro [ED-10506] (#2504)<\\/li>\\n<li>Fix: Elementor Pro adds attributes to WooCommerce XHR requests [ED-10141] (#2513)<\\/li>\\n<li>Fix: Products widget: an empty &quot;Rows&quot; field causes Can\'t Edit with Fatal Error (#21451) (#2530) (#2532)<\\/li>\\n<li>Fix: Playwright ACF test [ED-10611] (#2542)<\\/li>\\n<li>Fix: Optimized Theme Builder parts creation process for better security enforcement [ED-10640] (#2548)<\\/li>\\n<li>Revert &quot;Fix: Optimized Theme Builder parts creation process for better security enforcement [ED-10640]&quot; (#2555)<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags [ED-10682] (#2573)<\\/li>\\n<li>Fix: Security - Modified roles and permissions checks to enforce better security policies [ED-10653] (#2575)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.13.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNjg0MjI4Njc2LCJleHAiOjE2ODQzMTUwNzZ9.iJWqBhhzd89AIR7Ehb0peY0EvcBdgo1Gb0sfILAqq0w\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNjg0MjI4Njc2LCJleHAiOjE2ODQzMTUwNzZ9.iJWqBhhzd89AIR7Ehb0peY0EvcBdgo1Gb0sfILAqq0w\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJpYXQiOjE2ODQyMjg2NzYsImV4cCI6MTY4NDMxNTA3Nn0.t68QAZ6zhAzwXjZ9jtcvvbWE6ib_B2ATbBk9AwTDLEk\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJpYXQiOjE2ODQyMjg2NzYsImV4cCI6MTY4NDMxNTA3Nn0.t68QAZ6zhAzwXjZ9jtcvvbWE6ib_B2ATbBk9AwTDLEk\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}','no'),
(3883604,'eael_show_reset_password_on_form_submit_1111111','1','no'),
(3896575,'eael_show_reset_password_on_form_submit_0','1','no'),
(3896579,'eael_resetpassword_error_1','Invalid user name found!','no'),
(4691024,'siteground_optimizer_performace_receipient','a:1:{i:0;s:21:\"ivankulongo@gmail.com\";}','yes'),
(4691025,'sgo_install_7_4_0','1','yes'),
(4691030,'wc_blocks_use_blockified_product_grid_block_as_template','no','yes'),
(4691031,'wc_blocks_version','11.8.0-dev','yes'),
(4691032,'jetpack_connection_active_plugins','a:2:{s:20:\"woocommerce-payments\";a:1:{s:4:\"name\";s:11:\"WooPayments\";}s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','yes'),
(4691040,'woocommerce_feature_product_block_editor_enabled','no','yes'),
(4691041,'woocommerce_custom_orders_table_enabled','no','yes'),
(4691042,'woocommerce_custom_orders_table_data_sync_enabled','no','yes'),
(4691043,'woocommerce_custom_orders_table_created','yes','yes'),
(4691044,'jetpack_options','a:6:{s:14:\"last_heartbeat\";i:1730174841;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:1;s:2:\"id\";i:188541933;s:6:\"public\";i:1;s:11:\"master_user\";i:1;}','yes'),
(4691059,'templately_notices','a:2:{s:6:\"upsale\";a:2:{s:5:\"start\";i:1693886797;s:7:\"refresh\";s:5:\"2.2.3\";}s:7:\"version\";s:5:\"1.0.0\";}','no'),
(4782328,'_tifm_force_disable_feature_fix','1','yes'),
(4782494,'elementor_clear_cache','','yes'),
(4782495,'elementor_reset_api_data','','yes'),
(4782496,'elementor_enable_inspector','enable','yes'),
(4782497,'elementor_replace_url','','yes'),
(4782498,'elementor_rollback','','yes'),
(4782499,'elementor_rollback_pro_separator','','yes'),
(4782500,'elementor_rollback_pro','','yes'),
(4782501,'elementor_beta','no','yes'),
(4782502,'elementor_maintenance_mode_mode','','yes'),
(4782503,'elementor_maintenance_mode_exclude_mode','logged_in','yes'),
(4782504,'elementor_maintenance_mode_exclude_roles','a:0:{}','yes'),
(4782505,'elementor_maintenance_mode_template_id','','yes'),
(4782559,'wpdeveloper_plugins_data','a:1:{s:25:\"essential_adons_elementor\";a:3:{s:16:\"notice_will_show\";a:2:{s:6:\"opt_in\";i:1709721745;s:6:\"review\";i:1708056412;}s:4:\"time\";i:1694969473;s:7:\"version\";s:5:\"5.8.7\";}}','yes'),
(4800429,'sgo_speed_test_1695168023','a:5:{s:4:\"data\";a:1:{s:6:\"hidden\";a:1:{s:4:\"data\";a:1:{s:5:\"other\";a:12:{i:0;a:8:{s:2:\"id\";s:11:\"interactive\";s:5:\"title\";s:19:\"Time to Interactive\";s:11:\"description\";s:214:\"Time to Interactive is the amount of time it takes for the page to become fully interactive. [Learn more about the Time to Interactive metric](https://developer.chrome.com/docs/lighthouse/performance/interactive/).\";s:5:\"score\";d:0.520000000000000017763568394002504646778106689453125;s:16:\"scoreDisplayMode\";s:7:\"numeric\";s:12:\"displayValue\";s:6:\"4.4Â s\";s:12:\"numericValue\";i:4379;s:11:\"numericUnit\";s:11:\"millisecond\";}i:1;a:8:{s:2:\"id\";s:17:\"max-potential-fid\";s:5:\"title\";s:31:\"Max Potential First Input Delay\";s:11:\"description\";s:264:\"The maximum potential First Input Delay that your users could experience is the duration of the longest task. [Learn more about the Maximum Potential First Input Delay metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-max-potential-fid/).\";s:5:\"score\";d:0.9899999999999999911182158029987476766109466552734375;s:16:\"scoreDisplayMode\";s:7:\"numeric\";s:12:\"displayValue\";s:6:\"80Â ms\";s:12:\"numericValue\";i:80;s:11:\"numericUnit\";s:11:\"millisecond\";}i:2;a:8:{s:2:\"id\";s:22:\"first-meaningful-paint\";s:5:\"title\";s:22:\"First Meaningful Paint\";s:11:\"description\";s:214:\"First Meaningful Paint measures when the primary content of a page is visible. [Learn more about the First Meaningful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/).\";s:5:\"score\";d:0.13000000000000000444089209850062616169452667236328125;s:16:\"scoreDisplayMode\";s:7:\"numeric\";s:12:\"displayValue\";s:6:\"2.6Â s\";s:12:\"numericValue\";d:2558.5;s:11:\"numericUnit\";s:11:\"millisecond\";}i:3;a:6:{s:2:\"id\";s:16:\"network-requests\";s:5:\"title\";s:16:\"Network Requests\";s:11:\"description\";s:59:\"Lists the network requests that were made during page load.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:4:{s:5:\"items\";a:83:{i:0;a:15:{s:12:\"transferSize\";i:17382;s:3:\"url\";s:30:\"https://choiceresources.co.uk/\";s:8:\"mimeType\";s:9:\"text/html\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"priority\";s:8:\"VeryHigh\";s:17:\"rendererStartTime\";i:0;s:14:\"networkEndTime\";d:3999.247999966144561767578125;s:12:\"resourceSize\";i:73484;s:18:\"networkRequestTime\";d:0.930999934673309326171875;s:8:\"protocol\";s:2:\"h2\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceType\";s:8:\"Document\";s:8:\"finished\";b:1;s:10:\"statusCode\";i:200;}i:1;a:15:{s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"mimeType\";s:8:\"text/css\";s:18:\"networkRequestTime\";d:4005.55499994754791259765625;s:8:\"protocol\";s:2:\"h2\";s:17:\"sessionTargetType\";s:4:\"page\";s:3:\"url\";s:147:\"https://choiceresources.co.uk/wp-content/uploads/siteground-optimizer-assets/siteground-optimizer-combined-css-4c6a51d87374b0388b2e0fef453a7fb3.css\";s:12:\"resourceSize\";i:1768396;s:10:\"statusCode\";i:200;s:25:\"experimentalFromMainFrame\";b:1;s:14:\"networkEndTime\";d:4167.017999947071075439453125;s:12:\"resourceType\";s:10:\"Stylesheet\";s:17:\"rendererStartTime\";d:4005.050999939441680908203125;s:12:\"transferSize\";i:196143;s:8:\"finished\";b:1;s:8:\"priority\";s:8:\"VeryHigh\";}i:2;a:15:{s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:6:\"Script\";s:14:\"networkEndTime\";d:4196.50199997425079345703125;s:12:\"resourceSize\";i:96689;s:12:\"transferSize\";i:35846;s:8:\"finished\";b:1;s:18:\"networkRequestTime\";d:4005.777999937534332275390625;s:17:\"rendererStartTime\";d:4005.4449999332427978515625;s:3:\"url\";s:72:\"https://cdn-cookieyes.com/client_data/e85b40dd25e78971ffea1980/script.js\";s:6:\"entity\";s:17:\"cdn-cookieyes.com\";s:10:\"statusCode\";i:200;s:8:\"priority\";s:4:\"High\";s:8:\"mimeType\";s:22:\"application/javascript\";s:25:\"experimentalFromMainFrame\";b:1;}i:3;a:15:{s:12:\"resourceSize\";i:763;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"protocol\";s:2:\"h2\";s:12:\"transferSize\";i:725;s:18:\"networkRequestTime\";d:4005.9189999103546142578125;s:3:\"url\";s:119:\"https://choiceresources.co.uk/wp-content/plugins/ameliabooking/public/css/frontend/amelia-elementor-widget-font.min.css\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"finished\";b:1;s:8:\"priority\";s:8:\"VeryHigh\";s:10:\"statusCode\";i:200;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"mimeType\";s:8:\"text/css\";s:17:\"rendererStartTime\";d:4005.63699996471405029296875;s:14:\"networkEndTime\";d:4139.012999951839447021484375;s:12:\"resourceType\";s:10:\"Stylesheet\";}i:4;a:15:{s:12:\"resourceType\";s:6:\"Script\";s:3:\"url\";s:65:\"https://choiceresources.co.uk/wp-includes/js/jquery/jquery.min.js\";s:17:\"rendererStartTime\";d:4005.821999967098236083984375;s:18:\"networkRequestTime\";d:4006.2869999408721923828125;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"protocol\";s:2:\"h2\";s:14:\"networkEndTime\";d:4140.971999943256378173828125;s:12:\"transferSize\";i:30192;s:10:\"statusCode\";i:200;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:12:\"resourceSize\";i:87482;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"priority\";s:4:\"High\";s:8:\"finished\";b:1;}i:5;a:15:{s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:18:\"networkRequestTime\";d:4006.37399995326995849609375;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:25:\"experimentalFromMainFrame\";b:1;s:14:\"networkEndTime\";d:4138.40099990367889404296875;s:3:\"url\";s:73:\"https://choiceresources.co.uk/wp-includes/js/jquery/jquery-migrate.min.js\";s:10:\"statusCode\";i:200;s:12:\"transferSize\";i:5157;s:8:\"priority\";s:4:\"High\";s:17:\"rendererStartTime\";d:4006.007999956607818603515625;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceSize\";i:13577;s:12:\"resourceType\";s:6:\"Script\";}i:6;a:15:{s:3:\"url\";s:58:\"https://www.googletagmanager.com/gtag/js?id=UA-231299749-1\";s:12:\"transferSize\";i:69427;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceSize\";i:189102;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:6:\"Script\";s:8:\"finished\";b:1;s:18:\"networkRequestTime\";d:4276.802999913692474365234375;s:10:\"statusCode\";i:200;s:8:\"priority\";s:3:\"Low\";s:17:\"rendererStartTime\";d:4006.18999993801116943359375;s:14:\"networkEndTime\";d:4317.946999967098236083984375;s:8:\"mimeType\";s:22:\"application/javascript\";s:6:\"entity\";s:18:\"Google Tag Manager\";s:25:\"experimentalFromMainFrame\";b:1;}i:7;a:15:{s:8:\"mimeType\";s:15:\"text/javascript\";s:12:\"resourceSize\";i:147588;s:10:\"statusCode\";i:200;s:18:\"networkRequestTime\";d:4276.8789999485015869140625;s:25:\"experimentalFromMainFrame\";b:1;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"finished\";b:1;s:6:\"entity\";s:22:\"Google/Doubleclick Ads\";s:3:\"url\";s:127:\"https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5255694111165315&host=ca-host-pub-2644536267352236\";s:17:\"rendererStartTime\";d:4006.300999939441680908203125;s:12:\"resourceType\";s:6:\"Script\";s:12:\"transferSize\";i:51296;s:8:\"protocol\";s:2:\"h2\";s:14:\"networkEndTime\";d:4308.184999942779541015625;s:8:\"priority\";s:3:\"Low\";}i:8;a:15:{s:14:\"networkEndTime\";d:4451.660999953746795654296875;s:12:\"transferSize\";i:2355575;s:25:\"experimentalFromMainFrame\";b:1;s:10:\"statusCode\";i:200;s:17:\"rendererStartTime\";d:4006.41299998760223388671875;s:17:\"sessionTargetType\";s:4:\"page\";s:3:\"url\";s:86:\"https://choiceresources.co.uk/wp-content/uploads/2023/03/Front-website-1-1536x1090.png\";s:12:\"resourceSize\";i:2355306;s:12:\"resourceType\";s:5:\"Image\";s:18:\"networkRequestTime\";d:4277.070999920368194580078125;s:8:\"finished\";b:1;s:8:\"protocol\";s:2:\"h2\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"priority\";s:4:\"High\";s:8:\"mimeType\";s:9:\"image/png\";}i:9;a:15:{s:8:\"finished\";b:1;s:12:\"transferSize\";i:2501;s:18:\"networkRequestTime\";d:4277.642999947071075439453125;s:3:\"url\";s:104:\"https://choiceresources.co.uk/wp-content/uploads/siteground-optimizer-assets/woolentor-block-main.min.js\";s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"protocol\";s:2:\"h2\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"priority\";s:3:\"Low\";s:17:\"rendererStartTime\";d:4006.51599991321563720703125;s:12:\"resourceSize\";i:7661;s:10:\"statusCode\";i:200;s:8:\"mimeType\";s:22:\"application/javascript\";s:14:\"networkEndTime\";d:4376.663999974727630615234375;s:12:\"resourceType\";s:6:\"Script\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";}i:10;a:15:{s:25:\"experimentalFromMainFrame\";b:1;s:10:\"statusCode\";i:200;s:8:\"finished\";b:1;s:8:\"mimeType\";s:22:\"application/javascript\";s:3:\"url\";s:89:\"https://choiceresources.co.uk/wp-content/plugins/sg-cachepress/assets/js/lazysizes.min.js\";s:8:\"protocol\";s:2:\"h2\";s:18:\"networkRequestTime\";d:4277.840999901294708251953125;s:12:\"transferSize\";i:3838;s:17:\"rendererStartTime\";d:4006.606999933719635009765625;s:12:\"resourceType\";s:6:\"Script\";s:8:\"priority\";s:3:\"Low\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceSize\";i:7888;s:14:\"networkEndTime\";d:4374.43999993801116943359375;}i:11;a:15:{s:25:\"experimentalFromMainFrame\";b:1;s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"finished\";b:1;s:12:\"resourceType\";s:6:\"Script\";s:14:\"networkEndTime\";d:4334.604999959468841552734375;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:17:\"sessionTargetType\";s:4:\"page\";s:3:\"url\";s:107:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js\";s:12:\"transferSize\";i:3578;s:17:\"rendererStartTime\";d:4006.6819999217987060546875;s:8:\"protocol\";s:2:\"h2\";s:8:\"priority\";s:3:\"Low\";s:18:\"networkRequestTime\";d:4277.89999997615814208984375;s:12:\"resourceSize\";i:9636;s:10:\"statusCode\";i:200;}i:12;a:15:{s:12:\"resourceType\";s:6:\"Script\";s:8:\"finished\";b:1;s:18:\"networkRequestTime\";d:4277.940999925136566162109375;s:12:\"transferSize\";i:1272;s:3:\"url\";s:98:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js\";s:17:\"sessionTargetType\";s:4:\"page\";s:25:\"experimentalFromMainFrame\";b:1;s:17:\"rendererStartTime\";d:4006.74599993228912353515625;s:8:\"protocol\";s:2:\"h2\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:12:\"resourceSize\";i:3037;s:8:\"priority\";s:3:\"Low\";s:14:\"networkEndTime\";d:4325.71299993991851806640625;s:8:\"mimeType\";s:22:\"application/javascript\";s:10:\"statusCode\";i:200;}i:13;a:15:{s:25:\"experimentalFromMainFrame\";b:1;s:17:\"rendererStartTime\";d:4006.801999986171722412109375;s:3:\"url\";s:97:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js\";s:12:\"resourceSize\";i:1845;s:8:\"protocol\";s:2:\"h2\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:12:\"resourceType\";s:6:\"Script\";s:8:\"finished\";b:1;s:18:\"networkRequestTime\";d:4277.973999917507171630859375;s:8:\"mimeType\";s:22:\"application/javascript\";s:10:\"statusCode\";i:200;s:14:\"networkEndTime\";d:4305.201999962329864501953125;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"priority\";s:3:\"Low\";s:12:\"transferSize\";i:1193;}i:14;a:15:{s:12:\"resourceType\";s:6:\"Script\";s:25:\"experimentalFromMainFrame\";b:1;s:17:\"rendererStartTime\";d:4006.862999975681304931640625;s:12:\"resourceSize\";i:2139;s:14:\"networkEndTime\";d:4334.8519999980926513671875;s:8:\"priority\";s:3:\"Low\";s:12:\"transferSize\";i:984;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"protocol\";s:2:\"h2\";s:8:\"mimeType\";s:22:\"application/javascript\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:18:\"networkRequestTime\";d:4278.012999951839447021484375;s:10:\"statusCode\";i:200;s:3:\"url\";s:98:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js\";s:8:\"finished\";b:1;}i:15;a:15:{s:12:\"resourceType\";s:6:\"Script\";s:17:\"rendererStartTime\";d:4006.9249999523162841796875;s:12:\"transferSize\";i:10406;s:12:\"resourceSize\";i:41954;s:8:\"priority\";s:3:\"Low\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:14:\"networkEndTime\";d:4307.524999916553497314453125;s:18:\"networkRequestTime\";d:4278.04899990558624267578125;s:25:\"experimentalFromMainFrame\";b:1;s:10:\"statusCode\";i:200;s:8:\"finished\";b:1;s:8:\"protocol\";s:2:\"h2\";s:3:\"url\";s:88:\"https://choiceresources.co.uk/wp-content/plugins/woolentor-addons/assets/js/slick.min.js\";s:8:\"mimeType\";s:22:\"application/javascript\";s:17:\"sessionTargetType\";s:4:\"page\";}i:16;a:15:{s:12:\"resourceSize\";i:4086;s:14:\"networkEndTime\";d:4307.882999897003173828125;s:17:\"rendererStartTime\";d:4006.98899996280670166015625;s:10:\"statusCode\";i:200;s:3:\"url\";s:92:\"https://choiceresources.co.uk/wp-content/plugins/woolentor-addons/assets/js/accordion.min.js\";s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceType\";s:6:\"Script\";s:8:\"priority\";s:3:\"Low\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"protocol\";s:2:\"h2\";s:12:\"transferSize\";i:1694;s:8:\"mimeType\";s:22:\"application/javascript\";s:18:\"networkRequestTime\";d:4278.08399999141693115234375;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"finished\";b:1;}i:17;a:15:{s:12:\"resourceSize\";i:7237;s:10:\"statusCode\";i:200;s:17:\"rendererStartTime\";d:4007.065999925136566162109375;s:8:\"finished\";b:1;s:3:\"url\";s:120:\"https://choiceresources.co.uk/wp-content/plugins/mailchimp-for-woocommerce/public/js/mailchimp-woocommerce-public.min.js\";s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"transferSize\";i:2385;s:14:\"networkEndTime\";d:4307.1819999217987060546875;s:8:\"priority\";s:3:\"Low\";s:18:\"networkRequestTime\";d:4278.13699996471405029296875;s:8:\"protocol\";s:2:\"h2\";s:8:\"mimeType\";s:22:\"application/javascript\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceType\";s:6:\"Script\";}i:18;a:15:{s:18:\"networkRequestTime\";d:4278.214999973773956298828125;s:14:\"networkEndTime\";d:4389.570999920368194580078125;s:3:\"url\";s:124:\"https://choiceresources.co.uk/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js\";s:12:\"resourceType\";s:6:\"Script\";s:17:\"rendererStartTime\";d:4007.126999914646148681640625;s:8:\"priority\";s:3:\"Low\";s:8:\"finished\";b:1;s:8:\"protocol\";s:2:\"h2\";s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceSize\";i:9223;s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"transferSize\";i:3417;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:10:\"statusCode\";i:200;s:25:\"experimentalFromMainFrame\";b:1;}i:19;a:15:{s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"finished\";b:1;s:18:\"networkRequestTime\";d:4278.25199997425079345703125;s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"transferSize\";i:24534;s:25:\"experimentalFromMainFrame\";b:1;s:17:\"rendererStartTime\";d:4007.180999934673309326171875;s:10:\"statusCode\";i:200;s:12:\"resourceType\";s:6:\"Script\";s:8:\"protocol\";s:2:\"h2\";s:8:\"priority\";s:3:\"Low\";s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/uploads/siteground-optimizer-assets/eael-5228.min.js\";s:12:\"resourceSize\";i:87411;s:14:\"networkEndTime\";d:4390.25;s:17:\"sessionTargetType\";s:4:\"page\";}i:20;a:15:{s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"resourceType\";s:6:\"Script\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:17:\"rendererStartTime\";d:4007.249999940395355224609375;s:12:\"transferSize\";i:18561;s:6:\"entity\";s:10:\"Convertful\";s:14:\"networkEndTime\";d:4309.986999928951263427734375;s:8:\"priority\";s:3:\"Low\";s:3:\"url\";s:52:\"https://app.convertful.com/Convertful.js?owner=33464\";s:18:\"networkRequestTime\";d:4278.28299999237060546875;s:10:\"statusCode\";i:200;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceSize\";i:57177;}i:21;a:15:{s:18:\"networkRequestTime\";d:4278.322999894618988037109375;s:10:\"statusCode\";i:200;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:12:\"resourceSize\";i:11995;s:25:\"experimentalFromMainFrame\";b:1;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"priority\";s:3:\"Low\";s:3:\"url\";s:95:\"https://choiceresources.co.uk/wp-content/plugins/creame-whatsapp-me/public/js/qr-creator.min.js\";s:12:\"resourceType\";s:6:\"Script\";s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:12:\"transferSize\";i:5095;s:17:\"rendererStartTime\";d:4007.302999913692474365234375;s:14:\"networkEndTime\";d:4344.130999982357025146484375;}i:22;a:15:{s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"transferSize\";i:3131;s:8:\"priority\";s:3:\"Low\";s:17:\"rendererStartTime\";d:4007.369999945163726806640625;s:3:\"url\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/creame-whatsapp-me/public/js/joinchat.min.js\";s:12:\"resourceSize\";i:8083;s:14:\"networkEndTime\";d:4305.69299995899200439453125;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"resourceType\";s:6:\"Script\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:18:\"networkRequestTime\";d:4278.5629999637603759765625;s:10:\"statusCode\";i:200;}i:23;a:15:{s:12:\"resourceType\";s:6:\"Script\";s:18:\"networkRequestTime\";d:4183.960999906063079833984375;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"transferSize\";i:1005;s:8:\"mimeType\";s:22:\"application/javascript\";s:14:\"networkEndTime\";d:4257.0169999599456787109375;s:25:\"experimentalFromMainFrame\";b:1;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"protocol\";s:2:\"h2\";s:17:\"rendererStartTime\";d:4007.4479999542236328125;s:12:\"resourceSize\";i:3393;s:8:\"finished\";b:1;s:3:\"url\";s:105:\"https://choiceresources.co.uk/wp-content/plugins/woo-product-country-base-restrictions/assets/js/front.js\";s:8:\"priority\";s:6:\"Medium\";s:10:\"statusCode\";i:200;}i:24;a:15:{s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"mimeType\";s:22:\"application/javascript\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"finished\";b:1;s:17:\"rendererStartTime\";d:4007.509999930858612060546875;s:17:\"sessionTargetType\";s:4:\"page\";s:18:\"networkRequestTime\";d:4220.88999998569488525390625;s:8:\"protocol\";s:2:\"h2\";s:12:\"transferSize\";i:7236;s:10:\"statusCode\";i:200;s:12:\"resourceSize\";i:25202;s:12:\"resourceType\";s:6:\"Script\";s:14:\"networkEndTime\";d:4287.5569999217987060546875;s:8:\"priority\";s:6:\"Medium\";s:3:\"url\";s:109:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js\";}i:25;a:15:{s:17:\"rendererStartTime\";d:4007.566999971866607666015625;s:12:\"transferSize\";i:1243;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceSize\";i:2939;s:14:\"networkEndTime\";d:4342.99899995326995849609375;s:8:\"protocol\";s:2:\"h2\";s:3:\"url\";s:101:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js\";s:12:\"resourceType\";s:6:\"Script\";s:10:\"statusCode\";i:200;s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"finished\";b:1;s:25:\"experimentalFromMainFrame\";b:1;s:18:\"networkRequestTime\";d:4272.22599995136260986328125;s:8:\"priority\";s:6:\"Medium\";}i:26;a:15:{s:12:\"transferSize\";i:2723;s:10:\"statusCode\";i:200;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"priority\";s:6:\"Medium\";s:17:\"rendererStartTime\";d:4007.624999940395355224609375;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:6:\"Script\";s:8:\"finished\";b:1;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:12:\"resourceSize\";i:5740;s:8:\"mimeType\";s:22:\"application/javascript\";s:17:\"sessionTargetType\";s:4:\"page\";s:3:\"url\";s:99:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js\";s:18:\"networkRequestTime\";d:4272.79699993133544921875;s:14:\"networkEndTime\";d:4401.124999940395355224609375;}i:27;a:15:{s:8:\"protocol\";s:2:\"h2\";s:12:\"transferSize\";i:2374;s:18:\"networkRequestTime\";d:4272.955999910831451416015625;s:3:\"url\";s:91:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js\";s:8:\"mimeType\";s:22:\"application/javascript\";s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceSize\";i:4997;s:14:\"networkEndTime\";d:4354.428999960422515869140625;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"finished\";b:1;s:8:\"priority\";s:6:\"Medium\";s:12:\"resourceType\";s:6:\"Script\";s:10:\"statusCode\";i:200;s:17:\"rendererStartTime\";d:4007.683999955654144287109375;s:17:\"sessionTargetType\";s:4:\"page\";}i:28;a:15:{s:12:\"transferSize\";i:16544;s:18:\"networkRequestTime\";d:4273.096999943256378173828125;s:17:\"rendererStartTime\";d:4007.750999987125396728515625;s:12:\"resourceSize\";i:58860;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"mimeType\";s:22:\"application/javascript\";s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"protocol\";s:2:\"h2\";s:14:\"networkEndTime\";d:4312.356999933719635009765625;s:8:\"finished\";b:1;s:12:\"resourceType\";s:6:\"Script\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"priority\";s:6:\"Medium\";s:10:\"statusCode\";i:200;s:3:\"url\";s:92:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";}i:29;a:15:{s:12:\"resourceSize\";i:8171;s:17:\"rendererStartTime\";d:4007.80799996852874755859375;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"priority\";s:6:\"Medium\";s:18:\"networkRequestTime\";d:4273.42699992656707763671875;s:14:\"networkEndTime\";d:4374.12699997425079345703125;s:8:\"mimeType\";s:22:\"application/javascript\";s:3:\"url\";s:81:\"https://choiceresources.co.uk/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js\";s:12:\"transferSize\";i:2799;s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:10:\"statusCode\";i:200;s:12:\"resourceType\";s:6:\"Script\";s:25:\"experimentalFromMainFrame\";b:1;s:6:\"entity\";s:21:\"choiceresources.co.uk\";}i:30;a:15:{s:17:\"rendererStartTime\";d:4007.864999949932098388671875;s:12:\"transferSize\";i:2699;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:18:\"networkRequestTime\";d:4273.493999958038330078125;s:3:\"url\";s:83:\"https://choiceresources.co.uk/wp-includes/js/dist/vendor/regenerator-runtime.min.js\";s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceSize\";i:6607;s:25:\"experimentalFromMainFrame\";b:1;s:10:\"statusCode\";i:200;s:8:\"finished\";b:1;s:14:\"networkEndTime\";d:4335.160999953746795654296875;s:8:\"priority\";s:6:\"Medium\";s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"resourceType\";s:6:\"Script\";}i:31;a:15:{s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"priority\";s:6:\"Medium\";s:12:\"resourceSize\";i:16146;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceType\";s:6:\"Script\";s:8:\"protocol\";s:2:\"h2\";s:12:\"transferSize\";i:6019;s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"finished\";b:1;s:14:\"networkEndTime\";d:4401.41499996185302734375;s:10:\"statusCode\";i:200;s:18:\"networkRequestTime\";d:4273.601999938488006591796875;s:25:\"experimentalFromMainFrame\";b:1;s:3:\"url\";s:75:\"https://choiceresources.co.uk/wp-includes/js/dist/vendor/wp-polyfill.min.js\";s:17:\"rendererStartTime\";d:4007.933999955654144287109375;}i:32;a:15:{s:25:\"experimentalFromMainFrame\";b:1;s:10:\"statusCode\";i:200;s:18:\"networkRequestTime\";d:4274.305999934673309326171875;s:17:\"rendererStartTime\";d:4008.00199997425079345703125;s:12:\"resourceType\";s:6:\"Script\";s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"priority\";s:6:\"Medium\";s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"finished\";b:1;s:3:\"url\";s:62:\"https://choiceresources.co.uk/wp-includes/js/dist/hooks.min.js\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:12:\"transferSize\";i:1965;s:8:\"protocol\";s:2:\"h2\";s:14:\"networkEndTime\";d:4373.882999956607818603515625;s:12:\"resourceSize\";i:4627;}i:33;a:15:{s:10:\"statusCode\";i:200;s:8:\"priority\";s:6:\"Medium\";s:12:\"transferSize\";i:3869;s:8:\"finished\";b:1;s:3:\"url\";s:61:\"https://choiceresources.co.uk/wp-includes/js/dist/i18n.min.js\";s:18:\"networkRequestTime\";d:4274.58799993991851806640625;s:14:\"networkEndTime\";d:4334.351999938488006591796875;s:12:\"resourceType\";s:6:\"Script\";s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"protocol\";s:2:\"h2\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"mimeType\";s:22:\"application/javascript\";s:17:\"rendererStartTime\";d:4008.101999938488006591796875;s:12:\"resourceSize\";i:9445;s:25:\"experimentalFromMainFrame\";b:1;}i:34;a:15:{s:17:\"sessionTargetType\";s:4:\"page\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:12:\"transferSize\";i:6695;s:18:\"networkRequestTime\";d:4274.991999924182891845703125;s:12:\"resourceSize\";i:24674;s:17:\"rendererStartTime\";d:4008.178999960422515869140625;s:14:\"networkEndTime\";d:4356.92199993133544921875;s:10:\"statusCode\";i:200;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:6:\"Script\";s:8:\"priority\";s:6:\"Medium\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"finished\";b:1;s:3:\"url\";s:88:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/frontend.min.js\";}i:35;a:15:{s:8:\"priority\";s:6:\"Medium\";s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceSize\";i:12198;s:12:\"resourceType\";s:6:\"Script\";s:17:\"sessionTargetType\";s:4:\"page\";s:18:\"networkRequestTime\";d:4275.308999955654144287109375;s:8:\"finished\";b:1;s:10:\"statusCode\";i:200;s:14:\"networkEndTime\";d:4304.46299993991851806640625;s:8:\"protocol\";s:2:\"h2\";s:12:\"transferSize\";i:3168;s:8:\"mimeType\";s:22:\"application/javascript\";s:3:\"url\";s:96:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:17:\"rendererStartTime\";d:4008.237999975681304931640625;}i:36;a:15:{s:14:\"networkEndTime\";d:4336.70999991893768310546875;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:25:\"experimentalFromMainFrame\";b:1;s:10:\"statusCode\";i:200;s:12:\"transferSize\";i:7102;s:12:\"resourceSize\";i:21438;s:17:\"sessionTargetType\";s:4:\"page\";s:18:\"networkRequestTime\";d:4275.386999905109405517578125;s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"protocol\";s:2:\"h2\";s:3:\"url\";s:66:\"https://choiceresources.co.uk/wp-includes/js/jquery/ui/core.min.js\";s:17:\"rendererStartTime\";d:4008.2999999523162841796875;s:12:\"resourceType\";s:6:\"Script\";s:8:\"priority\";s:6:\"Medium\";s:8:\"finished\";b:1;}i:37;a:15:{s:17:\"rendererStartTime\";d:4008.37099993228912353515625;s:12:\"transferSize\";i:12381;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceType\";s:6:\"Script\";s:14:\"networkEndTime\";d:4376.48899996280670166015625;s:12:\"resourceSize\";i:40436;s:18:\"networkRequestTime\";d:4275.459999978542327880859375;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:10:\"statusCode\";i:200;s:8:\"priority\";s:6:\"Medium\";s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:8:\"mimeType\";s:22:\"application/javascript\";s:3:\"url\";s:84:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend.min.js\";s:25:\"experimentalFromMainFrame\";b:1;}i:38;a:15:{s:18:\"networkRequestTime\";d:4275.65699994564056396484375;s:12:\"resourceType\";s:6:\"Script\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:3:\"url\";s:97:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js\";s:12:\"resourceSize\";i:35433;s:10:\"statusCode\";i:200;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:14:\"networkEndTime\";d:4375.74899995326995849609375;s:12:\"transferSize\";i:8578;s:17:\"rendererStartTime\";d:4008.4379999637603759765625;s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"priority\";s:6:\"Medium\";s:25:\"experimentalFromMainFrame\";b:1;}i:39;a:15:{s:8:\"priority\";s:6:\"Medium\";s:17:\"rendererStartTime\";d:4008.49599993228912353515625;s:18:\"networkRequestTime\";d:4275.7599999904632568359375;s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"resourceType\";s:6:\"Script\";s:17:\"sessionTargetType\";s:4:\"page\";s:14:\"networkEndTime\";d:4314.188999950885772705078125;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:25:\"experimentalFromMainFrame\";b:1;s:10:\"statusCode\";i:200;s:3:\"url\";s:94:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.min.js\";s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceSize\";i:2673;s:12:\"transferSize\";i:1353;s:8:\"finished\";b:1;}i:40;a:15:{s:18:\"networkRequestTime\";d:4275.822999894618988037109375;s:17:\"rendererStartTime\";d:4008.550999939441680908203125;s:17:\"sessionTargetType\";s:4:\"page\";s:10:\"statusCode\";i:200;s:25:\"experimentalFromMainFrame\";b:1;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"transferSize\";i:6341;s:12:\"resourceSize\";i:21504;s:8:\"priority\";s:6:\"Medium\";s:12:\"resourceType\";s:6:\"Script\";s:14:\"networkEndTime\";d:4389.91699993610382080078125;s:8:\"finished\";b:1;s:3:\"url\";s:106:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js\";s:8:\"protocol\";s:2:\"h2\";}i:41;a:15:{s:17:\"rendererStartTime\";d:4008.611999928951263427734375;s:17:\"sessionTargetType\";s:4:\"page\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:12:\"resourceType\";s:6:\"Script\";s:12:\"resourceSize\";i:31626;s:8:\"mimeType\";s:22:\"application/javascript\";s:18:\"networkRequestTime\";d:4275.938999950885772705078125;s:8:\"priority\";s:6:\"Medium\";s:10:\"statusCode\";i:200;s:8:\"finished\";b:1;s:14:\"networkEndTime\";d:4305.440999925136566162109375;s:3:\"url\";s:99:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.min.js\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"protocol\";s:2:\"h2\";s:12:\"transferSize\";i:11954;}i:42;a:15:{s:12:\"resourceType\";s:6:\"Script\";s:8:\"mimeType\";s:22:\"application/javascript\";s:14:\"networkEndTime\";d:4352.23799991607666015625;s:12:\"transferSize\";i:3779;s:17:\"rendererStartTime\";d:4008.67199993133544921875;s:8:\"protocol\";s:2:\"h2\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:3:\"url\";s:110:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.min.js\";s:8:\"finished\";b:1;s:18:\"networkRequestTime\";d:4276.048999965190887451171875;s:10:\"statusCode\";i:200;s:17:\"sessionTargetType\";s:4:\"page\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"priority\";s:6:\"Medium\";s:12:\"resourceSize\";i:9749;}i:43;a:15:{s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"resourceSize\";i:18833;s:18:\"networkRequestTime\";d:4276.142999947071075439453125;s:14:\"networkEndTime\";d:4374.2999999523162841796875;s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:3:\"url\";s:62:\"https://choiceresources.co.uk/wp-includes/js/underscore.min.js\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"priority\";s:6:\"Medium\";s:17:\"rendererStartTime\";d:4008.73099994659423828125;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"transferSize\";i:7658;s:12:\"resourceType\";s:6:\"Script\";s:10:\"statusCode\";i:200;}i:44;a:15:{s:17:\"sessionTargetType\";s:4:\"page\";s:10:\"statusCode\";i:200;s:14:\"networkEndTime\";d:4304.718999922275543212890625;s:12:\"transferSize\";i:990;s:8:\"mimeType\";s:22:\"application/javascript\";s:17:\"rendererStartTime\";d:4008.78999996185302734375;s:8:\"finished\";b:1;s:8:\"priority\";s:6:\"Medium\";s:18:\"networkRequestTime\";d:4276.216999948024749755859375;s:25:\"experimentalFromMainFrame\";b:1;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:12:\"resourceSize\";i:1426;s:8:\"protocol\";s:2:\"h2\";s:3:\"url\";s:59:\"https://choiceresources.co.uk/wp-includes/js/wp-util.min.js\";s:12:\"resourceType\";s:6:\"Script\";}i:45;a:15:{s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceSize\";i:13786;s:8:\"protocol\";s:2:\"h2\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"mimeType\";s:22:\"application/javascript\";s:10:\"statusCode\";i:200;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"transferSize\";i:3773;s:3:\"url\";s:108:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min.js\";s:14:\"networkEndTime\";d:4313.70299994945526123046875;s:8:\"priority\";s:6:\"Medium\";s:17:\"rendererStartTime\";d:4008.846999943256378173828125;s:8:\"finished\";b:1;s:18:\"networkRequestTime\";d:4276.395999908447265625;s:12:\"resourceType\";s:6:\"Script\";}i:46;a:15:{s:14:\"networkEndTime\";d:4315.089999973773956298828125;s:12:\"resourceType\";s:6:\"Script\";s:25:\"experimentalFromMainFrame\";b:1;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:10:\"statusCode\";i:200;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"priority\";s:6:\"Medium\";s:8:\"protocol\";s:2:\"h2\";s:18:\"networkRequestTime\";d:4276.718999922275543212890625;s:8:\"finished\";b:1;s:8:\"mimeType\";s:22:\"application/javascript\";s:3:\"url\";s:101:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js\";s:17:\"rendererStartTime\";d:4008.925999939441680908203125;s:12:\"transferSize\";i:2047;s:12:\"resourceSize\";i:6429;}i:47;a:13:{s:25:\"experimentalFromMainFrame\";b:1;s:8:\"finished\";b:1;s:8:\"priority\";s:7:\"VeryLow\";s:12:\"resourceType\";s:4:\"Ping\";s:18:\"networkRequestTime\";d:4247.3159999847412109375;s:6:\"entity\";s:13:\"cookieyes.com\";s:12:\"transferSize\";i:0;s:17:\"sessionTargetType\";s:4:\"page\";s:14:\"networkEndTime\";d:4249.525999963283538818359375;s:17:\"rendererStartTime\";d:4247.3159999847412109375;s:10:\"statusCode\";i:-1;s:12:\"resourceSize\";i:0;s:3:\"url\";s:36:\"https://log.cookieyes.com/api/v1/log\";}i:48;a:15:{s:17:\"rendererStartTime\";d:4248.512999951839447021484375;s:8:\"priority\";s:3:\"Low\";s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:3:\"url\";s:72:\"https://cdn-cookieyes.com/client_data/e85b40dd25e78971ffea1980/banner.js\";s:18:\"networkRequestTime\";d:4278.632999956607818603515625;s:14:\"networkEndTime\";d:4444.460999965667724609375;s:17:\"sessionTargetType\";s:4:\"page\";s:6:\"entity\";s:17:\"cdn-cookieyes.com\";s:8:\"mimeType\";s:22:\"application/javascript\";s:10:\"statusCode\";i:200;s:12:\"transferSize\";i:34366;s:12:\"resourceSize\";i:96935;s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceType\";s:6:\"Script\";}i:49;a:15:{s:17:\"rendererStartTime\";d:4255.729999959468841552734375;s:3:\"url\";s:103:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.min.css\";s:12:\"resourceType\";s:10:\"Stylesheet\";s:10:\"statusCode\";i:200;s:18:\"networkRequestTime\";d:4278.72599995136260986328125;s:12:\"transferSize\";i:1345;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceSize\";i:7043;s:8:\"finished\";b:1;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"priority\";s:7:\"VeryLow\";s:25:\"experimentalFromMainFrame\";b:1;s:14:\"networkEndTime\";d:4307.74599993228912353515625;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"mimeType\";s:8:\"text/css\";}i:50;a:14:{s:25:\"experimentalFromMainFrame\";b:1;s:12:\"transferSize\";i:0;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"priority\";s:4:\"High\";s:10:\"statusCode\";i:200;s:8:\"protocol\";s:4:\"blob\";s:14:\"networkEndTime\";d:4303.109999954700469970703125;s:17:\"rendererStartTime\";d:4290.2539999485015869140625;s:12:\"resourceSize\";i:1245;s:18:\"networkRequestTime\";d:4290.2539999485015869140625;s:8:\"finished\";b:1;s:8:\"mimeType\";s:15:\"text/javascript\";s:3:\"url\";s:71:\"blob:https://choiceresources.co.uk/0272c66a-5937-45db-b2eb-8d920e734a81\";s:12:\"resourceType\";s:5:\"Other\";}i:51;a:15:{s:6:\"entity\";s:9:\"Mailchimp\";s:3:\"url\";s:102:\"https://chimpstatic.com/mcjs-connected/js/users/a3a816175111933448c756f14/10e084d1081264699fee647bf.js\";s:8:\"priority\";s:3:\"Low\";s:25:\"experimentalFromMainFrame\";b:1;s:17:\"rendererStartTime\";d:4295.321999967098236083984375;s:14:\"networkEndTime\";d:4578.78199994564056396484375;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"transferSize\";i:1336;s:18:\"networkRequestTime\";d:4296.4249999523162841796875;s:12:\"resourceSize\";i:2200;s:8:\"protocol\";s:8:\"http/1.1\";s:10:\"statusCode\";i:200;s:8:\"mimeType\";s:22:\"application/javascript\";s:8:\"finished\";b:1;s:12:\"resourceType\";s:6:\"Script\";}i:52;a:15:{s:8:\"mimeType\";s:8:\"font/ttf\";s:14:\"networkEndTime\";d:4350.214999973773956298828125;s:10:\"statusCode\";i:200;s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:18:\"networkRequestTime\";d:4332.56199991703033447265625;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"priority\";s:8:\"VeryHigh\";s:17:\"sessionTargetType\";s:4:\"page\";s:17:\"rendererStartTime\";d:4330.9849998950958251953125;s:6:\"entity\";s:12:\"Google Fonts\";s:12:\"transferSize\";i:14513;s:3:\"url\";s:72:\"https://fonts.gstatic.com/s/lilitaone/v15/i7dPIFZ9Zz-WBtRtedDbYEF8QA.ttf\";s:12:\"resourceType\";s:4:\"Font\";s:12:\"resourceSize\";i:24368;}i:53;a:15:{s:10:\"statusCode\";i:200;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceType\";s:4:\"Font\";s:18:\"networkRequestTime\";d:4333.107999980449676513671875;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"priority\";s:8:\"VeryHigh\";s:8:\"protocol\";s:2:\"h2\";s:14:\"networkEndTime\";d:4350.520999968051910400390625;s:6:\"entity\";s:12:\"Google Fonts\";s:17:\"rendererStartTime\";d:4331.244999945163726806640625;s:8:\"mimeType\";s:8:\"font/ttf\";s:3:\"url\";s:61:\"https://fonts.gstatic.com/s/dekko/v21/46khlb_wWjfSrutCTU8.ttf\";s:12:\"transferSize\";i:20423;s:12:\"resourceSize\";i:29636;s:8:\"finished\";b:1;}i:54;a:15:{s:8:\"protocol\";s:2:\"h2\";s:18:\"networkRequestTime\";d:4333.36399996280670166015625;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"mimeType\";s:8:\"font/ttf\";s:17:\"sessionTargetType\";s:4:\"page\";s:14:\"networkEndTime\";d:4360.00899994373321533203125;s:10:\"statusCode\";i:200;s:12:\"transferSize\";i:20312;s:12:\"resourceSize\";i:34264;s:8:\"priority\";s:8:\"VeryHigh\";s:3:\"url\";s:66:\"https://fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7yoKNzA.ttf\";s:17:\"rendererStartTime\";d:4331.435999929904937744140625;s:12:\"resourceType\";s:4:\"Font\";s:8:\"finished\";b:1;s:6:\"entity\";s:12:\"Google Fonts\";}i:55;a:15:{s:17:\"rendererStartTime\";d:4331.818999946117401123046875;s:18:\"networkRequestTime\";d:4333.445999920368194580078125;s:8:\"finished\";b:1;s:12:\"resourceType\";s:4:\"Font\";s:12:\"resourceSize\";i:94720;s:25:\"experimentalFromMainFrame\";b:1;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"priority\";s:8:\"VeryHigh\";s:10:\"statusCode\";i:200;s:8:\"mimeType\";s:10:\"font/woff2\";s:14:\"networkEndTime\";d:4358.07799994945526123046875;s:8:\"protocol\";s:2:\"h2\";s:3:\"url\";s:102:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.23.0\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:12:\"transferSize\";i:94986;}i:56;a:15:{s:12:\"resourceType\";s:5:\"Image\";s:12:\"transferSize\";i:55868;s:12:\"resourceSize\";i:55601;s:17:\"sessionTargetType\";s:4:\"page\";s:25:\"experimentalFromMainFrame\";b:1;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:14:\"networkEndTime\";d:4414.62099993228912353515625;s:18:\"networkRequestTime\";d:4365.25899994373321533203125;s:8:\"finished\";b:1;s:10:\"statusCode\";i:200;s:17:\"rendererStartTime\";d:4362.000999927520751953125;s:8:\"priority\";s:4:\"High\";s:8:\"protocol\";s:2:\"h2\";s:3:\"url\";s:79:\"https://choiceresources.co.uk/wp-content/uploads/2021/03/Choice-Logo-Banner.png\";s:8:\"mimeType\";s:9:\"image/png\";}i:57;a:15:{s:18:\"networkRequestTime\";d:4455.999999940395355224609375;s:10:\"statusCode\";i:200;s:12:\"resourceSize\";i:375634;s:12:\"transferSize\";i:144246;s:8:\"protocol\";s:2:\"h2\";s:8:\"priority\";s:4:\"High\";s:8:\"mimeType\";s:16:\"application/json\";s:3:\"url\";s:105:\"https://app.convertful.com/api/widget/export?owner=33464&domain=choiceresources.co.uk&subscriber_uid=null\";s:25:\"experimentalFromMainFrame\";b:1;s:14:\"networkEndTime\";d:5104.8229999542236328125;s:17:\"rendererStartTime\";d:4450.119999945163726806640625;s:8:\"finished\";b:1;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceType\";s:3:\"XHR\";s:6:\"entity\";s:10:\"Convertful\";}i:58;a:15:{s:3:\"url\";s:101:\"https://pagead2.googlesyndication.com/pagead/managed/js/adsense/m202309140101/show_ads_impl_fy2021.js\";s:8:\"finished\";b:1;s:10:\"statusCode\";i:200;s:8:\"priority\";s:3:\"Low\";s:25:\"experimentalFromMainFrame\";b:1;s:12:\"transferSize\";i:132155;s:12:\"resourceSize\";i:387627;s:6:\"entity\";s:22:\"Google/Doubleclick Ads\";s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"mimeType\";s:15:\"text/javascript\";s:18:\"networkRequestTime\";d:4488.33499991893768310546875;s:14:\"networkEndTime\";d:4551.75299990177154541015625;s:8:\"protocol\";s:2:\"h2\";s:17:\"rendererStartTime\";d:4487.6949999332427978515625;s:12:\"resourceType\";s:6:\"Script\";}i:59;a:12:{s:12:\"resourceSize\";i:0;s:12:\"transferSize\";i:0;s:17:\"rendererStartTime\";d:4498.72899997234344482421875;s:8:\"finished\";b:1;s:6:\"entity\";s:22:\"Google/Doubleclick Ads\";s:14:\"networkEndTime\";d:4500.152999937534332275390625;s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceType\";s:8:\"Document\";s:18:\"networkRequestTime\";d:4498.72899997234344482421875;s:8:\"priority\";s:8:\"VeryHigh\";s:10:\"statusCode\";i:-1;s:3:\"url\";s:83:\"https://googleads.g.doubleclick.net/pagead/html/r20230918/r20190131/zrt_lookup.html\";}i:60;a:12:{s:3:\"url\";s:1266:\"https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-5255694111165315&output=html&adk=1812271804&adf=3025194257&lmt=1695168012&plat=9%3A32776%2C16%3A8388608%2C17%3A32%2C24%3A32%2C25%3A32%2C30%3A1081344%2C32%3A32%2C41%3A32%2C42%3A32&plas=425x636_l%7C425x636_r&format=0x0&url=https%3A%2F%2Fchoiceresources.co.uk%2F&ea=0&host=ca-host-pub-2644536267352236&pra=5&wgl=1&easpi=0&asro=0&asiscm=1&aslmt=0.4&asamt=-1&asedf=0&asefa=1&aseiel=1&uach=WyJtYWNPUyIsIjEwLjE1LjciLCJ4ODYiLCIiLCIxMDkuMC4wLjAiLFtdLDAsbnVsbCwiNjQiLFtbIkNocm9taXVtIiwiMTE2LjAuNTg0NS4xNzkiXSxbIk5vdClBO0JyYW5kIiwiMjQuMC4wLjAiXSxbIkhlYWRsZXNzQ2hyb21lIiwiMTE2LjAuNTg0NS4xNzkiXV0sMF0.&dt=1695168012002&bpp=5&bdt=485&idt=133&shv=r20230918&mjsv=m202309140101&ptt=9&saldr=aa&abxe=1&nras=1&correlator=2583313185407&frm=20&pv=2&ga_vid=1643149741.1695168012&ga_sid=1695168012&ga_hid=308528553&ga_fc=0&u_tz=-420&u_his=2&u_h=600&u_w=800&u_ah=600&u_aw=800&u_cd=24&u_sd=1&dmc=8&adx=-12245933&ady=-12245933&biw=1350&bih=940&scr_x=0&scr_y=0&eid=44759875%2C44759926%2C44759837%2C31077699%2C31077969%2C42532402%2C44785292&oid=2&pvsid=1128187690697437&tmod=755407467&uas=0&nvt=1&fsapi=1&fc=1920&brdim=0%2C0%2C0%2C0%2C800%2C0%2C1%2C1%2C1350%2C940&vis=1&rsz=%7C%7Cs%7C&abl=NS&fu=32768&bc=31&ifi=1&uci=a!1&fsb=1&dtd=182\";s:18:\"networkRequestTime\";d:4676.4579999446868896484375;s:17:\"sessionTargetType\";s:4:\"page\";s:10:\"statusCode\";i:-1;s:17:\"rendererStartTime\";d:4676.4579999446868896484375;s:8:\"priority\";s:8:\"VeryHigh\";s:12:\"resourceType\";s:8:\"Document\";s:8:\"finished\";b:1;s:12:\"resourceSize\";i:0;s:6:\"entity\";s:22:\"Google/Doubleclick Ads\";s:12:\"transferSize\";i:0;s:14:\"networkEndTime\";d:4678.754999935626983642578125;}i:61;a:15:{s:17:\"sessionTargetType\";s:4:\"page\";s:17:\"rendererStartTime\";d:4762.74599993228912353515625;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:3:\"XHR\";s:8:\"mimeType\";s:16:\"application/json\";s:12:\"resourceSize\";i:1478;s:8:\"priority\";s:4:\"High\";s:12:\"transferSize\";i:1890;s:8:\"finished\";b:1;s:10:\"statusCode\";i:200;s:14:\"networkEndTime\";d:6210.08199989795684814453125;s:3:\"url\";s:62:\"https://choiceresources.co.uk/?wc-ajax=get_refreshed_fragments\";s:18:\"networkRequestTime\";d:4763.3789999485015869140625;s:25:\"experimentalFromMainFrame\";b:1;s:6:\"entity\";s:21:\"choiceresources.co.uk\";}i:62;a:15:{s:17:\"rendererStartTime\";d:4782.327999889850616455078125;s:18:\"networkRequestTime\";d:4783.05799996852874755859375;s:8:\"protocol\";s:2:\"h2\";s:12:\"transferSize\";i:798;s:3:\"url\";s:76:\"https://cdn-cookieyes.com/client_data/e85b40dd25e78971ffea1980/5UdJUR70.json\";s:12:\"resourceSize\";i:43;s:8:\"finished\";b:1;s:8:\"priority\";s:4:\"High\";s:17:\"sessionTargetType\";s:4:\"page\";s:25:\"experimentalFromMainFrame\";b:1;s:10:\"statusCode\";i:200;s:14:\"networkEndTime\";d:4929.8849999904632568359375;s:12:\"resourceType\";s:5:\"Fetch\";s:6:\"entity\";s:17:\"cdn-cookieyes.com\";s:8:\"mimeType\";s:16:\"application/json\";}i:63;a:15:{s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"mimeType\";s:16:\"application/json\";s:3:\"url\";s:88:\"https://pagead2.googlesyndication.com/getconfig/sodar?sv=200&tid=gda&tv=r20230918&st=env\";s:6:\"entity\";s:22:\"Google/Doubleclick Ads\";s:18:\"networkRequestTime\";d:4784.395999968051910400390625;s:8:\"finished\";b:1;s:8:\"priority\";s:4:\"High\";s:10:\"statusCode\";i:200;s:14:\"networkEndTime\";d:4814.757999956607818603515625;s:17:\"rendererStartTime\";d:4783.83499991893768310546875;s:12:\"transferSize\";i:12627;s:12:\"resourceType\";s:3:\"XHR\";s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceSize\";i:16023;s:25:\"experimentalFromMainFrame\";b:1;}i:64;a:15:{s:12:\"transferSize\";i:1866;s:10:\"statusCode\";i:200;s:8:\"mimeType\";s:22:\"application/javascript\";s:3:\"url\";s:116:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/nav-menu.70d63d6d093f3a45a0c6.bundle.min.js\";s:18:\"networkRequestTime\";d:4795.966999948024749755859375;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"priority\";s:3:\"Low\";s:8:\"finished\";b:1;s:14:\"networkEndTime\";d:5081.580999910831451416015625;s:12:\"resourceType\";s:6:\"Script\";s:17:\"rendererStartTime\";d:4795.08799993991851806640625;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceSize\";i:4651;s:25:\"experimentalFromMainFrame\";b:1;}i:65;a:15:{s:12:\"resourceSize\";i:4733;s:10:\"statusCode\";i:200;s:17:\"rendererStartTime\";d:4797.717999935150146484375;s:18:\"networkRequestTime\";d:4798.34899997711181640625;s:12:\"resourceType\";s:6:\"Script\";s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"priority\";s:3:\"Low\";s:3:\"url\";s:129:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.faa7b80e9ba9e5072070.bundle.min.js\";s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:25:\"experimentalFromMainFrame\";b:1;s:8:\"protocol\";s:2:\"h2\";s:8:\"finished\";b:1;s:8:\"mimeType\";s:22:\"application/javascript\";s:12:\"transferSize\";i:1767;s:14:\"networkEndTime\";d:5082.112999975681304931640625;}i:66;a:15:{s:18:\"networkRequestTime\";d:4804.11399996280670166015625;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"protocol\";s:2:\"h2\";s:17:\"sessionTargetType\";s:4:\"page\";s:17:\"rendererStartTime\";d:4803.361999928951263427734375;s:8:\"finished\";b:1;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:8:\"mimeType\";s:22:\"application/javascript\";s:10:\"statusCode\";i:200;s:14:\"networkEndTime\";d:5081.935999929904937744140625;s:3:\"url\";s:115:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/text-editor.2c35aafbe5bf0e127950.bundle.min.js\";s:12:\"transferSize\";i:900;s:12:\"resourceType\";s:6:\"Script\";s:12:\"resourceSize\";i:1360;s:8:\"priority\";s:3:\"Low\";}i:67;a:15:{s:18:\"networkRequestTime\";d:4817.81499993801116943359375;s:17:\"rendererStartTime\";d:4817.2539999485015869140625;s:3:\"url\";s:49:\"https://tpc.googlesyndication.com/sodar/sodar2.js\";s:8:\"finished\";b:1;s:6:\"entity\";s:22:\"Google/Doubleclick Ads\";s:8:\"mimeType\";s:15:\"text/javascript\";s:12:\"transferSize\";i:7050;s:10:\"statusCode\";i:200;s:12:\"resourceType\";s:6:\"Script\";s:12:\"resourceSize\";i:17314;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"protocol\";s:2:\"h2\";s:14:\"networkEndTime\";d:4831.717999935150146484375;s:8:\"priority\";s:3:\"Low\";s:17:\"sessionTargetType\";s:4:\"page\";}i:68;a:14:{s:8:\"mimeType\";s:9:\"text/html\";s:12:\"transferSize\";i:5740;s:17:\"rendererStartTime\";d:4840.076999962329864501953125;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:8:\"Document\";s:3:\"url\";s:62:\"https://tpc.googlesyndication.com/sodar/sodar2/225/runner.html\";s:14:\"networkEndTime\";d:4847.33099997043609619140625;s:17:\"sessionTargetType\";s:4:\"page\";s:6:\"entity\";s:22:\"Google/Doubleclick Ads\";s:18:\"networkRequestTime\";d:4841.912999927997589111328125;s:10:\"statusCode\";i:200;s:8:\"priority\";s:8:\"VeryHigh\";s:8:\"finished\";b:1;s:12:\"resourceSize\";i:12817;}i:69;a:12:{s:18:\"networkRequestTime\";d:4844.88399994373321533203125;s:8:\"finished\";b:1;s:12:\"resourceSize\";i:0;s:17:\"sessionTargetType\";s:4:\"page\";s:10:\"statusCode\";i:-1;s:12:\"resourceType\";s:8:\"Document\";s:12:\"transferSize\";i:0;s:17:\"rendererStartTime\";d:4844.88399994373321533203125;s:6:\"entity\";s:22:\"Other Google APIs/SDKs\";s:8:\"priority\";s:8:\"VeryHigh\";s:3:\"url\";s:44:\"https://www.google.com/recaptcha/api2/aframe\";s:14:\"networkEndTime\";d:4846.23899996280670166015625;}i:70;a:14:{s:8:\"priority\";s:3:\"Low\";s:8:\"protocol\";s:2:\"h2\";s:17:\"sessionTargetType\";s:4:\"page\";s:6:\"entity\";s:22:\"Google/Doubleclick Ads\";s:12:\"resourceType\";s:6:\"Script\";s:12:\"transferSize\";i:15549;s:12:\"resourceSize\";i:38320;s:8:\"finished\";b:1;s:18:\"networkRequestTime\";d:4869.90799999237060546875;s:17:\"rendererStartTime\";d:4869.19599997997283935546875;s:10:\"statusCode\";i:200;s:14:\"networkEndTime\";d:4874.94699990749359130859375;s:8:\"mimeType\";s:15:\"text/javascript\";s:3:\"url\";s:87:\"https://pagead2.googlesyndication.com/bg/D38i8ocviMyns63bFlxz04547CGgVcdJsS8VZS_5djY.js\";}i:71;a:15:{s:8:\"priority\";s:4:\"High\";s:3:\"url\";s:83:\"https://cdn-cookieyes.com/client_data/e85b40dd25e78971ffea1980/config/AHa0YfPL.json\";s:10:\"statusCode\";i:200;s:12:\"resourceSize\";i:32096;s:8:\"mimeType\";s:16:\"application/json\";s:17:\"rendererStartTime\";d:4932.466999948024749755859375;s:12:\"resourceType\";s:5:\"Fetch\";s:14:\"networkEndTime\";d:5090.287000000476837158203125;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"protocol\";s:2:\"h2\";s:12:\"transferSize\";i:6396;s:8:\"finished\";b:1;s:17:\"sessionTargetType\";s:4:\"page\";s:6:\"entity\";s:17:\"cdn-cookieyes.com\";s:18:\"networkRequestTime\";d:4933.0439999103546142578125;}i:72;a:14:{s:8:\"protocol\";s:2:\"h2\";s:14:\"networkEndTime\";d:5083.81799995899200439453125;s:10:\"statusCode\";i:204;s:12:\"resourceType\";s:5:\"Image\";s:6:\"entity\";s:22:\"Google/Doubleclick Ads\";s:17:\"rendererStartTime\";d:5079.22399997711181640625;s:18:\"networkRequestTime\";d:5079.91699993610382080078125;s:17:\"sessionTargetType\";s:4:\"page\";s:8:\"finished\";b:1;s:8:\"priority\";s:3:\"Low\";s:12:\"resourceSize\";i:0;s:12:\"transferSize\";i:152;s:3:\"url\";s:53:\"https://tpc.googlesyndication.com/generate_204?vh-IkA\";s:8:\"mimeType\";s:10:\"text/plain\";}i:73;a:15:{s:6:\"entity\";s:17:\"cdn-cookieyes.com\";s:18:\"networkRequestTime\";d:5160.0169999599456787109375;s:14:\"networkEndTime\";d:5693.7669999599456787109375;s:10:\"statusCode\";i:200;s:12:\"resourceSize\";i:1771;s:12:\"resourceType\";s:5:\"Fetch\";s:8:\"protocol\";s:2:\"h2\";s:25:\"experimentalFromMainFrame\";b:1;s:3:\"url\";s:89:\"https://cdn-cookieyes.com/client_data/e85b40dd25e78971ffea1980/translations/Ko7-uLcI.json\";s:8:\"priority\";s:4:\"High\";s:8:\"mimeType\";s:16:\"application/json\";s:12:\"transferSize\";i:1464;s:17:\"sessionTargetType\";s:4:\"page\";s:17:\"rendererStartTime\";d:5159.173999965190887451171875;s:8:\"finished\";b:1;}i:74;a:15:{s:6:\"entity\";s:17:\"cdn-cookieyes.com\";s:12:\"transferSize\";i:2526;s:17:\"sessionTargetType\";s:4:\"page\";s:10:\"statusCode\";i:200;s:25:\"experimentalFromMainFrame\";b:1;s:8:\"finished\";b:1;s:12:\"resourceSize\";i:5845;s:3:\"url\";s:88:\"https://cdn-cookieyes.com/client_data/e85b40dd25e78971ffea1980/audit-table/KEkfGNYO.json\";s:17:\"rendererStartTime\";d:5695.733999907970428466796875;s:18:\"networkRequestTime\";d:5696.40999996662139892578125;s:14:\"networkEndTime\";d:5864.36099994182586669921875;s:8:\"priority\";s:4:\"High\";s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:5:\"Fetch\";s:8:\"mimeType\";s:16:\"application/json\";}i:75;a:15:{s:18:\"networkRequestTime\";d:5878.042999923229217529296875;s:12:\"resourceSize\";i:2339;s:14:\"networkEndTime\";d:5896.542999923229217529296875;s:8:\"finished\";b:1;s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:5:\"Image\";s:3:\"url\";s:51:\"https://cdn-cookieyes.com/assets/images/revisit.svg\";s:8:\"mimeType\";s:13:\"image/svg+xml\";s:12:\"transferSize\";i:1695;s:25:\"experimentalFromMainFrame\";b:1;s:6:\"entity\";s:17:\"cdn-cookieyes.com\";s:10:\"statusCode\";i:200;s:8:\"priority\";s:3:\"Low\";s:17:\"rendererStartTime\";d:5877.524999916553497314453125;s:17:\"sessionTargetType\";s:4:\"page\";}i:76;a:15:{s:3:\"url\";s:49:\"https://cdn-cookieyes.com/assets/images/close.svg\";s:12:\"resourceType\";s:5:\"Image\";s:25:\"experimentalFromMainFrame\";b:1;s:10:\"statusCode\";i:200;s:6:\"entity\";s:17:\"cdn-cookieyes.com\";s:8:\"protocol\";s:2:\"h2\";s:12:\"transferSize\";i:1364;s:8:\"mimeType\";s:13:\"image/svg+xml\";s:8:\"priority\";s:4:\"High\";s:18:\"networkRequestTime\";d:5878.124999940395355224609375;s:14:\"networkEndTime\";d:5915.872999966144561767578125;s:12:\"resourceSize\";i:1345;s:17:\"sessionTargetType\";s:4:\"page\";s:17:\"rendererStartTime\";d:5877.78999996185302734375;s:8:\"finished\";b:1;}i:77;a:15:{s:8:\"protocol\";s:2:\"h2\";s:8:\"mimeType\";s:13:\"image/svg+xml\";s:6:\"entity\";s:17:\"cdn-cookieyes.com\";s:12:\"resourceSize\";i:3762;s:18:\"networkRequestTime\";d:5878.269999980926513671875;s:8:\"priority\";s:3:\"Low\";s:10:\"statusCode\";i:200;s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceType\";s:5:\"Image\";s:17:\"sessionTargetType\";s:4:\"page\";s:14:\"networkEndTime\";d:5898.17199993133544921875;s:8:\"finished\";b:1;s:3:\"url\";s:56:\"https://cdn-cookieyes.com/assets/images/poweredbtcky.svg\";s:12:\"transferSize\";i:2065;s:17:\"rendererStartTime\";d:5877.967999935150146484375;}i:78;a:13:{s:8:\"finished\";b:1;s:14:\"networkEndTime\";d:5900.484999954700469970703125;s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceSize\";i:0;s:12:\"resourceType\";s:4:\"Ping\";s:17:\"sessionTargetType\";s:4:\"page\";s:6:\"entity\";s:13:\"cookieyes.com\";s:10:\"statusCode\";i:-1;s:12:\"transferSize\";i:0;s:18:\"networkRequestTime\";d:5882.91499996185302734375;s:17:\"rendererStartTime\";d:5882.91499996185302734375;s:3:\"url\";s:36:\"https://log.cookieyes.com/api/v1/log\";s:8:\"priority\";s:7:\"VeryLow\";}i:79;a:15:{s:10:\"statusCode\";i:204;s:8:\"mimeType\";s:9:\"text/html\";s:12:\"transferSize\";i:400;s:3:\"url\";s:1242:\"https://pagead2.googlesyndication.com/pagead/sodar?id=sodar2&v=225&t=2&li=gda_r20230918&jk=1128187690697437&bg=!fX6lfjHNAAbP3fMH7907ADQBe5WfOJwrqXzvZTBnbZ7q6jfLRUgHLwAqvIM7np4ZPK8AQsTMumvDipqGhuNkCqzij-8HAgAAASZSAAAAJmgBB5kC-otJoDZ0Kb7PsN-68Tr4ih7KODlYMuOqEXwnrAWxnfhSuEIOcG_V6HPJAIMoGR_R-g3iGuq_rGzXQDG_76gp9UYmmTMJlrxPvWo_POIDFj5sWBmnVx74kzKtMGkY8CjxZKvZEYXeEFKy70xNOOxYQgQIn6yMI78aZwXFQoez2oHXwk25nOhLg-1hjthagVftJiJtGTTlHQHyxX8Epw58RaNEbuf8OGH974WdpgKbwjT6rkm3-R0RXEfIMIJkzNciOdWzsT2d0eaK95k4xTkRzX3trGOsMTHeBGVYciQpZIb8yRypoE_v-gcIEqgjfVwyondTS_e3o8AGdWqjcIZCI_Zpv0nibdLlIkti_23kVRCsw0UkHf_EU4ein8Ph-wF2rlEqRcmkmY7i15QC9GG07-U1AdHyNpCpWV3ZKObezAY7mqz5Bpr8v3OsJMMN5p1Z4luRXB8L9DvLSWDUDBV9nXXAmNcaoheu_fKJ08ZShitmiqP9CEwahuddleinI8HRpZpgUdkYZi-b33DbFJ2zRoNZgqLnBrOhlARDfQxZxsifUeDEIqnIe0rZRM9PqBDJi2ciZdp_g4xi2aQQM4nqW4WNOwCEyS9scE5ParqEkZS2PPohkAhfAaSLwZm-0XxTZFVuIneCDoAe_A-ExauQ_FJgxfXxjAys24k8DE885m2uKiMn-YZS10GXCuyw-oBJuKrZMahfgZkmR-MQciukhTpznilpSDh1mlOFMFzP_GlDjGiiZ9ziHRzgI_ZoDZqXvjyOzwfcNOkQf-PcZ9jRAcTk89Xx2hVQplvnWEgCUs1404yf6ZEK0DyCBokDaStAHTWvcRKpTS5C01Xlz2_cfcS-01VBqHPu3nTGTVm1eV8yGaS4UlqH3tiRJW9cdG-gsTQsp2OUnc0oeUS9s8c3sxWYGQN5CO6QsEhiA1wF9nP-RDVOFrnrCE8g_UDcci0QFguIQ47AVZWxTGkIZA4uOBsBXJ1snw1YHDAwnoxuFpPNiHy2DKcwGiQVFg\";s:17:\"sessionTargetType\";s:4:\"page\";s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceSize\";i:0;s:8:\"finished\";b:1;s:8:\"priority\";s:3:\"Low\";s:18:\"networkRequestTime\";d:6010.47599995136260986328125;s:12:\"resourceType\";s:5:\"Image\";s:17:\"rendererStartTime\";d:6009.88699996471405029296875;s:6:\"entity\";s:22:\"Google/Doubleclick Ads\";s:14:\"networkEndTime\";d:6025.297999918460845947265625;s:8:\"protocol\";s:2:\"h2\";}i:80;a:15:{s:8:\"protocol\";s:2:\"h2\";s:12:\"resourceType\";s:3:\"XHR\";s:25:\"experimentalFromMainFrame\";b:1;s:10:\"statusCode\";i:200;s:6:\"entity\";s:21:\"choiceresources.co.uk\";s:17:\"sessionTargetType\";s:4:\"page\";s:12:\"resourceSize\";i:801;s:18:\"networkRequestTime\";d:6216.052999913692474365234375;s:8:\"finished\";b:1;s:17:\"rendererStartTime\";d:6215.416999995708465576171875;s:3:\"url\";s:53:\"https://choiceresources.co.uk/wp-admin/admin-ajax.php\";s:8:\"priority\";s:4:\"High\";s:8:\"mimeType\";s:16:\"application/json\";s:12:\"transferSize\";i:1292;s:14:\"networkEndTime\";d:7511.519999980926513671875;}i:81;a:14:{s:25:\"experimentalFromMainFrame\";b:1;s:12:\"transferSize\";i:0;s:12:\"resourceType\";s:5:\"Image\";s:14:\"networkEndTime\";d:7701.902999937534332275390625;s:10:\"statusCode\";i:200;s:8:\"finished\";b:1;s:8:\"mimeType\";s:13:\"image/svg+xml\";s:8:\"priority\";s:3:\"Low\";s:8:\"protocol\";s:4:\"data\";s:17:\"rendererStartTime\";d:7701.800999939441680908203125;s:12:\"resourceSize\";i:784;s:3:\"url\";s:102:\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\'%3E%3â€¦\";s:18:\"networkRequestTime\";d:7701.800999939441680908203125;s:17:\"sessionTargetType\";s:4:\"page\";}i:82;a:14:{s:12:\"transferSize\";i:0;s:8:\"priority\";s:3:\"Low\";s:25:\"experimentalFromMainFrame\";b:1;s:12:\"resourceType\";s:5:\"Image\";s:14:\"networkEndTime\";d:7703.004999935626983642578125;s:8:\"mimeType\";s:13:\"image/svg+xml\";s:10:\"statusCode\";i:200;s:17:\"sessionTargetType\";s:4:\"page\";s:17:\"rendererStartTime\";d:7702.93399989604949951171875;s:18:\"networkRequestTime\";d:7702.93399989604949951171875;s:3:\"url\";s:102:\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23fff\' viewBox=\'0â€¦\";s:12:\"resourceSize\";i:184;s:8:\"protocol\";s:4:\"data\";s:8:\"finished\";b:1;}}s:9:\"debugData\";a:2:{s:4:\"type\";s:9:\"debugdata\";s:18:\"networkStartTimeTs\";d:322284038019.00006103515625;}s:8:\"headings\";a:9:{i:0;a:3:{s:3:\"key\";s:3:\"url\";s:5:\"label\";s:3:\"URL\";s:9:\"valueType\";s:3:\"url\";}i:1;a:3:{s:9:\"valueType\";s:4:\"text\";s:5:\"label\";s:8:\"Protocol\";s:3:\"key\";s:8:\"protocol\";}i:2;a:4:{s:3:\"key\";s:18:\"networkRequestTime\";s:9:\"valueType\";s:2:\"ms\";s:11:\"granularity\";i:1;s:5:\"label\";s:20:\"Network Request Time\";}i:3;a:4:{s:11:\"granularity\";i:1;s:5:\"label\";s:16:\"Network End Time\";s:3:\"key\";s:14:\"networkEndTime\";s:9:\"valueType\";s:2:\"ms\";}i:4;a:5:{s:3:\"key\";s:12:\"transferSize\";s:9:\"valueType\";s:5:\"bytes\";s:11:\"granularity\";i:1;s:11:\"displayUnit\";s:2:\"kb\";s:5:\"label\";s:13:\"Transfer Size\";}i:5;a:5:{s:5:\"label\";s:13:\"Resource Size\";s:11:\"granularity\";i:1;s:9:\"valueType\";s:5:\"bytes\";s:11:\"displayUnit\";s:2:\"kb\";s:3:\"key\";s:12:\"resourceSize\";}i:6;a:3:{s:5:\"label\";s:11:\"Status Code\";s:9:\"valueType\";s:4:\"text\";s:3:\"key\";s:10:\"statusCode\";}i:7;a:3:{s:3:\"key\";s:8:\"mimeType\";s:9:\"valueType\";s:4:\"text\";s:5:\"label\";s:9:\"MIME Type\";}i:8;a:3:{s:3:\"key\";s:12:\"resourceType\";s:9:\"valueType\";s:4:\"text\";s:5:\"label\";s:13:\"Resource Type\";}}s:4:\"type\";s:5:\"table\";}}i:4;a:9:{s:2:\"id\";s:11:\"network-rtt\";s:5:\"title\";s:24:\"Network Round Trip Times\";s:11:\"description\";s:267:\"Network round trip times (RTT) have a large impact on performance. If the RTT to an origin is high, it\'s an indication that servers closer to the user could improve performance. [Learn more about the Round Trip Time](https://hpbn.co/primer-on-latency-and-bandwidth/).\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:12:\"displayValue\";s:7:\"310Â ms\";s:7:\"details\";a:4:{s:4:\"type\";s:5:\"table\";s:5:\"items\";a:8:{i:0;a:2:{s:3:\"rtt\";d:307.5;s:6:\"origin\";s:29:\"https://choiceresources.co.uk\";}i:1;a:2:{s:3:\"rtt\";i:0;s:6:\"origin\";s:25:\"https://cdn-cookieyes.com\";}i:2;a:2:{s:3:\"rtt\";i:0;s:6:\"origin\";s:32:\"https://www.googletagmanager.com\";}i:3;a:2:{s:6:\"origin\";s:37:\"https://pagead2.googlesyndication.com\";s:3:\"rtt\";i:0;}i:4;a:2:{s:3:\"rtt\";i:0;s:6:\"origin\";s:26:\"https://app.convertful.com\";}i:5;a:2:{s:3:\"rtt\";i:0;s:6:\"origin\";s:23:\"https://chimpstatic.com\";}i:6;a:2:{s:6:\"origin\";s:25:\"https://fonts.gstatic.com\";s:3:\"rtt\";i:0;}i:7;a:2:{s:3:\"rtt\";i:0;s:6:\"origin\";s:33:\"https://tpc.googlesyndication.com\";}}s:8:\"headings\";a:2:{i:0;a:3:{s:9:\"valueType\";s:4:\"text\";s:5:\"label\";s:3:\"URL\";s:3:\"key\";s:6:\"origin\";}i:1;a:4:{s:11:\"granularity\";i:1;s:9:\"valueType\";s:2:\"ms\";s:5:\"label\";s:10:\"Time Spent\";s:3:\"key\";s:3:\"rtt\";}}s:8:\"sortedBy\";a:1:{i:0;s:3:\"rtt\";}}s:12:\"numericValue\";d:307.5;s:11:\"numericUnit\";s:11:\"millisecond\";}i:5;a:9:{s:2:\"id\";s:22:\"network-server-latency\";s:5:\"title\";s:24:\"Server Backend Latencies\";s:11:\"description\";s:283:\"Server latencies can impact web performance. If the server latency of an origin is high, it\'s an indication the server is overloaded or has poor backend performance. [Learn more about server response time](https://hpbn.co/primer-on-web-performance/#analyzing-the-resource-waterfall).\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:12:\"displayValue\";s:7:\"270Â ms\";s:7:\"details\";a:4:{s:4:\"type\";s:5:\"table\";s:8:\"sortedBy\";a:1:{i:0;s:18:\"serverResponseTime\";}s:5:\"items\";a:8:{i:0;a:2:{s:6:\"origin\";s:26:\"https://app.convertful.com\";s:18:\"serverResponseTime\";i:265;}i:1;a:2:{s:6:\"origin\";s:25:\"https://cdn-cookieyes.com\";s:18:\"serverResponseTime\";i:153;}i:2;a:2:{s:6:\"origin\";s:23:\"https://chimpstatic.com\";s:18:\"serverResponseTime\";i:153;}i:3;a:2:{s:6:\"origin\";s:37:\"https://pagead2.googlesyndication.com\";s:18:\"serverResponseTime\";i:24;}i:4;a:2:{s:6:\"origin\";s:32:\"https://www.googletagmanager.com\";s:18:\"serverResponseTime\";i:23;}i:5;a:2:{s:18:\"serverResponseTime\";i:21;s:6:\"origin\";s:29:\"https://choiceresources.co.uk\";}i:6;a:2:{s:6:\"origin\";s:25:\"https://fonts.gstatic.com\";s:18:\"serverResponseTime\";i:14;}i:7;a:2:{s:18:\"serverResponseTime\";i:1;s:6:\"origin\";s:33:\"https://tpc.googlesyndication.com\";}}s:8:\"headings\";a:2:{i:0;a:3:{s:5:\"label\";s:3:\"URL\";s:3:\"key\";s:6:\"origin\";s:9:\"valueType\";s:4:\"text\";}i:1;a:4:{s:11:\"granularity\";i:1;s:9:\"valueType\";s:2:\"ms\";s:5:\"label\";s:10:\"Time Spent\";s:3:\"key\";s:18:\"serverResponseTime\";}}}s:12:\"numericValue\";i:265;s:11:\"numericUnit\";s:11:\"millisecond\";}i:6;a:6:{s:2:\"id\";s:17:\"main-thread-tasks\";s:5:\"title\";s:5:\"Tasks\";s:11:\"description\";s:68:\"Lists the toplevel main thread tasks that executed during page load.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:3:{s:8:\"headings\";a:2:{i:0;a:4:{s:3:\"key\";s:9:\"startTime\";s:11:\"granularity\";i:1;s:9:\"valueType\";s:2:\"ms\";s:5:\"label\";s:10:\"Start Time\";}i:1;a:4:{s:5:\"label\";s:8:\"End Time\";s:9:\"valueType\";s:2:\"ms\";s:3:\"key\";s:8:\"duration\";s:11:\"granularity\";i:1;}}s:4:\"type\";s:5:\"table\";s:5:\"items\";a:52:{i:0;a:2:{s:9:\"startTime\";d:4001.88200000000006184563972055912017822265625;s:8:\"duration\";d:13.489000000000000767386154620908200740814208984375;}i:1;a:2:{s:8:\"duration\";d:44.49600000000000221689333557151257991790771484375;s:9:\"startTime\";d:4169.742000000000189174897968769073486328125;}i:2;a:2:{s:8:\"duration\";d:28.614999999999998436805981327779591083526611328125;s:9:\"startTime\";d:4220.847999999999956344254314899444580078125;}i:3;a:2:{s:8:\"duration\";d:25.0859999999999985220711096189916133880615234375;s:9:\"startTime\";d:4249.759000000000014551915228366851806640625;}i:4;a:2:{s:8:\"duration\";d:15.2110000000000002984279490192420780658721923828125;s:9:\"startTime\";d:4274.9170000000003710738383233547210693359375;}i:5;a:2:{s:8:\"duration\";d:9.3510000000000008668621376273222267627716064453125;s:9:\"startTime\";d:4291.2460000000000945874489843845367431640625;}i:6;a:2:{s:8:\"duration\";d:15.163000000000000255795384873636066913604736328125;s:9:\"startTime\";d:4303.0420000000003710738383233547210693359375;}i:7;a:2:{s:8:\"duration\";d:41.85799999999999698729880037717521190643310546875;s:9:\"startTime\";d:4320.75;}i:8;a:2:{s:8:\"duration\";d:8.93299999999999982946974341757595539093017578125;s:9:\"startTime\";d:4388.1940000000004147295840084552764892578125;}i:9;a:2:{s:9:\"startTime\";d:4397.1369999999997162376530468463897705078125;s:8:\"duration\";d:5.15899999999999980815346134477294981479644775390625;}i:10;a:2:{s:8:\"duration\";d:10.0769999999999999573674358543939888477325439453125;s:9:\"startTime\";d:4402.3329999999996289261616766452789306640625;}i:11;a:2:{s:8:\"duration\";d:30.07900000000000062527760746888816356658935546875;s:9:\"startTime\";d:4429.2860000000000582076609134674072265625;}i:12;a:2:{s:8:\"duration\";d:39.1340000000000003410605131648480892181396484375;s:9:\"startTime\";d:4459.454999999999927240423858165740966796875;}i:13;a:2:{s:9:\"startTime\";d:4504.2330000000001746229827404022216796875;s:8:\"duration\";d:5.43299999999999982946974341757595539093017578125;}i:14;a:2:{s:8:\"duration\";d:11.6869999999999993889332472463138401508331298828125;s:9:\"startTime\";d:4512.09000000000014551915228366851806640625;}i:15;a:2:{s:8:\"duration\";d:10.9550000000000000710542735760100185871124267578125;s:9:\"startTime\";d:4530.57099999999991268850862979888916015625;}i:16;a:2:{s:8:\"duration\";d:13.6300000000000007815970093361102044582366943359375;s:9:\"startTime\";d:4541.6639999999997598933987319469451904296875;}i:17;a:2:{s:9:\"startTime\";d:4555.67900000000008731149137020111083984375;s:8:\"duration\";d:16.01899999999999835154085303656756877899169921875;}i:18;a:2:{s:8:\"duration\";d:16.8419999999999987494447850622236728668212890625;s:9:\"startTime\";d:4574.6930000000002110027708113193511962890625;}i:19;a:2:{s:8:\"duration\";d:11.900999999999999801048033987171947956085205078125;s:9:\"startTime\";d:4591.5420000000003710738383233547210693359375;}i:20;a:2:{s:9:\"startTime\";d:4607.760000000000218278728425502777099609375;s:8:\"duration\";d:70.7099999999999937472239253111183643341064453125;}i:21;a:2:{s:8:\"duration\";d:79.659999999999996589394868351519107818603515625;s:9:\"startTime\";d:4678.48199999999997089616954326629638671875;}i:22;a:2:{s:8:\"duration\";d:12.3559999999999998721023075631819665431976318359375;s:9:\"startTime\";d:4764.15999999999985448084771633148193359375;}i:23;a:2:{s:9:\"startTime\";d:4834.027000000000043655745685100555419921875;s:8:\"duration\";d:11.6560000000000005826450433232821524143218994140625;}i:24;a:2:{s:9:\"startTime\";d:4849.8729999999995925463736057281494140625;s:8:\"duration\";d:11.0589999999999992752464095246978104114532470703125;}i:25;a:2:{s:9:\"startTime\";d:4876.8580000000001746229827404022216796875;s:8:\"duration\";d:30.09100000000000108002495835535228252410888671875;}i:26;a:2:{s:8:\"duration\";d:10.25;s:9:\"startTime\";d:4907.9579999999996289261616766452789306640625;}i:27;a:2:{s:8:\"duration\";d:12.6219999999999998863131622783839702606201171875;s:9:\"startTime\";d:4918.3689999999996871338225901126861572265625;}i:28;a:2:{s:8:\"duration\";d:14.092999999999999971578290569595992565155029296875;s:9:\"startTime\";d:4933.17699999999967985786497592926025390625;}i:29;a:2:{s:9:\"startTime\";d:4947.427999999999883584678173065185546875;s:8:\"duration\";d:12.3759999999999994457766661071218550205230712890625;}i:30;a:2:{s:8:\"duration\";d:11.4550000000000000710542735760100185871124267578125;s:9:\"startTime\";d:4960.197000000000116415321826934814453125;}i:31;a:2:{s:9:\"startTime\";d:4971.697000000000116415321826934814453125;s:8:\"duration\";d:10.382999999999999118927007657475769519805908203125;}i:32;a:2:{s:9:\"startTime\";d:4987.1279999999997016857378184795379638671875;s:8:\"duration\";d:14.7980000000000000426325641456060111522674560546875;}i:33;a:2:{s:9:\"startTime\";d:5002.846999999999752617441117763519287109375;s:8:\"duration\";d:6.657000000000000028421709430404007434844970703125;}i:34;a:2:{s:9:\"startTime\";d:5010.4939999999996871338225901126861572265625;s:8:\"duration\";d:18.92699999999999960209606797434389591217041015625;}i:35;a:2:{s:8:\"duration\";d:12.6470000000000002415845301584340631961822509765625;s:9:\"startTime\";d:5030.404000000000451109372079372406005859375;}i:36;a:2:{s:8:\"duration\";d:19.606999999999999317878973670303821563720703125;s:9:\"startTime\";d:5046.8800000000001091393642127513885498046875;}i:37;a:2:{s:8:\"duration\";d:12.6850000000000004973799150320701301097869873046875;s:9:\"startTime\";d:5067.4790000000002692104317247867584228515625;}i:38;a:2:{s:8:\"duration\";d:28.106999999999999317878973670303821563720703125;s:9:\"startTime\";d:5080.83799999999973806552588939666748046875;}i:39;a:2:{s:8:\"duration\";d:11.0690000000000008384404281969182193279266357421875;s:9:\"startTime\";d:5110.4399999999995998223312199115753173828125;}i:40;a:2:{s:8:\"duration\";d:20.11299999999999954525264911353588104248046875;s:9:\"startTime\";d:5123.48199999999997089616954326629638671875;}i:41;a:2:{s:8:\"duration\";d:13.035000000000000142108547152020037174224853515625;s:9:\"startTime\";d:5143.6310000000003128661774098873138427734375;}i:42;a:2:{s:8:\"duration\";d:11.4060000000000005826450433232821524143218994140625;s:9:\"startTime\";d:5164.1750000000001818989403545856475830078125;}i:43;a:2:{s:8:\"duration\";d:10.3209999999999997299937604111619293689727783203125;s:9:\"startTime\";d:5175.9880000000002837623469531536102294921875;}i:44;a:2:{s:8:\"duration\";d:20.73799999999999954525264911353588104248046875;s:9:\"startTime\";d:5865.9499999999998181010596454143524169921875;}i:45;a:2:{s:8:\"duration\";d:13.5;s:9:\"startTime\";d:5886.7010000000000218278728425502777099609375;}i:46;a:2:{s:9:\"startTime\";d:5962.222999999999956344254314899444580078125;s:8:\"duration\";d:14.73799999999999954525264911353588104248046875;}i:47;a:2:{s:8:\"duration\";d:20.47200000000000130739863379858434200286865234375;s:9:\"startTime\";d:5977.05199999999967985786497592926025390625;}i:48;a:2:{s:9:\"startTime\";d:6001.740999999999985448084771633148193359375;s:8:\"duration\";d:8.967999999999999971578290569595992565155029296875;}i:49;a:2:{s:8:\"duration\";d:5.8040000000000002700062395888380706310272216796875;s:9:\"startTime\";d:6210.9080000000003565219230949878692626953125;}i:50;a:2:{s:9:\"startTime\";d:7700.2640000000001236912794411182403564453125;s:8:\"duration\";d:12.224000000000000198951966012828052043914794921875;}i:51;a:2:{s:8:\"duration\";d:74.655000000000001136868377216160297393798828125;s:9:\"startTime\";d:7720.5770000000002255546860396862030029296875;}}}}i:7;a:6:{s:2:\"id\";s:11:\"diagnostics\";s:5:\"title\";s:11:\"Diagnostics\";s:11:\"description\";s:33:\"Collection of useful page vitals.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:2:{s:5:\"items\";a:1:{i:0;a:17:{s:8:\"numFonts\";i:4;s:16:\"numTasksOver10ms\";i:45;s:15:\"totalByteWeight\";i:3553718;s:10:\"numScripts\";i:51;s:8:\"numTasks\";i:1165;s:11:\"numRequests\";i:83;s:14:\"numStylesheets\";i:3;s:16:\"numTasksOver25ms\";i:11;s:17:\"numTasksOver100ms\";i:0;s:3:\"rtt\";i:0;s:10:\"throughput\";d:91413921928.1453704833984375;s:13:\"totalTaskTime\";d:1205.407000000004018147592432796955108642578125;s:17:\"numTasksOver500ms\";i:0;s:16:\"numTasksOver50ms\";i:3;s:24:\"mainDocumentTransferSize\";i:17382;s:6:\"maxRtt\";d:307.5;s:16:\"maxServerLatency\";i:265;}}s:4:\"type\";s:9:\"debugdata\";}}i:8;a:8:{s:2:\"id\";s:7:\"metrics\";s:5:\"title\";s:7:\"Metrics\";s:11:\"description\";s:31:\"Collects all available metrics.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:2:{s:4:\"type\";s:9:\"debugdata\";s:5:\"items\";a:2:{i:0;a:42:{s:32:\"observedLargestContentfulPaintTs\";i:322288649870;s:25:\"observedNavigationStartTs\";i:322284037885;s:30:\"observedLargestContentfulPaint\";i:4612;s:29:\"observedCumulativeLayoutShift\";d:0.05307433468683418753553127089617191813886165618896484375;s:14:\"observedLoadTs\";i:322288822486;s:30:\"cumulativeLayoutShiftMainFrame\";d:0.05307433468683418753553127089617191813886165618896484375;s:27:\"observedFirstVisualChangeTs\";i:322288423885;s:20:\"observedFirstPaintTs\";i:322288436999;s:17:\"totalBlockingTime\";i:36;s:21:\"cumulativeLayoutShift\";d:0.05307433468683418753553127089617191813886165618896484375;s:16:\"observedTraceEnd\";i:9829;s:28:\"observedFirstContentfulPaint\";i:4399;s:10:\"lcpLoadEnd\";i:4843;s:18:\"observedTimeOrigin\";i:0;s:15:\"timeToFirstByte\";i:181;s:20:\"firstMeaningfulPaint\";i:2559;s:39:\"observedLargestContentfulPaintAllFrames\";i:4612;s:11:\"interactive\";i:4379;s:22:\"largestContentfulPaint\";i:5017;s:28:\"observedFirstMeaningfulPaint\";i:4399;s:18:\"observedFirstPaint\";i:4399;s:18:\"observedSpeedIndex\";i:4598;s:20:\"observedTimeOriginTs\";i:322284037885;s:15:\"maxPotentialFID\";i:80;s:10:\"speedIndex\";i:4434;s:12:\"lcpLoadStart\";i:4653;s:37:\"observedFirstContentfulPaintAllFrames\";i:4399;s:23:\"observedNavigationStart\";i:0;s:30:\"observedFirstContentfulPaintTs\";i:322288436999;s:41:\"observedLargestContentfulPaintAllFramesTs\";i:322288649870;s:26:\"observedDomContentLoadedTs\";i:322288794536;s:24:\"observedDomContentLoaded\";i:4757;s:18:\"observedTraceEndTs\";i:322293866824;s:24:\"observedLastVisualChange\";i:5920;s:30:\"observedFirstMeaningfulPaintTs\";i:322288436999;s:25:\"observedFirstVisualChange\";i:4386;s:26:\"observedLastVisualChangeTs\";i:322289957885;s:38:\"observedCumulativeLayoutShiftMainFrame\";d:0.05307433468683418753553127089617191813886165618896484375;s:12:\"observedLoad\";i:4785;s:20:\"observedSpeedIndexTs\";i:322288635439;s:20:\"firstContentfulPaint\";i:2559;s:39:\"observedFirstContentfulPaintAllFramesTs\";i:322288436999;}i:1;a:1:{s:14:\"lcpInvalidated\";b:0;}}}s:12:\"numericValue\";i:4379;s:11:\"numericUnit\";s:11:\"millisecond\";}i:9;a:6:{s:2:\"id\";s:21:\"screenshot-thumbnails\";s:5:\"title\";s:21:\"Screenshot Thumbnails\";s:11:\"description\";s:47:\"This is what the load of your site looked like.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:3:{s:4:\"type\";s:9:\"filmstrip\";s:5:\"items\";a:8:{i:0;a:3:{s:4:\"data\";s:7307:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2MBERISGBUYLxoaL2NCOEJjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY//AABEIAVwB9AMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/APQKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA//9k=\";s:6:\"timing\";i:740;s:9:\"timestamp\";i:322284777885;}i:1;a:3:{s:6:\"timing\";i:1480;s:9:\"timestamp\";i:322285517885;s:4:\"data\";s:7307:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2MBERISGBUYLxoaL2NCOEJjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY//AABEIAVwB9AMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/APQKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA//9k=\";}i:2;a:3:{s:4:\"data\";s:7307:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2MBERISGBUYLxoaL2NCOEJjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY//AABEIAVwB9AMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/APQKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA//9k=\";s:6:\"timing\";i:2220;s:9:\"timestamp\";i:322286257885;}i:3;a:3:{s:9:\"timestamp\";i:322286997885;s:4:\"data\";s:7307:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2MBERISGBUYLxoaL2NCOEJjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY//AABEIAVwB9AMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/APQKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA//9k=\";s:6:\"timing\";i:2960;}i:4;a:3:{s:4:\"data\";s:7307:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2MBERISGBUYLxoaL2NCOEJjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY//AABEIAVwB9AMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/APQKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA//9k=\";s:6:\"timing\";i:3700;s:9:\"timestamp\";i:322287737885;}i:5;a:3:{s:9:\"timestamp\";i:322288477885;s:6:\"timing\";i:4440;s:4:\"data\";s:6799:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAFcAfQDASIAAhEBAxEB/8QAGwABAQADAQEBAAAAAAAAAAAAAAUBAwQGAgf/xAA/EAEAAQIDBQYDBwMCBAcAAAAAAQIDBBETBRIhUWEGFSIxVJIyQdIUJGNxkZOhUoGxc8EHgrLRFiMzNDVC8f/EABwBAQACAwEBAQAAAAAAAAAAAAACBAEDBQcGCP/EADURAQACAAUCAgcFCQEAAAAAAAABAgMREhNRBJFB8AUGITGh0eEjUmFywQcUFiIkM1NUcYH/2gAMAwEAAhEDEQA/AOfR6Gj0UtGeRozyehankKbo9DR6KOjPJnRnkahN0eho9FLRnkxozyNQnaPQ0eijozyZ0Z5GoTdHoaPRS0Z5MaM8jUJ2j0NHopaM8mNGeRqE7R6Gj0UtGeTGjPI1Cdo9DR6KWjPI0Z5GoTdHoaPRR0Z5M6M8jUJuj0NHoo6M8mdGeRqE3R6Gj0UdGeTOjPI1Cbo9DR6KWjPJjRnkahO0eho9FHRnkzozyNQm6PQ0eilozyY0Z5GoTtHoaPRS0Z5GjPI1Cbo9DR6KOjPI0Z5GoTtHoaPR2YiujD7upTXO95bsRP8AmYaftdj+i/7afqardVh0nTa3td7ovVj0t12DXqOmwLWpb3TGXtynKfjDTo9DR6N32ux/Rf8AbT9R9rsf0X/bT9SP75hfeWv4L9O/6tvh82nR6Gj0dNq/au3IoopuxVPlvUxl/l06M8m2mNXEjOs5uN6R9F9X6MxIwesw5paYzynj2xn8JTdHoaPRR0Z5M6M8ktSgm6PQ0eilozyY0Z5GoTtHoaPRS0Z5MaM8jUJ2j0NHopaM8mNGeRqE7R6Gj0UtGeTGjPI1Cdo9DR6KWjPJjRnkahO0eho9FLRnkaM8jUJuj0NHoo6M8mdGeRqE3R6Gj0UtGeTGjPI1Cdo9DR6KOjPJnRnkahN0eho9FHRnkzozyNQm6PQ0eijozyZ0Z5GoTdHoKWjPINQo6PQ0ei13bivTXfZJ3bivTXfZKrvV5T278T2RdHoaPRa7txXprvsk7txXprvsk3q8m3fieyLo9DR6LXduK9Nd9knduK9Nd9km9Xk278T2RdHoaPRa7txXprvsk7txXprvsk3q8m3fieyLo9DR6LXduK9Nd9knduK9Nd9km9Xk278T2RdHoaPRa7txXprvsk7txXprvsk3q8m3fieyLo9DR6LXduK9Nd9knduK9Nd9km9Xk278T2RdHoaPRa7txXprvsk7txXprvsk3q8m3fieyLo9DR6LXduK9Nd9knduK9Nd9km9Xk278T2RdHoaPRa7txXprvsk7txXprvsk3q8m3fieyLo9DR6LXduK9Nd9knduK9Nd9km9Xk278T2RdHoaPRa7txXprvsk7txXprvsk3q8m3fieyLo9DR6LXduK9Nd9knduK9Nd9km9Xk278T2RdHoaPRa7txXprvsk7txXprvsk3q8m3fieyLo9DR6LXduK9Nd9knduK9Nd9km9Xk278T2RdHoaPRa7txXprvsk7txXprvsk3q8m3fiezyG3aNzR65/7L/ZTsjhNs7Goxt7E1Wq9W9RVRvxE1RTb3o3YmOM5+fRxdp9m4z7vuYTEVfF8NuqeXRLw9O2sPbpt4ejaNqimZmmmimuIiZjKZj844OL1k68SdM+cn6J9Tq4l/VvpsPCxIpb+b3/nv9HoI/4e7QjEW7NzGYKiuqmZnOa+ExNETHw8fjp49WrE9g8fh6cXXXi8HpYe1F2a96qIq+Lh5cPgq4z05pU3+0M1UVTXtWaqKNOmZ1PDTnE5R/eI/SGJvdoJi5E1bUmLlGnXwueKnOZyn9Z/WVXK/L6WI6/xx6do5+Th2XG9j7Ufn/h6jAYGcXjbGHp87tcUZ8s5RdibNxveljeweJiOPGbVUfKej19nBY2zdpuWbN+i5TxiqmmYmHW6S8RhTETlP0eP/tRyxPTGDaPbG3GeX5rrWK7G4O1tG5bpuYjQ3LVVEzMZ51XIpq+Tj7P9mMJtDaW08PeqvRRhrkUUbtURMxNUxxzc9FO1aLdNuj7XFFPw0xFWUcc/88Xzbs7St1XKrdOJpquTFVcxE+KYnOJn+7EVxdMxu/8AHw043TziVtGDOXtzjv8Aq+57H35qw004mzTTiK5pt6mcTlxymY67vl1h9WOxWMvURVTesxnXNOU5xOW9NOflzgpq2xTubteMjcqmqn4uEz5z/M/qxHe8UxTFWMyirfy8XxeeaU2x/DEhCJ6Txwrecvq0/wDhS/u8cRZivet0RROeczXETHy6z+j6r7JXqbF29Ti8NNui5FuKpzjenOInzj5TP8S+70bWvTndnF1znFWc708Y8pfVVe2Kt/erxk78xVV8XGY8p/iP0Z14/wDkhH+l9v2VvOf08++PtjZNzZePrwt2qmuqmInepiYic4z4ZuHR6L2JwuPxN6buIt4i5cnzqqpmZa+7cV6a77JWqYsRWItaM1LFw87zOHWYjwVtkdlcHjdmbPxE1X6qr1zdvTExTFuM5yyiY455Rxcc9jsRu3q/tNjToymKvF4qcqZmfL5RVBRG1qLVu3ROLpt25zopjeypnozHesUVUfepoqy3qZirKcvLP9IU/totMxiRl9XQm/TWpWJwZziP0+fnwT9u7AvbHuWqb1y3ci5FWU0Z+cTlMcUrR6PSbTp2ltLFVYjFWr1VdXlG7OVPSOUOXu3Femu+yVrCxZikblozUuopE4kzg1mK+Cj2d7LYXamyYxN6/XauxdnOPlpxlvT+fFq2v2S+z3NoXMNfp+y4Scqt/wCKOFMxH995pt2No27WnboxNNvj4YicuPm31ztOvC4ixctXq4v1U13K6qZmqrd8oz5K32sYk2jEjKfD/wB+S7r6e2FFJwp1RHv5nKf1+D42J2Zt7Q2DjsbXVci9bz0aafKd2M5za6+yd63RdquYmxTNmimq5Hi8M1fDHlxz5s2rO0rUW4tU4miLee5lExu5+eX5tme193d3sXu7u5l4vh5MzbF1TMYkZT58/ihFunmlYthTnEd/x7/D4bJ7DY3eyi/YmM4pzjPz3t2Y/tL5wPY2vEVYSbmMtUW7+XlTMzTnFUxw/OmYIubZi5vxcxu/lu5+LPLk+Y72pmJicXEx5T4uHn/3n9UdXUZf3IT1dHExMYNsnnbuHii5XTTVFcRMxFUeU9Xxo9Fru3FemveyTu3Femu+yV6MavLmTh3+7LhnZV2KM5mnPKJinjnOeX/eC7syq1TTVXco3JmONOc8J+al9kx+WWnicsojLKryjyYrweOuRMV2sRVEznxiZ4tcYs+NobZpHhSXJtjYdey9LUxGGvTcz4Wa97LLLz/VN0ei9ewmOvZalm9VlMz8E/Nr7txXprvslnDxcq5XtEyxi01XmcOkxCLo9Ba7txXprvskT3q8te3fiez9RpsbcsXKotV6lqaqoyuVRVMRv3N2YnP+nSj+/wCbfr7c+x4eZw1vXmm5qRG7PiifB/8AbKImM5yznjlGfnKnhsfhcVRNdi/brpicpnPLLhE/4mJ/KYb4u25zyrp4efF8O9bedvXe0s0b1uzh84400cIzndoyiqd6eEzNeeXlFPDP5/eHr7Q112ZxNuzRRv0zXTbineiM6M4zmrKeE155f08PPJcu4mxas1Xbl63TbppmqqqaoyiI85bYmJjOJzgEGq/tmzbx01YeK92c7E0xFUzncmMst7j4cp45Q+KcR2h36Iqwlqad6jey3Y4THiy8fy/L5ZRn5vQgPL04jtVNyjeweEptZZ1zvRNfWIjeyz4Z+eXGIz4TLpor2/XcwsXrdmmiqumbunEeGI3M4mZq+f8A5nlE/L85vgPOUYntDcquVU4e1TZpquREVURFdURXERlG/l8O9MTOWcx8oa6b3aem9lOHsVWpiKqpzpzid2nOmmN6PnvZZz5xx4ZS9OA8xq9paa71P2eiq1lVNFc7m/Odycoy3ojhRl5/PPzdmJo2pNjB3bMV69u3MXaJrjKqrOmM8s8pnLemOMR5Z5LYCHia9uzRh4tWcPvTat13ZzyyuRVG/T5+UxOefH4Z5w1bOvdo6sXhacdhsLRhqomb9VM+KiZzyiPFOeW7EZ/PfjlL0IDzett+xgrNOjF3FV3opnOmmaaadHPOZiqMo34ymZ48eETwfOFvdpaaYpvYW1MUzbpirOmaqvD4qp8UZcf/AM5emAefwt/tFVF/XwmGpmnDVzazqjx3s53YnKZyiYy5+fm013e002oqps4ffyziiMo47tGUTO95b015zHyp4efH0wCDRf27b2XiL16xYqxcVURasxHnE5b2cxM/OZ5eWfzfNd/tDTXXFOFsV078001ZxHDfjxfF5bm91z+WT0ACDisRtyjEWbWHsW7kRYpru17kRTNc729FOdXnnFOUeXHjMNM4jtJuzu4OxNW7TlnNMRnNE55+KfKrL88+mc+kAeZsX+1NWUX8Ngrcz86fFFPnGc+LOeO7MRHymc5ziG65O3ZsYmummIvU3qdKjKjKqiM4nLxeXlPGYnp8noAHmLl7tPv1VRhbHCq7TTTTNM07vDcnjVE8fnyjP55O/Zd3bVeNvU7SsWKMNFWVuq3lM1R4oznjw+GKv+eI+UysAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPK2uzNi/YsXbcRaztRGUVRMz4KqYmZmnjMRXPTy4cIyzX2Rs3Lluu7crrmi5NyM7kxGc7ueeUcc4iYnnv183odnf/AB+G/wBKn/EOgHlp7JWZsV28+NVEUTXnG9uxFUZR4cvKqY8uU+fFes28Tat7kTZmM5njn85z+UOsBo+9fgfyfevwP5bwGj71+B/J96/A/lvAaPvX4H8n3r8D+W8Bo+9fgfyfevwP5bwHJevYizTFddNqqneppmImc+MxH+5h7uJv2Ld2KbVMV0xVETMzlm+tpf8AtY/1Lf8A10uemi7c2BRRh5mL1ViIpmJy45fnH+RKrq+9fg/yfevwf5TLtra0U0TYrpiKfKiqY/omIiZnPPxTE+fyUNnxiot1fbaqaquG7lERlG7GefXPNhKa5RnnDbhbtV21vVxEVRVVTOU8OEzH+za58B/6Nf8Aq1/9UuhlCfeADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADks4fE2bVFujEW92imKYztTM5R/zPvTxXqLX7U/U6AHPp4r1Fr9qfqNPFeotftT9ToAc+nivUWv2p+o08V6i1+1P1OgBz6eK9Ra/an6jTxXqLX7U/U6AHPp4r1Fr9qfqNPFeotftT9ToAc+nivUWv2p+o08V6i1+1P1OgByXMPfuxFN2/RNEVU1TFNvKZymJ8855FnD4izaotW8Rb3KIimnetZzlHPi6wZicnPp4r1Fr9qfqNPFeotftT9ToA1NWGtaNrdmremZmqZyy4zObaAx7wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/9k=\";}i:6;a:3:{s:4:\"data\";s:47187:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAFcAfQDASIAAhEBAxEB/8QAHAAAAgMBAQEBAAAAAAAAAAAABAYABQcDAgEI/8QATBAAAQMDAgMEBQkEBwYGAwEAAQIDBAAFERIhBhMxIkFRYQcUMnHRFiNUgZGho7HBFUJSciQzYpKT0uFDU3OCovAIFzSy4vE1Y4PC/8QAHAEAAgMBAQEBAAAAAAAAAAAAAAMBAgQFBgcI/8QAPxEAAgECBAMECQQBAgQHAQAAAAECAxEEEiExBUFRE5Gh0RUWIlJhcYHB8AYUMrHhQoIjQ2LiB1NUcrLC8dL/2gAMAwEAAhEDEQA/AA+WanLNWtqtki6T2YcNGt504A7h4k+VatbuGuGuH5cW33lgyJklPYkvJPKWr+BO+AffXuMTjoYfRq76I+Y4Lh1TF3kmlFaXe1+hinLNTlmtnVwbYOJo8hdqbetc6OstPMqGdCh/EnPQjcEHBBrPuIuFbnYHMTWcsk4S8jdB+vu+uqYXidDE6Rdn0Y3H8GxWBb7SN11Qs8s1OWaK0Udb7NPuIJgxH30g4JQgkD662yqRgrydkcyEJTeWKuyn5Zqcs04x+AeIn9xbygeK3EJ/Wj0ejW7J0esyYLGs4SFu5J92BWWpxHDU1eVRd5tp8MxlT+NKXcZ/yzU5ZrTm/Rq02XRMvjLamQC4lDJVpz076KRwFYmY6XXZ8+QCvl4baCDq8CCNqxVf1DgKW9RG6n+m+I1P+Xb6oyflmpyzWyI4U4dizbRHXa5kj9oKWlKnXtHLKQSdQBHcDXpcK3ReLF2eLw3bihrlLLrzyipTajgqAIxkb7E792aTL9R4a14pv8uWf6frwdqkktbc3rv0MZ5ZomPbZck/0eM87/I2VflWx2u9Mu3C9QIUOFDW0hwwXUsYBLZKVg52JyAdu41TtcWXiRwzdHXbj6tJaZjSY6i02FFK1YXgDIKO7xz1rLU/U8V/Gn159C3oWnHWVRvfZdPmxHjcIX6SQGrVK3/jRoH34q0Y9G3EjmNcRpkHvceR+hNNLs26SWb0uaLgl9iXDWlpha1JUknthGnqgjUfrHeK+u2O7u3uS5Gjvvwk3Zt8IeGnQnKSVo1dR7YI9xFZpfqXEP8AhBeP5yNEOD4fe0pdy68rfAVpPo6urRcbakQJEpsZVGae+cH1EClBbKkLUlaSlSTggjBBra7Zw9fYF6gqaixEsxpDq3phKFLkIWonO41JUAcHfG1Zvxo5Hk8U3J6HjkKd2I6E4GT9Zya6nB+J1sXKUay2MXFOH08NTVSCcXe1n8t18tmLXLNTlmitFTRXezHDBeWanLNFaKmijMALyzU5ZorRU0UZgBeWanLNFaKmijMALyzU5ZorRU0UZgBeWanLNFaKmijMALyzU5ZorRU0UZgBeWanLNd3FIaxrCzn+EA/mRXjntfwvf3U/wCakyxNODyyep3sF+mOLY6jHEYahKUJbNc7Oz8Uc+WanLNdOe1/C9/dT/mqc9r+F7+6n/NVf3lH3jV6l8d/9LLw8znyzU5ZrshxtaglIdBPiBj866aKbCrGorxdzjcR4Xi+GVFRxlNwk1ez6aq/gwXlmpyzRWipoq+YwAvLNTlmitFTRRmAF5Zqcs0VoqaKMwAvLNTlmitFTRRmAF5Zqcs0VoqaKMwAvLNTlmitFTRRmAF5Zqcs0VoqaKMwAvLNTlmitFTRRmAF5Zqcs0VoqaKMwAvLNTlmitFTRRmAF5Zqcs0VoqaKMwAvLNTlmitFTRRmAF5ZqUVoqUZgNI4CgxGuGr5cp0h6KgJDPrDGdbQ6kpxv3j7KtrPcHLhHTbJMy3cS213CQtLoakIHipKuuOuc52rx6Jbk0yqVbXyEqdIcbz+8cbj8qv8AiyRbuHno77XDUydJkakB23xA4tvbGVHbGc/nXi+I9v8AupW+n+GfR+BV7YCNOKi4P+Sa1vfrv9Oelyki3h2DILsFnn8pHKVJdBLi2wTp1kYG3cTv9ppme4rsarcwbu+0wmVqTy3gSCRjIJxjvHXxpfsrN9hxilm3L5MkAqafSM4x0Vg7HyzSlx9Edi3qLFjxW3PU4K5Trbo1pyrOr34AGPcK8hwSWNr4l/uG7a5k1azvplezR7qjgMJiZxoLRW0ad7pLnfbWwXxzwvBjMMXexuoXbX1YIQrUlHmD4VoMqMzb2oEZrntWxDSgDH1Z1bYzp38frpIxGh+iGCy06XTLUFbjGFa8qGPLGK78B8UXRU2FaF8p5hR0pWsdpKQCcZ79hXssZhq+Pwds38W9+aVnr16HgpSwnBuMVcPBaS0WnO7W3K+j+A1yor8iX80mQG3YeFFxGok+B3wFGom1y1RWiqE26pcUMaHFAcpQzv7j1232oDjy8XK1Xq3NM3L1OBKQ4CUROctKkjOw3znI7tqoLtdrvcOArVdnJr6HfWeU76osNl1BXpGceyrb7688uDQk87lv+c0117/ke3o4StOnTndZZNJb/H4LmuumnJjw5Z5K1uBbqAgstJDpOTrQcgkeH110uMN1+2OG6To7baVpcKy2NCEj3n7zWeX2KlixpiOXpxx4Tm1vRLg4s6daNmVuJzttnPShIziH7CylcaSu1QLr/TWUvc9ARjbSQN2we7etK4VRs1rZ76v4+fiWhgZSipqfP3e613q3pbS22uo83dm1zLNEnv39aY0F1TglsKSRqVlOM4PcojA8aro0ThJ25QIzbk2VJcjtqZ7b2lbbeVJJxgHGM79586At1vj3q6cQt8MthqyyYHJJDZQ0qQc4KQR3DriiuGWrjNvXDoftkqIbPGcZkvPABLhKQkBB/e3Gc09YWlFWtt1+XxMdTheFcpyrL2rNu9lZ5bpW156O3w2PFvv3C4djNpsMtuMJC46JD7OpDbi9lJJJJGehq1N7cRPlxOG+HkTI1vIaeWhxLWD1KEAjfBP20tt8HXhyTcJjUQsym7l65FS9IBbcSVbgpGQD35xn7KY3+Hb7DmzXbBPixWLioOSEOoKlMuYwpTZ7/rpnZ0o/xt+fIfLC8Poy/wCHl25vS+nu67eKtbQ4cWcS3q23a3xmjAgsTWtSVSUqWpDgxlJ0nHeAKA4lu/FMJNuEtbsVJjKU+7Cjpfw8D+8O5GMdPOrm92VT0m1Pr4jEZ63tqQHVtIUpalDClHO248qqnLNwwzb4rD1+dEiPrAlMvaXClRJKTp7tzTIRTtZX+hWGO4dh4U5VJRur30v73XTa3X5K2thelP3z0cJnNztTwZ5qnI+UIdx7Qwd8bHbxrGdFaXxHxHbInDabFw6FKY0csrIICU5yeu5J3+2s+5flXoeFU50qcs6td6dT5X+p8Th8RjM2Gd1/nTbTbewLoqaKK5flU5flXUuedBdFTRRXL8qnL8qLgC6KmiiuX5VOX5UXAF0VNFFcvyqcvyouALoqaKK5flU5flRcAXRU0UVy/Kpy/Ki4Auipoorl+VTl+VFwKm4pxo+umjhThGJebMia9JU0vmvIUjWAVBLeoaQRuc9fKl67NKPK0IUrr7KSa4R5dxjtpbjuzGkJJKUo1AAkYJHvG1cHHRlKrLL+aH6K/RrlU/TeGp0aqhL2uf8A1z/wM49HtwEhtlyZCQtSSTkr2IKAR7O/tp3865SeA58dMta5cPlR2g6V6lAK9rbpt7Ctz5eNURul4KkKMqeVIRy0kqX2U5BwPrA+wVDc7uQ4DKnkOI5a+0vtJyTg/aftNY8lTqelUsbzxEPDr5AcMZkoFXduhKmz48ZHtPOJQPLJxVTAacEtvU24BvuUkDpV4wp2O8l1ham3EnKVJOCK7WBzKlJLe/2Pj3/ilUpz4xRad12avb/3THGZwTCZubjSHJJjlDKkFRAOVOhCgdvA5oHhrhaHc7tdoz63wiK4EI0KSCQVlOTkeVUjc+c20htEp9LaPZSFnA3z+e9eGpUtlbi2n3ULdUFLIVgqIOQT9e9CoYjK4upry8DwzxeE7SMlS0V7rv8AuWx4KkKVFKZbCESnClsOZSrHawSMd+np5ivUfgSe+hKkvsjLhRhQUDgKKc9PEdOtVqLpckaNM2SNCipPzh2Jzk/eftr4LlcAkJEyRpC+ZjWfaznPvqzhiuU13FFVwPOm+/5f5C/khJ07yWAsraQEHUCVOAFPd5n7K9ucGyExnn0zYpaQ4GgolSdRyAeo2wVfcaAfuE985elvrOQrKlk7jofqzXtV1uSteqbJOtQUr5w7kYwfuH2VOXFe8vz6Fe1wevsPv+fx/P7EvlpctFxchvLStSADqSCAcjO2aA0VYS3X5b6npTi3XVdVrOSa48vyrXTclFKe5iquLm3TVlyGyy8Iwp9ptklSpClvu6HyFBIbGTjAI3zgb0EeCZQQ8563G5beCFdrtJ0pUVdNsBQqtbuE9tlppuW+lto5bSFnCT5V9FxnhCketPFtenUgrOFYxjI+oVi7LEqTano/P8/NToPEYOUEnTd0vt5/nI+cRcPP2N1lD7rTodCsKbz1ScEb+dVGire7z5V2mrkzFla1HYZ2SPAeAoLl+Va6OdQXaPUxYh03Uboq0eQz8McJxLvZRLekrZdDx1DIwWk41EbdcGuN64PMVy5uxZKfU4RwrmHtA4SQPr1be6qZqTKaZ5Tb7qGt+ylWBv1+2iF3OY5Ckx3XCsSVpW6tRJUrSNgT4Vl7LEKo5Kej5fC/kbf3GElSUHT9pLfq7P7+Afw/wu3c+HLhPcU6H2wrkJTjSrSMnP21yc4PkNNvKdmR0lltCnU9olBV7Kem+fEbVXsy5bAaDMh1Aa1aAlRGnV1x766ftK46NHrkjTo5eNZxp8PdVnDEZm1PR/n9eJSNbCOEVKDulv1+Pf4eFueAJ4VgSI5GQnIz1KtJHTuNeLdwS5JVCLs5lDcjHspUVJyFEbY8UkVXC7XQOcwTpIXp06uYc48K8JuVwSUkS3wU4IOs7Yz8T9tUyYu1s67i/bYFNPs3b5/5Kl5kNurQlYWEkgKAwD57150UWW891fOX5VvTOYz2bW8EZKk5wkhO+TnHl5io9bFMJSpx1GgkDKcnY9+/1175r+nTzXMYAxqPQdBXxxbzoIccWsE5wpWd/GlrPzY1yp20R1vdictHK5sqI+XM4DDmrGMddtutVeirB9x1/HNUVYJI2Hf1/KuPL8qmnmUUpu7IquEpt01ZAuipRXL8qlXuLDEBTa0rQSlSTkEHBBpog8b3qK2EKdbfA6F1Az9oxVBoqaKzVaNOsrVI3H0MVWw7vSk18hqT6QrqDuzGI/lPxrs56QpLjKkOW9hRUCDlWQR4YxSfoqaKzvh+Gf8Ao/s2R41jo7VH4eR2vNzk3Z1CpJSlDY0ttNp0oQPIVxtUty23FiYwPnGlagD39xH2VNFTRWlQgodmloYZV6kqnbSk3K97/Ef591sV9mWy4ybpKhPQVFaWUp6k9cnScggY2PQ0C45wa3EkRT63JjuyDJLQU4lIVv06bb9KTtFTRXPXC6S5v8+h6SP6w4jGKjFpW6X6369dRwj3/hiBGkx4VjUpmRjnIcOQ5jpnJOetemeO2YMYR7ZZmYzKeiErASPqCaTdFTRTFw3DrdX+rMdb9S8RrNuVTf8AOdxpc9IF0xhpiM2O7sk/rQL3Gt+d6S0oHglpPwqk0VNFNjgsPHaCMM+K4ye9V99v6DH+ILw+fnLhI/5VafyoB6VJe/rpDzn8yya96Kminxpwj/GKX0Ms69Wp/OTfzYJozU0DwovRU0Uy4oE0DwqaB4UXoqaKLgCaB4VNA8KL0VNFFwBNA8KmgeFF6Kmii4AmgeFTQPCi9FTRRcATQPCpoHhReipoouAJoHhU0DwovRU0UXAE0DwqaB4UXoqaKLgCaB4VNA8KL0VNFFwBNA8KmgeFF6Kmii4AmgeFTQPCi9FTRRcATQPCpoHhReipoouAJoHhU0DwovRU0UXAE0DwqaB4UXoqaKLgCaB4VNA8KL0VNFFwBNA8KmgeFF6Kmii4AmgeFTQPCi9FTRRcATQPCpoHhReipoouAJoHhU0DwovRU0UXAE0DwqaB4UXoqaKLgCaB4VNA8KL0VNFFwBNA8KmgeFF6Kmii4AmgeFTQPCi9FTRRcATQPCpoHhReipoouAJoHhUovRUouAzfJG8/QvxEfGvvyRvP0L8RHxp2b4aUwtRiSEsIUpRLbacJIK3FYIGxxrQP+WiP2XcfU47X7QUVtpcSpRUrKio9lRIO5AyPDfIxgV5n0vW6Lx8z3XqvhPel3ryED5I3n6F+Ij41PkjefoX4iPjTu9Y7k4nIu7oWN07qwk6UhO2d8ELO/XO9e2bJOS4yp65vOhC0rKC4rGxQcdd+i+vXUM5xR6XrdF4+Yeq+E96XevIRfkjefoX4iPjX35I3n6F+Ij40+m2XBlucGZZVzjltOop0ZcKjjHTY4z1Nc0Wi6JWgm6rUEqQTurtADcEZ9/v780el63RePmHqvhPel3ryEb5I3n6F+Ij418+SN5+hfiI+NOabFeQ4gm+OFpI3a37XdgrzncAbjvJIx0BKbNPLkVT1yW8G3ErWFFQB06OgB/sq659ryo9L1ui8fMPVfCe9LvXkInyRvP0L8RHxr58kbz9C/ER8aeU2i6LU4ty5OIBUshpK1YOVgjJ6jsApwOmcjeuaLFdEO6hd3Sk4KhqUNatKQrO+wOD06dR30el63RePmHqvhPel3ryEr5I3n6F+Ij41PkjefoX4iPjTqLDcUl4IubgaWFYRzF9VOFR3znocbEYx50VKsq32oSuY0mTFbLYdCTkjs9FdU5AIyNxnaj0vW6Lx8w9V8J70u9eQgfJG8/QvxEfGp8kbz9C/ER8af5NpnvIjp/aShy22wvKM6nEKB19e8Z28dJ7q52+z3SPMiuPXdx2O2DzGVZOsnOe0d8DCMeWrrmj0vW6Lx8w9V8J70u9eQifJG8/QvxEfGp8kbz9C/ER8adxZbgxCajxpykqLwUt0LUMJDOnYZ/jAOnp499fI1jujCEoF0UUpLYSkFQASkY6Z6n7D39KPS9bovHzD1XwnvS715CV8kbz9C/ER8a+fJG8/QvxEfGnyLabo0l4OXValKjraaJyrQskkLIPUjbw7x0xXFyxXJSBi7vBY3TlSiEnSkA9d8ELO/XIz0o9L1ui8fMPVfCe9LvXkJXyRvP0L8RHxqfJG8/QvxEfGnwWy5M2yQhu4urmLUgtrUoqDYGMjfr+959PCvK7TdQtfKuqkpUsnCtSsJ1pV49cDTjpuT40el63RePmHqvhPel3ryEX5I3n6F+Ij41PkjefoX4iPjT5KtlyckMhietDLbCUlRWrLiu0FZA8cp7XUY2ribNdtJAuywopSArKjghBSTjPjg4z13JPSj0vW6Lx8w9V8J70u9eQk/JG8/QvxEfGvnyRvP0L8RHxp2j2O7pI598dczsSAU4G4wBnG/ZOe4p26mujljlrYlAzlc5x5LiF6l5AGR1zkdegwNqPS9bovHzD1XwnvS715CL8kbz9C/ER8a+/JG8/QvxEfGnRyx3VS1LF2XzCpztHIwlWNIGOmMA46HHgTR1rt0+NMecl3FUplSsttkEaBuMdd9tHXv1HvGD0vW6Lx8w9V8J70u9eRnvyRvP0L8RHxqfJG8/QvxEfGtaqUel63RePmHqvhPel3ryMl+SN5+hfiI+NT5I3n6F+Ij41rVSj0vW6Lx8w9V8J70u9eRkvyRvP0L8RHxqfJG8/QvxEfGtaqUel63RePmHqvhPel3ryMl+SN5+hfiI+NT5I3n6F+Ij41rVSj0vW6Lx8w9V8J70u9eRkvyRvP0L8RHxqfJG8/QvxEfGtaqUel63RePmHqvhPel3ryMl+SN5+hfiI+NT5I3n6F+Ij41rVSj0vW6Lx8w9V8J70u9eRkvyRvP0L8RHxqfJG8/QvxEfGtaqUel63RePmHqvhPel3ryMl+SN5+hfiI+NT5I3n6F+Ij41rVSj0vW6Lx8w9V8J70u9eRkvyRvP0L8RHxqfJG8/QvxEfGtaqUel63RePmHqvhPel3ryMl+SN5+hfiI+NT5I3n6F+Ij41rVSj0vW6Lx8w9V8J70u9eRkvyRvP0L8RHxqfJG8/QvxEfGtaqUel63RePmHqvhPel3ryMl+SN5+hfiI+NT5I3n6F+Ij41rVSj0vW6Lx8w9V8J70u9eRkvyRvP0L8RHxqfJG8/QvxEfGtaqUel63RePmHqvhPel3ryMl+SN5+hfiI+NT5I3n6F+Ij41rVSj0vW6Lx8w9V8J70u9eRkvyRvP0L8RHxqfJG8/QvxEfGtaqUel63RePmHqvhPel3ryMl+SN5+hfiI+NT5I3n6F+Ij41rVSj0vW6Lx8w9V8J70u9eRkvyRvP0L8RHxqfJG8/QvxEfGtaqUel63RePmHqvhPel3ryMl+SN5+hfiI+NT5I3n6F+Ij41rVSj0vW6Lx8w9V8J70u9eRkvyRvP0L8RHxqVrVSj0vW6Lx8w9V8J70u9eRRxOKbXIaW4XVNac5C05206uqcjoDt12O2xohXEFrQrSuWhJ1lsBSVDKgCSBtvjBodiysSY8V5xxYWGgE6W2xoBB2HZ8FKA958a+/JqFqQokkoIKSWmjpwUkY7G26E/3RXKPSHR7iO2NsOOc9S9DfMKEtqKsb92O8An3AnpvVq2sOI1JzjpuMVTnhyIWVMlai2oAFPLa3Azt7H9oj3EijkQnEJ0onSQMk40t/wCSgAypQnqr30+T/db/AMlT1V76fJ/ut/5KAC6lCeqvfT5P91v/ACVPVXvp8n+63/koALqUJ6q99Pk/3W/8lT1V76fJ/ut/5KAC6lCeqvfT5P8Adb/yVPVXvp8n+63/AJKAC6lAPtvx0JcEx5zC0ApWlGCCoA9Eg99fIrb78Vp5U55JWgKICW8DI800EpXLCpQnqr30+R/db/y1PVX/AKfI/ut/5aAsuoXUrhCUtTB5iitSVqTqIAJwSO6u9BDViVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgCVKlSgAe3f8A4+N/wk/kKIoVEBlCQlCn0pAwAH17D7a++pN/7yR/jr+NABNShvUm/wDeSP8AHX8anqTf+8kf46/jQATUob1Jv/eSP8dfxqepN/7yR/jr+NABNShvUm/95I/x1/Gp6k3/ALyR/jr+NABNShvUm/8AeSP8dfxqepN/7yR/jr+NABNShvUm/wDeSP8AHX8anqTf+8kf46/jQBLl/wClH/Eb/wDemuDcf1qwtsBQTzGEpyRnG3hXf1FokalPKAIVhTyiMg5G2a+JgMoSEpU8lIGAA8vA++gtF2AJFmedwUTXG1g5GnOE9gpGBnbrmjrdEXEbUlx9x9SsdpZJxhIH6E/XXr1Jv+N//GX8anqTf8b/APjL+NQWc3JWbPsD+pX/AMVf/uNEV4ZaQy2EN505J3JJyTnqa91JR7kqVKlBBKlSpQBKlSpQBKlSpQBKlSpQBKlSpQBKlSpQBKlSpQBKlSpQBKlSpQBKlSpQBKlSpQBKlSpQBKlSpQBKlfMgd4qah4igD7UqAg9DUoAlSpUoAlSpUoAlSpUoAlSpUoAlSpUoAlSpUoAlSpkVKAFiRd5iT2VpH/KK+xrpMcXhTgx/KKr3SCd6JhhIApTbBFoqY8E5K/uqpmXqW0SUuDHuoiQ6EpNL8tWtR8KpKTKhA4mnpO5Sa6jiqYkb8v7KpuWCOlCyG1ZwKFJhcZBxhJTuWW1/dXhfHTydvUkE/wA5+FLqG8DeuMlkDcDepcpciLsZRx88kjVAQoeAcx+lej6QVAdq14P/AB//AI0oNIHM7VDy1YVgbk0KUuoXY6n0jIA3t2D4c7/41P8AzE1D5m2hw+AeP+Ss7fKWUKW4CpQ/dBwB7zVFJvchnWWG2R3dl/J+FTFTb1eg2MJPVmqyfSa+wTrsuB4l8/5KG/8ANKSo4Ramk/zPE/pWQwOKpDUoJlKVpWcKCh3edNsBca5sB2OBqQrCgKtKMlswcGldDcv0iXZ85jxGEY7tyK4q4/v6lpQqPFSkndQbV8aHgtW6OkCVJZSobkFdWptLUxpL0VxJaO+pJyKmNKdrtinmQ0Wi5vy20rdU2CR0CQKsX3XwAG14PupShtLiDKHSrT3EYq0ZuSVHKl4x1Bp6sRcs2VyC4Qt9X3CrZgkJAKtVJ8y9NNHKVjwrnA4mK5Ib0nT45qJNbApDu4Tp2NVz639R0LSB5pFc27kFoGdiegollouI1K76Erblr3FW/X28W4kxlMqR/bb/ANaU1+lG9MOltyHCUod+lQ//ANU/3+3pdZIIJGO6kGdY2QpRUjY/bS6tGU9YOwuTktjqz6WZw/r7XHUP7LhH6GjWvS0FEA2ZSleCZH/xrL72wqDKKEnUg9DXvh1xBuTQX0UreueqlVVMjkUVSRscT0ih5SQ7Y5zYP7yVJUB+VW7nGUBpkOOsS0gjPsA/rVNaWmUsoKkhRoe/MoCcJSMV1lSstXcvmdhhY43srzevnOIH9ps/pXN3j/hto4XPx/8AyX8KxviJ1cX+p2Ss426CgLXbUy3AtalOK8zsKxVa7g8qWpVVZG+R+M7DITlu4NY88ijEcQ2pYBTOYwfFYFZBHtDbSAdhVrBiMocGrtJ7sVWnVnJ2YKqzV2psd5OWnW1jxCga6hefDHvpQsctDTgQT2e7NNrK0rSCkjFa2ug2MrnsLB7x9tfC4B1I+2uD60pOehqnukohrsEjVtVlG4OVjrc+KbTb3C3JnstrHUEKV+QoD5b2cjKbk2R5RnKSr5bUKKivtEnO/WlmYwiK3lAO3XNZq1TJKyFupI15HGdsWnLbrzn8rOPzNe/lXHV/VsSle8JFIVicZTDbwkZIzmriI61rUrIp6pyaQZ5DT8pNh/RVDzUv/ShJnFDzYJaabHvOa+sNtPM9rGMdaqLpDRhRQo0Sg0gcpA0vjec3+4j3jIqqe44u7h+Ze5Y7+yD+YqpuLXzidROAd/OheclKinI091YZylrd2KZpFu5xPe1pyue9g/w4T+VDfKS45wuZLV//AGNVz0lARgAGqx4OOLJQcCscpPk7kZmi+k3m5uAluW+PDtk1UPXu8czBmvkfzUXbkuKGHACKsv2cyTqU2TUxhKXMjMweFe7kpsBc177ak2/XRkBTU91P114mR0x8coEJP3VSzFEk6jSarlB2uKk2XUHi29BR/prh96Un9KvI/FV4KMias+9KfhSra2kOgAEVfM29QGBgitMG4pO4mU5LZhbvGl8ZB0vpVj+JAoP/AMz7807hSYa0+bZ/Q1xmwXNJ0jele4258KJT4+FVq1p/6WxLrVVtJmjw/SNcXUAuMxM+QI/Wjhx9KI3jtZ8jWZ2yO4UgHOasuQtJ2NU/cVbfyEyxddf6h3d9IEkDAYSD/MP8tDp9JjzGebEDmfFwDH2JpGmRndJIXmqSQFgEKJzSZYutF6SEyx2IT0kaufSis+zb2/8AFP8Alrmr0oyMHFtbz/xT8KyuIsA4J3o5TicdRUfva7X8v6FS4jivf8EPL/pPuZ/q4cdPvUT+lAveke9LPZbjJPkFfGlhCA4kYqJQEq3AxS3iMRzkZp4/FP8A1sZmeOuI3ElRlITv0DSP1FSqmMEcvYjrUqnbVfffeK/d4n/zH3s0hayTXtuQUV7Le1DvJCTivRyTR7pHyRLKhig1ZPnXteKnd0pdiDitQQKEW4CqukpW+Kr3SrVtUPQA1K06cGuTuVDapFbLhwASaP8AVFadxj31GrIKJ5JAOKrpkpMFlT0hXb/dBqzvshu2s61HU4o4QnxNKMK0zOK5KnHXizDQoanMe1vuE06jTcmNhG3tMq3F3O/SwiCzhk78xY7ge4UN8kb888Q88pprG58fcK12I3EtraWYzYQlI0+Z2765vPpQrBwe4mtsaSLOZmquBpDiG+e4haQAMhOCPs61cROFXYcFbcSc4lSxgkjpTWZCUBYWeyCPvFcfWE8wpz7QyPOmKnErnkZ+nhXiBuQVsSoiznOHivc/VV1ZeIbpw++GLvEfioJ3Wntsq889xpjTJS43sRkAGuqn0qbIdSlaTsoHcEUOiraE9o9mWhuTchpEiO4lSD1waqZ90SNSm1EYoNy1IYdD1s+bbXs4wPZ94FcDBfecUgJwPE1zq/awllSE1IparYGF1U4slbgPkaKhyni4FNnAzXB+yKZHM2VjrRtsbHQjasn/ABE7TFJDRZJauagvLKhnvrQI0ltTSdKh0rJXnSxuk4xXRjigsoI1KyO6tcKsUrTYy9jS7rLbbYUSRWfcQXNCchJAzVTK4rdlK0pSrFVyXVyXNTvjtTFXi1aBWUrlJd4sqUvmIbUtI3qnaW5EkBwpKSk9K1O3so0ED6qpOK7W0pKXAgBR6gUithLrtIvUXKJ04c4nCsNLWQcbZqxuN0BbJW4Anvyaz1DBacCkdnfrRcpsvtEqUsgedRDFyisslqFmBXm4+sPLGvKQdsVxtt+ME4UPrNBvMK5pwkhPnQ0mPrBrE6jnK7IsO0Lidt46FK1E9wq7ZuICdSBsKyaCVxpAOcpzTa1NccbSlsYSe+tilTUN9SrXI0KJd0BaASAM71odpktrjpLawpOPGsCbeWggFymK0cQOxEFIWSPfVaWLjF2kMi3E1G/3duHH1bau4ZpOfvy5qxpGAO4Ut3S+qmka8lI7q92ue1kA4FLqYxzllg9CXK5bSHH3znScnxqtl216Qg69s1dtTmCnBWM0PLuTITjIzS5W3bIuVMPmQmw0sagOhNFtSlF0HISmgZkjmEacYoVtw6jkmpWMnFZU9CUPMW7BDWMjOKrrheigHvz0pVceUM6SaHW+VjBznzqz4hKWlgbC7hcuY2SvAx4VSJmpW8e2NPnXSUypaDil2W2tlZINZZ1nLSQDIl5snyogPoGM4xSxHdcV30a2pxXUmlXcVoRuN0OWyEgg0abohIwkgik1ttwDIUd69tElfaJ27s0+nUmkLlpsNZd9YTuR7qrnbdznMgFVcG3kto1ZNdIV3S24UqOPfUu0txDZYwrSpnBAAo/1lUbZQ2oQ3toY7Yz4ChJl0bWBvkmhpJaC5Fo5PQpO/WgZD7SknIoVlwOg4r5IR2Dvjyokk1dCHqc0PpbV2OldFzQB7O9UipIQ+U56Gi9QUjOrrWZu2hmkgozQ5lJTQM2MXEFSKiUHVnJxRRcAa9k0uykIaF/lKQrfrRDbKnN812fwtZwCK8NvcvORVFTS1YmUbnZJWyNjXl2Rn31zck6ttq5EJWCaq03sJcQ2G8otq3/eqV5t6RyVfzfoKlVyMjKbIV0I7kqNdNeRX1kpU5v3V6d+0e9SQOmMpe5yBXh4FsYq7bQFbCvD1v5iutXydCjFh5CnFDCTXgxV4yRTQ1bAle+5r7IjNpSeyBUOlcgq7W2hpCcgZNWclbYZwcb9/h4mqZ57kOkAdkUHdZjjkVaGMhZQUg+BNMi1axKV2KD6F3y+rUvPqaFbKzslAyMDzJpiQ6iO03HYQlCEbBKdgBQbaExIXIazkJyT4nvNDuPatRScEHUK0wjlVhr1DZDmS4rxFV9wmFLityAcKBG9fQ6l7fVhXTrsRXKQ2teAkA586q52GRp3OUialbBH7xRnfvIqrF1HNTleVJIGcePfREq2vrT3Y6YBxQLtkdbC1IBJVg+YqFWJdFnZFwIlhCSSlW43HhRjFyOjUr6seGTVDLivMrRlspUBnIrw2XApsqJODjHduabGomUlTaHOHP8AmQRuMgE+Hn+VXdvmNyGQpQwo9ffWfsSVNsLaCj13GaubRLIBBOMkkEHpnvqJWkVcNLDHcZTKWVBRAqhiTg2Dk7d1eeISSgOpICVJ++lZMpQXpJ6GuHjaso1LdDK7xdhkuNz7Jwc+VA20GUpal9B3VX6wsHfejLW8YzhIwffWeMnJpy2K5rsuUwhqBSMGvjuWwOma5vXhSUYAG/jVY/NdI1KSQD41NSso6QC6L2LdiwdOc+deLg9JlJ1qAAxtk4pX9bPMBz30VInrcHtZFaKGKeW0iVqDBbjszlY76dbNYFPMhRRqP3Ck21voFyaK+mcE1t9hKFxEBvGjHdWnCwhNuT1JSM9vHDK9J0o0nx7qRp9rUwpYS6CodxGK/RcuCmQ0oBA3G5rNeJbW3FUrmNJCfHHWn1MNTnqS4GQJdS28Qr2gcHNX9uVzdCU7lXSqi824qubnLCtKt0gDer/hi0uhaHHdRx3GuY6KzWZTQt2rEtY1l4jyA2rq1awyvC8k02Q22m4vaA91BTi0s4SdCh0p86FNL2US2gJFrRoOwyfGqW7QVNOjRqR7jsaMk3FcVZDqsYqpn3kycJGDjpWarGEo2tqRmQQySgAFRP119U4Qck5quaE11QCGyQe+rRi2TXB2kCsjg9kCsd2JKSACKJSkLOR30J+yJDfaUSB4CvOtbW25xQoOKvIm9tCwUwAk4G9AORVEkmu7cwgdoV4kzkgbbVeyYFdJcLW2ciqOe8lZO1HzJSVKNUs51OdqWou5KVz6w8EgZzRzTxUBpPSqVspIPaOaLZUo+wDVnFsnKkXbMgYwrrXQ6QrKTuapfnkKBAyKsozyHEgL9qnQTejFOIRl5XZRuKClsvaskH6qJTMRGz4VwfubLn72BTOzsjPOOoO08tk9oGri3TGHMAntVUqkMKQcnNVipHId1IO1Ud47C2maGy602OozXOXIbKdjvSKq7r2BWc15/aqgRlRNUcmIaZa3BRL2UDfNFsLKWwM74qkE4OkHNHR5aCntHelypXdxco6FmmWBsdhVkh9pUfupdK0LNeg+UjQlW1LytMzOIc9JayQFAmg9Ws4ry1ESpWs9aJSwUnKRk1aKb3KZTvGhocAzXR+36EkozXFt5bSh2cUWm4g4SoUxQiVyHy3Q3uQrPXV+gqVd299osZ261KnskRkG91R6CvLIcDma7HBNdWsYzXaUUewD4LnaTk1ZpI3qkQoI3zXtUtQHtVN7bkMtnXUp78VVTpIwcHavPNU4nxrx6tzU5VmrZm9iCpdHMUT3mq6arlEBXeN6v5EdKE7DGKUeIpYbUdwAAQffRBe1qXiCPPfOq0qztQiSrC8DbG320HBc58glO6id/MVfxYfNa2BB6YIpzmPjC4JbozqnFnQCB132Puq4REy2DjJ69akCIWQonGR50Q46ENYOAfAUmTuPirAiW8ZyNq9JbBPQUI7MAVsdq6MS0qxg0hvU0KIQ9b230+yCaopNlUFBppBxqJUR3DupljvpHftRSFNlWcjNPi7IXJCdIsBDSlI0pKk5GRVNGZkRXglW2FHp0z3Vpy221IPfmqK4wELJCAB7qntGmUyJlMptUy3uoIysAKAz50oyEBpzIJwKbIqlNSHI57xuc9RVBeEI55QCAUjHu78Vkx0YySkc7Exysrw/g7Gp69oV1oRY32Nclozvneua4uS0MiL6BKDrzYcHZzRlxAznNK7Egtqwas2ZanPaVmqReRNMszsWwpQwOvWiFRAW+ycnwNdISArrj30Y8hKW8jrVlPnYlNWKDSUO46HNaXwDfQgJjSFe4ms9kJ1LyRR9teKd8Yow9WUKlyydj9BIfCmwpJBTikb0hyo7FsPOxrJ2HfVPDvcxlgBp7KQOh7qVONpbk9guOPkuJOwIxXanWvBuJdyuj5EXHecC1pGTTRafVyUpwDnurIEzpLaSEZo+0X+bHlIJJUkEbVjpq7uymQ/QcXh/1yMCcN5G2KWuIOGpcIKWkhY66hTfw1fWZ9uZcbUN0jIr1xFNb/Z7usjpsK2uEbDMisZJNZS7FVzNKlp8aXPVVrkJUlvCQd8Vduha5CgokJKs1ZNx0BvVpGaxyUZi2kd7QtLbQCkgYFGP3JhjfUBVJIkpaPtY8qq42m63uLDUsoZWvU85/C2kaln6kg0tyS0RCXQYJV5QpXLGSs4wnG5z0qpM5K1ZIIBJGSO8daOusuLd79YbzbZTMkIntxH+S2pAQNeWshQB9jKc/wBmqDiOUpuxwCCf/XzR/wBSKl31uS42LdTzXL2IzVa4pLjunO1fZyIkfhJN8SVFuS03HZb1nKZIUQ4T5BKM/wDOKNvEFmJBuRFucjsQ2WXI1yK1kS1KKcjc6TkKURp6aaHAlRYMi1sqGrO9c3LSys4zmrq6RvVGr5IEN1EJl6OmI8dWhaFqHsnvyk1R8V3hiPxDPiQIIisxHlsghxSyvCsZOT5d1WyRiS1YHetTDG4SKDdCWndBSUq6Yxv9lMHEiVM2h9Ma0uKaZiNSTcy4oJUV6c4z2SMq0gDfbPjU4vMO43Gc4mGGJESVBQX0OqJeDqN8jOBjAxjFWdNciGisa0lshxJG5TuMbjqPfXJWlohSU9knAONif+zVqWWH5cK3OqWmKviGczjWdSgA3hOo95OBk+NHx0Jmx+G2bnY1W6O5PlhcXU4nmJDSCDlRyNxj6qsooMotvOoLfaApXu7qG1EpxTbwu1b789epjkZtpMRttTEAKfcScnClHRlxQGO7vV3CgLpGsFtkcRSxAXcG4cSK63FkF9hLLri8KHaCVqTuCM9QevfVZRutCuS+ooNyH3PYThPmaIDUxwasAj31ZXc2608VRz6toty240pcbWTpS42hakA9cdogb5rQrhw5ZLTDnPesJfXa2XHpaSs4Ul0H1XH/AE599JjSbvqUdK5lPq0rJLjagAnVnB6Zxn3ZrqpiQlwNcpZczgJxv9lPTpZZsE1Ter52wsvKJUTuZSRtnp7hR6VpX6Y2k6dSvWEdnx+bG1S6C6inRMwS64g7oV9lEtSlbaQfsrSGLFAuMmyCfbzZFy5bjDkcqWNaEpBChryQSTp99ceJ7TaYcNh2Mx6tKLymy0lp9KFIA65dA7Q78HvqrpSiri5UHZsRkS1DvxXpMlZXkGi7jEQpBLaRnyqsihxCikg1nytsySgX0KaThKjVzHeSodaWG2sEE5SatGFDQN96vCD2YvIXmhCtyaFfSAegIqsdunIyCelVEq8LU4ShRFEoJFXAcYDpSyoA/vePkKlLtquK1x1kke2fyFSpzIMhsHragfYV9lehcMbYI+qmgwGifYFcXrY1/CK60qL5M9IURuKD+9iuRuAUQAas5FqbzskUIu0Ng5xn3UqpTmtmQfGJqTgA1ZR5idO5G3WqWRFMdPzYxSnfLvIjPrYUooSeh1Y28amDtoy8YpjbdL8hBcShvU2nYnPXypI4jmJnjW0jl9xT518iPuPw2QnspccUpayrOEpAyfzoZb0aVJWiMpWQNvjU9paVjoRoJQukdeG2gX1KWdgcedPsaKeWFDYUmcMNLXL5a+qVYJrQk6QkJJwBTb3K2sivlANNk6j76V7lcQ2FAHNW3EV2jxkqDmoJ8aQJ1/t61kKKk+dKqN8htOy1Z0fuSi51oiLcTnOqqNxxl462XEqB8DXhLuhXWsrujTFpjizdMd9HsXMHHa3pEErB2Nd2ZqgoHNXjNg4o0Vq4gDrkVylSQtSTkDelJifkAZoxMouYFS5k9mjxNXpveBnGCTS/e3SmS4opwFbirVx0LuCFFQ3BBJpfvLuuQo6h5DyoxPtU0cbGrUES4cnzrp160Hrx5VErJO2aw3yqxgWp3U3vkdK9t5brmHD4V7Tle2aRN3ZYsI85beMHGKPFwW+AhCdSj3DvqnjQXXXQkd/iaveWi3xy3FTqmKTsVd2a1YbDzm+iLQpub0OrEFxxYMhaWhjJyckfVXly7W6GtTaHQ6pvGsAUPGtF3lLMaDHcclOganV7pSPM0y2j0PFKVvXC4KTIcG+jcJroww1KDva7NccPFblAviSL6whqM24Nac6sHAqetwrgFAOEuDY46VoFq9GUSM1y3pan8bpJGMUHevRKZWTAuamBtqQoZSoeG2Kdkp2tYs6MdjNZlqVziGiMHdKRuTQkeK+08kyGy2knoRTNcOBuJLGt0MluQwQSFqJJHu8P9KXI0x1uR6vcnVB0HGUq8PKkuhFL2NxcqFloOtkuaYCMMLUB4VaOX0yAeavPgKWWWea8lDSk6T0NMcHhhtTWtx9wrPh3VmXbSeWxmtJaMqJk1pCitWKAdvvzZCKMvPDj7MgI5mtlXRRpVucNyC8UK6eNIqRqx+BVqx9l3BbhUSqq8yVZKgtSSQUkg4yDsRXB5wkkd1fGwtJS42ohaCFJI7iKQoWdwWoZJakW6Q5HdLkd5CgVIzjChuDt37/fQynVKbCStSgCSATnBPU09XGc3L4zu09M+A5LeiBy2OvuJ5aFkpGFZ2SoJ14Cu/HlXmauNIuUiM5cLe7Om2VDS5SHE8oyQ4FHKugJCMZ8ffT3S6MZlFiXN9et8GA3Hbiw4xUspSpSi44oAKWST1OkbDYUZBt71wbEZLzzzTDa3Q0pzsoSkEqIBOOmaYoi4jHEJajybc5MYsraI76ylUdMkBIJJPZ6ZAKts4o2bc3bXxFbJEx+AmYqxurW6xoLSnSHQnGOySSANuppqp31bIsKiYr8hvkNOPvNttlfL1khKUgqJx5daBUy7LbmONgu8hsvvKKtwnUBnfruofbTXF4iH7divNz47MqZZ1NPPlSUpEgpVp1Hok7JyaXOB5j0aTfQxcYsKc5ALUd191KUFfNbOAo7ZIBwfrqXZNIi1xdXJdebTGMl0xgchorOgHxx0qwEYrQpS33CVFJOVHcjofq7qYW3Ic/jaHb3nYr71xgpgzJLKQpHrKhs4kjYkKDeSOuFeNUfE95aF8ki3BKI0RYYYKQN0t9kK8ycZ+uhdWDjY9TLPKSmcl9DoVCw8+Fr3QVFI1depJTVHLuExx5KnJshxaclKluqJTtjbfwp8vXFTzF74tuUK6RluS4LSoK0rSs45rfZweigNWxGRjNGWydZ/wBr8QuRXY6Li+4w4y6h5pkKSW8uhC3EKQO2dxtn7RVnFN6MLIyyFGnSrpFYtK3EznlhtotuaDqP9rbFVrCpEl99cqQ6tbpHMK1lRXjx8a0cPwx6VYMxluPChomMleh1KmwRjUoKACcE5OwxVVaeHjZeIbZKvLtvft3raealiS2/hOc5UlJJx41Rxb0RKsLjjevtOqKjgDKjk4AwB9lFsr1BWp1xQWEpUConUB0B8cY2rSoshbV5sKr9cLZOuLU11wvx9CkIj8vCUrIAByrcA9B76C4ZE1+Tdpj8uO1fH2EpiyHkobQjChqCdtKTpGAatCFmRJXE66wpUQoZkFxHMYbWlOvILagFp6HpuDig0LkNvB7nOc4b8zUdWffWkcXW1dyuS5hkx5So8OMmQ60saVL0BJxjrv4V04XLcOHC9Tm22G6ZubiqWtKVKYGnCU6huk9vIG+cZqzhd2EuHtWM3euMmS6DJkOurSNIUtRUQPeasmnrhdJMSMl9+S+4oNMpccJwVEAAZO1Mtu4gj2xVogwZUJEV29yBKBShWY5U2E6iRkII1eRx5UdwRcGo6bf+ybjb4CWrktc/1haUKcZ1J0YKhunAUMDvOfOqOmtmyrp/ETmZDrbimnshSSUkeBFGx1sk5JGai4aZUySptYKVOqII6EZNCybK7klokH30jYzOJbuqZLO2M4pekT3I7qgjcV4TBnNEhS1FI869twivdRz76o5tbC3HqASZbkg77VzCNWMnerb9nagSBmh1QtK8YIHjSm3LcjKWdhQn1NXT2z+QqVY2KAEw1bn2z+QqVbIyLH6HTKA6moqUjvIqjckDOxoJ2Xvsa1vHO53BjXIQckkUM5Ibpa/aB1Eaq9etFQ60qeNk9kG5YzJCVHA3rPuNYaX3g+gDUBp3V4d+O+maU+oMuEHtgEppOujT7rCXF8wpOyioYPn9VaKF5e3IdSXMlvSV8OuIYJLqgtCQnxynYUBwvCkftptlbbiCBqdCxjA/+6vuAJURDk1t0ABj51oH7D+lE2pQl3t+UFnS47pAIxnG9MlH20zqU5XhYubBBDDy1nqTXPia5riLASTp78VcMJCTsMCgLrFakBRcGdqdJ6CY76mbcQcQtPIKXHBjzpRfkQ5IKSpGT3g0x8WcNRFJW5FdcjvZz7XZNZnc7dOZmEAOKbJAB9qlxjm5k1JOPIsnm3I69Ud1Q8N6OhT3VYS6cnxqoU09DlerOOBxWkHY5oqMleckVWonF2kTSaeqL5Eg460Q09jGTVAp5SPdQcia4vZKiKiMRrnY0CD2+ihVzFaUMHqKyaG7P5gKJCsZ8aeOGnpqVp5jpWSd09as4X5hGq9rF400VuuZ/cOCScCl27xDpcUFFStW3cKYvWC2qQsBOCo9/hVZJW3KJy52f4TVaso2ynJxUk5i40yrHaO9FNNKA3FEutIbV12rk6vbCazOCaMDlqfUpz1oyFEQ87haghI6mhI7Wo7rAPnRqnExw0haM8zJ1DyopYbNNX2G045nYtJLhixgYYBcHTIzg+dN/AnDynWUyriQt1R1Kz0B8AKQrRMfkzG0BslBcPU4x51ttkQW4DSSdwM11rKKsjowjljoXENlmOkJZbSkeIG9en5aEkpByaXrrxHBgakPSUhY/dG5qlZ4mhPOAh8EHx2pM520Q6FO+rHhuUe6iW5XnS9CuDTqAUqBzR/PQlJVmoi2RKJaurQ62QcHPUGs+4r4JtFyS++mMGpShnW3scjptTMie1rwXEjPia8OOJWohDqVeWas5BGNtDCmFKtV4Uh9bqi0Oh2z/wB5rQrTd0OhGV6cjYGqP0q23nNpfbADyTkKNK1hkSVIAW8DjGkg5q2bS6M9emlqjU7hJak6G0nteFLl94fkykrcIaG2wJ3oGFNWzMQt5SlYq2kXCRK7LQ61RONVamK6Zl0qG6xKW29lJSelGWy0XK5Jc/ZtvlSktnCyy0VAHzxTBf7S8El1Yyo77d1WvArS59utLa37hCRbbkp5bsVAW24DoJ5p1DRgD2lbYz4VjdG0sr2JSM/RZrrNjSZMa3vux45UHnEoJDZAyc+G1eo1sun7KVcUW6Uq3p6yA0dGB1OfDzoi7XuPItFwt7C3Mu3VyWCPYUgjA+umBvjeCLTFU0hEe5RYHqSUqgh4L7JTs5rGEnO4KT1PWqKnHqCsLNtRfm4z14ssaUI7CVJdfbb1I047QIIwRjqN65cQNXk2y28QXh1TzdyCktLVsUhBwBjoB4AbVe2u+WhEe2PzHbk0/Bt70JMNplKmlLWlYLmrUOuvcYzkeFKl1lxZfCtnh5fRPt63UaSgFtaFq16tWcgg7Yx9dWUUla4NqwO/Hn8gO+qPlvkes6ggkcrVp1/y52z416jWqW86pqSh+O4l6O0dTWUpD3slRzttggd9NfCfGsS28NxLVcIbj2X1x5S0pBKoCwoqbBz7QWsqHuFVb3EzL0++yZDbyTPucWU0lKQdDTS1HSd+oSUge6r5Y9QSQLL/AGhwnHenQJ4S767JtZUlsahy9GVAnOnOru3GOtDXnha9W61xbmI771sfitSTJS2dCNYzgnyzjNeeLrtHu1rdjxkPBxd3lzxrSAOW6EaR169k5phj3W0KjtTY7lzXck2VNpMRbKQyVcvQVa9W6RknGnqBRaOxOgps2K8G1ftZNulqtw3MnlHRjOM58M99WVgtM66Wy7TYiApm2sh93zBUBgeeMn3A08/KmJ+yGFtspj3Fi3CBoVADuoBGjZzWMJPUgpOMnrSNaJMO326+Qp630M3CKGkuNICyhaXErGQSNjpx12zU5YplGlcs7nY7jbbZDuTkd122vx2nvWQ2QhJWAQnPlnGfGjo9pmR7a3PkW+Q3CcwUvKbISc9N/OqB7jCIuLIZAkqKrExbUIUOzzUOoUT19nCTv4033n0hQbnbrg/b2/V506OlhyOYAJA7II5uvcDG3Zz0qyyg4oKYsUlch8Q4Ml8MBBcIawUak6hkd22a9wS5OUWoUN6U4BkpaQVEDpk4oC5cQi6Rbs3FRKbEt6ItGoYBS20UqB3/AIiMV84XZUbZxO3MmvQWFw20c9tBWUkvI7gQSD0Pkam6voRo9D64qU7clW6NBkLnAnLCWzrTjrkd1UlxjTn7p+zDBkC4k6RH5Z15xnp7t6YGOJ4cW6zkPtOyIL9uZgetvRw4tZbwdam9QyDjGNWcAUJK4miSrpLQ8883Dctgt7MuLDDa2RqCjhvWcgjKfazg1SVnzK5I9RTNiuSb6LWq3yBcj0j6DqIxnPuxvnpRAst0N1VbEW6Sq4p3McNkrAxnOPDzq5e4hs6J6YzLlyRAXZk2tUsspDyFBerUE6sFJACSM5wTXWy8TWa1TZ8dKZUmBKhNRTKlMh1WpBBJ5ZX7BxjTq2wPdSnCL5kSiisiPyrXNXEuLD0d9s4U24kpUPqq5bvDJOnIBqo4ovUW8zg63KRyokZDEcCJyeYAdxgKVjGTgk9BiqJb4KcpNIleLshMoJPQeFTI7wwFDUe6qmUtbazoTkeVUEGWpCxncUxwZjK8hzGfCjkJkrM+WuYVq0OJ0799XaozbhBGKpZyEIIcax9VCKuriE7EgioIUbj5aoSUxlY6av0FSqbhq9uPW9RUDkOEfcKlXui3ZmmrcycihpB6nvqJeHjXB55Peayum0zp3BlEpXnvru2vCdzQrqgrcHavgkA1ZwREWdpTRdaJztnceI8KXbkptuzLC1ua0KKCnPWmQOpS0pSyAkDJJrPOL7oA+403us9pSR0Tnpnzrdhk2vgaqWpRCa9DmJfaeKXcaUtjwPiKbuC5j8ziGKHlkgBRCQTgbVnZdQ2806rK1KKtZNPvoxUHLg09tskj7q2aSdzVCcl7KNbWUoG5xQE9Q5ROetVt9uaWVITqxvS1eeIikaQdvfVJSHwpvQ73KMmUVJVkeeaV51gcQollw48CK6jiHCu2a5yOJkKIQjBVSYsfKKAhaFg5eAPngV9NoJAKU/dV5bETLgjmFsaPKme2WkLTuMmpTzOxXKkrmS3KErJSBg9OlJN7bmx3OwhQa/i8fr7q3S+WZLUnUoAb1RT+H1OHmRsZ7x3GmRkkLnSzbMzGJGnR7Y3OWoltSsBIPa9+O+n7glch4F1erQgZJIIq9s3D6i6hUlhohP8AEKvuJizD4feLKUIWQEdkY6mr1Jxf8VYUoujFyk7iw66rlJKR2T3g1wUrAJG/nQMSU40chWB3hW4NWSS2+gqbSkOkexnakJKWrOFUm6juVM11edPcKFQtWsE7iu8oEOFRzXxpSSNwKS0VctSB5Qc2G1WFwiCWxHc1kJ/gHfVYspzii5EgByOGyMNpKdOevnWjCybk0zTh9WMHCrobuCG1AKUpQAAGyQK13mLejpZaVygoYUvwT5edZ56I7GZRkXGWAolWlvy8afb6+3AYKlq0NJGSa0Tlrc6kI3sjjIhwUo5TLLah3qUMknzNK15sTAUXWEpT34TSlxZ6VlW/DFgtZfOrSqTIQTk/2U+FebbxTfr3aVynbeyrQoDDKFNOHbOQDkEd1UyuSuXUkpZRz4eeUlOhBKkg/ZTJMecTD3yK8cEWEi3tyJCVJde7ZQe6mG+2kPW9SGxg6etVSdglJZrCO1G9feHNcXp8jimOPaI6GRyCW3EjZWrvrF7nx1J4cnH1q3vqAWUhKzyxt99OnCfpStN/CWJcdy2vk6UKcVqQtXhnuq6UrXIlJJ5Uyz4zZ9as7nN7LicgnwNYtw7Jfaua2lEFLSjjHvrd+J4LlwsslLKu2UZBHfWCW/mN3U5IbWF9s47s1MNU0Krq6HqS4o4KElRNH2h17Xhe1CtvtlAIIIIzXduW237JGqsPa5ZHIvYv5TSFtFRUMEd9ZnxLEa9aUW86ehx30x3G6PqRoBIT5Utyipxe4J376ZOup6IlyuVce1uPKAQk6aPRZi1uob1cWtYbR28Cus+Y2UYQN6TmTKN2F95gJTpwAaCdgBWCetdJslRdPhXNyclKAO+i5GrB1tJbBGOlAyHE56V3cdU8SRVe+0pKjvnNF7lldF0LHMW+luM162eQ3JUWEqUEJWnUAcgb4phs9sd9UYeEZwMvK0IdKDpUd9hgb9D9hqptPE7sR5SkQopCo7McpWpZB5adIURnfbqDtsKsGOJnmYjDTUSPzmuV87leVBsKCRjOBso9BvV7xWty9rhSYUuUuMI0VxSZJUGVlBCVkJJwD3nsnHupbNnl3S5zIobMZcVvmP8AMbWooGQPZQkqJyodB50b+3ZvIQ2iBHS4A2Fv5XqcCGltJGNWB2VnoBvVcqZITcxNdiMPLDLbOhwrSnsJSkHKVA57A7/Gocok2SK1HD0hMT1xKmnGVKAb0kgrBWpAIBGwJQrrjpTfw9ww8SkuOMIXyC+W1E6sArBHTu0HrgdN8mpY59xfjPQ35PMakOBxaVJBA7SlYA/hJUTjpToypUFgOIZjkhgs5wRhJUpR2BAxlR2O2w22q0Ur3KuUWEW60MCMlRSOlelWqKonKRS6eJ0RWVNEnKdqpFcWyeapWOz3USqJbFUy5v8ADjskhAAIqrixWXRhQAzVTNvjs1zK+lcE3FTY7CulKzNso0ME21RgjKQDili5sttglsYrrLvDqmsJJyaqDJcfPzhqWWjTe7OfaKtq6tIUo4xXZpoEbVZQ45JyBVGkRJWAmmynfFENqUFAnIxVh6t5ULJb5Z6jFCVxeU6ok7DmK++jEIZdQehqpWwXEak91CIccYcxkgVNrBldzQeGoiEwXNI25p/IVK6cHvhVqUc/7U/kKlNUC+Vl+bjtjVua5CVzF4JJpZXK0ue1R0Ka3q9reonSdrmkvHH9Kdulc46ySVqxpoQyOYUpHfRcFpcyQG2W1KOcACkQpyvdlo/A+XSQpTbDZ2S66lPvHXH3UksRTOtUuRp1POIceJ7yoL/0rVGocJqQymYgSHELC8A9lBH5n7qtbi3HegaLelpgoPspACfcR0rRSi7avU7VDh1VxTn7Nz85GGtKGz/tFbpHTPdT/wCjSI6y+/zGloDbecqG2T3VoIjJbLanHiVOnA1doIGO7pvRF2LUaCEsDCAjr4+daYtNj6mCVFZr3M242luBeEHvpSv8wp06Mns5Jpk4ncS8kODcHwpOlrSvSD50i/ImastCq9ZdkOaAdNW0a1OhkupJKsUvOtyo8hcmOA5vug99Xlv4lUmOgrir0qHUffTLaaGdO+56RxJdrYhLTC8JT4jrV3auN5A0uKdIPeM4qgfukCaCCFJJ23GcUMi1tLdSpMlog9BmoUEWzSRpzPFluvNukR5jmmRyzpVnp9dUnD3EZB5L6grScZqrPD6Y8Aur8O6lJt0xLgpGSEk7VLiuRKm09Td4M1qQgEEA+Rpb9IMwIbixEqzqJcV+Q/Wlyy3F8rQlskkkCut1kCRdXFOEK0YSD12AoUb7mTiFXLSsuYOwsJSCo4HnXZUsFOltOPE95rk9pKez9tfYwBO+KjKefue3nVutjmpyR+931XSHSjcHFW72AjYjFUFycSCe+onG5KdzwJR5gGatpwRhhSVAkjJFJ7j+Hezmnmw2ZFzsiZtyntQI4c0NrUNSnMdcD9atRlGDbZtwsJSnlSNk9FulvhtoDqok/fTm7GZkICXEJUf7QzSZwfHFuiojNucxtO6VDvFM67g2wklZ3pmZHUcGmVN34QiznCtS1J9xxQ7Not9q0hRLqs4AUc5NEv34LJSlQFKd6lOzJqEMPFC0kK1DfBpTfND4qW0hnunpAstklogPTI/rpwOXqHZ8vfRcb0hWl1bUeXKjsLd2RzFgE/VWaOcDR5cj1mY2l2Qr/b6AFVZJ9G0CalK5Pz7qPYWsbp+ymJsq6dPmPV0sMC+LVqCA8nvGN652/gaEznnMtODwU0kj8qrJKnLCqBh0rQEhpSjtnwput16Q82NW+RQpcmVmpJXjseXILUVrltJARjGnuFfmfi9gQ+MJKAQUpWcpx1Gciv05MfSpCik5BFfnjiW03CXxdMmepPmElzJe0HRj31eElG7EVb5bhbw+bSWzgEV5hoIIOSTX0kKAI7q+oXoGw3rmSqxkzjyYUpIIycVxUxr9hBP1V5jugvjVuM99NcNTAaGQn30rK5PQi9haatilDKga8SoSW04xTWhbK1lORUftwda6BQNOjHKtCjdzNJkTC+m1VsqKlKc4rSpXD4WMpH21Vnh7Dp5pBSKmzLKdjPYzLq3NLbalA9Nqu2OGJUlvURpz3YrQrJZY6VBRSlIFMhaisoAIFTbqRe+xjvyOkagBqHnVixYTFbT6xlRSMAnuFagUxinKcA0tXxYUFJbAJoslqyG2uYvKYjoRjSM+NLN1U0HFJzgjpTQLa+4gqUTSjfGDHdVzfHrVU/gC31PESe5GeToAJHfV45xKv1UoJ1KIxSzB5Tmc58jVg1E5hCcD34qJSy8y+QrH5GpalndROTQ5f1mrW4Wktdod9UDiFNOEUQdy2UIdJA2ND6nCe+uyFaiM0SEJKCSMUzQbGKe5xQCtsauorkkYWRXRToBwO6uCl9snFWdrFpW5FvGCcDJpntDLK0jURmkqK445sgGj0TpMVQISo0loyzuxzksob9jBqhuMcqXkAjyr3a7mqQ8kOEg0zuMRloTkDJ76laakQk09RTRltsBYIFdJENqRGKgNxvTS9aWnYxKCDt31QI/o8gsn2fA1dO5EmdOEi61b3kDJAeOPsTUpu4ahsGAs4G7h/IVKaollMziVOIVscmu1ulOKV1ye6qVpLjzqUJSVLWcJSOpNb36NPRsi3IauV+QFyyApEY9G/NXifKr01KfyN1KnnYDwZwlcLmG5c1JjxOoJHaWPIeHnWjw7YiC2puNGbbQepAyT7zVytxKRjUPcKFeewNia1ZUtjo0Kah/FFZIiNhJ1RUbd6U4NLVxiNN6n4q1IdRuUdyvKmSZKUlKihWcd1JPEM04LrWUuA7gUirY72CjNvcXL9eiy21hxWnOtBHgQdqKuN4DtvCQrohI3/lFJfFa9mCjZClHbwJOcffVem5K0utk+yRj+6KTTdmzRxJJU0vidJtxQHlMvH5tRxnw86rJkZSAVJ3FVV0fLizvRViuqVD1KWdjs2s/kam1ziqV9GERmxzEbbE9DVxHtZYdMmAhLw0kKjqPTPUjzqvuSCwpBQN8UIi9OMPBSVEHvHjVoytoVyxekhibtlkNqDUpCWJyj29adJCifyqsv3DNvi8kxJiUjQpajrznHTFFxuKkKSBLbQ6nGMOJ1USL3bXE4jQGULP72jFaIyXQrKlbVSEeNdLs2l6M1lyKdhrJ286iIinw2pzdwbmmCYA5lLKNS3DgJSNya8Rre6jUXcJWP3BuR7/ClyfMVtrJnW3PItzXMUNTpGEJ/WgJUoCSoIOwAB9+Bn769yo60kqUsqXj6hS644tt/Sroahy9myOXi60aryovxKJHtV2bfVp2NV0UakZJqxaCOWKXYwaIHemOA4Ktq4lPNQSonevcjTqyMZrlz0pR16URVtyr20BHYwG9aKzAjnhWJMlpU9FjRQENAkBTilq647tifspALwcUMVsvoylRJ/Dv7JntpLYWVFSk5Tg74P/ffVJ0+1djp8MxHY1deaDfRnczM4f1OqTzm3CgpH7qdtP3UVf7iUKUArpRM1+y2uS1b7YI7S3CcIZHcBnc+NLPEaionGd6iWitc71OOaWZoFTdFEkhW9Bwb20xNW7KXhCSSaHt7RW5g99Z7x1Oft8tTLIIK1qIPu/8AumQjfYXUkottmov8fXKZJCLVGbQ0PZ1Y1EVZW70h3OAtpV1iJMZZxrAGfur8zl+RkqIWok7mvipUhtSVErGnpv0rRaK+Zn7Xk46H6+4kusS62NMiO4FJVhST4GgbHc1JQkKNY/6PrvMuVvejrJLaFpII6b1pkNlTah4Utq7uXVkrIfY8vmo2OcikUybvOmx5UKXiEp0R1sp20HO+od+d6Y7SeapDSnOXr21E4xRSrJE4VstwlrkBxogvAqIHaG4Hmc0ucXJWRMJxheUjJ5MhAeWEDGFEYr0lzI8zVCiVzFEqPfRbcgJHU5rnuKd7HnLXZZpTlQOcVZw0SZCg22SR5VQImDvNMdgubbeNwDSqcJX1IkM1osRThbmSrzNMbULCcbbVUsXxoISlJBV5V3N4Sepwa3xSWxW6R1n8tlHaA99Jl1uaEOKSg5NWd4nqeSoIOaXFxVKJW4jNS5ckLbudId0eKjlWkUVIkyXSnScJHeTS/JdRFUD0FelXtKUbHbFVaXMFcLuN7cipwo4PiKKsMxM/tuHOKR7vPMkHG1fbLejC2ztS56aouoXNa5jDbRzjpWfcaNsulSm8aqAufErrykpbXjyoQrfljUvpVXO6BRswG36ULSTjrgimmGUEgnA2pUlsqbUVHs+6vsOe6haRrJHhSpJsc5DHeCkoyk5HhS/+znZCyQ2ceOKdLBANx0laNqc2+H0IaADaQPdTqcGkLc3yMkiWN1YB0EfVXt+zvAFOnatbbtTbSe0kDzqrmsMoc0nSRmm5dCmZp3MfetL7bm6SRQkqKpv2gR7612dEjBvICc4zSld4okoUlphTh7tKc1D0WpZOVSVooXrW6htIzjzq3U/HW3jsnPfVXH4YvklRTFtspeenZx+dWsL0ZcayyAzbXG0nvdViqKrTeiaZpeBq7uLRWLebaWS2QCN68PcQSUY0KGB4082/0F8WyB/SXYjGepK9VXsL/wAO81Q/pl6ZSf7DRP60xO+0X3Mb+3aVnbvRnkDjD5vlOakq8e6qm63Zbj5cQfrFaxcv/D/c47RXbrlElKSMhC0lony7xWWcSWGdY5a4d1iuRpCf3VjqPEHoR5ir9m46sQ6QycG3t1drcyTkOkf9KalVHBzem2vDf+vP/tTUq6I7NGqeizgkQAze7m0FSVDMVlXRH9tX6U+XDieKy8qOhTst9PtIjp1aT5noPdmqzi+9K5qbdBWW3HE63XB1ba6beBPQeWaVWLgzFw0wAhCegFam1BWWx6CFONGKilqOA4kbyObAmtpP7xQFY+wk0ZFuceYFKiPhZHtJOxHvB3FKzE8OAb13cYRJKXUEtSU+w6jZQ+I8qXmuOjVX+pF3McDqT1Qsd+en+lKV5RzQ4CNLuN8dFDxFW7Exby/V5QSiYkZSR7Lg8R+ooO5t81s7HUPZ8j4VVu+jO1hrJXiZjeE86K811W2dQHupNkyCh7UDstI+FPt5SGrglwjCXOyoZ2BpBukctqfaHVlZI/lNKSsxnEKeeldFdJcJJOaHHb69fGvpXkY76ifOrpHm2y4YuynYqWZRy6jYKP7w+NfHAy+ncYNVYGfOjIqUEgK3oUeZN7ntEVORhw4q6tFtdkL0x0qXj2l42T7zVVIdjQ47j6h2UDYE9T3Cnj0ULff4Lffd7RemqKc9wAHSrNtK5owuHjWqqEth94Ss0G1R2HkJSuWQdbp3PuHhV7OtFpvORNjjmnbmtnSrP1frVPbdagFqznc774/0q2jIUt0donB99Cd9zq18JSlHI1oZrxtwNcrQHJEVJl2/rzUDdA/tDu9/SsinOn1ncYFfsmG/yxpUQUnbes19J/otiXSO9deHWQ3MSCtyKj2XPEpHcfLvqzhfVHk8Vw7s25U9jEoMhAb3xVgj5xGUHr3VQojOx3VNuJUMHBB7quIqgGwAqqqxyJqxzfZc1p0Z3riuI4VbnI91Wza0rUkYq2Qwks9BnFEEpCs1hVYYKF5Na16L346NaFFKVnpnvrNZzRaWTjAzTBYV6FNrZV08KdRVpaF4y5mvcS2OCITdztzLLUqOvU5oSAXEHZX2dfqpUvKNSD40DO4hdjNpRzValdRnqKMdfEq1MSQM6k71TFKL/jud3hmIcpOMmUsY8t0EeNDXrhtm7Epcby5nmNr8+8e40UkaljHjV+t9MWNqUOidqRTZ0pr2hLi8GMDSFNAb43HSiLp6O0PsoQwyFvuHShI6+/3edMlu4vYaXypURDgHRRG9MVu4sivLDUaMltStirG5HvpsIR3JqTSVkiitHBMbhqyR40Ya3UnW65j21d/1eFHnuppmKD0QK7sUn3GSmPzDn2amRiTuLPGl7XHejxozhStB5iiD08P1pXvPEVzukZEeVKcWwjcIztnzoWaXpk959zdTis+4d1dY8JJ3VvWGVSLkciriZybV9OgFFcUk4VRyXhiiXIqEp2TVc6NCutVclcznYujODXaM+vmAJURQTCC64BTRarK2oJK1ZPWpdPmQXFlcCWgeqvE1dMkrV2jmuNutaNHXAHjVq1GaY35iSfeKs5xgvadisaM6j9hNngR28ZV0rlMDTTBIIrzKdfUSEIynxBFDKtlxnN6G2lnP8KSr8qzPG0E7Z0/E0x4bipK/Zv6q39iDxDLxKKU9KX3n1JzvtWqt+i+7TnNZaeGfFvH5kVZM+hKY+B6wSj3uJH5ZqViFP+MZP/a/IZHh1ZfycV/uX9JtmFuzMbE1wU6VZKVYr9IQvQJbQcy3Ek/zKV+ophgehjh2NjUhKvc2P1zTF20v40n9Wl9xiwcI6yqr6Xf2S8T8mxXFJkJKiSM04w1vrZw1HdVttpQTX6ig+j3h6GAEQ8/Xp/LFW7HDVnZ9i3sf8w1fnVlQxMv9MV9W/t9yHh8Nvnb+iX3f9H4/k2a+Tuyxbnjnpqwn8zTHwx6P7sQlcqC6FHuSnV942r9XMRY8cYYZbbHglIFdqusFWf8AKaXyXm/sTkwyWkW/m/JL+zFrBwfeIuC1AWU/21JT+ZpoHDd7eACkRGR/aWVH7qcbnerXayBcrjEiEjID7yUHHjuaJhS486K1JhvNvx3RqQ42rUlQ8QaesC7XlOVvov6X3BVKS0jBX+r/ALf2ExPBEl1OJNxQkHuba/UmvTXo3tYVqffkOn3gCniuTsllltxbrraENJ1LUpQASPE+AqVgaXNN/Nt/cl13ySXySX2KGPwXYmcf0ILPitaj+tWLFjtbGCzAjJI79AzQ7XFVhdubNvavEFya8MtsoeSVKGMjGPKs29M/pOTYls27hy5hN2YkJ9aQloLAbwSUkkYz06b1sw/DI1KihTppN/Dx2E1se4QcpTbS+JsKEIQMISEjwAr1SXx9xz8krdElptUi4NvoUsrbWlCGwADuT3nOwx3Gk30l8d3aT6NbRxHwmHIsaQ5mQ6VJ1M4OkIIPXKsjI8POtFHB1KmWyspOyfxEVMTCF76tamtu3KE1Paguy2ETHQVNsKcAWsDO4T1PQ/ZRdYRebxNRxj6N71doMBM65I5a3WtR0pUrCdJzj2XR3HcmqHiv0hcUt8Q8QzYt6ZhM2eamO1bVJT8+jWpOcEZPs5Pv2xWiHDp1GlFrb725XEyx0YXzL8tc/SvSlj0gcIwuMLE7EkoSJKQVRn8btr9/ge8VjfpFiT7vx/b4jt2uTVuvsH1pMZDpSltxLSilGOmNSRnbvrRvQHc3rn6NoJkurdejuOMFSzk4CsgZ8gQKVWwWSgqua97afO/3TGUsVnquna34vMwWwQ3ITcyNIbKHmZK21pPcQACKlbHxBwKJHEd1lMTGW0SX+boKd0kpTn7wT9dSsSwdRq6HOtFOxn8S6quUOTdlntTnVLT5NjsoH2D76q/WSXupzXDh93PCNvCegb00KtzS5vSZo70pXm2N9rk5070zQ3QQKz22Se0Bmm+3v5xvSk9SzV0XE9hMhoHJStJ1IWOqT4ihhI9ZjrDoCX2+y6B9yh5UUlzLfWqqSv1eUh/93OhzzSfh1q0jVgazpzyvZipxcyUoWsAAp7fTvHWky8R9b7clG4cSNWe+tD4jbKmXkHrpINJMYc+3JzuUK0mlvqejtmhYRJjRjylIPQbg+Irnk5q+v8Q8sPJG7ex91L2cHBpq2PK4qj2VVxO6TnqK7tuYIAoQvDu617bXnOPtqRFyv4klKdcajIzhO5HiTX6D4MtBtfClsgKSQ4lvmOY/iVuaxPgWzG/8dRWljLDSuc7/ACp7vtwK/TTbSVE4xkd2O6qy10OtwyOVOq/kcmWwyhIH3D/vFGIdDSSTjNVkmRhZKugOPEfb1FCsy1LU4sklI2A6ke/yo2Oo6bmrsZ472AnJx9dW8GQSNjSczMCW8EgfkatYEzkxlOOZ23AJz9lMjIx4jDXQjemPhJor/bsFoJSo6ZSEjoruX9ff/rWTpbSnpX6VkE3G1y4ziQfWG1NgHpkivzbLSpDq0pByk4NVn1PIcVwvY1E+oZFaQQFHrVqw4EY7QIqgYlBLelWQa5LmK1gIOTnoKpGSS0OPldy/lltSSVAZrkiz3DQHWmVNNr9kqWEZ92SKeuAOE1BKLhemu3jUywodPNXwqi47hvzeNrexIWr1Z1Q2ztjO9Deh6Hh/AnWjnrNr4HhrhC/ONoWphpwKGUn1lok/9VXdqgzI1odizm9CkKOnC0qGD7ie+ljiW53WBf46EW4xbZr5SClQKVJ8Tjoe/enC0xWozDqI5JUGkrJPVZJVqJ+4Uy0Wvialwr9pUc4y0X3E5m6oj3AsPEJUD399OBejzYyELWBkZBrNOOWAuepbWUqFVVt4imwkhl/U60OhB7QpSg90MlUW0jTlWFsuBSV5HjV/ZLNGZWFlzJ86zONxejl4Lyk57lJNdk8WKSCWlrcPcBsKckxEpLqazxFe48CBpCxsMDekKVOU/AfkrzhWyQfOqKL65e5aXZilFAOyR0FNs6DEFl/pfrTbKFDBYbCvH2s9KXUTaaQKnKpFxpq7YkuvNp8K9wXFyX0tR0FxxXRIqx+SybkFm3zihQ6IkNaM/WCa1T0Pej9tEUybgAoA/OEf7RX8IP8ACPvrk1YTg1CCvKW33b+CMUeFVKbcsUssVz6/BfF/5FC18G3G4oGlCye8NoKse89KvI3ognPkF1l0Z/idQn/Wt5ZdhRyiKy4w2RslpKgD9QoqtMeFzetWq7/CyX9N+JZYihDSlRX1u3/dvAxaB6G0tkFwMIPiXFKP6Uyw/RlGZA1zMDwQ1j7yaY+J+Lbfw5PtMOeiQp25PclnlN6gDlIyo52HaFD2LjSHeOLrvw+zHfalW0ArW5jSsZ/dwc94+2tS4LTcc0lKS31k+tuvUp6TlGWWOWL+EV5HKPwFam/61ch3yUrH5VYscJ2VnGIKFH+2pSvzNLcv0hoT6T7bwxD9TkRJLSi5Ibd1KbcAWdBA2B7I6+NN/EN4i2C0P3KeHTHZA1BpsrUckAAAeZFOXCKFJxtSV3tpdlPSdaon/wAR2W+p2j2uBGOWIbDZ8UoAovZI7gKWuCONbXxizLVaxIbciLDbzMhvQtBPTI+o/ZSF6X0zU8RRnJyZa7GGxtHVpAV377jPTr3V0MNgc1XsX7L+X2OZjcf2FHt0s35zepsdSse4ruz6eBLJM4bluogR18txSlFLuobAKxsR1z9VFcXXXiWGLGgXVtDVzbSytbbQ7K9QysbeCh99Ojw+Ure0ldta35bmaXFoRzXi3ZRelre1t05mr1zdebaGXXEoGCe0cbDrWO+kSRLYvsW33K7SY8RqDrQ63kc10A7nHiQKC4jQ9c+AOHrxcOa5KQ6phaiT22yo7nz7I3plPh2ZQlKWkvh87f1r0FVeMZZVIRhrDXfpa/W2+nU2dNzgqhOTES2VRW8lbqVgpTjrk1W2ni2yXZ19uBOS6plBcX2FJwkdTuOlZtCsMpUDjSywWnG2uY25HCshKgFFWNR8sUFwS2p7jFMCRFEP1q3qjLShQOcI3Xt3nTmrrAUsk5KV2teW1k9V39wp8Wr9pTjkSUtHvvdrR/Rb9TQrT6QrVdLoIMZqTrcCuStaMJdKQSQn7O+uXCnG0jiK8+ptWl1hppJ9ZcWvPKXvhOMd+Ko+DeCLvZr7FdlNQ3Y8ZStL6nVKUEkH2U5wDvTVwzwy9ZuIr1cDIQtiesLS2E7pOSdz9ZqleOEp5lT100153+Hw115jMNUx9XI6umrurcrX5/HTTkZF/wCIWEhPpD4blOwDcG5LIZMULKC8Ur9nUNxnWKuPSNdbjw7wtwZabSVcMxp6g3JUFazEHZynUd9ipRzkezWicZcEwOK7hZ5k5+Sy7bHS61ySBqOUnByDtlIq34gsNs4it5hXqG1LjZCghfcfEEbg+6iOMgoUoyV1G9/G2mxtlhZuVRxdr2t9/ifneZfr3evRRxC1IuL01dkuTYRObUQXmiSncjqOh9xFWPo9vVrv/pM4hgqDr9u4iiBGyVJBWGwVgnYj98Z91brZuHbTZbUbbbIDDEFWdTITkLz11Z6/XRcK3w4DSGoURiO0jOlDTYQBnrgCpnj6eWcIwte9tbW2+HVXIjg53jKUtt/H7M/LHD/C0+LCtk6HZ5i7lAv+hxSGVFSmQEkH+UFKt/OmXjP0ccUu8S8RR7Vbo8u33p9MlMtxxKSyQoqxucjdRHQ5GK/RlSh8VqZ86S+vzv4MFw6Cjlb/ADYxHiL0ccU8TWnhuTMftzd0hR1xn4z+VtBJJCVjGQVacZ8wPCrqz+i2Yz6Pbnwpcr2Ho8h1K47iGf6gBQUdid8kHv761Sh3JaGn1tugoQlvmFxRATjvpDx1ZxUVZJO60Wmtxv7SlF5nz03FGX6O7fPtvDEafKlLcsITyHWyEFZSE+0MHbsDpRN49HXC14vgu9xtTT03IKlalBKyOhUkHB+sUww7nCmuutxJbDzjXtpbWFFPvoGFxRZ51zECJNS7KOoBKUqwdPXCsYP20uNTEf6W9OnJPV/Ql/t1bNbXbbVrQNk2m3yZkeXIhRnZUYEMurbBU2D10nuro01Ft0RQYZajsIyrS2kJA+oVxuF1jwXeU5rU8UFwISnqBt16VnnG/pEhWm1rkXDKEE6WmUnKlmjDYepinlhryGVakaOstLhyZC5L8l5fVbpP1bVKzGwek8XCK86i3lKQ6UgFXkD+tSvRfsa0dFHxRye2T1Evg17m8NFrOS0r7jXiSfnDVT6PXnGZU23vAghrUk/xAEfGracClZrx+8T2dROM2md7e9hwU42x/IG+9IUVWHAaa7S7kCs7VmOWqHNlzLYzQVxGtlxJ70mvcVzsYzXKerDZPlUshaMX7lJ5pwTuplCj796WLW0UokIxjJJ2qxccK3HsHuCfsoJt0x3lj91pBUrHj4UNXPWQlaF2Cy2EklKxqQsb+YNIVwhrjS3GVb6TsfEdxrQmVc9k7jbdPuPdVRxNDzFamJG6fm3P0P5j7KIy5HP4lh89PtI8v6FFmMVGu0spjMED2sV1acA8qCuI1AknapzXODlNG9BkZuNAu11dHbW4lhB+8/mK0edefU2VuMqStSU567E+Hkay/gt1UPgdC0DYy1E+Z0iryHb5C4ySvKm3TqOO8d311PO56XB0UqMUXSLu7cQpwpAKtumM+Rrsy6pto9pWM+5SfiK5w4qWkBsAZPXPfXiY6A4EI307An8jUXubrJKyDWXlLcSAep38DVuy9zXAgbIb3I86WWXSlOBuVHAHgasmZBbKY7W6+pV4eZovYpKNy6l3QRIkiV0THQSPM91Y81F5yypRyVHJPjTJ6QLoliCzAaOOadS8eAxgfbShEuAQQnNSnyZ4T9Q1lPEKlDaK8T7Og5dCGUFS1HASBkk1ofA3BCbMhNxuyEuXBW7bR3DI8T4q/Krbgiwtw2UXO4pHrSxlltXVseJ8zTM+62QVK6UNLc1cI4ZltWrLXkiNvdM1nXHFxgu3NKI7uZ0NQcwU7Ed4B935U6PzGErCEuDJ7s1lXFUdaOJUvgfNusqz7xVLnqqdO3tDVfpcWTaOW7goeTnI7j40Ba7g4xHafW2pSEgspdwdK84JTnpnYGqaxMv8Qi3RWlAIxlxfclI6mtZcscGTYjbixpjITpSO8H+LI7+/NaKGHlNNnO4nxGlQtTkr5t/l+bGCcTz0SZrhAKVZ3BGCKo8JX1FM3EVuVHur0G4pPMaPZdA3Ke4+YqobtjgXhshxHiKqvZdmcqvh5JdpDWL5laUoSe6rS1tpdcSn8q7OWB9adQSauuGLE7z0kpIxRKRmjBvca7FFaYYT2d8d9MMV8MXWIySMPtOEpPgCPjXW02BawlTh0NjvNDy0spuK3EKypADaFDuT3/aaW3odTh9NzrLLstz5c7c0mey42htCCegSOv1jvHh4VuXDsREfh2GwBsWRnzJ3P51nXBdrF2DsmayHIyAUI/n/APqtJ4fWVWlhtR+caTyl+8bf6/XRCk1WVR81bx+/2EcbxMalqEX/ABev58D8aepiK1McMeYiTAuSUO3BtWUsoyQBp/iynIOR0rbuM+Obkxxa3Gt125don2JyVFWUpT87y1qSrURnOUjbzqymeg+1zrxcJku73DkTJCpC4zOlCckk4PXOMnfzptvXo44YvUS2xrhb9bVvbDMfS4pJCBjskg7jbvr1OIx+Hqyi5a6PltdLr0Z4ajhK8IyS0259Pl8DGeIuKbhP9D/DF3buj67jEuBamFDxCjusgLx5JT18avltvo9OnEEeAvlu3izKMdYOMLLSSD9qDWqw+CeG4dvdgsWaH6m66H1srRrQVgYBwc91XaY0dpxLiWWkLSkICgkAhI6DPhWSeOp2cYR0ebxaa7mjRHCTdnOXTwuvE/I/DUa5Wi72STB4Zujl1tEhap+lpXzoKhpGcHBwSOnnX6N9KdqvV94JkxOHXlMT1lCtAc0FaQd0au7/AExTfzG+by9SeZjVpzvjxxXFmfGfLXJdS4HdWgp3B0nCt/I1TEY6VepGrl1j9fj5/QvRwsaUZU3Lf6fDyMh9D/BfFPDPEj86bHhwrZPbJfjB4uuIUnOnffvJPU9adeNeEJfEMtLsW7vQmy1yXWQklKxnO4yPGr6RfILLMd7m62X3zHStPQLBIOfDdJFGLlIVCXIjFL6QkqTpVsrHnVKmKrSq9taz228yP21CdJ0G7rffyFtngeAnhAWBx14slQWt1OAoq1Zz3geHuqxmcM22bCt8WY2t5uDjkkrIIIGMkjGelBcP3q5XRcJ95NuYiyEcwNJeK3SCMjuFFscTQ5F0TCbbkaVuKabkFHzS1pBJSD4jB8tjVJSr5nq7q7+vMrTWEcVaKs0kr80tt/mWNxtcG5JQm4RGJIQcpDqArHuzRKGm0NpbQhKW0jCUgbAeVKP7cnLXw6qJ22JMh1iQXilJJSFDuHXsk7Y6YoW33m6wblKRIDTtubuJjKKlEup5hBSR3aRqSMVDoTta/wCXsW/eUlK9t+dvgn/THWWWExXfWihLGkhZWcDHnVDwvbeGYr7jnD6IZeAwtTLmtQHvycCvPEwuMuw3diTEjtxzHc0rS+VqJA27OkY+2lqzTXnL/ZJSXrY+462pox4SClaEKSCVKOTsNI6461alTk6crS8tFf8AOguviIqtG8L/ABa11dtL/jNLrkiSw48tlDranUe0gKBI94rObY+4LvbHy1PVeVylpn5Q5oQ2QoBP8OkdnGPDNd7JaJ0XilC2oLiG0PvKdcebbwEK1YKXBhSicjYg4+qiWFUb3ly/P8BHHynbLDd2+W3w+Oq5WHNq+Wx24mC3OYVLBILQVvkdR7/Kqa5cVtt3aHEhIccbMsR33S0eWCQeyFdMhWPvqltPCNwiyojEtBkxY0jnIdMspSNyc8sJ9rfvNWr/AAzcVOerMzmEW0SxMSFMkuBWvWU5zjGc79as6dCErZrr86f0U7bFVIfxs7/i1/tdxbyJb7XFUOKXP6NIjOqCMD20lO+fcqhOML+uyiG0wlHPlrUlK1pUpKAkZJ0pBJ9wo292dVyfhvszXob8Yr0uNJSSQoYI7QI7q8K4fjyIKI1yekTihfMQ66vS4k+RRjH1UqDpJxlLXqu//BoqRrtTjDS+z7tOvUojxNcJFlbyz6nMelpiJfcbUlGDvzAlQB6ZAB76Bl3Kc/EeiJuy1qi3JmOuUyEpUptwDY4GMgqI+qnGPY7czb3IXq4cjOK1LS8ouaz4kqJJ6CiIduhQmuXEisstnB0oQANulX7anG+WPP8AP/wV+1rztnny13/x37i1drK3K4jtkWWuU9BMRxJSXVAKWkpwVYO57R+ygIttnzIdtTJaeUtcCVDeUsbjtAIJz4gU/wBSqLEyUVHp/nz8BssDCUnLr/jy8WKVpsTjDlkcTGRGS3BcYlJSQCFKCCBt13CqWbG5MbvNitTRjPN219xOptKw5o0rGVgjCevjvtitToG73GNaoi5MpQSB0SOqz4DzoeMVOMpVNrefmR6Ozyiqb1uvrtp4IUuNZhbvrYaxqZjEq/5lD4V+X/SfcHLzxG4EEmPG+bQO7PeftrZuKr24mBcLi+fn3/ZHh3JH1Vifq+tRUrdROSTXpP0tg5woSr1FZybf05fW1u8wcexsYVo0oO+VW+vPxuF8ExlJtTwI/wBuf/ampTFwnHCbc6Mf7U/+1NSu7KHtPU46xugucOOLF4CnmkoWtCk6kHY9/wBXSrK4DUokUv271tu4sLUghAVhXuNMLxClV80tZaH1THJ9om+gEyCF00WnuqkjNalZxTNamsBOazSWpSGxfQxlIr5c0n1ZZ8AaLht4SK9zmNTKh3EUNFk9TLo8xLUVxZILhNArUpMRZWSVOmujkcNOrYAwELKcHvOa4zTrdCE5wkYFWZ6OLckjrZFnDiCM8sZ/5T/3mrINIfadjvDLLo0K8vP6uv1UBwzj9upaXjS4kpI7qvFQVMyXI56IOAfEd1JejualFSWVmS3BLkCa9GdGHGlFJ+NV0mQpY0jvpz9IkIJmRpQACnEFteO8pxg/YR9lAcD2iPOnvSJiQpqOBpSehUen2VZHnZYWXb9ih14aipa4LjNL2/pKyM9+EpH608WxTKrcptsYKSpSfLxpSnrEaDAYQAAQp0j+ZWPyTU4du6kSVIWocs6+v5Vbc9BGKjFRLp2WllDilHtHbHifKglL5bZLiu0fa8vOqK4XBLdyWyFBTbZyM+fT7q4Gc5OdLTKjj99Q6UWL50MEeVlY5Q1uKGN+gFHl5MGPqJ1PK337/wDSqplxqC0kJGp09E958yfCq65TFJQtbq8nG58PdQl1MGNxioxyx/l/Qr8W3IybysFWShIGfPrV76MbezNuS5k3SWmCA2F9FOHOM+7H5UgvuB6S46o9paiTTvc82nhm0xmDpfUDIVjqSrp92KqtTyfD6SxWLdSeqWvkayiYtlalyySvO2R0qLfcknsryPKkPhbiV6RDS3cgXQgjtfvD66ZgnKPWYrnMQBk6ThX11Due7gov2jo6yr1lKztpOapb62JDa1DGptRI9xqxiX+E84WpKiy4O8kVXSnmP6SmM4HcJUr3nrVUhl77nT0HwHjNuDTifm2W1Jz71JI/KtWjhJaUhOMA1V+jSGiJw6qapvluTlBwgbkJxt+p+urSOAi6vNHoe0N67WGi407M+ecWqxqYqWTZadxn/pW4bdmQWbnBaLkhg6HUNjJUg+Xfg/mayaO47Fe5jailY6g1+oFpHNWytWUODSdulJMqzWS+SXoF6jcu4NKLfrDJ0LVjoc9D9YNUrYbtHmiP4fxX9vHs6iujLIHGSmiW5kJp1HinsmmG2ccWdJyiM82vwwK63f0VNIkKRbbwlJPREpop/wCpOc/ZQsH0TXcO61T7UEZ9oOqP/wDmsrw01yOksXg6mra/os7hxjJno5EVJbjkb46n30bwfb5t2fS2CQ0nZx5XRA9/jVxY/R7CjqbXc5y5PU8uOnSk47tR3P3U/RmmYlvDMVhtlhIylCE4GfPz86vDCSbvPRFsRxujQp9nhVd9eX+S14SjIh21xpkENBRSnPgNs0cxKTDCnSMoUrCsfnXK3p5NuAG22+KElkKtjo36GtWRN2PKym5PM3qxpbdQ42laFApUMivq3ENjK1pSPM4pRj6LhwxyXydOChRB3HnX554khyrRxUtDzq1gHKSpRII7iKzVU6ep0+HYGONbjns1yty7z9UP3m2sZ506On3rFeJrUa/WR5pp0LYktlKXE/mPcawVU4GG26DnUPHvp/8ARdxQypn9nSXAkFXzZJ6K70/X1FYXjXSqwvpF8+j5d/8AZux/AOxw7nF5uq+HMFjXKeqTJ4kcSsuWtCIUlofvgA8wj3KKT7hTDbm34Nr4QALgBXpfSknB1tqO/wDzU3txI7QeDbLaQ8oqcAT7ZOxJ8a7AAAADAHSuxUxSloo2/wDy33Z46jgJQ1lO7+90/GyRnBsoTY7nak291TjNwTICSglLzZdB2Udj2cg752pr4btzlukXZkMhqEuQFx0jGNJQnVgdw1Zq9qUueIlNNPn/AI8h1LBQpSUly0+mvn4C5wlw1FtEBjmQoyZ7eoF5CBqIJON/dig4/Cs5pyAybm3+z4L/AD2Wwx21ZJ2UrP8AaIzim+vhIHU4qHiKjbk3v+fcssHSUYxS2+nTp8kUZ4ajLtwiLeeGmSuS24g6VNqUoq2/vEUWqywlrkKcbKzIdbecyo7rRjSf+kUQ/cIbH9dKZb/mWBQEjiiyRwS7c4ycf28/lSJYpR/lO31NEMGn/GF/oXC0pWgpWApJGCD0IoeHBiwkkRIzLAPUNoCfypVm+k3hSJnVdWVEdyf9aoJvpv4UjZCXXnT/AGUE/lmpg5T0ppy+Sb/pMvKmou87L5tL+zUqlYhO/wDEJZm8iNbZLvmTj86XJn/iMkqcKYVnT71qrRHB4qf8aMu63/ysUdSlH+U499/6ufpKpX5Snen/AImdyI8aMz9Wr9KXp3pk4ylZ/p6Wh/8ArRj9a1Q4Lj5/8u3zkvs2LlisMv8AmX+Sf3SP2cdutDvTYrH9dIab/mWBX4lV6SeKFqzIuCnvJYyKOh+lO6sEc6JDdx38vBp/q7j/APo72/8A6oW+IYZbZn9F/wD0fr9ziK0NnCrgwT4JVq/Kh18U23/YqfeP/wCthZ/SvzND9M5RhMi2J/5FUwQ/THaTgPRX2le4EVR/p7GreS+i/wC77Eek8Ot4Pv8A+37m5K4qSf6m2y1/zaU/ma4q4nlrzyrchP8AxH/gDWWRfSnYXk7Si2T/ABJIqzY46sbqdQuMf61YqnoKuv5Sl3LyD0pR5RX1v5odpF7vLgUG/VGRjqElZ+/FJ891+XJU5MeU+6P3lHZPuHQVWXX0kWaO2oIlpdUR0b3NZxfuN5d5lMwre2YsRZ7W/aV7zW/Bfp+OdTqRbtzk27fG21/oZMTxhqDjTdvl57+JbcZzzOlIix/6ho5J/iNU0e3ZHaFWfq/z3ToKMbZGBXq4SVOCjE8zKn2s3OYZw3DCILg0/wC0P5CpVrYW8Q1/8Q/kKlc+pVeZmmNCNloYhKvbqnEkkYByANh9nfV+H+Zgg7EZFKqoO+T3+PU1bQHfmkDUDpGnbyrwK6H1XHRlpJjPb+0RTVbUDAz1pMtzvaFOFsdBSnIpDWoiD0GmCNhRzrQW2cCq+AsEDvq4QNSamxEnYyHiqN6rfXhpwlfzg+uqJoBbqs7mn/0lwiI7EtCd0nlqx4HcUgQU4WtfhVZdD0WCnnpJni1u8viFvOxBrRZzGtxuc2CpG3MCdyNuuO8dMislmPrj3APJISrVgVotkvzYhKy6EuBGAlwgJKvf4UtxujbCdmK/pRLTrlviw9Lr7hUvS3v4AfbXbhfh+VCt7aXk6HXVdpJ65qwb/ZNld9akTGZNwe7SlpIUQfAAbAVbSrsmdapD8JDhUy1pK1JCcZ26AnfehQewmEYqo6z3Ys3mWh+4uco5bQlLSPcnalGVcTFkNJKyhI7aj+ldJT62XMlWKXVIVNvSyskoRhIHhTVojHjMX2fsx3ZcR337i+peFpSo74G+KbbVHcbZCI7YaT/Eo6lUBaIwQkYFNMNACQMUvM2Yv3VW1k7HEMhlsk7r6lR6mlTiOSotqbR7S9vjTfdFhDRApMnqbLqdeCcVKORj6rp031YtsxHH5TLSEnUtYT9prR7zGTKnKUs/NtgITv7IG1UvDzDSruwvoEZX9gJq6llS1qCEHB3z41aduRv/AE3SzQnN9bAduLTa3mmkE4AOT0NMtkU62coWofpVPa7e8t9xRSG2in2jt31aMyGYo5ae2R3ilM9bTVkHXWyw7wgrUkR5Y3DqNgr3j9aoYjD1tmpYlowodD3KHke+mu2y0vDSRv3V5u+gJCZLeWuqVD93zFVT5FsiuPrEhMazQi2dLakpAA91Go//ACyVk57ABpWVIQqy2dptwLBVoJHlimKMs+uuHIwDgb4r0MHmimfL8RT7OrKD5Nne8q5S+agdobZIFUPFduVKaZu8HAdAAdxtkj/Sri9qW5DUoJ6V54Vf9YhvRVAK2ylPWp21Enzhx6HxRbwxJITNaGAvvNWDfCa2XDhRUD30nzo67ReEzYJ0AqypI7q03h+9tXKIhROF43BNRNyjrHYECxrUmMhIUTlNeXxqdQ2k7A9BVxcSEI1E4yKo46udKKkDCR499UTbVwLdagiGQPDvqvmO6LaonAODtXVxeoKCcny8aCmrKYawB49+9EUB94RcD9rkNDGckgEUl+kCyG/2ouRU4ucPJSkD20Dcp9/eP9at7BNVb258jJJbGrHXO9eLnMSxOjT2AUsSgFEeB76l01K6ezG0MRLD1FUhujGIdzdQ2lpR2JwQe414au7sZ9bsVz5wHTp7j5Ux+mG1M2FCb/FCRFkHK2x3OHJ28jj7c0kcI8QNS2lj1CM24k5SrRn8641fDpXhNXR9CwnEKeJjFxerNx4b49ukWGwmQEupI9hzcj6+v25p0jcWzZcYuswGW0Ae2t4kH6gmsOs3rNwlNIBySoZwOlaslsRrYyynYZpnD+Hubtnkor43/tN+J5/9RftsJFOEFnl89vkmWMria7oaW4pcNpCRk4bKsfaazC5el3iBx91ERxpLQJCVaBv59KYeOHlNcOSdBwpY0g++soixMgApFew4bwLBzg6lVOX+6X2aR874jxjE05KnSsv9q+6ZeSPSBxRLJzcHEZ/g2qtk3++SU5euEhY8zRjMMBPQfZXUxEhBymurHhfDobUIv5pP+7nNeNx8te2kvk2v6KBhyZKZkqdkvr09MrNVjkTWe1knzpqskUGBIURspZFdDASVE4xW2nGjRbjTil8kkZJuvWSnKTb+LuJhgp8K4Ltyc7CnV23pPQUP+zBnpmn54sXarF6CYu2pPQVzjWwc1zbupzdtmM6a42uEFOS9Q3SMVDcbXLKpVvlfMSnLccnFDrt6h3U6uQFjJ01wXCIO6KvlT2JWMnHdCYqEsd1clRFeFOyrf2TkDahlQk+FGW+zGrHW3ExuItcjAHSuzrRCztTXFghUlYA3xXB23gknFUUGm2M/fJvUWQg+FdUINXZtwz0rq1be0NqtaQSxcCuhRVLUDir+0xM3qKkDpvR9vtZCclO1WFoihPEoAGyEZqHJKLMznKpJdGXvK+dV767BG1ddPbPvr6seFYcxuUS3sSf6Iv8AnP5CpXuxj+iL/nP5CpWCo/aZpS0Pz3eQtiY62F5QTkEd4NerIsha2yc53HlRfHcQ2y7hohYBTkah3Z7qobe+G5jSgrbVgivG1oZKjij6JQqOvhYuW9vFD1COlQ8Ka7W9nApTi76cGmC2q0kGsk1qVpvQd7a70pljKCkik22vbimmA7lOKlMmSB+KoIm2aS1jJ0FSfeNxWRQkpWtSRjPSt2UgLbOe8VgvEaRZOJ5bBBSkLK0+GDuKhq7Olw2uo3gxb4hQtKi3jGlfUjNBx1ynIfJecICV7Jz5VfS5UadzBrb7Y656Ef8Af3VUeqkKzqSANgBUx/ja2psqxfa9pGV422PUZhCHdSlbDCR7q0nhNxlyyyo5AAcAyfGs3aa37W4qzRdFwIKiwME7A+JqXZIVPFQopym9ECcXw48J0nWCc5wDVDw+xrcK1DtKUSaHubz0h1br6ionvNXPDyBhNJbujkLFfu6jqJWWyGy2MDA2pgZaCG84qvtaAQnFW57LWB1NVQ4obzugiswfluuS1lR21HFadeTsR5Vk0slpZyCDTI7HJ4k7uKHPhR0l51ex0t4Hlnamxu5pYSNTQyPFOTSTwKouMync43SkffTOEc0qCBqV3mqNW0PUcApuGET6tlk1MF0UtsOhvCcjuxRUOxNkgmSg5+uqa32OW7IKmSUApIJ+urdtpi0YLszmO47QzsKp8juxvzD27euE4laHgpIPs1aT0IfiJCh2SNqWF3ptaikuZH1Yq/tEhM2EtoFJUN071GpZ9Tjww0f2owytStDboUAelOEGWVrykjJV18aWOHMI4ijhXsqcCSPrxV4uMmPNebRhKc+FdfASvTafI8T+paSjiYyXNFzLIMZ1Cz2iNu6qnh+UmGeeorJQvByc99FPvfMEhWcpx12qpg4Nvl4VjBzW2x55bDbxFDQ/GD7A1NujUPLNLdpmSYcpPLQEgK3FMvBspFzsa4yjlbR291VN0Y9UkqwkkZ6+FRF8iuxoDj/rVsQsd4z7jVTC7CXVHqK82OXzrSU5BwDgda8Ou8qNvsSrxpajbQk7l3T7PXxFBXVZEdW+5HuNfUvgkddOM1yuqh6sog5yPGrpagylhtqNpuYGw5Ku/wAs/pVfw7LTdOGXYinAp1k6kkncVeWVsKjS0nGVoUn7jWQKkybVcnksvKbBJGBtkVdapkWKz063GVJ/YlpS4pTS2y4tPcSFECl2wM+rlDbKc46nxNXvHQ9euVucXupMbGw3yVmn3hz0dMQ4ES43SW4JHZc9VS2NO+4SST9tYalGVeq4x5Ho8FiKPD6Ea1Z6vYYeBbUiDahcLiEtuqRqSnwT41mPEXpWuZvbybfyvU21kNgpzkeNXHpZ4tMOGbZDc/pDycOEfuI8KxVKSN+tex4Zw6NCnmkr9DxXEuITx9Z1Jv8AOn0NLuPpAm3+3piSkNt4IJKO+go815s5Qs0jNuaTkGrq3XEbIcP112KKhCOWKsjz+Koyk8+45MXt5HtJSr7qKN/BQdTJzjuNLiFBQBFR04Qaa6cHrYwKrUWlxgsV5DMVTT6fm9Wc/XVu1c4Th2dAPnSY32YyfM181GqOjGWpaOInH2Vsh9Q7Hc9lxJ+uunLQRsoGkpifykgBlGa6/th3uSB7jSXQlfQ0rEQtqOBYRjpmq2zMgmerxWRVF+25IHZIFcbZcJDC3HQonUclPiansZKLRWVeDknbYbFRRnOK8LiDwqtTxAtJw7HIru3xBHV7aVJquSouRftaT5nZcNP8NBvW5CiTij0XeE5j50A+ddudHcGUuJoUpx3RLhTntZlDaIg9clA76BivjlsyeztVhZHmDLnpK0hZVsPGrLkpJq0qrjJioUYzghebte/a3o6Nb0oA7NW6GE+FdktDGe+qSrtjoYaKAAxp2xQ1mbzxFKP8KQPuq5UjCc1W2FObxcF+BA+6q5rwl8i0oWnFfEtiAMmuZ3NdSD1rzjA23pKNLLixj+iL3/fP5CpXuxj+iL/nP5CpWGo/aY6K0MH46nJvN1C2yNDSeWkZ7qVFxVpOU71xU+4VqUVHJNERn1lWCcivG1JOcnI+j4eEYU1T6DnZJHOjtlXXAz76Zoi8YyaTbKo/fTTGJ1CkTE2ySaG22u5AzTVbl9POky1KO1Nlt6iqIuxnY3SKxv0728tSYE9AIS4CysjxG4/Wtii7IFI/ptZQvg9S1DtNvIUk+B6VdPUrRdpo/PrKEtKyACRttRaJJH7gPvNcEDKsUS0BzwjAxTZScndm2MI0o5YlhbGHpzyA4eWznoNtVdeJC0JnJYGG2khA9+N692l1QU+4Mam0nT4CqWS4pRUSck7k1mnqczi08kI01u9SvneyPNQFX1gGyfKlx8krbBO2qmeyDsioWxTBaU0Ots6CrRz2N6q7Z7KasnSeWfdVDooopg505lr+JQH1UqcVWdDeVBNNTJJvsfPdk/caE4pVqSQQN6XObjOKODxKb7ZL4A3AFpaXbV5dS2SsqJP2fpTpHtkCGnnOurePcM4BrPbO840WkoUQkZOM7dTT/wAMy1vtONvpQ4kL21Cmz3ue54TJftKa+ADdrhLltlmCgtIBxhIxS4bPLcXqfcUTT7NkJjqPLjsD/lPxqyhNMyIqXXGGtR8BtVNTpuUTL3rYhgAqB6dc1ZcK3ERZaW9aiArHWnZmBEmmSl5hACHFJGkY2BpQ4gtUa2XRlUUKTqxkE7daL9QVm9ByQgNX2HIYI0uOJJT4HIq2vDhF1USrO/TuNK3Drq3b4+hZylDzOny7I+NMvEHYfSQT4710+H6KR5H9SO86fyZ1dd/o/ZOAOoJ7q4WPBhzQCeuRv1rmXlGPuEnPlXqwYMaUdIyO/FdBnmeR24AuHqd/XHUrsunGKceJohUSUjA65GN6ymO4UcRt6cAhYrZZfz9saUvqUgnFUejBizaHHY6gDug7UdcnD2GwNgM+41yjoGonfrXiZlySsKJwnoAatzIOaHN+mrHiqvkp9S2yhewGw99fcasjJHuNcJI0upbG4JPXrUkBtiCQFjoDsTWU8bxDDuqyAACo71qtuw2lWgAb0n+kyO2pjmkdvANTHckTuCbI9feOY0yQo/su3MBbiT0WvUdKf1+qtK4yv7Nnsz9wkq2SCllH8SqD4OjtxeFYPJGDJJcdPeo1lHpqucmRxOYTi/6NHSNCB03G599dXh+FU5rvZzcXiJS0fLRCNcZz9znvS5CypxxRUfKuY6V5SkDcVzcWrOM16KpU7JanOtfRH1zBO29fEuFB65FeSSU57xXg1mk2vajuXS5F3bbkW8JUcpq856XWhpPWkckgZG1XdgcUp3CjkU6ji8zytamDFYaKXaIaCcISPAV5zXlajzMdwr7W9HIseq+YNQV7ByN6kNjks4Sa7RV8ptKiM7g1xf8AZNdB7CRUNXdib2QS9NcXkBKQD5ZoTc19qUKKWwOTlqz5XVMhxCcBW1cjXxfsGptcEe4S1JDjoJCu40Ui5y2/ZeV9e9Bsf+m+upVEk9ybtN2Ldq/zEe0Uq94oxridY9tkH3Glo1O6odKD3RdVai2Y3o4mYUMONrTQ9gvUdudMLmQhxRUFeFK56VIX9Q6e/H61SVGCVlzL9vPSTexpCLhGdHYeQfrrsl1ChsoVmWSOhrq3IeR7Dix7jS3hVyY5Y2XNGx2Qj1Vf85/IVKTOFrhKVb3MvKOHSN/cKlc6eElmeppjjY22P//Z\";s:9:\"timestamp\";i:322289217885;s:6:\"timing\";i:5180;}i:7;a:3:{s:9:\"timestamp\";i:322289957885;s:4:\"data\";s:46763:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAFcAfQDASIAAhEBAxEB/8QAHAAAAgIDAQEAAAAAAAAAAAAAAAQFBgIDBwEI/8QAUxAAAQMDAgMEBQgFBwoEBgMAAQIDBAAFERIhBhMxIkFRYQcUcZHRFjJSVIGho7EVI0KTwRczVWJyktIkQ1NzgpSistPhCDR08DVjg8Li8TZ1w//EABwBAQADAQEBAQEAAAAAAAAAAAABAgMEBQYHCP/EAEERAAIBAgMFBAkEAQEFCQAAAAABAgMRBBIhBTFBUdETYZGhFRYiUnGBscHwBhQy4UIjB0OC4vEzU1RicpKywtL/2gAMAwEAAhEDEQA/AE+WaOWalbVbJF0nsw4aNbzpwB3DxJ8q6tbuGuGuH5cW33lgyJklPYkvJPKWr6Cd8A+2vuMTjoYfRq75I/McFs6pi7yTSitLvdfkcU5Zo5Zrs6uDbBxNHkLtTb1rnR1lp5lQzoUPpJz0I3BBwQa59xFwrc7A5iazlknCXkboP29321TC7ToYnSLs+TNcfsbFYFvtI3XNFZ5Zo5ZprRT1vs0+4gmDEffSDglCCQPtrtlUjBXk7I8yEJTeWKuyH5Zo5Zq4x+AeIn9xbygeK3EJ/jT6PRrdk6PWZMFjWcJC3ck+zArlqbRw1NXlUXidtPZmMqfxpS8Dn/LNHLNdOb9GrTZdEy+MtqZALiUMlWnPTvppHAViZjpddnz5AK+XhtoIOrwII2riq/qHAUt9RHdT/Te0an+7t80cn5Zo5ZrsiOFOHYs20R12uZI/SClpSp17RyykEnUAR3A1kuFbovFi7PF4btxQ1yll155RUptRwVAEYyN9id+7NYy/UeGteKb/AC5Z/p+vB2qSS1txeu/kcZ5ZpmPbZck/5PGed/sNlX5V2O13pl24XqBChwoa2kOGC6ljAJbJSsHOxOQDt3Godriy8SOGbo67cfVpLTMaTHUWmwopWrC8AZBR3eOetctT9TxX8afPjyLehacdZVG9+5cviyjxuEL9JIDVqlb/AE0aB9+KlGPRtxI5jXEaZB73HkfwJq0uzbpJZvS5ouCX2JcNaWmFrUlSSe2EaeqCNR+0d4r12x3d29yXI0d9+Em7NvhDw06E5SStGrqPngj2EVzS/UuIf8ILz/OB0Q2Ph99pS8Fz4W7irSfR1dWi421IgSJTYyqM09+sH2ECqgtlSFqStJSpJwQRgg12u2cPX2BeoKmosRLMaQ6t6YShS5CFqJzuNSVAHB3xtXN+NHI8nim5PQ8chTuxHQnAyftOTXqbH2nWxcpRrLccW1Nn08NTVSCcXe1n8N6+G5la5Zo5ZprRRor3sx4YryzRyzTWijRTMBXlmjlmmtFGimYCvLNHLNNaKNFMwFeWaOWaa0UaKZgK8s0cs01oo0UzAV5Zo5ZprRRopmAryzRyzW9xSGsaws5+iAfzIrDntfRe/up/xVjLE04PLJ6nvYL9MbWx1GOIw1CUoS3NcbOz80a+WaOWa2c9r6L391P+KjntfRe/up/xVX95R946vUvbv/hZeXU18s0cs1uQ42tQSkOgnxAx+dbNFawqxqK8Xc8baOy8XsyoqOMpuEmr2fLVX8mK8s0cs01oo0VfMcAryzRyzTWijRTMBXlmjlmmtFGimYCvLNHLNNaKNFMwFeWaOWaa0UaKZgK8s0cs01oo0UzAV5Zo5ZprRRopmAryzRyzTWijRTMBXlmjlmmtFGimYCvLNHLNNaKNFMwFeWaOWaa0UaKZgK8s0cs01oo0UzAV5ZoprRRTMDpHAUGI1w1fLlOkPRUBIZ9YYzraHUlON+8e6paz3By4R02yTMt3EttdwkLS6GpCB4qSrrjrnOdqw9EtyaZVKtr5CVOkON5/aONx+VT/ABZIt3Dz0d9rhqZOkyNSA7b4gcW3tjKjtjOfzr4vaPb/ALqVvl/TP0fYVe2AjTiouD/kmtb357/lx0uQkW8OwZBdgs8/lI5SpLoJcW2CdOsjA27id/easz3FdjVbmDd32mEytSeW8CQSMZBOMd46+NV+ys32HGKWbcvkyQCpp9IzjHRWDsfLNVLj6I7FvUWLHituepwVynW3RrTlWdXtwAMewV8hsSWNr4l/uG7a5k1azvple5o+6o4DCYmcaC0VtGne6S433a2G+OeF4MZhi72N1C7a+rBCFako8wfCugyozNvagRmue1bENKAMfVnVtjOnfx+2qRiND9EMFlp0umWoK3GMK15UMeWMVv4D4ouipsK0L5TzCjpStY7SUgE4z37CvssZhq+Pwds38W9/FKz158j4KUsJsbbFXDwWktFpxu1u4X0fcWuVFfkS/wBUmQG3YeFFxGok+B3wFGhNrlqitFUJt1S4oY0OKA5Shnf2HrtvtSHHl4uVqvVuaZuXqcCUhwEoic5aVJGdhvnOR3bVAXa7Xe4cBWq7OTX0O+s8p31RYbLqCvSM4+arb76+eWxoSedy3/nFNc/H4H29HCVp06c7rLJpLf39y4rnppwZeHLPJWtwLdQEFlpIdJydaDkEjw+2tlxhuv2xw3SdHbbStLhWWxoQke0/ea55fYqWLGmI5enHHhObW9EuDizp1o2ZW4nO22c9KUjOIfsLKVxpK7VAuv8AlrKXuegIxtpIG7YPdvXStlUbNa2e/V9/XzLQwMpRU1Pj7vha71b0tpbdrqXm7s2uZZok9+/rTGguqcEthSSNSspxnB7lEYHjUdGicJO3KBGbcmypLkdtTPbe0rbbypJOMA4xnfvPnSFut8e9XTiFvhlsNWWTA5JIbKGlSDnBSCO4dcU1wy1cZt64dD9slRDZ4zjMl54AJcJSEgIP7W4zmt1haUVa27n8O846my8K5TlWXtWbd7Kzy3Strx0du7cYW+/cLh2M2mwy24wkLjokPs6kNuL2UkkkkZ6GpU3txE+XE4b4eRMjW8hp5aHEtYPUoQCN8E++q23wdeHJNwmNRCzKbuXrkVL0gFtxJVuCkZAPfnGfdVjf4dvsObNdsE+LFYuKg5IQ6gqUy5jClNnv+2tOzpR/jb8+BvLC7Poy/wBPLu4vS+nu67vNWtoaOLOJb1bbtb4zRgQWJrWpKpKVLUhwYyk6TjvAFIcS3fimEm3CWt2KkxlKfdhR0v4eB/aHcjGOnnUze7Kp6Tan18RiM9b21IDq2kKUtShhSjnbceVRTlm4YZt8Vh6/OiRH1gSmXtLhSoklJ0925rSEU7WV/kVhjtnYeFOVSUbq99L+9z03W5/BW1kL0p++ejhM5udqeDPNU5HyhDuPnDB3xsdvGuM6K6XxHxHbInDabFw6FKY0csrIICU5yeu5J399c+5flX0Oyqc6VOWdWu9OZ+V/qfE4fEYzNhndf3pu03b7CuijRTXL8qOX5V6lz50V0UaKa5flRy/KlwK6KNFNcvyo5flS4FdFGimuX5UcvypcCuijRTXL8qOX5UuBXRRoprl+VHL8qXAroo0U1y/Kjl+VLgibinGj7atHCnCMS82ZE16SppfNeQpGsAqCW9Q0gjc56+VV67NKPK0IUrr81JNaI8u4x20tx3ZjSEklKUagASMEj2javBx0ZSqyy/mh/RX6Ncqn6bw1OjVUJe1x/wDPP+izj0e3ASG2XJkJC1JJOSvYgoBHzd/np3861SeA58dMta5cPlR2g6V6lAK+dt02+Yrc+XjUEbpeCpCjKnlSEctJKl9lOQcD7QPcKDc7uQ4DKnkOI5a+0vtJyTg+8+81x5KnM+lUsbxxEPLn0E4YzJQKm7dCVNnx4yPnPOJQPLJxUTAacEtvU24BvuUkDpU4wp2O8l1ham3EnKVJOCK9rA5lSklvv9j8e/2pVKc9sUWnddmr2/8AVMuMzgmEzc3GkOSTHKGVIKiAcqdCFA7eBzSPDXC0O53a7Rn1vhEVwIRoUkEgrKcnI8qhG585tpDaJT6W0fNSFnA3z+e9YNSpbK3FtPuoW6oKWQrBUQcgn7d6KhiMri6mvDyPhni8J2kZKlor3Xj9yWPBUhSopTLYQiU4UthzKVY7WCRjv09PMVlH4EnvoSpL7Iy4UYUFA4CinPTxHTrUai6XJGjTNkjQoqT+sOxOcn7z768FyuASEiZI0hfMxrPzs5z7as4YrhNeBRVcDxpvx+H9jfyQk6d5LAWVtICDqBKnACnu8z7qzc4NkJjPPpmxS0hwNBRKk6jkA9Rtgq+40g/cJ75y9LfWchWVLJ3HQ/Zms1XW5K16psk61BSv1h3Ixg/cPdU5cV7y/PkV7XB6+w/H49/59VL5aXLRcXIby0rUgA6kggHIztmkNFSEt1+W+p6U4t11XVazkmtPL8q66bkopT3nFVcXNumrLgWyy8Iwp9ptklSpClvu6HyFBIbGTjAI3zgb0keCZQQ8563G5beCFdrtJ0pUVdNsBQqNbuE9tlppuW+lto5bSFnCT5V6LjPCFI9aeLa9OpBWcKxjGR9gri7LEqTano+v5+anoPEYOUEnTd0vt1/OB5xFw8/Y3WUPutOh0KwpvPVJwRv51EaKl7vPlXaauTMWVrUdhnZI8B4CkuX5V10c6gu0epxYh03Uboq0eBZ+GOE4l3solvSVsuh46hkYLScaiNuuDWm9cHmK5c3YslPqcI4VzD2gcJIH26tvZUM1JlNM8pt91DW/ZSrA36++mF3OY5Ckx3XCsSVpW6tRJUrSNgT4Vy9liFUclPR8O6/Q7f3GElSUHT9pLfzdn9/If4f4XbufDlwnuKdD7YVyEpxpVpGTn31qc4PkNNvKdmR0lltCnU9olBV81PTfPiNqj2ZctgNBmQ6gNatASojTq649tbP0lcdGj1yRp0cvGs40+HsqzhiMzano/wA+nmUjWwjhFSg7pb+ff4+XlLngCeFYEiORkJyM9SrSR07jWFu4JckqhF2cyhuRj5qVFSchRG2PFJFRwu10DnME6SF6dOrmHOPCsE3K4JKSJb4KcEHWdsZ+J99UyYu1s68C/bYFNPs3b4/2RLzIbdWhKwsJJAUBgHz3rHRTZbz3V5y/Ku9M8xmZtbwRkqTnCSE75OceXmKHrYphKVOOo0EgZTk7Hv3+2s+a/p081zGAMaj0HQV44t50EOOLWCc4UrO/jWaz8WauVO2iNt7sTlo5XNlRHy5nAYc1Yxjrtt1qL0VIPuOv45qirBJGw7+v5Vp5flU08yilN3ZFVwlNumrIV0UU1y/Kir3MxxAU2tK0EpUk5BBwQatEHje9RWwhTrb4HQuoGfeMVAaKNFc1WjTrK1SNzehiq2Hd6UmvgWpPpCuoO7MYj+yfjW5z0hSXGVIct7CioEHKsgjwxiqfoo0VzvZ+Gf8Ah9TsjtrHR3VH5dDdebnJuzqFSSlKGxpbabTpQgeQrTapbltuLExgfrGlagD39xHuo0UaK6VCCh2aWhwyr1JVO2lJuV737y/z7rYr7Mtlxk3SVCegqK0spT1J65Ok5BAxsehpFxzg1uJIin1uTHdkGSWgpxKQrfp0236VTtFGivPWy6S4v8+R9JH9YbRjFRi0rcr878+epcI9/wCGIEaTHhWNSmZGOchw5DmOmck561kzx2zBjCPbLMzGZT0QlYCR9gTVN0UaK0WzcOt6v82cdb9S7RrNuVTf+cblpc9IF0xhpiM2O7sk/wAaRe41vzvSWlA8EtJ+FQmijRWscFh47oI4Z7Vxk99V+NvoOP8AEF4fP6y4SP8AZVp/KkHpUl7+ekPOf2lk1noo0VvGnCP8YpfI5Z16tT+cm/ixTRmjQPCm9FGitLmQpoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KKb0UUuCzfJG8/UvxEfGvfkjefqX4iPjV2b4aUwtRiSEsIUpRLbacJIK3FYIGxxrQP8AZpj9F3H1OO1+kFFbaXEqUVKyoqPZUSDuQMjw3yMYFfM+l63JefU+69V8J70vFdCgfJG8/UvxEfGj5I3n6l+Ij41d3rHcnE5F3dCxundWEnSkJ2zvghZ3653rNmyTkuMqeubzoQtKyguKxsUHHXfovr11DOcU9L1uS8+o9V8J70vFdCi/JG8/UvxEfGvfkjefqX4iPjV9NsuDLc4MyyrnHLadRToy4VHGOmxxnqa1otF0StBN1WoJUgndXaAG4Iz7fb35p6Xrcl59R6r4T3peK6FG+SN5+pfiI+NefJG8/UvxEfGrmmxXkOIJvjhaSN2t+13YK853AG47ySMdAymzTy5FU9clvBtxK1hRUAdOjoAf6quufneVPS9bkvPqPVfCe9LxXQonyRvP1L8RHxrz5I3n6l+Ij41eU2i6LU4ty5OIBUshpK1YOVgjJ6jsApwOmcjetaLFdEO6hd3Sk4KhqUNatKQrO+wOD06dR309L1uS8+o9V8J70vFdClfJG8/UvxEfGj5I3n6l+Ij41dRYbikvBFzcDSwrCOYvqpwqO+c9DjYjGPOmpVlW+1CVzGkyYrZbDoSckdnorqnIBGRuM7U9L1uS8+o9V8J70vFdCgfJG8/UvxEfGj5I3n6l+Ij41f5NpnvIjp/SShy22wvKM6nEKB19e8Z28dJ7q12+z3SPMiuPXdx2O2DzGVZOsnOe0d8DCMeWrrmnpetyXn1HqvhPel4roUT5I3n6l+Ij40fJG8/UvxEfGruLLcGITUeNOUlReCluhahhIZ07DP0wDp6ePfXkax3RhCUC6KKUlsJSCoAJSMdM9T7j39Kel63JefUeq+E96XiuhSvkjefqX4iPjXnyRvP1L8RHxq+RbTdGkvBy6rUpUdbTROVaFkkhZB6kbeHeOmK0uWK5KQMXd4LG6cqUQk6UgHrvghZ365GelPS9bkvPqPVfCe9LxXQpXyRvP1L8RHxo+SN5+pfiI+NXwWy5M2yQhu4urmLUgtrUoqDYGMjfr+159PCsV2m6ha+VdVJSpZOFalYTrSrx64GnHTcnxp6Xrcl59R6r4T3peK6FF+SN5+pfiI+NHyRvP1L8RHxq+SrZcnJDIYnrQy2wlJUVqy4rtBWQPHKe11GNq0mzXbSQLssKKUgKyo4IQUk4z44OM9dyT0p6Xrcl59R6r4T3peK6FJ+SN5+pfiI+NefJG8/UvxEfGrtHsd3SRz7465nYkApwNxgDON+yc9xTt1NbHLHLWxKBnK5zjyXEL1LyAMjrnI69BgbU9L1uS8+o9V8J70vFdCi/JG8/UvxEfGvfkjefqX4iPjV0csd1UtSxdl8wqc7RyMJVjSBjpjAOOhx4E09a7dPjTHnJdxVKZUrLbZBGgbjHXfbR179R7xh6Xrcl59R6r4T3peK6HPfkjefqX4iPjR8kbz9S/ER8a61RT0vW5Lz6j1XwnvS8V0OS/JG8/UvxEfGj5I3n6l+Ij411qinpetyXn1HqvhPel4rocl+SN5+pfiI+NHyRvP1L8RHxrrVFPS9bkvPqPVfCe9LxXQ5L8kbz9S/ER8aPkjefqX4iPjXWqKel63JefUeq+E96XiuhyX5I3n6l+Ij40fJG8/UvxEfGutUU9L1uS8+o9V8J70vFdDkvyRvP1L8RHxo+SN5+pfiI+Ndaop6Xrcl59R6r4T3peK6HJfkjefqX4iPjR8kbz9S/ER8a61RT0vW5Lz6j1XwnvS8V0OS/JG8/UvxEfGj5I3n6l+Ij411qinpetyXn1HqvhPel4rocl+SN5+pfiI+NHyRvP1L8RHxrrVFPS9bkvPqPVfCe9LxXQ5L8kbz9S/ER8aPkjefqX4iPjXWqKel63JefUeq+E96XiuhyX5I3n6l+Ij40fJG8/UvxEfGutUU9L1uS8+o9V8J70vFdDkvyRvP1L8RHxo+SN5+pfiI+Ndaop6Xrcl59R6r4T3peK6HJfkjefqX4iPjR8kbz9S/ER8a61RT0vW5Lz6j1XwnvS8V0OS/JG8/UvxEfGj5I3n6l+Ij411qinpetyXn1HqvhPel4rocl+SN5+pfiI+NHyRvP1L8RHxrrVFPS9bkvPqPVfCe9LxXQ5L8kbz9S/ER8aPkjefqX4iPjXWqKel63JefUeq+E96XiuhyX5I3n6l+Ij40fJG8/UvxEfGutUU9L1uS8+o9V8J70vFdDkvyRvP1L8RHxo+SN5+pfiI+Ndaop6Xrcl59R6r4T3peK6HJfkjefqX4iPjRXWqKel63JefUeq+E96XiuhBxOKbXIaW4XVNac5C05206uqcjoDt12O2xphXEFrQrSuWhJ1lsBSVDKgCSBtvjBpdiysSY8V5xxYWGgE6W2xoBB2HZ8FKA9p8a9+TULUhRJJQQUktNHTgpIx2Nt0J/uivKPpDY9xHbG2HHOepehvmFCW1FWN+7HeAT7AT03qVbWHEak5x03GKhzw5ELKmStRbUACnltbgZ2+Z/WI9hIp5EJxCdKJ0kDJONLf+CgHKKU9Ve+vyf7rf8Ago9Ve+vyf7rf+CgG6KU9Ve+vyf7rf+Cj1V76/J/ut/4KAbopT1V76/J/ut/4KPVXvr8n+63/AIKAbopT1V76/J/ut/4KPVXvr8n+63/goBuikH2346EuCY85haAUrSjBBUAeiQe+vIrb78Vp5U55JWgKICW8DI800JSuSFFKeqvfX5H91v8Aw0eqv/X5H91v/DQWXMborRCUtTB5iitSVqTqIAJwSO6t9CGrBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQC9u/+Hxv9Un8hTFKogMoSEoU+lIGAA+vYe+vfUm/9JI/fr+NAM0Ut6k3/AKSR+/X8aPUm/wDSSP36/jQDNFLepN/6SR+/X8aPUm/9JI/fr+NAM0Ut6k3/AKSR+/X8aPUm/wDSSP36/jQDNFLepN/6SR+/X8aPUm/9JI/fr+NAM0Ut6k3/AKSR+/X8aPUm/wDSSP36/jQBcv8Ayo/1jf8AzprQ3H9asLbAUE8xhKckZxt4Vv8AUWiRqU8oAhWFPKIyDkbZrxMBlCQlKnkpAwAHl4H30LRdhCRZnncFE1xtYORpzhPYKRgZ265p63RFxG1JcfcfUrHaWScYSB/An7ay9Sb+m/8Avl/Gj1Jv6b/75fxqCzm5KzZ7A/mV/wCtX/zGmKwZaQy2EN505J3JJyTnqazqSj3hRRRQgKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKK8yB3ijUPEUB7RQCD0NFAFFFFAFFFFAFFFFAFFFFAFFFFAFFFFAFFGRRQFYkXeYk9laR/sivY10mOLwpwY/sio90gnemYYSAKybYRKKmPBOSv7qiZl6ltElLgx7KYkOhKTVflq1qPhVJSZUYHE09J3KTW0cVTEjfl+6oblgjpSshtWcCikxcsg4wkp3LLa/urBfHTydvUkE/2z8KrqG8DetMlkDcDepcpcCLsso4+eSRqgIUPAOY/hWR9IKgO1a8H/X//AI1UGkDmdql5asKwNyaKUuYuy6n0jIA3t2D4c7/8aP5RNQ/U20OHwDx/wVzt8pZQpbgKlD9kHAHtNQUm9yGdZYbZHd2X8n4VMVNvV6GsYSerOqyfSa+wTrsuB4l8/wCClv5UpKjhFqaT/aeJ/hXIYHFUhqUEylK0rOFBQ7vOrbAXGubAdjgakKwoCrSjJbmHBpXRbl+kS7PnMeIwjHduRWlXH9/UtKFR4qUk7qDavjS8Fq3R0gSpLKVDcgrqVNpamNJeiuJLR31JORUxpTtdsyeZFotFzfltpW6psEjoEgVIvuvgANrwfZVShtLiDKHSrT3EYqUZuSVHKl4x1BrdWIuSbK5BcIW+r7hUswSEgFWqqfMvTTRylY8K1wOJiuSG9J0+OaiTW4KRd3CdOxqOfW/qOhaQPNIrW3cgtAzsT0FMstFxGpXfRK28te5Vb9fbxbiTGUypH9dv/vVTX6Ub0w6W3IcJSh36VD/7qv8Af7el1kggkY7qoM6xshSipGx99Z1aMp6wdjOTktxtZ9LM4fz9rjqH9Vwj+Bp1r0tBRANmUpXgmR/+NcvvbCoMooSdSD0NZ8OuINyaC+ilb156qVVUyORRVJHY4npFDykh2xzmwf2kqSoD8ql3OMoDTIcdYlpBGfmA/wAahrS0yllBUkKNL35lAThKRivWVKy1dy+Z2LCxxvZXm9fOcQP6zZ/hWt3j/hto4XPx/wDSX8K43xE6uL/M7JWcbdBSFrtqZbgWtSnFeZ2FcVWu4PKlqVVWR3yPxnYZCct3BrHnkU4jiG1LAKZzGD4rArkEe0NtIB2FSsGIyhwau0nuxVadWcnZhVWdXamx3k5adbWPEKBraF58Me2qhY5aGnAgns92atrK0rSCkjFdbXI1jK5mFg9499eFwDqR760PrSk56Goe6SiGuwSNW1WUbhysbbnxTabe4W5M9ltY6ghSvyFIfLezkZTcmyPKM5VKvltQoqK+0Sc79arMxhEVvKAduua5q1TJKyM3UkdeRxnbFpy2685/ZZx+ZrP5Vx1fzbEpXtCRVCsTjKYbeEjJGc1MRHWtalZFbqnJpDPItPyk2H+SqHmpf/alJnFDzYJaabHtOa9YbaeZ7WMY61EXSGjCihRpKDSDlIWl8bzm/wBhHtGRUU9xxd3D+pe5Y7+yD+YqJuLX6xOonAO/nSvOSlRTkae6uGcpa3dimaRLucT3tacrnvYP0cJ/KlvlJcc4XMlq/wDrGo56SgIwADUY8HHFkoOBXHKT4O5GZonpN5ubgJblvjw7ZNRD17vHMwZr5H9qm7clxQw4ARUl+jmSdSmyamMJS4kZmLwr3clNgLmve+ibfroyApqe6n7awmR0x8coEJP3VCzFEk6jWNVyg7XMpNk1B4tvQUf8tcPtSk/wqcj8VXgoyJqz7Up+FVW1tIdAAIqeZt6gMDBFdMG4pO5jKcluY27xpfGQdL6VY+kgUn/KffmncKTDWnzbP8DWmbBc0nSN6q9xtz4USnx8KrVrT/xbMXWqrdJnR4fpGuLqAXGYmfIEfxp4cfSiN47WfI1zO2R3CkA5zUlyFpOxqn7irb+RjLF11/kXd30gSQMBhIP9of4aXT6THmM82IHM+LgGPcmqNMjO6SQvNQkgLAIUTmsZYutF6SMZY7EJ6SOrn0orPzbe3+9P+GtavSjIwcW1vP8ArT8K5XEWAcE708pxOOoqP3tdr+X0MpbRxXv+SLy/6T7mf5uHHT7VE/wpF70j3pZ7LcZJ8gr41WEIDiRihKAlW4GKzeIxHGRzTx+Kf+bLMzx1xG4kqMpCd+gaR/EUVExgjl7EdaKp21X334mX7vE/94/FnSFrJNZtyCisy3tS7yQk4r6OSaPukeSJZUMUmrJ86zXiju6VnYg0rUEClFuAqrZKVvio90q1bVD0A6ladODWp3KhtRFbLhwASaf9UVp3GPbUasggnkkA4qOmSkwWVPSFdv8AZBqTvshu2s61HU4o4QnxNVGFaZnFclTjrxZhoUNTmPnb7hNbUabkzWEbe0yLcXc79LCILOGTvzFjuB7hS3yRvzzxDzymmsbnx9grrsRuJbW0sxmwhKRp8zt31refShWDg9xNdsaSLOZzVXA0hxDfPcQtIAGQnBHu61MROFXYcFbcSc4lSxgkjpVrMhKAsLPZBH3itPrCeYU5+cMjzrRU4lc8jn6eFeIG5BWxKiLOc4eK9z9lTVl4hunD74Yu8R+Kgndae2yrzz3GrGmSlxvYjIANbVPpU2Q6lK0nZQO4Io6KtoT2j3MlDcm5DSJEdxKkHrg1Ez7okalNqIxSblqQw6HrZ+rbXs4wPm+0CtBgvvOKQE4Hia86v2sJZUjGpFLVbhYXVTiyVuA+RpqHKeLgU2cDNaH7IpkczZWOtO2xsdCNq5P9RO0zJItFklq5qC8sqGe+ugRpLamk6VDpXJXnSxuk4xWxjigsoI1KyO6uuFWKVps0vY6XdZbbbCiSK59xBc0JyEkDNRMrit2UrSlKsVHJdXJc1O+O1aKvFq0CspXIS7xZUpfMQ2paRvUO0tyJIDhSUlJ6V1O3so0ED7KhOK7W0pKXAgBR6gVhWwl12kXqZyibOHOJwrDS1kHG2akbjdAWyVuAJ78mueoYLTgUjs79ablNl9olSlkDzqIYuUVlktRZiV5uPrDyxrykHbFabbfjBOFD7TSbzCuacJIT50tJj6wa4nUc5XZFi7QuJ23joUrUT3Cptm4gJ1IGwrk0ErjSAc5Tmra1NccbSlsYSe+uxSpqG/Uq1wOhRLugLQCQBneuh2mS2uOktrCk48a4E28tBALlWK0cQOxEFIWSPbVaWLjF2kaRbidRv93bhx9W2ruGapz9+XNWNIwB3Cq3dL6qaRryUjurO1z2sgHArOpjHOWWD0JcrktIcffOdJyfGo2XbXpCDr2zU21OYKcFYzS8u5MhOMjNZytvbIuRMPmQmw0sagOhNNtSlF0HISmkZkjmEacYpVtw6jkmpWMnFZU9CUXmLdghrGRnFR1wvRQD356VVXHlDOkml1vlYwc586s9oSlpYNjdwuXMbJXgY8KhEzUrePbGnzrZKZUtBxVdltrZWSDXLOs5aSBZEvNk+VMB9AxnGKrEd1xXfTranFdSayu4rQjeW6HLZCQQadN0QkYSQRVNbbcAyFHes2iSvtE7d2a3p1JpGctNxay76wncj2VHO27nOZAKq0NvJbRqya2QrultwpUce2pdpbzBskYVpUzggAU/6yqNsobUob20MdsZ8BSky6NrA3yTRpJaGciUcnoUnfrSMh9pSTkUqy4HQcV5IR2DvjypJJq6MHqa0PpbV2OlbFzQB83eoRUkIfKc9DTeoKRnV1rmbtoc0kNGaHMpKaRmxi4gqRQlB1ZycU0XAGvmms7KRg0V/lKQrfrTDbKnN81ufwtZwCKwbe5eciqKmlqzGUbm5JWyNjWLsjPtrW5J1bbVqISsE1VpvcYuI7DeUW1b/tUVjb0jkq/tfwFFVyMjKdkK6UdyVGtmvIr1kpU5v3V9O/aPvUkLpjKXucgVg8C2MVNtoCthWD1v5iutXycijKw8hTihhJrAxV4yRVoatgSvfc17IjNpSeyBUOlcgi7W2hpCcgZNSclbYZwcb9/h4moZ57kOkAdkUndZjjkVaGMhZQUg+BNaRatYlK7Kg+hd8vq1Lz6mhWys7JQMjA8yasSHUR2m47CEoQjYJTsAKTbQmJC5DWchOSfE95pdx7VqKTgg6hXTCOVWNXqOyHMlxXiKj7hMKXFbkA4UCN69DqXt9WFdOuxFapDa14CQDnzqrnY0jTuapE1K2CP2ijO/eRUWLqOanK8qSQM48e+mJVtfWnux0wDikXbI62FqQCSrB8xUKsS6LNyLgRLCEklKtxuPCnGLkdGpX2Y8MmoGXFeZWjLZSoDORWDZcCmyok4OMd25rWNRMpKm0XOHP/UgjcZAJ8PP8qm7fMbkMhShhR6+2ufsSVNsLaCj13GambRLIBBOMkkEHpnvqJWkVcNLFjuMplLKgogVAxJwbBydu6seISSgOpICVJ++qsmUoL0k9DXh42rKNS3I5XeLsWS43PsnBz5UjbQZSlqX0HdUfrCwd96ctbxjOEjB9tc8ZOTTluK5rsmUwhqBSMGvHctgdM1revCkowAN/Gox+a6RqUkgHxqalZR0gLonYt2LB05z51hcHpMpOtQAGNsnFVf1s8wHPfTUietwfOyK6KGKeW0iVqLBbjszlY76utmsCnmQoo1H7hVNtb6BcmivpnBNdvsJQuIgN40Y7q6cLCE25PUlI57eOGV6TpRpPj3VRp9rUwpYS6CodxGK+i5cFMhpQCBuNzXNeJbW3FUrmNJCfHHWt6mGpz1JcDkCXUtvEK+cDg5qftyuboSncq6VEXm3FVzc5YVpVukAb1P8MWl0LQ47qOO415jorNZlNCXasS1jWXiPIDatrVrDK8LyTVshttNxe0B7KSnFpZwk6FDpW86FNL2US2hJFrRoOwyfGoW7QVNOjRqR7Dsack3FcVZDqsYqJn3kycJGDjpXNVjCUbW1IzIYZJQACon7a9U4Qck5qOaE11QCGyQe+pRi2TXB2kCuRwe5BWN7ElJABFMpSFnI76U/REhvtKJA8BWOtbW25xRQcVeRN7aEgpgBJwN6QciqJJNb25hA7QrCTOSBttV7JgjpLha2zkVBz3krJ2p+ZKSpRqFnOpztWai7kpXPWHgkDOaeaeKgNJ6VCtlJB7RzTbKlH5gNWcWycqRNsyBjCutbDpCspO5qF/XIUCBkVJRnkOJAX86toJvRmTiMZeV2UbikpbL2rJB+ymUzERs+FaH7my5+1gVp2dkc846i7Ty2T2gamLdMYcwCe1USqQwpByc1GKkch3Ug7VR3juM2mdDZdabHUZrXLkNlOx3qiqu69gVnNY/pVQIyomqOTMGmStwUS9lA3zTbCylsDO+KhBODpBzT0eWgp7R3rOVK7uZyjoSaZYGx2FSSH2lR+6q6VoWayD5SNCVbVnlaZzOI89JayQFAmk9Ws4rFqIlStZ60ylgpOUjJq0U3vKZTfGhocAzWx+36EkozWlt5bSh2cU2m4g4SoVooRK5Dy3Q3uQrPXV/AUVN299osZ260VPZIjIW91R6CsWQ4HM1uOCa2tYxmvaUUfYD8FztJyak0kb1CIUEb5rNUtQHzqm9t5DJZ11Ke/FRU6SMHB2rHmqcT41h6tzU5VmrZm9xBEujmKJ7zUdNVyiArvG9T8iOlCdhjFVHiKWG1HcAAEH20gva1LxFHnv1qtKs7UokqwvA2xt76Tguc+QSndRO/mKn4sPmtbAg9MEVs5m8YXFLdGdU4s6AQOu+x9lTCImWwcZPXrRAiFkKJxkedMOOhDWDgHwFYydzeKsKJbxnI2rJLYJ6ClHZgCtjtWxiWlWMGsG9ToURh63tvp+aCagpNlUFBppBxqJUR3Duqyx30jv2ppCmyrORmt4uyM5Ip0iwENKUjSkqTkZFQ0ZmRFeCVbYUenTPdXTlttqQe/NQVxgIWSEAD2VPaNMpkTIZTaplvdQRlYAUBnzqoyEBpzIJwKtkVSmpDkc943OeoqAvCEc8oBAKRj2d+K5MdGMkpHnYmOVkeH8HY0evaFdaUWN9jWpaM753rzXFyWhyInoEoOvNhwdnNOXEDOc1V2JBbVg1Jsy1OfOVmqReRNMszcWwpQwOvWmFRAW+ycnwNbISArrj2048hKW8jrVlPjYlNWIDSUO46HNdL4BvoQExpCvYTXPZCdS8kU/bXinfGKYerKFS5ZOx9BIfCmwpJBTiqN6Q5Udi2HnY1k7DvqHh3uYywA09lIHQ91VTjaW5PYLjj5LiTsCMV7U614NxLuV0eRFx3nAtaRk1aLT6uSlOAc91cgTOktpIRmn7Rf5seUgklSQRtXHTV3dlMh9BxeH/XIwJw3kbYqtcQcNS4QUtJCx11Crfw1fWZ9uZcbUN0jIrLiKa3+j3dZHTYV2uEbGmRWOSTWUuxVczSpafGq56qtchKkt4SDvipt0LXIUFEhJVmpJuOgN6tIzXHJRmZtI32haW2gFJAwKcfuTDG+oCoSRJS0fnY8qi42m63uLDUsoZWvU859FtI1LP2JBrNyS0RCXIsEq8oUrljJWcYTjc56VEmclaskEAkjJHeOtPXWXFu9+sN5tspmSET24j/ACW1ICBry1kKAPzMpz/VqA4jlKbscAgn/wA/NH/Eipd9bkuNiXU81y9iM1GuKS47pztXs5ESPwkm+JKi3Jabjst6zlMkKIcJ8glGf9sU7eILMSDciLc5HYhssuRrkVrIlqUU5G50nIUojT000cCVFiyLWyoas71rctLKzjOamrpG9UavkgQ3UQmXo6Yjx1aFoWofNPflJqD4rvDEfiGfEgQRFZiPLZBDilleFYycny7qtkjElqwu9amGNwkUm6EtO6CkpV0xjf3VYOJEqZtD6Y1pcU0zEakm5lxQSor05xnskZVpAG+2fGji8w7jcZziYYYkRJUFBfQ6ol4Oo3yM4GMDGMVZ01wIaIxrSWyHEkblO4xuOo9talaWiFJT2ScA42J/9mpUssPy4VudUtMVfEM5nGs6lABvCdR7ycDJ8afjoTNj8Ns3Oxqt0dyfLC4upxPMSGkEHKjkbjH2VZRQylbedQW+0BVXu7qG1EpxVt4Xat9+evUxyM20mI22piAFPuJOThSjoy4oDHd3q7hSF0jWC2yOIpYgLuDcOJFdbiyC+wll1xeFDtBK1J3BGeoPXvqso3WhXJfUqDch9z5icJ8zTAamODVgEe2pK7m3WniqOfVtFuW3GlLjaydKXG0LUgHrjtEDfNdCuHDlktMOc96wl9drZcelpKzhSXQfVcf8OfbWMaTd9SjpXOU+rSskuNqACdWcHpnGfZmtqmJCXA1yllzOAnG/uq9OllmwTVN6v1thZeUSoncykjbPT2Cn0rSv0xtJ06lesI7Pj+rG1S6C5mTonMEuuIO6Fe6mWpSttIPurpDFigXGTZBPt5si5ctxhyOVLGtCUghQ15IJJ0+2tPE9ptMOGw7GY9WlF5TZaS0+lCkAdcugdod+D31V0pRVzOVB2bKMiWod+KyTJWV5Bpu4xEKQS2kZ8qjIocQopINc+VtnJKBPQppOEqNTMd5Kh1qsNtYIJyk1KMKGgb71eEHuZnkJzQhW5NKvpAPQEVGO3TkZBPSoiVeFqcJQoikoJFXAuMB0pZUAf2vHyFFV21XFa46ySPnn8hRU5kMh2D1tQPzFe6shcMbYI+yrQYDRPzBWl62NfRFetKi+DPpCCNxQf2sVqNwCiADUnItTedkilF2hsHOM+ysqlOa3Mg8YmpOADUlHmJ07kbdahZEUx0/qxiqnfLvIjPrYUooSeh1Y28amDtoy8Ypltul+QguJQ3qbTsTnr5VSOI5iZ41tI5fcU+deRH3H4bIT2UuOKUtZVnCUgZP50st6NKkrRGUrIG3xqe0tKx6EaCULpG3htoF9SlnYHHnV9jRTywobCqZww0tcvlr6pVgmuhJ0hISTgCtb3K2siPlANNk6j7aq9yuIbCgDmpbiK7R4yVBzUE+NUCdf7etZCipPnWVRvga07LVmx+5KLnWmItxOc6qg3HGXjrZcSoHwNYJd0K61yu6OmLTLizdMd9PsXMHHa3qiCVg7Gt7M1QUDmrxmw4o6K1cQB1yK1SpIWpJyBvVSYn5AGacTKLmBUuZPZowmr03vAzjBJqv3t0pkuKKcBW4qVcdC7ghRUNwQSar95d1yFHUPIeVMT7VNHjY1aiiXDk+dbOvWk9ePKhKyTtmuG+VWOBam9Te+R0rNvLdaw4fCs05XtmsJu7LEhHnLbxg4xT4uC3wEITqUe4d9Q8aC666Ejv8AE1O8tFvjluKnVMUnYq7s11YbDzm+SLQpub0NrEFxxYMhaWhjJyckfZWLl2t0Nam0Oh1TeNYApeNaLvKWY0GO45KdA1Or3SkeZqy2j0PFKVvXC4KTIcG+jcJr0YYalB3tdnXHDxW8gF8SRfWENRm3BrTnVg4FHrcK4BQDhLg2OOldAtXoyiRmuW9LU/jdJIxik716JTKyYFzUwNtSFDKVDw2xW2Sna1izox3HNZlqVziGiMHdKRuTSkeK+08kyGy2knoRVmuHA3EljW6GS3IYIJC1Ekj2eH/aq5GmOtyPV7k6oOg4ylXh5Vi6EUvY3mcqFloXWyXNMBGGFqA8KlHL6ZAPNXnwFVllnmvJQ0pOk9DVjg8MNqa1uPuFZ8O6uZdtJ5bHNaS0ZETJrSFFasUg7ff1ZCKcvPDj7MgI5mtlXRRqq3OG5BeKFdPGsKkase4q1Y9l3BbhUSqo8yVZKgtSSQUkg4yDsRWh5wkkd1eNhaSlxtRC0EKSR3EVgoWdwtRyS1It0hyO6XI7yFAqRnGFDcHbv3++llOqU2ElalAEkAnOCepq9XGc3L4zu09M+A5LeiBy2OvuJ5aFkpGFZ2SoJ14Cu/HlWM1caRcpEZy4W92dNsqGlykOJ5RkhwKOVdASEYz4+2t3S5M0ylYlzfXrfBgNx24sOMVLKUqUouOKAClkk9TpGw2FOQbe9cGxGS8880w2t0NKc7KEpBKiATjpmrFEXEY4hLUeTbnJjFlbRHfWUqjpkgJBJJ7PTIBVtnFOzbm7a+IrZImPwEzFWN1a3WNBaU6Q6E4x2SSQBt1NaqnfVsixVExX5DfIacfebbbK+XrJCUpBUTjy60ipl2W3McbBd5DZfeUVbhOoDO/XdQ99WuLxEP07Febnx2ZUyzqaefKkpSJBSrTqPRJ2Tk1XOB5j0aTfQxcYsKc5ALUd191KUFfNbOAo7ZIBwftqXZNIi1yurkuvNpjGS6YwOQ0VnQD446VICMVoUpb7hKiknKjuR0P2d1WFtyHP42h2952K+9cYKYMySykKR6yobOJI2JCg3kjrhXjUHxPeWhfJItwSiNEWGGCkDdLfZCvMnGftoubDjYymWeUlM5L6HQqFh58LXugqKRq69SSmoOXcJjjyVOTZDi05KVLdUSnbG2/hV8vXFTzF74tuUK6RluS4LSoK0rSs45rfZweigNWxGRjNOWydZ/0vxC5FdjouL7jDjLqHmmQpJby6ELcQpA7Z3G2feKs4pvRiyOWQo06VdIrFpW4mc8sNtFtzQdR/rbYqNYVIkvvrlSHVrdI5hWsqK8ePjXRw/DHpVgzGW48KGiYyV6HUqbBGNSgoAJwTk7DFRVp4eNl4htkq8u29+3etp5qWJLb+E5zlSUknHjVHFvREqxXHG9fadUVHAGVHJwBgD3U2yvUFanXFBYSlQKidQHQHxxjaulRZC2rzYVX64WydcWprrhfj6FIRH5eEpWQADlW4B6D20lwyJr8m7TH5cdq+PsJTFkPJQ2hGFDUE7aUnSMA1aELMiSuU66wpUQoZkFxHMYbWlOvILagFp6HpuDik0LkNvB7nOc4b8zUdWfbXSOLrau5XJcwyY8pUeHGTIdaWNKl6Ak4x138K2cLluHDhepzbbDdM3NxVLWlKlMDThKdQ3Se3kDfOM1Zwu7GLh7Vjm71xkyXQZMh11aRpClqKiB7TUk09cLpJiRkvvyX3FBplLjhOCogADJ2qy27iCPbFWiDBlQkRXb3IEoFKFZjlTYTqJGQgjV5HHlT3BFwajpt/6JuNvgJauS1z/WFpQpxnUnRgqG6cBQwO8586o6a3NlXT7ynMyHW3FNPZCkkpI8CKdjrZJySM0LhplTJKm1gpU6ogjoRk0rJsruSWiQfbWG45nEl3VMlnbGcVXpE9yO6oI3FYJgzmiQpaikedZtwivdRz7ao5tbjNx5iEmW5IO+1awjVjJ3qW/R2oEgZpdULSvGCB41k25byMpJ2FCfU1dPnn8hRUjYoATDVufnn8hRVsjIsfQ6ZQHU0KlI7yKg3JAzsaSdl77Gut453PcLGuQg5JIpZyQ3Va/SB1Eaqy9aKh1rKeNk9yG8kZkhKjgb1z7jWGl94PoA1Aad1eHfjvqzSn1Blwg9sAlNU66NPusJcXzCk7KKhg+f2V0ULy9uRtSXELekr4dcQwSXVBaEhPjlOwpDheFI/TTbK23EEDU6FjGB/+6nuAJURDk1t0ABj9a0D7j/CmbUoS72/KCzpcd0gEYzjetJR9tM9SnK8LEzYIIYeWs9Sa18TXNcRYCSdPfiphhISdhgUhdYrUgKLgztW0noYx36nNuIOIWnkFLjgx51UX5EOSCkqRk94NWPizhqIpK3Irrkd7Ofndk1zO526czMIAcU2SAD86s4xzcSaknHgSTzbkdeqO6oeG9PQp7qsJdOT41EKaehyvVnHA4rSDsc01GSvOSKrUTi7SJpNPVE8iQcdaYaexjJqAU8pHspORNcXslRFRGJq52OgQe30UKmYrShg9RXJobs/mAokKxnxq8cNPTUrTzHSsk7p61ZwvxEar3WJxpordcz+wcEk4FV27xDpcUFFStW3cKsXrBbVIWAnBUe/wqMkrblE5c7P0TVaso2ynk4qScyuNMqx2jvTTTSgNxTLrSG1ddq1Or2wmuZwTRwOWp6lOetOQoiHncLUEJHU0pHa1HdYB86dU4mOGkLRnmZOoeVKWGzTV9xrTjmdiUkuGLGBhgFwdMjOD51b+BOHlOsplXEhbqjqVnoD4AVQrRMfkzG0BslBcPU4x5122yILcBpJO4Ga9ayirI9GEcsdCYhssx0hLLaUjxA3rJ+WhJKQcmq9deI4MDUh6SkLH7I3NQrPE0J5wEPgg+O1YznbRG0Kd9WXhuUe6mW5XnVehXBp1AKVA5p/noSkqzURbIlElXVodbIODnqDXPuK+CbRckvvpjBqUoZ1t7HI6bVZkT2teC4kZ8TWDjiVqIQ6lXlmrOQjG2hwphSrVeFIfW6otDods/wDvNdCtN3Q6EZXpyNgag/Srbec2l9sAPJOQo1VrDIkqQAt4HGNJBzVs2l0c9emlqjqdwktSdDaT2vCq5feH5MpK3CGhtsCd6RhTVszELeUpWKlpFwkSuy0OtUTjVWpxXTOXSobrEpbb2UlJ6U5bLRcrklz9G2+VKS2cLLLRUAfPFWC/2l4JLqxlR327qleBWlz7daW1v3CEi23JTy3YqAttwHQTzTqGjAHzlbYz4VxujaWV7iUjn6LNdZsaTJjW992PHKg84lBIbIGTnw2rKNbLp+ilXFFulKt6esgNHRgdTnw86Yu17jyLRcLewtzLt1clgj5ikEYH21YG+N4ItMVTSER7lFgepJSqCHgvslOzmsYSc7gpPU9aoqceYVis21F+bjPXiyxpQjsJUl19tvUjTjtAgjBGOo3rVxA1eTbLbxBeHVPN3IKS0tWxSEHAGOgHgBtU7a75aER7Y/MduTT8G3vQkw2mUqaUtaVguatQ669xjOR4VVLrLiy+FbPDy+ifb1uo0lALa0LVr1as5BB2xj7asopK1w2rC78efyA76o+W+R6zqCCRytWnX/ZztnxrKNapbzqmpKH47iXo7R1NZSkPfNKjnbbBA76tfCfGsS28NxLVcIbj2X1x5S0pBKoCwoqbBz84LWVD2Cot7iZl6ffZMht5Jn3OLKaSlIOhppajpO/UJKQPZV8seYSQrL/SHCcd6dAnhLvrsm1lSWxqHL0ZUCc6c6u7cY60teeFr1brXFuYjvvWx+K1JMlLZ0I1jOCfLOM1jxddo92tbseMh4OLu8ueNaQBy3QjSOvXsnNWGPdbQqO1NjuXNdyTZU2kxFspDJVy9BVr1bpGScaeoFLR3E6FTZsV4Nq/SybdLVbhuZPKOjGcZz4Z76krBaZ10tl2mxEBTNtZD7vmCoDA88ZPsBq8/KmJ+iGFtspj3Fi3CBoVADuoBGjZzWMJPUgpOMnrVGtEmHb7dfIU9b6GbhFDSXGkBZQtLiVjIJGx0467ZqcsUyjSuSdzsdxttsh3JyO67bX47T3rIbIQkrAITnyzjPjT0e0zI9tbnyLfIbhOYKXlNkJOem/nUA9xhEXFkMgSVFViYtqEKHZ5qHUKJ6/Nwk7+NW+8+kKDc7dcH7e36vOnR0sORzABIHZBHN17gY27OelWWUOKGmLFJXIfEODJfDAQXCGsFGpOoZHdtms4JcnKLUKG9KcAyUtIKiB0ycUhcuIRdIt2biolNiW9EWjUMApbaKVA7/SIxXnC7KjbOJ25k16CwuG2jntoKykl5HcCCQeh8jU3V9CNHoeuKlO3JVujQZC5wJywls60465HdUJcY05+6fowwZAuJOkR+WdecZ6ezerAxxPDi3Wch9p2RBftzMD1t6OHFrLeDrU3qGQcYxqzgClJXE0SVdJaHnnm4blsFvZlxYYbWyNQUcN6zkEZT87ODVJWfErkjzKmbFck30WtVvkC5HpH0HURjOfZjfPSmBZbobqq2It0lVxTuY4bJWBjOceHnUy9xDZ0T0xmXLkiAuzJtapZZSHkKC9WoJ1YKSAEkZzgmttl4ms1qmz46UypMCVCaimVKZDqtSCCTyyv5hxjTq2wPZWThF8SJRRGRH5VrmriXFh6O+2cKbcSUqH2VMt3hknTkA1EcUXqLeZwdblI5USMhiOBE5PMAO4wFKxjJwSegxUEt8FOUmsJXi7IxlBJ6F4VMjvDAUNR7qiZS1trOhOR5VAQZakLGdxVjgzGV5DmM+FOBjJWZ5a5hWrQ4nTv31NqjNuEEYqFnIQghxrH2Uoq6uITsSCKghRuXy1QkpjKx01fwFFQ3DV7cet6ioHIcI+4UVe6LdmdNW5k5FLSD1PfQl4eNaHnk95rldNpnp3FlEpXnvre2vCdzSrqgrcHavBIBqzgiIs3Smi60TnbO48R4VXbkptuzLC1ua0KKCnPWrIHUpaUpZASBkk1zzi+6APuNN7rPaUkdE56Z867sMm13HVS1IITXocxL7TxS7jSlseB8RVu4LmPzOIYoeWSAFEJBOBtXOy6ht5p1WVqUVayavvoxUHLg09tskj7q7NJO51QnJeyjraylA3OKQnqHKJz1qNvtzSypCdWN6rV54iKRpB29tUlI3hTehvuUZMoqSrI881V51gcQollw48CK2jiHCu2a1yOJkKIQjBVWMWbyihIWhYOXgD54Fem0EgFKfuqctiJlwRzC2NHlVntlpC07jJqU8zsVypK5yW5QlZKQMHp0qk3tubHc7CFBr6Xj9vdXdL5ZktSdSgBvUFP4fU4eZGxnvHca0jJIznSzbmcxiRp0e2NzlqJbUrASD2vbjvq/cErkPAur1aEDJJBFTtm4fUXUKksNEJ+kKnuJizD4feLKUIWQEdkY6mr1Jxf8VYyUXRi5SdysOuq5SSkdk94NaFKwCRv50jElONHIVgd4VuDUkktvoKm0pDpHzM7Vgkpas8KpN1HciZrq86e4UqhatYJ3Fb5QIcKjmvGlJI3ArFoq5agHlBzYbVIXCIJbEdzWQn6A76jFlOcU3IkAORw2RhtJTpz1866MLJuTTOnD6ssHCrobuCG1AKUpQAAGyQK67zFvR0stK5QUMKX4J8vOueeiOxmUZFxlgKJVpb8vGr7fX24DBUtWhpIyTXROWtz1IRvZGmRDgpRymWW1DvUoZJPmaq15sTAUXWEpT34TVS4s9KyrfhiwWsvnVpVJkIJyf6qfCsbbxTfr3aVynbeyrQoDDKFNOHbOQDkEd1UyuSuXUkpZS58PPKSnQglSQfdVkmPOJh75FYcEWEi3tyJCVJde7ZQe6rDfbSHrepDYwdPWqpOwlJZrFHajevvDmuL0+RxVjj2iOhkcgltxI2Vq764vc+OpPDk4+tW99QCykJWeWNvvq6cJ+lK038JYlx3La+TpQpxWpC1eGe6rpStciUknlTJPjNn1qzuc3suJyCfA1xbh2S+1c1tKIKWlHGPbXd+J4LlwsslLKu2UZBHfXBLfzG7qckNrC+2cd2amGqaMq6ui9SXFHBQkqJp+0Ova8L2pVt9soBBBBGa3ty22/mkaq4e1yyPIvYn5TSFtFRUMEd9cz4liNetKLedPQ476sdxuj6kaASE+VVuUVOL3BO/fWk66noiXK5Fx7W48oBCTpp9FmLW6hvUxa1htHbwK2z5jZRhA3rHMmUbsV95gJTpwAaSdgBWCetbJslRdPhWtyclKAO+lyNWLraS2CMdKRkOJz0re46p4kio99pSVHfOaXuWV0TQscxb6W4zXrZ5DclRYSpQQladQByBvirDZ7Y76ow8IzgZeVoQ6UHSo77DA36H3Gom08TuxHlKRCikKjsxylalkHlp0hRGd9uoO2wqQY4meZiMNNRI/Oa5X63K8qDYUEjGcDZR6Der3itbl7XGkwpcpcYRorikySoMrKCErISTgHvPZOPZVbNnl3S5zIobMZcVvmP8xtaigZA+ahJUTlQ6Dzp39OzeQhtECOlwBsLfyvU4ENLaSMasDsrPQDeo5UyQm5ia7EYeWGW2dDhWlPYSlIOUqBz2B3+NQ5RJskRqOHpCYnriVNOMqUA3pJBWCtSAQCNgShXXHSrfw9ww8SkuOMIXyC+W1E6sArBHTu0HrgdN8mixz7i/GehvyeY1IcDi0qSCB2lKwB9ElROOlXRlSoLAcQzHJDBZzgjCSpSjsCBjKjsdthttVopXuVcosYt1oYEZKikdKyVaoqicpFV08ToisqaJOU7VCK4tk81SsdnupKoluKpkzf4cdkkIABFRcWKy6MKAGaiZt8dmuZX0rQm4qbHYV0rLM2yjRYJtqjBGUgHFVi5sttglsYrbLvDqmsJJyaiDJcfP6w1LLRpvezX2iratrSFKOMVuaaBG1SUOOScgVRpESVhJpsp3xTDalBQJyMVIereVKyW+WeoxRK5nlNqJOw5ivvpxCGXUHoaiVsFxGpPdSiHHGHMZIFTawyu50HhqIhMFzSNuafyFFbOD3wq1KOf86fyFFaqBfKyfNx2xq3NahK5i8Ek1WVytLnzqehTW9Xzt6idJ2udJOOP6U7dK1x1kkrVjTShkcwpSO+m4LS5kgNstqUc4AFYQpyvdlo9x5dJClNsNnZLrqU+0dcfdVJYimdapcjTqecQ48T3lQX/2rqjUOE1IZTMQJDiFheAeygj8z91StxbjvQNFvS0wUH5qQAn2EdK6KUXbV6ntUNnVXFOfs3PnIw1pQ2f84rdI6Z7qv/o0iOsvv8xpaA23nKhtk91dBEZLZbU48Sp04GrtBAx3dN6YuxajQQlgYQEdfHzrpi02b1MEqKzXuc242luBeEHvqpX+YU6dGT2ck1ZOJ3EvJDg3B8Kp0taV6QfOsL8CZqy0Ir1l2Q5oB01LRrU6GS6kkqxVedblR5C5McBzfdB76nLfxKpMdBXFXpUOo++tLaaHOnfeZI4ku1sQlpheEp8R1qbtXG8gaXFOkHvGcVAP3SBNBBCkk7bjOKWRa2lupUmS0QegzUKCLZpI6czxZbrzbpEeY5pkcs6VZ6fbUJw9xGQeS+oK0nGaizw+mPALq/DuqpNumJcFIyQknapcVwJU2nqd3gzWpCAQQD5Gq36QZgQ3FiJVnUS4r8h/Gq5Zbi+VoS2SSSBW26yBIurinCFaMJB67AUUb7zk2hVy0rLiLsLCUgqOB51uVLBTpbTjxPea1PaSns++vYwBO+KjKfP3M3nVutjmpyR+131HSHSjcHFS72AjYjFQFycSCe+onG5KdzASjzAM1LTgjDCkqBJGSKp7j+HezmrzYbMi52RM25T2oEcOaG1qGpTmOuB/GrUZRg22duFhKU8qR2T0W6W+G2gOqiT99XN2MzIQEuISo/1hmqZwfHFuiojNucxtO6VDvFWddwbYSSs71pmR6jg0yJu/CEWc4VqWpPsOKXZtFvtWkKJdVnACjnJpl+/BZKUqAqp3qU7MmoQw8ULSQrUN8Gsm+KN4qW6RZ7p6QLLZJaID0yP66cDl6h2fL203G9IVpdW1Hlyo7C3dkcxYBP2VzRzgaPLkeszG0uyFf5/QAqpJPo2gTUpXJ/Xuo+YtY3T7q0TZV06fEvV0sMC+LVqCA8nvGN612/gaEznnMtODwU0kj8qjJKnLCqBh0rQEhpSjtnwq3W69IebGrfIopcGVmpJXjuMXILUVrltJARjGnuFfM/F7Ah8YSUAgpSs5TjqM5FfTkx9KkKKTkEV88cS2m4S+Lpkz1J8wkuZL2g6Me2rwko3ZhVvluNvD9WktnAIrGGggg5JNekhQBHdXqF6BsN68yVWMmePJjSkgjJxWlTGv5iCfsrGO6C+NW4z31a4amA0MhPtrLK5PQi9itNWxShlQNYSoSW04xVrQtlaynIoftwda6BQNbRjlWhRu5zSZEwvptUbKipSnOK6VK4fCxlI99RZ4ew6eaQUipsyynY57GZdW5pbbUoHptU2xwxKkt6iNOe7FdCslljpUFFKUgVZC1FZQAQKm3Mi99xx35HSNQA1DzqRYsJitp9YyopGAT3CuoFMYpynANVq+LCgpLYBNLJashtriV5TEdCMaRnxqs3VTQcUnOCOlWgW19xBUomqjfGDHdVzfHrVU+4LfqYRJ7kZ5OgAkd9TjnEq/VSgnUojFVmDynM5z5GpBqJzCE4HtxUSll4l8hGPyNS1LO6icmly/rNStwtJa7Q76gHEKacIpB3LZRh0kDY0vqcJ763IVqIzTIQkoJIxWmhrGKe80oBW2NXUVqSMLIrYp0A4HdWhS+2TirO1i0rcCXjBOBk1Z7QyytI1EZqlRXHHNkA0+idJiqBCVGsWjlndlzksob+Zg1A3GOVLyAR5Vna7mqQ8kOEg1Z3GIy0JyBk99StNSISaepU0ZbbAWCBWyRDakRioDcb1aXrS07GJQQdu+oBH+TyCyfm+Bq6dyJM2cJF1q3vIGSA8ce5NFW7hqGwYCzgbuH8hRWqiWUznEqcQrY5NbrdKcUrrk91QrSXHnUoSkqWs4SkdSa736NPRsi3IauV+QFyyApEY9G/NXifKr01KfwO6lTzsR4M4SuFzDcuakx4nUEjtLHkPDzro8O2IgtqbjRm20HqQMk+01MrcSkY1D2ClXnsDYmurKluPRoU1D+KIyREbCTqio270pwarVxiNN6n4q1IdRuUdyvKrJMlKSlRQrOO6qTxDNOC61lLgO4FYVbHvYKM295XL9eiy21hxWnOtBHgQdqauN4DtvCQrohI3/ALIql8Vr2YKNkKUdvAk5x99R6bkrS62T80jH90VjTdmzo2kkqaXebJtxQHlMvH9Wo4z4edRkyMpAKk7ioq6PlxZ3pqxXVKh6lLOx2bWfyNTa54qlfRjEZscxG2xPQ1MR7WWHTJgIS8NJCo6j0z1I86j7kgsKQUDfFKIvTjDwUlRB7x41aMraFcsXpIsTdsshtQalISxOUe3rTpIUT+VRl+4Zt8XkmJMSkaFLUdec46YpuNxUhSQJbaHU4xhxOqmRe7a4nEaAyhZ/a0YrojJcisqVtVIo8a6XZtL0ZrLkU7DWTt50IiKfDanN3BuasEwBzKWUaluHASkbk1hGt7qNRdwlY/YG5Ht8Kzk+Jlu1kzbbnkW5rmKGp0jCE/xpCVKAkqCDsAAfbgZ++s5UdaSVKWVLx9gquuOLbf0q6GocvZsjy8XWjVeVE+JRI+dW5t9WnY1HRRqRkmpFoI5YrOxwaIXemOA4Ktq0lPNQSones5GnVkYzWrnpSjr0pFW3lXu0FHYwG9dFZgRzwrEmS0qeixooCGgSApxS1dcd2xPuqgF4OKGK7L6MpUSfw7+iZ7aS2FlRUpOU4O+D/wC++qTp9q7Hp7MxHY1deKHfRnczM4f1OqTzm3CgpH7KdtP3U1f7iUKUArpTM1+y2uS1b7YI7S3CcIZHcBnc+NVniNRUTjO9RLRWue9TjmlmaFU3RRJIVvScG9tMTVuyl4Qkkml7e0VuYPfXPeOpz9vlqZZBBWtRB9n/AO60hG+4zqSUW2zqL/H1ymSQi1Rm0ND5urGoipK3ekO5wFtKusRJjLONYAz91fM5fkZKiFqJO5rxUqQ2pKiVjT036V0Wivic/a8HHQ+vuJLrEutjTIjuBSVYUk+BpGx3NSUJCjXH/R9d5lyt70dZJbQtJBHTeumQ2VNqHhWbV3curJWRfY8vmo2OciqKZN3nTY8qFLxCU6I62U7aDnfUO/O9WO0nmqQ0pzl69tROMU0qyROFbLcJa5AcaILwKiB2huB5nNZzi5KyJhOMLykcnkyEB5YQMYURiskuZHmagUSuYolR76bbkBI6nNee4p3sfOWuyTSnKgc4qThokyFBtskjyqARMHeasdgubbeNwDWVOEr6kSLNaLEU4W5kq8zVjahYTjbaoli+NBCUpIKvKt5vCT1ODXfFJbit0jbP5bKO0B7apl1uaEOKSg5NSd4nqeSoIOari4qlErcRmpcuCM27myHdHio5VpFNSJMl0p0nCR3k1X5LqIqgegrJV7SlGx2xVWlxCuN3G9uRU4UcHxFNWGYmf23DnFUe7zzJBxtXtlvRhbZ2rOemqLqFzrXMYbaOcdK59xo2y6VKbxqpC58SuvKSltePKlCt+WNS+lVc7oKNmI2/ShaScdcEVaYZQSCcDaqpLZU2oqPZ9lew57qFpGskeFZSTZs5FjvBSUZScjwqv/o52QskNnHjirpYIBuOkrRtVzb4fQhoANpA9lbU4NIzc3wOSRLG6sA6CPsrN+zvAFOnautt2ptpPaSB51FzWGUOaTpIzWuXQpmadzj71pfbc3SSKUlRVN/OBHtrrs6JGDeQE5xmqld4okoUlphTh7tKc1D0WpZOVSVoor1rdQ2kZx51Lqfjrbx2TnvqLj8MXySopi22UvPTs4/OpWF6MuNZZAZtrjaT3uqxVFVpvRNM6Xgau9xaIxbzbSyWyARvWD3EElGNChgeNXm3+gvi2QP8pdiMZ6kr1VOwv/DvNUP8svTKT/UaJ/jWid90X4M1/btKzt4o55A4w/V8pzUlXj3VE3W7LcfLiD9orrFy/wDD/c47RXbrlElKSMhC0lony7xXLOJLDOsctcO6xXI0hP7Kx1HiD0I8xV+zcdWYOkWTg29urtbmSch0j/hTRURwc3ptrw3/AJ8/8qaKuiOzR1T0WcEiAGb3c2gqSoZisq6I/rq/hV8uHE8Vl5UdCnZb6fnIjp1aT5noPZmozi+9K5qbdBWW3HE63XB1ba6beBPQeWaqrFwZi4aYAQhPQCuptQVluPoIU40YqKWpcBxI3kc2BNbSf2igKx7iTTkW5x5gUqI+FkfOSdiPaDuKqzE8OAb1vcYRJKXUEtSU/MdRsofEeVZ5rm0aq/yRNzHA6k9ULHfnp/2qpXlHNDgI0u43x0UPEVLsTFvL9XlBKJiRlJHzXB4j+IpO5t81s7HUPm+R8Kq3fRntYayV4nMbwnnRXmuq2zqA9lU2TIKHtQOy0j4VfbykNXBLhGEudlQzsDVBukctqfaHVlZI/smskrM02hTz0rojpLhJJzS47fXr416V5GO+hPnV0j5tsmGLsp2KlmUcuo2Cj+0PjXjgZfTuMGosDPnTkVKCQFb0UeJN7maIqcjDhxU1aLa7IXpjpUvHzl42T7TUVIdjQ47j6h2UDYE9T3Crx6KFvv8ABb77vaL01RTnuAA6VZtpXOjC4eNaqoS3F94Ss0G1R2HkJSuWQdbp3PsHhU7OtFpvORNjjmnbmtnSrP2fxqHtutQC1Zzud98f9qloyFLdHaJwfbRO+89WvhKUo5GtDmvG3A1ytAckRUmXb+vNQN0D+sO729K5FOdPrO4wK+yYb/LGlRBSdt65r6T/AEWxLpHeuvDrIbmJBW5FR81zxKR3Hy76s4X1R8nitndm3KnuOJQZCA3vipBH6xGUHr3VAojOx3VNuJUMHBB7qmIqgGwAqqqx5E1Y1vsua06M71pXEcKtzkeypZtaVqSMVLIYSWegzikEpGWaxVWGCheTXWvRe/HRrQopSs9M99c1nNFpZOMDNWCwr0KbWyrp4VtRVpaF4y4nXuJbHBEJu525llqVHXqc0JALiDsr3dfsqqXlGpB8aRncQuxm0o5qtSuoz1FOOviVamJIGdSd6pilF/x3nu7MxDlJxkyFjHlugjxpa9cNs3YlLjeXM8xtfn3j2GmkjUsY8an1vpixtSh0TtWFNnpTXtFLi8GMDSFNAb43HSmLp6O0PsoQwyFvuHShI6+32edWS3cXsNL5UqIhwDoojerFbuLIryw1GjJbUrYqxuR7a1hCO8mpNJWSIK0cExuGrJHjRhrdSdbrmPnq7/s8KfPdVpmKD0QK7sVT7jJTH5hz82pkcSdys8aXtcd6PGjOFK0HmKIPTw/jVXvPEVzukZEeVKcWwjcIztnzpWaXpk959zdTis+wd1bY8JJ3VvXDKpFyPIq4mcm1fTkJRXFJOFU8l4YplyKhKdk1HOjQrrVXJXOc3F0Zwa3Rn18wBKiKSYQXXAKtFqsragkrVk9al0+JBMWVwJaB6q8TU0yStXaOa0261o0dcAeNSrUZpjfmJJ9oqznGC9p2KxozqP2E2YCO3jKulapgaaYJBFYynX1EhCMp8QRSyrZcZzehtpZz9FJV+VczxtBO2dPzOmOzcVJX7N/NW+pQeIZeJRSnpVfefUnO+1dVb9F92nOay08M+LePzIqSZ9CUx8D1glHtcSPyzUrEKf8AGMn/AML6GkdnVl/JxX/Evom2cLdmY2JrQp0qyUqxX0hC9AltBzLcST/aUr+IqwwPQxw7GxqQlXsbH8c1ou2l/Gk/m0vuaLBwjrKqvld/ZLzPk2K4pMhJUSRmrjDW+tnDUd1W22lBNfUUH0e8PQwAiHn7dP5YqXY4as7PzLex/tDV+dWVDEy/xivm39vuQ8Pht+dv5Jfd/Q+P5Nmvk7ssW5456asJ/M1Y+GPR/diErlQXQo9yU6vvG1fVzEWPHGGGW2x4JSBW6rrBVn/KaXwXV/YnJhktIt/F9EvqcWsHB94i4LUBZT/XUlP5mrQOG728AFIiMj+ssqP3VcbnerXayBcrjEiEjID7yUHHjuaZhS486K1JhvNvx3RqQ42rUlQ8Qa3WBdrynK3yX0X3CqUlpGCv839X9imJ4IkupxJuKEg9zbX8Saya9G9rCtT78h0+0AVeK1OyWWW3FuutoQ0nUtSlABI8T4CpWBpcU38W39yXXfBJfBJfYgY/BdiZx/kQWfFa1H+NSLFjtbGCzAjJI79AzS7XFVhdubNvavEFya8MtsoeSVKGMjGPKubemf0nJsS2bdw5cwm7MSE+tIS0FgN4JKSSMZ6dN67MPsyNSooU6aTfd57jGtj3CDlKbaXedhQhCBhCQkeAFZVS+PuOfklboktNqkXBt9Cllba0oQ2AAdye852GO41TfSXx3dpPo1tHEfCYcixpDmZDpUnUzg6Qgg9cqyMjw866KODqVMtlZSdk+8wqYmEL31a1Otu3KE1Paguy2ETHQVNsKcAWsDO4T1PQ+6m64RebxNRxj6N71doMBM65I5a3WtR0pUrCdJzj5ro7juTUDxX6QuKW+IeIZsW9MwmbPNTHatqkp/Xo1qTnBGT83J9u2K6IbOnUaUWt33twuYyx0YXzL8tc+lelVj0gcIwuMLE7EkoSJKQVRn8btr9vge8Vxv0ixJ934/t8R27XJq3X2D60mMh0pS24lpRSjHTGpIzt310b0B3N65+jaCZLq3Xo7jjBUs5OArIGfIECsq2CyUFVzXvbT43+6ZpSxWeq6drfi6nBbBDchNzI0hsoeZkrbWk9xAAIorsfEHAokcR3WUxMZbRJf5ugp3SSlOfvBP20VxLB1Gro2daKdjn8S6quUOTdlntTnVLT5NjsoHuH31F+skvdTmtHD7ueEbeE9A3ppVbmlzesZo96UrzbLfa5OdO9WaG6CBXPbZJ7QGat9vfzjesk9SzV0TE9hMhoHJStJ1IWOqT4ilhI9ZjrDoCX2+y6B9yh5U0lzLfWoqSv1eUh/wDZzoc80n4datI6sDWdOeV7mVTi5kpQtYABT2+neOtUy8R9b7clG4cSNWe+uh8RtlTLyD10kGqTGHPtyc7lCtJrN8z6O2aFiiTGjHlKQeg3B8RWvJzU9f4h5YeSN29j7Kr2cHBrVbj5XFUeyquJvSc9RW9tzBAFKF4d3Ws215zj31Jhcj+JJSnXGoyM4TuR4k19B8GWg2vhS2QFJIcS3zHMfSVua4nwLZjf+OorSxlhpXOd/sp7vfgV9NNtJUTjGR3Y7qrLXQ9bZkcqdV/A1MthlCQPuH/vFOIdDSSTjNRkmRhZKugOPEe/qKVZlqWpxZJKRsB1I9vlTceo6bmrss8d7ATk4+2peDIJGxqnMzAlvBIH5GpWBM5MZTjmdtwCc+6tIyOPEYa6KN6Y+Emiv9OwWglKjplISOiu5f29/wD3rk6W0p6V9KyCbja5cZxIPrDamwD0yRXzbLSpDq0pByk4NVnzPkNq4XsaifMcitIICj1qVYcCMdoEVAMSglvSrINalzFawEHJz0FUjJJaHj5Xcn5ZbUklQGa1Is9w0B1plTTa/mlSwjPsyRV64A4TUEouF6a7eNTLCh081fCoLjuG/N42t7EhavVnVDbO2M70b0Podn7CdaOes2u4wa4QvzjaFqYacChlJ9ZaJP8AxVN2qDMjWh2LOb0KQo6cLSoYPsJ76rHEtzusC/x0Itxi2zXykFKgUqT4nHQ9+9XC0xWozDqI5JUGkrJPVZJVqJ+4VpaLXedS2V+0qOcZaL7lOZuqI9wLDxCVA9/fVwL0ebGQhawMjINc045YC56ltZSoVFW3iKbCSGX9TrQ6EHtCslB70aSqLdI6cqwtlwKSvI8an7JZozKwsuZPnXM43F6OXgvKTnuUk1uTxYpIJaWtw9wGwrZJmEpLmdZ4ivceBA0hY2GBvVClTlPwH5K84VskHzqCi+uXuWl2YpRQDskdBVtnQYgsv+V+tNsoUMFhsK8fnZ6VnUTaaQVOVSLjTV2ykuvNp8KzguLkvpajoLjiuiRUj8lk3ILNvnFCh0RIa0Z+0E11T0Pej9tEUybgAoA/rCP84r6IP0R99eTVhODUIK8pbvu33I4o7KqU25YpZYrjz7l3v+yoWvg243FA0oWT3htBVj2npU5G9EE58gusujP0nUJ/713ll2FHKIrLjDZGyWkqAP2Cmq6Y7Lm9atV37rJfRvzLLEUIaUqK+d2/rbyOLQPQ2lsguBhB8S4pR/hVlh+jKMyBrmYHghrH3k1Y+J+Lbfw5PtMOeiQp25PclnlN6gDlIyo52HaFL2LjSHeOLrvw+zHfalW0ArW5jSsZ/Zwc9499dS2LTcc0lKS36yfO3PmU9JyjLLHLF90V0NUfgK1N/wA6uQ75KVj8qkWOE7KzjEFCj/XUpX5mq3L9IaE+k+28MQ/U5ESS0ouSG3dSm3AFnQQNgeyOvjVv4hvEWwWh+5Tw6Y7IGoNNlajkgAADzIrZbIoUnG1JXe7S7Kek61RP/Udlv1N0e1wIxyxDYbPilAFN7JHcBVa4I41tfGLMtVrEhtyIsNvMyG9C0E9Mj7D7qoXpfTNTxFGcnJlrsYbG0dWkBXfvuM9OvdXoYbA5qvYv2X8PseZjcf2FHt0s35xep2OiuPcV3Z9PAlkmcNy3UQI6+W4pSil3UNgFY2I65+ymuLrrxLDFjQLq2hq5tpZWttodleoZWNvBQ++to7PlK3tJXbWt+G85pbWhHNeLdlF6Wt7W7lxOr1rdebaGXXEoGCe0cbDrXHfSJIlsX2Lb7ldpMeI1B1odbyOa6AdzjxIFJcRoeufAHD14uHNclIdUwtRJ7bZUdz59kb1pT2dmUJSlpLu+NvpryMqu2MsqkIw1hrv5Wvztv05nZ03OCqE5MRLZVFbyVupWClOOuTUbaeLbJdnX24E5LqmUFxfYUnCR1O46VzaFYZSoHGllgtONtcxtyOFZCVAKKsaj5YpLgltT3GKYEiKIfrVvVGWlCgc4RuvbvOnNXWApZJyUrta8N1k9V4+Bk9rV+0pxyJKWj377taP5LfzOhWn0hWq6XQQYzUnW4Fcla0YS6UgkhPu761cKcbSOIrz6m1aXWGmkn1lxa88pe+E4x34qD4N4Iu9mvsV2U1DdjxlK0vqdUpQSQfmpzgHerVwzwy9ZuIr1cDIQtiesLS2E7pOSdz9pqleOEp5lT1001437u7XXiaYapj6uR1dNXdW4Wvx79NOByL/xCwkJ9IfDcp2Abg3JZDJihZQXilfzdQ3GdYqY9I11uPDvC3BlptJVwzGnqDclQVrMQdnKdR32KlHOR82uicZcEwOK7hZ5k5+Sy7bHS61ySBqOUnByDtlIqX4gsNs4it5hXqG1LjZCghfcfEEbg+ykcZBQpRkrqN7+dtNx2yws3Ko4u17W+/efO8y/Xu9eijiFqRcXpq7Jcmwic2ogvNElO5HUdD7CKkfR7erXf/SZxDBUHX7dxFECNkqSCsNgrBOxH7Yz7K7rZuHbTZbUbbbIDDEFWdTITkLz11Z6/bTcK3w4DSGoURiO0jOlDTYQBnrgCpnj6eWcIwte9tbW3d3NXIjg53jKUt2/z+zPljh/hafFhWydDs8xdygX/Q4pDKipTICSD/ZBSrfzqy8Z+jjil3iXiKPardHl2+9PpkpluOJSWSFFWNzkbqI6HIxX0ZRR7VqZ86S+fxv5MLZ0FHK3+bjiPEXo44p4mtPDcmY/bm7pCjrjPxn8raCSSErGMgq04z5geFTVn9Fsxn0e3PhS5XsPR5DqVx3EM/zACgo7E75IPf311Sl3JaGn1tugoQlvmFxRATjvrB46s4qKskndaLTW5r+0pReZ8dN5UZfo7t8+28MRp8qUtywhPIdbIQVlIT84YO3YHSmbx6OuFrxfBd7jamnpuQVK1KCVkdCpIOD9oqww7nCmuutxJbDzjXz0trCin20jC4os865iBEmpdlHUAlKVYOnrhWMH31nGpiP8W9OXBPV/Il/t1bNbXdu1a0HZNpt8mZHlyIUZ2VGBDLq2wVNg9dJ7q2NNRbdEUGGWo7CMq0tpCQPsFabhdY8F3lOa1PFBcCEp6gbdelc8439IkK02tci4ZQgnS0yk5Us0w2HqYp5Ya8DSrUjR1lpceTIXJfkvL6rdJ+zaiuY2D0ni4RXnUW8pSHSkAq8gf40V9F+xrR0UfNHk9snqUvg17m8NFrOS0r7jWEk/rDUT6PXnGZU23vAghrUk/SAI+NS04FKzXx++J9nUTjNpm+3vYcFXG2P5A33qhRVYcBq12l3IFc7VmbLVFzZcy2M0lcRrZcSe9JrOK52MZrVPVhsnyqWQtGV+5SeacE7qZQo+3eqxa2ilEhGMZJO1SLjhW49g9wT7qSbdMd5Y/ZaQVKx4+FGrn1kJWhdisthJJSsakLG/mDVCuENcaW4yrfSdj4juNdCZVz2TuNt0+w91RHE0PMVqYkbp/VufwP5j3UjLgeftLD56faR4fQqLMYqNbpZTGYIHzsVtacA8qSuI1AknapzXPBynRvQZGbjQLtdXR21uJYQfvP5iujzrz6mytxlSVqSnPXYnw8jXL+C3VQ+B0LQNjLUT5nSKnIdvkLjJK8qbdOo47x3fbU8bn0uDopUYomkXd24hThSAVbdMZ8jW5l1TbR7SsZ9ik/EVrhxUtIDYAyeue+sJjoDgQjfTsCfyNRe53WSVkOsvKW4kA9Tv4Gpdl7muBA2Q3uR51WWXSlOBuVHAHgakmZBbKY7W6+pV4eZpexSUbk1LugiRJEromOgkeZ7q481F5yypRyVHJPjVk9IF0SxBZgNHHNOpePAYwPfVQiXAIITmpT4M+E/UNZTxCpQ3RXmezoOXQhlBUtRwEgZJNdD4G4ITZkJuN2Qly4K3baO4ZHifFX5VLcEWFuGyi53FI9aWMstq6tjxPmasz7rZBUrpRpbzq2RszLatWWvBA290zXOuOLjBduaUR3czoag5gp2I7wD7Pyq6PzGErCEuDJ7s1yriqOtHEqXwP1brKs+0VS59VTp29otV+lxZNo5buCh5OcjuPjSFruDjEdp9balISCyl3B0rzglOemdgahrEy/xCLdFaUAjGXF9yUjqa6y5Y4MmxG3FjTGQnSkd4P0sjv7810UMPKabPO2ntGlQtTkr5t/w/NxwTieeiTNcIBSrO4IwRUHhK+oqzcRW5Ue6vQbik8xo9l0Dcp7j5iohu2OBeGyHEeIqq9l2Z5VfDyS7SGsXxI0pQk91SlrbS64lP5VucsD606gk1NcMWJ3npJSRikpHNGDe8tdiitMMJ7O+O+rDFfDF1iMkjD7ThKT4Aj41ttNgWsJU4dDY7zS8tLKbitxCsqQA2hQ7k9/vNZt6HqbPpudZZdy3nlztzSZ7LjaG0IJ6BI6/aO8eHhXcuHYiI/DsNgDYsjPmTufzrnXBdrF2DsmayHIyAUI/t/wD6rpPD6yq0sNqP6xpPKX7Rt/3+2kKTVZVHxVvP7/Yw23iY1LUIv+L1/O4+NPUxFamOGPMRJgXJKHbg2rKWUZIA0/SynIOR0rt3GfHNyY4tbjW67cu0T7E5KirKUp/W8takq1EZzlI286kpnoPtc68XCZLu9w5EyQqQuMzpQnJJOD1zjJ386tt69HHDF6iW2NcLfrat7YZj6XFJIQMdkkHcbd9fU4jH4erKLlro+G66XPkz4ajhK8IyS03ceXw7jjPEXFNwn+h/hi7t3R9dxiXAtTCh4hR3WQF48kp6+NTy230enTiCPAXy3bxZlGOsHGFlpJB96DXVYfBPDcO3uwWLND9TddD62Vo1oKwMA4Oe6ptMaO04lxLLSFpSEBQSAQkdBnwrknjqdnGEdHm82mvBo6I4Sbs5y5eV15nyPw1GuVou9kkweGbo5dbRIWqfpaV+tBUNIzg4OCR086+jfSnar1feCZMTh15TE9ZQrQHNBWkHdGru/wC2Kt/Mb5vL1J5mNWnO+PHFaWZ8Z8tcl1Lgd1aCncHScK38jVMRjpV6kauXWPz7+vyL0cLGlGVNy3/Lu6HIfQ/wXxTwzxI/Omx4cK2T2yX4weLriFJzp337yT1PWrrxrwhL4hlpdi3d6E2WuS6yEkpWM53GR41PSL5BZZjvc3Wy++Y6Vp6BYJBz4bpIpxcpCoS5EYpfSElSdKtlY86pUxVaVXtrWe7d1I/bUJ0nQbut+/oVtngeAnhAWBx14slQWt1OAoq1Zz3geHsqRmcM22bCt8WY2t5uDjkkrIIIGMkjGelJcP3q5XRcJ95NuYiyEcwNJeK3SCMjuFNscTQ5F0TCbbkaVuKabkFH6pa0gkpB8Rg+WxqkpV8z1d1d/PiVprCOKtFWaSV+KW7f8SRuNrg3JKE3CIxJCDlIdQFY9maZQ02htLaEJS2kYSkDYDyqo/pyctfDqonbYkyHWJBeKUklIUO4deyTtjpilbfebrBuUpEgNO25u4mMoqUS6nmEFJHdpGpIxUOhO1r/AJexb95SUr238bdyf0ZdZZYTFd9aKEsaSFlZwMedQPC9t4ZivuOcPohl4DC1Mua1Ae3JwKx4mFxl2G7sSYkduOY7mlaXytRIG3Z0jHvqtWaa85f7JKS9bH3HW1NGPCQUrQhSQSpRydhpHXHWrUqcnTlaXTRX/ORnXxEVWjeF+9rXV20v+M6XWpElhx5bKHW1Oo+cgKBI9ornNsfcF3tj5anqvK5S0z8oc0IbIUAn6OkdnGPDNb7JaJ0XilC2oLiG0PvKdcebbwEK1YKXBhSicjYg4+yksKo3vLh+f0I4+U7ZYb3b4bu7v1XCxc2r5bHbiYLc5hUsEgtBW+R1Ht8qhrlxW23docSEhxxsyxHfdLR5YJB7IV0yFY++oW08I3CLKiMS0GTFjSOch0yylI3Jzywn52/ealX+Gbipz1Zmcwi2iWJiQpklwK16ynOcYznfrVnToQlbNdfnL6FO2xVSH8bO/wCLX6rwJeRLfa4qhxS5/k0iM6oIwPnpKd8+xVKcYX9dlENphKOfLWpKVrSpSUBIyTpSCT7BTt7s6rk/DfZmvQ34xXpcaSkkhQwR2gR3Vgrh+PIgojXJ6ROKF8xDrq9LiT5FGMfZWUHSTjKWvNeP9HRUjXanGGl9z8NOfMgjxNcJFlbyz6nMelpiJfcbUlGDvzAlQB6ZAB76Rl3Kc/EeiJuy1qi3JmOuUyEpUptwDY4GMgqI+yrjHsduZt7kL1cORnFalpeUXNZ8SVEk9BTEO3QoTXLiRWWWzg6UIAG3Sr9tTjfLHj+f9DL9rXnbPPhrv/rx3lau1lblcR2yLLXKegmI4kpLqgFLSU4KsHc9o+6kIttnzIdtTJaeUtcCVDeUsbjtAIJz4gVf6KosTJRUeX99fI1lgYSk5c/66ebKlabE4w5ZHExkRktwXGJSUkAhSgggbddwqqzY3Jjd5sVqaMZ5u2vuJ1NpWHNGlYysEYT18d9sV1OkbvcY1qiLkylBIHRI6rPgPOjxipxlKput16kejs8oqm9br57tPJFS41mFu+thrGpmMSr/AGlD4V8v+k+4OXniNwIJMeN+rQO7PeffXZuKr24mBcLi+f17/wA0eHckfZXE/V9aipW6ickmvpP0tg5woSr1FZybfy4fO1vE4NvY2MK0aUHfKrfPj53G+CYyk2p4Ef58/wDKmirFwnHCbc6Mf50/8qaK92UPaep46xuhXOHHFi8BTzSULWhSdSDse/7OlSVwGpRIqEtzE9FxYWplQQFYO3casDzK1K+YfdX5pay0P1TG/wDaJvkRzIIXVotPdURHhuFWdB91WS1R1gJyk+6uaS1KRZOQxlIry5pPqyz4A05EaKUjKTWc6OVMqGDuKNEqSuctjzEtRXFkguE0itSkxFlZJU6aYXAW06tgNqAQsjGOpzWqaw4txKUtr0pGBtV2fRxndLULIs4cQRnljP8Asn/3mpINIfadjvDLLo0K8vP7Ov2Upw0w4L2lDiDoWkpVttU0q2utSFsaVYQdjjqO6sXo7nUssllZyO4JcgTXozow40opPxqOkyFLGkd9Xj0g2pwzI0pDZ1OILbmB1KcYPuI91I8FWBMue8/NaKmmANKSNlKPT3VKR87LDvt+xRb+GoqWuC4zS9v8pWRnvwlI/jV4timVW5TbYwUlSk+XjVWmoXHgwWENkDCnSAPpKx+Sa94envtyVJcSeWdXUfdVrH0EcsYqNyVdlpZQ4pR7R2x4nypJS+W2S4rtH53l51Dz5DiLipoJUpts5GR49PurQt6TNd5TSV4/bVg4xSxftY8ybjysrHKGtxQxv0Ap8vJgx9ROp5W+/f8A9qjmE+otJCWyp09E43PmT4VH3Fx8JWtwKKsb7flRLmcOMx0aMcsXr9CpcW3IybysFWShIGfPrU76MbezNuS5k3SWmCA2F9FOHOM+zH5VSX47z0lx1TatS1EnarpcY71s4ZtUaOlSXyC+vAOSVeP2Yqq1Pktn0licW6s9Uteh1RExbK1LlkledsjpQt9ySeyvI8qpHDF9lvREtXJtboQRhWDqH21ZOSvT6xGUpaAMnGyvtqHc+6g4P2j11lXrKVnbSc1C31sSG1qGNTaiR7DUrEu8d9ZbkpWy54mo6XoHrKY5Lo0qV0O5qEma54veHoPgPGbcGnE/q2W1Jz7VJI/KurRwktKQnGAaivRvDTC4fVLW0W3Zqg4U94TjbP3n7alGOxdHmz80nUmvZwyy07M/PdrVY1cVLJuWngUD0rcNuzILNzgtFyQwdDqGxkqQfLvwfzNcmjuOxXuY2opWOoNfT6wOYtlZyhwaTt0qly7LZr4+7CvUQtz21FHrDPYWrHQ56H7QapWw/aPNFm+z9q/t49nUV0crgcZKaJbmQmnUeKeyasNs44s6TlEZ5tfhgVtu3oqbS+pNsu6QT0RKaKf+JOc+6lIPomvAd1LnWsI+kHFH/wC2uV4aS4HpLF4Opq2voSlw4xkz0ciKktxyN8dT7ad4Pt827PpbBIaTs48roge3xqXsfo+hx1Nquc1ckjJ5UdOlJx3ajufuq+xkMRLeliKw2ywkZShCcDPn5+dXhhW3ee4tiNt0aFPs8Krvnw/sl+EoyIdtcaZBDQUUpz4DbNPMSkwwp0jKFKwrH50vAUGbeE9DjfFKS3Aq2Op3766cqbsfKym5PM3qy2NuocbStCgUqGRXq3ENjK1pSPM4qnsKRP4Z5EjOCChWDuPMV8/cQ26ba+KVha3HEg5SSSQR3EVzVU6ep6Wz8FDGNpzytd3DxPqV+821jPOnR0+1YrCa1Gv1keaadC2JLZSlxP5j2GuDqlKMNtwJJJFX/wBGHEiAx+j5atAJy2VdAe9P29RXE8ZKnVhdWi+PJ8PH6ndjthKlh3OMs3Nd3ETjXKeqTJ4kcSsuWtCIUloftgA8wj2KKT7BVhtzb8G18IAFwAr0vpSTg621Hf8A2qtbbURoPBtptIeUVOAJ+eTsSfGtwdQAAMADpXsVMUpaKNv+lvuz4+jgJQ1lO7+90/OyRzw2UJsdztSbe6pxm4JkBJQSl5sug7KOx7OQd87Va+G7c5bpF2ZDIahLkBcdIxjSUJ1YHcNWamecjxo5yPGs54iU00+P9dDalgoUpKS4afLXr5EBwlw1FtEBjmQoyZ7eoF5CBqIJON/Zik4/Cs5pyAybm3+j4L/PZbDHbVknZSs/1iM4q185PjRzkeNQ8RUbcm9/59yywdJRjFLRfLly+CIY8NRl24RFvPDTJXJbcQdKm1KUVbf3iKbVZYS1yFONlZkOtvOZUd1oxpP/AAit7txiM/zshpH9pQFJP8TWdgEuXBgAeBz+VYSxSj/KdvmdEMGn/GF/kS60pWgpWApJGCD0IpeHBiwkkRIzLAPUNoCfyqsTPSNw1GzquCVEdyQf41BzPTLw3HyEiS4f6rZP5UjJz0gm/gm/omXlTyu87L4tL6nTKK4tN9PVtbyI1pmO+BO35iq7N/8AEDcFLKYVjPtXW8cLiZ/xpS8Lf/KxVzpR/lNeN/pc+i6K+WZ3p14sdyI8Jhn/AGdX8Kr070tccys/5Vyh/wDLbIrrhsjHT/3dvjKP2bMpYrDx/wA7/BP7pH2OdutLvTYrH89Iab/tLAr4sPH/ABc4rL8t17yWnIp6H6Sb2wRzrfGdx38rBrb1fx3OH/ub/wDqjN7Qw63KT+S//R9cOcRWhs4VcGCfBKtX5Uuvim2/5lT7x/8AlsLP8K+bYfpdkIwmRZz/ALB/7VYIfpZgHAfgymlf2ciqvYGMW+a+S/5vsPSWHW+D8f8Al+52tXFST/M22Wv+1pT+ZrSrieWvPKtyE/6x/wCANcxjekuzupGHXGyfpIIqTY4ytLidQltfacVT0JVX8pS8F0HpOlwivnfqi4yL3eXAoN+qMjHUJKz9+Kp891+XJU5MeU+6P2lHZPsHQUjdfSBbI7awl4uKIxhsEmucX7i+4XiU1DgMLixFntH9pXtNd+C2DDOp1I3txk7277br/I5MVteSg4wdvh9L7/MkeM55nSkRY/8AMNHJP0jUNHt2R2hUr6kvnfMOw8Kdbiqx8w+6vq4VI04KMWfMyourNzmM8NwwiC4NP+cP5CipexMqTEWCk/zh/IUVwTrPMzojh1bcd+CU4HZHur3SnwHur0dBXNrzwlxQ9xJMl2y7NswVqJjsrWohGwd1Ed/69KRj6BUPKvgj7M6RpT4D3UaU+A91U9u2cVizWhv9KtCelxQmuKwQWyrUCnCd1AJCPYpRySBURGtHHLLq5C5kd17ToSlcru0Y3IbA3Woq6bAAUB0fSPAUaR4CqLGicZQbDe3ps5uXcUrS7BbZA0qCVFXLI057Qwkn7dup1qtXG7Cl8i6MydCdI5rgSHToKQcBvsYJCj1yR3dKAv2lP0R7qNKfoj3VRLhB4sZsUOOzPedukie6XHUKSENNFDpbGdBwkENZ2JJ2zvWDdg4ubmrkC8pUt9aEPFZGEs8x7VoATsoIU1jPeFZNAX7Sn6I91GlPgPdXOhbuOWYj7kq4JcWhtxaAy6CS4G0YOOV2klaXMIGMBQ3Pdd7CiY3Z4gua9c4thT5HQLO5A8gTgeQFAPaU/RHuo0p+iPdXtFAeaU/RHuo0p+iPdXtFAeaU/RHuo0p+iPdXtFAeaU+A91GlPgPdXtFAeaE/RHuo0p+iPdXtFAeaU/RHuo0p8B7q9ooDzSn6I91GlPgPdXtFAeaR4CjSPAV7RQHmB4CjSPAV7RQHmkeAo0jwFe0UB5pHgK9wPAUUUAYHgKMDwFFFAeYHgKNI8B7q9ooDzSnwHuo0jwHur2igDA8BRgeAoooAwPAUYHgKKKAMDwFGB4CiigPNI8BRpT4D3V7RQHmlP0RRoT9Ee6vaKA80J+iPdRoT9Ee6vaKA80J+iPdRoT9Ee6vaKA80J+iPdRoT9Ee6vaKA80J+iPdRoT9Ee6vaKA80p+iKNKfoivaKA80p+iKNKfoivaKA80p8BRpHgK9ooDWtIz0FFer60UBmOgqON8tokOMqltoca+eF5SE7qG5O3VCh9nmMyI6CoaVw1apUiQ+9HKnXzlw6zg/M7s4/zafv8TkCSdmRWlaXZLKFZ04UsA5xnHu3rBVwhIShS5cdKXEhSCXEgKBIAI33GSPfSVw4dts911cppay6QVAOKA+aE7YO2wAOOtD1mtryENqBwEBgBLhGQkK2278KX7zQDKrvbw8GvXGS4TgJCgSTq0428D18O+sv0pALfMEyOpGpCNSXARlRwkbeJO1IL4XtKzlccqO3VxXQYwOvTAA+ytzVgt7TLrSGlBDpQVgKIyUHIPt8T30A4bhCDTbplxw25koXzE4Vjrg53xitbd2t7hITNjEhQR/ODqRke8bjxpdVgt60xwtpS+RzAgqWSe2cqz7TWlNgtMhAU0jUkEDLbp30HocHuI+6gJBFygrKAibGUVkBIDqTqJJAxvvuD7jWfr0TmJb9aY5iuieYMnp3faPeKjv0LamX2lEBCkOh9KS4ca84BwfMge6vE8N2/mLcUlZcU8p4qCyO0VEg9e7UQKAfNzgjl5mMYcXy0HmDBVjOnPjjuoTc4Cs6ZsY4GTh1Ow2Pj5j30siwW9EGPES0oMMK1oTrVnPmc5P20u/wraHyguxioIUlSRzFADGcDGemVE486AkE3WArpMj43wS4MHAycHvwOuOlZruENCUKXLjpC060EuAak+I33G43qOPDVuEdTbTakEhQSrUTp1Y6b/1Rt5UK4at7jLCH0OOraZQyHFLIUQhWpJOO/O9AOm62/RqE6MU4Khh1JyAcbb777e2sv0nABIM2MCM5BdSCMDJzvtgbnwqNh8K2yMlB5SnHUtJaLi1HKgnp+XdW1HDdsRkoYKVFwvags5CznfP20BICbFLK3RJYLSFaFLDgwlXTBPjuNvOsU3KCokJmRiQM7Op6Z0+Pjt7aVRYoSIkiKEr9XfUHFI1ftZzqz1z079sDGK0Dha0iKmP6t+qA041kZGFDBOd/nn7cHqBQEiq4wUJSpcyMlKkcxJLqRlH0hv086P0lB16PXI2rUEY5qc5JIA69cg+6o+Vw1b5RbD6FqbbbQhDerASUFRCtu/tGth4dtxdQ4GVJKTkBKykfOKtwOu6j18aAYXd7ehvX64wpOnV2FhRIzjOB3Z2rx6821lp1xyfFCGklS/1oJSAcHb27e3alVcM2wjHKcCdAb0hxQGBjuz5CsXOGLY6txbjbhW4lSCrmEHCiSQD3Z1K9/soCQkXKFGKg/KZQpJSCkrGoFXzRjrv3VkbhCCG1mXHCXElSCXBhQHUjfcClJNhgyZapLqHeapQWcOqAyBjpnw615+gLfyo7ZaUW2AQhOs4wc9R/tHA7s0A45cIbbhbclx0ODqlTgBG2emfDf2VqReLasqCZ8U6Tg/rU/RCvHwIPsNaZthgTXXVyW1r5uQtPMIByEg7f7KfdWB4ctpkh8sEuBanBlZI1Kxk4+wUA6i4wnI7khEtgsNq0rc5g0pO3U9O8e+vP0nB5yGhLYU6twtJQlYJKwMkYHeBS4skQQnIg5oiq04bCyNJT3g9e4d/dQzYoDMlp9ptaXGipScOKxkkk5Gd9yaAYN0gAqzOijSCT+tTtjr391YputvUlKvXI4CnC0nU4E5UDpIGeu/5jxpIcMWsDZpzIUhYVzVZBQCE4Oe4GsEcK21CiAlzlaQkN8wkYClKPtyVf8I8BQEqmdEVytMpg84Et4cHbA7x41gu5wUBBVMjhK1FCTzBgkJKiM/2QT7KWVYYCkMJ5awGBhGlZGDvvt1PaPvr1FigIgsxEtHkNHUlJWTnslO56nYnrQHj/ABDaWJbEZy4Rw8+oobSFZyod2RsD7a3SbtBjIjrekoDb5w24nKkncDOobAZI3O29IucL25awSl0o161IKyQezpA8QMY6eFMzLHCmtMNykreDJyjWonw+AoBiTcYcZIL0htOQogA5JA64A32rWbxbhIUwZrHNSNSk6xsN8k+GNJz4VoNghKiNR3A6pCGUsE8wgrSnOM+J3Vv5msV8NWxx7muMqUvlFkEuK2Qc9nr03NAOm5Q+UtxEht1KAlSuUeYQFdDhOTg+Na2Lxbno7TyJrAbcQFp1rCTpIJBwdxsD18D4VpjWOMw9PUlThbloDam9RASMHOPAnP5VrTw1bENONNtONtOFRUhLigO187v79vcKAeaucF59DLMyO46sEpQhwKJwM93lvWiPfLfJLIjyObzhlGhCjkZAz02GSOtaoPD8KEpSmQ4FEFAIWRpQc9kAdw1GsodhgwF6oCFx1BCm06FbICiCcA5HUA0A67OiNL0uymEK32U4Ads5/I+41vQtK05QoKGSMg53BwfvqIkcOwJMmU9JQpxUhWVDUQMYSNO3dlAV7akocVuHHDLOrQCpXaUVElRJJyfMmgN1FFFARguMhx99EaAt1DS+WV81KcnAPQ+2s/W5/wDRiv36Kxs385cP/Uq/5U1uubz7CEKYQpW5yEpyScbDyBPfWt1e1l59TLW12/oa/W5/9GK/foo9bn/0Yr9+ilTc5pcUUwlhsHbKFEkZOD08BnHsHU17+kJ+lSlwVISBnCcqPU7YxvsPvFWy9y8f7IzLm/z5DPrc/wDoxX79FYLuUhlbXrMBbba1pb1h1KsEnA2HnW61ypEpDhkxywUkAZz2tuoyOlab/wD+Xjf+pZ/5xVdL5Wl59SXfLmT/ADwBFykPLd9WgLcbQtTesupTkg4Ox86z9bn/ANGK/forCwf+Xk/+pe/5zRe350cMKgM87CsuJHeMjb7z/wC9qlWcsqS8+ou8uZtmfrc/+jFfv0Uetz/6MV+/RUczepziiBAUUggKVudGycjAGcjPT277Vten3NJhFEVSkKSoyCG/mHuwM5PQ9M9RVsmtml4/2Vz97/PkOetz/wCjFfv0Uu/e/VWLi5MiONGFH9ZUkLSrUntdMd/YNSMBxx2DHcfSUvKQkrBGMKxvtVa4s/8ALcT/AP8AUD//AGqsLSdmvrzFRuMcyf5YrX8stp/o2d70fGj+WW0/0bO96PjXDKlo8KC9DYUqYhD5yXUk/NBUAOuBsMnY+Ar6yWxsJHen4nzsdqYmW5o67/LLaf6Nne9Hxo/lltP9Gzvej41ydq1wdKXHJo0BSAsJUns6ids567Y2Hn0rXEhwHIKVuyUCTk5QV42KgB5dAo9e8Vn6KwXJlvSOK5ryOufyy2n+jZ3vR8auvB/Ekfii1KnRGXWUJcLZS5jORjw9tfK9d/8AQV//AA53/wBUv8k1x7V2bQwtDPTTvfmdez8dWr1sk3pY6EvrRQvrRXzp7hmOgqDlcNRJMpT7rjhKlLURhO+oYIzjOPt6ADoKmAs4HSvdZ8qArvyOgGQ06px9SW+jZI0/NSnpjwSBW8cLw0wGYgUvQ04XEqKUkklGg523yDv49Om1Tes+VGs+VAQsjhqO9yCJMhCmWW2EqTpzhCsg9PHqOnTbahzhiIqE1GS8+hCFLUogjK9Swsg7eKR9gxU1rPlRrPlQEC1wpEbt78QPyFJeKSpaiCrsjA6jHs2228BWcjhiLIjJZW4pKUpKOwhON1FWQCDg5P24B7hU3rPlRrPlQFeXwhBXJbfL0kONuqdSQoDc4yNh/VG/Xzp2xWGPZVLMV10pWhKVJWQQcE79Ou5qU1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgM6Kw1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgM6Kw1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgM6Kw1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgM6Kw1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgM6Kw1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgIltu6RJMv1eLEeaddLiVLkqQdwNiNB8PGtvrF5/o6D/vqv+lUjrPlRrPlVs3NFMjW5/QjvWLz/R0H/fVf9Kj1i8/0dB/31X/SqR1nyo1nypmXL6jK+f06Ed6xef6Og/76r/pVpkN3Sapht+JDZaS6hxS0SlLOEnOw5Y8PGpfWfKjWfKpzW3IZG97+hER27pCU+2xEhvNKdW4la5SkHCjnccs+PjW71i8/0dB/31X/AEqkdZ8qNZ8qZr70FBrc/oR3rF5/o6D/AL6r/pUesXn+joP++q/6VSOs+VGs+VRmXL6jK+f06Ed6xef6Og/76r/pUhOtlwuUa8pkNxo7kyEIrYQ8XADhe5OkYHbHjVg1nyo1nyqVO25EOnm0bOD/AMj1/wDrVt/eL/w0fyPX/wCtW394v/DXeNZ8qNZ8q9P01i/eXgjg9E4fk/E4P/I9f/rVt/eL/wANH8j1/wDrVt/eL/w13jWfKjWfKnprF+8vBD0Th+T8Tg/8j1/+tW394v8Aw11D0bcOSuGLAuFOcZceU8pzLRJTggDvA8KtGs+VGs+Vc+J2jXxMMlR6fA3oYCjQlnhvBfWisFqOaK4TsP/Z\";s:6:\"timing\";i:5920;}}s:5:\"scale\";i:5920;}}i:10;a:6:{s:2:\"id\";s:16:\"final-screenshot\";s:5:\"title\";s:16:\"Final Screenshot\";s:11:\"description\";s:45:\"The last screenshot captured of the pageload.\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:4:{s:9:\"timestamp\";i:322293857730;s:4:\"data\";s:46763:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAFcAfQDASIAAhEBAxEB/8QAHAAAAgIDAQEAAAAAAAAAAAAAAAQFBgIDBwEI/8QAUxAAAQMDAgMEBQgFBwoEBgMAAQIDBAAFERIhBhMxIkFRYQcUcZHRFjJSVIGho7EVI0KTwRczVWJyktIkQ1NzgpSistPhCDR08DVjg8Li8TZ1w//EABwBAQADAQEBAQEAAAAAAAAAAAABAgMEBQYHCP/EAEERAAIBAgMFBAkEAQEFCQAAAAABAgMRBBIhBTFBUdETYZGhFRYiUnGBscHwBhQy4UIjB0OC4vEzU1RicpKywtL/2gAMAwEAAhEDEQA/AE+WaOWalbVbJF0nsw4aNbzpwB3DxJ8q6tbuGuGuH5cW33lgyJklPYkvJPKWr6Cd8A+2vuMTjoYfRq75I/McFs6pi7yTSitLvdfkcU5Zo5Zrs6uDbBxNHkLtTb1rnR1lp5lQzoUPpJz0I3BBwQa59xFwrc7A5iazlknCXkboP29321TC7ToYnSLs+TNcfsbFYFvtI3XNFZ5Zo5ZprRT1vs0+4gmDEffSDglCCQPtrtlUjBXk7I8yEJTeWKuyH5Zo5Zq4x+AeIn9xbygeK3EJ/jT6PRrdk6PWZMFjWcJC3ck+zArlqbRw1NXlUXidtPZmMqfxpS8Dn/LNHLNdOb9GrTZdEy+MtqZALiUMlWnPTvppHAViZjpddnz5AK+XhtoIOrwII2riq/qHAUt9RHdT/Te0an+7t80cn5Zo5ZrsiOFOHYs20R12uZI/SClpSp17RyykEnUAR3A1kuFbovFi7PF4btxQ1yll155RUptRwVAEYyN9id+7NYy/UeGteKb/AC5Z/p+vB2qSS1txeu/kcZ5ZpmPbZck/5PGed/sNlX5V2O13pl24XqBChwoa2kOGC6ljAJbJSsHOxOQDt3Godriy8SOGbo67cfVpLTMaTHUWmwopWrC8AZBR3eOetctT9TxX8afPjyLehacdZVG9+5cviyjxuEL9JIDVqlb/AE0aB9+KlGPRtxI5jXEaZB73HkfwJq0uzbpJZvS5ouCX2JcNaWmFrUlSSe2EaeqCNR+0d4r12x3d29yXI0d9+Em7NvhDw06E5SStGrqPngj2EVzS/UuIf8ILz/OB0Q2Ph99pS8Fz4W7irSfR1dWi421IgSJTYyqM09+sH2ECqgtlSFqStJSpJwQRgg12u2cPX2BeoKmosRLMaQ6t6YShS5CFqJzuNSVAHB3xtXN+NHI8nim5PQ8chTuxHQnAyftOTXqbH2nWxcpRrLccW1Nn08NTVSCcXe1n8N6+G5la5Zo5ZprRRor3sx4YryzRyzTWijRTMBXlmjlmmtFGimYCvLNHLNNaKNFMwFeWaOWaa0UaKZgK8s0cs01oo0UzAV5Zo5ZprRRopmAryzRyzW9xSGsaws5+iAfzIrDntfRe/up/xVjLE04PLJ6nvYL9MbWx1GOIw1CUoS3NcbOz80a+WaOWa2c9r6L391P+KjntfRe/up/xVX95R946vUvbv/hZeXU18s0cs1uQ42tQSkOgnxAx+dbNFawqxqK8Xc8baOy8XsyoqOMpuEmr2fLVX8mK8s0cs01oo0VfMcAryzRyzTWijRTMBXlmjlmmtFGimYCvLNHLNNaKNFMwFeWaOWaa0UaKZgK8s0cs01oo0UzAV5Zo5ZprRRopmAryzRyzTWijRTMBXlmjlmmtFGimYCvLNHLNNaKNFMwFeWaOWaa0UaKZgK8s0cs01oo0UzAV5ZoprRRTMDpHAUGI1w1fLlOkPRUBIZ9YYzraHUlON+8e6paz3By4R02yTMt3EttdwkLS6GpCB4qSrrjrnOdqw9EtyaZVKtr5CVOkON5/aONx+VT/ABZIt3Dz0d9rhqZOkyNSA7b4gcW3tjKjtjOfzr4vaPb/ALqVvl/TP0fYVe2AjTiouD/kmtb357/lx0uQkW8OwZBdgs8/lI5SpLoJcW2CdOsjA27id/easz3FdjVbmDd32mEytSeW8CQSMZBOMd46+NV+ys32HGKWbcvkyQCpp9IzjHRWDsfLNVLj6I7FvUWLHituepwVynW3RrTlWdXtwAMewV8hsSWNr4l/uG7a5k1azvple5o+6o4DCYmcaC0VtGne6S433a2G+OeF4MZhi72N1C7a+rBCFako8wfCugyozNvagRmue1bENKAMfVnVtjOnfx+2qRiND9EMFlp0umWoK3GMK15UMeWMVv4D4ouipsK0L5TzCjpStY7SUgE4z37CvssZhq+Pwds38W9/FKz158j4KUsJsbbFXDwWktFpxu1u4X0fcWuVFfkS/wBUmQG3YeFFxGok+B3wFGhNrlqitFUJt1S4oY0OKA5Shnf2HrtvtSHHl4uVqvVuaZuXqcCUhwEoic5aVJGdhvnOR3bVAXa7Xe4cBWq7OTX0O+s8p31RYbLqCvSM4+arb76+eWxoSedy3/nFNc/H4H29HCVp06c7rLJpLf39y4rnppwZeHLPJWtwLdQEFlpIdJydaDkEjw+2tlxhuv2xw3SdHbbStLhWWxoQke0/ea55fYqWLGmI5enHHhObW9EuDizp1o2ZW4nO22c9KUjOIfsLKVxpK7VAuv8AlrKXuegIxtpIG7YPdvXStlUbNa2e/V9/XzLQwMpRU1Pj7vha71b0tpbdrqXm7s2uZZok9+/rTGguqcEthSSNSspxnB7lEYHjUdGicJO3KBGbcmypLkdtTPbe0rbbypJOMA4xnfvPnSFut8e9XTiFvhlsNWWTA5JIbKGlSDnBSCO4dcU1wy1cZt64dD9slRDZ4zjMl54AJcJSEgIP7W4zmt1haUVa27n8O846my8K5TlWXtWbd7Kzy3Strx0du7cYW+/cLh2M2mwy24wkLjokPs6kNuL2UkkkkZ6GpU3txE+XE4b4eRMjW8hp5aHEtYPUoQCN8E++q23wdeHJNwmNRCzKbuXrkVL0gFtxJVuCkZAPfnGfdVjf4dvsObNdsE+LFYuKg5IQ6gqUy5jClNnv+2tOzpR/jb8+BvLC7Poy/wBPLu4vS+nu67vNWtoaOLOJb1bbtb4zRgQWJrWpKpKVLUhwYyk6TjvAFIcS3fimEm3CWt2KkxlKfdhR0v4eB/aHcjGOnnUze7Kp6Tan18RiM9b21IDq2kKUtShhSjnbceVRTlm4YZt8Vh6/OiRH1gSmXtLhSoklJ0925rSEU7WV/kVhjtnYeFOVSUbq99L+9z03W5/BW1kL0p++ejhM5udqeDPNU5HyhDuPnDB3xsdvGuM6K6XxHxHbInDabFw6FKY0csrIICU5yeu5J399c+5flX0Oyqc6VOWdWu9OZ+V/qfE4fEYzNhndf3pu03b7CuijRTXL8qOX5V6lz50V0UaKa5flRy/KlwK6KNFNcvyo5flS4FdFGimuX5UcvypcCuijRTXL8qOX5UuBXRRoprl+VHL8qXAroo0U1y/Kjl+VLgibinGj7atHCnCMS82ZE16SppfNeQpGsAqCW9Q0gjc56+VV67NKPK0IUrr81JNaI8u4x20tx3ZjSEklKUagASMEj2javBx0ZSqyy/mh/RX6Ncqn6bw1OjVUJe1x/wDPP+izj0e3ASG2XJkJC1JJOSvYgoBHzd/np3861SeA58dMta5cPlR2g6V6lAK+dt02+Yrc+XjUEbpeCpCjKnlSEctJKl9lOQcD7QPcKDc7uQ4DKnkOI5a+0vtJyTg+8+81x5KnM+lUsbxxEPLn0E4YzJQKm7dCVNnx4yPnPOJQPLJxUTAacEtvU24BvuUkDpU4wp2O8l1ham3EnKVJOCK9rA5lSklvv9j8e/2pVKc9sUWnddmr2/8AVMuMzgmEzc3GkOSTHKGVIKiAcqdCFA7eBzSPDXC0O53a7Rn1vhEVwIRoUkEgrKcnI8qhG585tpDaJT6W0fNSFnA3z+e9YNSpbK3FtPuoW6oKWQrBUQcgn7d6KhiMri6mvDyPhni8J2kZKlor3Xj9yWPBUhSopTLYQiU4UthzKVY7WCRjv09PMVlH4EnvoSpL7Iy4UYUFA4CinPTxHTrUai6XJGjTNkjQoqT+sOxOcn7z768FyuASEiZI0hfMxrPzs5z7as4YrhNeBRVcDxpvx+H9jfyQk6d5LAWVtICDqBKnACnu8z7qzc4NkJjPPpmxS0hwNBRKk6jkA9Rtgq+40g/cJ75y9LfWchWVLJ3HQ/Zms1XW5K16psk61BSv1h3Ixg/cPdU5cV7y/PkV7XB6+w/H49/59VL5aXLRcXIby0rUgA6kggHIztmkNFSEt1+W+p6U4t11XVazkmtPL8q66bkopT3nFVcXNumrLgWyy8Iwp9ptklSpClvu6HyFBIbGTjAI3zgb0keCZQQ8563G5beCFdrtJ0pUVdNsBQqNbuE9tlppuW+lto5bSFnCT5V6LjPCFI9aeLa9OpBWcKxjGR9gri7LEqTano+v5+anoPEYOUEnTd0vt1/OB5xFw8/Y3WUPutOh0KwpvPVJwRv51EaKl7vPlXaauTMWVrUdhnZI8B4CkuX5V10c6gu0epxYh03Uboq0eBZ+GOE4l3solvSVsuh46hkYLScaiNuuDWm9cHmK5c3YslPqcI4VzD2gcJIH26tvZUM1JlNM8pt91DW/ZSrA36++mF3OY5Ckx3XCsSVpW6tRJUrSNgT4Vy9liFUclPR8O6/Q7f3GElSUHT9pLfzdn9/If4f4XbufDlwnuKdD7YVyEpxpVpGTn31qc4PkNNvKdmR0lltCnU9olBV81PTfPiNqj2ZctgNBmQ6gNatASojTq649tbP0lcdGj1yRp0cvGs40+HsqzhiMzano/wA+nmUjWwjhFSg7pb+ff4+XlLngCeFYEiORkJyM9SrSR07jWFu4JckqhF2cyhuRj5qVFSchRG2PFJFRwu10DnME6SF6dOrmHOPCsE3K4JKSJb4KcEHWdsZ+J99UyYu1s68C/bYFNPs3b4/2RLzIbdWhKwsJJAUBgHz3rHRTZbz3V5y/Ku9M8xmZtbwRkqTnCSE75OceXmKHrYphKVOOo0EgZTk7Hv3+2s+a/p081zGAMaj0HQV44t50EOOLWCc4UrO/jWaz8WauVO2iNt7sTlo5XNlRHy5nAYc1Yxjrtt1qL0VIPuOv45qirBJGw7+v5Vp5flU08yilN3ZFVwlNumrIV0UU1y/Kir3MxxAU2tK0EpUk5BBwQatEHje9RWwhTrb4HQuoGfeMVAaKNFc1WjTrK1SNzehiq2Hd6UmvgWpPpCuoO7MYj+yfjW5z0hSXGVIct7CioEHKsgjwxiqfoo0VzvZ+Gf8Ah9TsjtrHR3VH5dDdebnJuzqFSSlKGxpbabTpQgeQrTapbltuLExgfrGlagD39xHuo0UaK6VCCh2aWhwyr1JVO2lJuV737y/z7rYr7Mtlxk3SVCegqK0spT1J65Ok5BAxsehpFxzg1uJIin1uTHdkGSWgpxKQrfp0236VTtFGivPWy6S4v8+R9JH9YbRjFRi0rcr878+epcI9/wCGIEaTHhWNSmZGOchw5DmOmck561kzx2zBjCPbLMzGZT0QlYCR9gTVN0UaK0WzcOt6v82cdb9S7RrNuVTf+cblpc9IF0xhpiM2O7sk/wAaRe41vzvSWlA8EtJ+FQmijRWscFh47oI4Z7Vxk99V+NvoOP8AEF4fP6y4SP8AZVp/KkHpUl7+ekPOf2lk1noo0VvGnCP8YpfI5Z16tT+cm/ixTRmjQPCm9FGitLmQpoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KNA8Kb0UaKXApoHhRoHhTeijRS4FNA8KKb0UUuCzfJG8/UvxEfGvfkjefqX4iPjV2b4aUwtRiSEsIUpRLbacJIK3FYIGxxrQP8AZpj9F3H1OO1+kFFbaXEqUVKyoqPZUSDuQMjw3yMYFfM+l63JefU+69V8J70vFdCgfJG8/UvxEfGj5I3n6l+Ij41d3rHcnE5F3dCxundWEnSkJ2zvghZ3653rNmyTkuMqeubzoQtKyguKxsUHHXfovr11DOcU9L1uS8+o9V8J70vFdCi/JG8/UvxEfGvfkjefqX4iPjV9NsuDLc4MyyrnHLadRToy4VHGOmxxnqa1otF0StBN1WoJUgndXaAG4Iz7fb35p6Xrcl59R6r4T3peK6FG+SN5+pfiI+NefJG8/UvxEfGrmmxXkOIJvjhaSN2t+13YK853AG47ySMdAymzTy5FU9clvBtxK1hRUAdOjoAf6quufneVPS9bkvPqPVfCe9LxXQonyRvP1L8RHxrz5I3n6l+Ij41eU2i6LU4ty5OIBUshpK1YOVgjJ6jsApwOmcjetaLFdEO6hd3Sk4KhqUNatKQrO+wOD06dR309L1uS8+o9V8J70vFdClfJG8/UvxEfGj5I3n6l+Ij41dRYbikvBFzcDSwrCOYvqpwqO+c9DjYjGPOmpVlW+1CVzGkyYrZbDoSckdnorqnIBGRuM7U9L1uS8+o9V8J70vFdCgfJG8/UvxEfGj5I3n6l+Ij41f5NpnvIjp/SShy22wvKM6nEKB19e8Z28dJ7q12+z3SPMiuPXdx2O2DzGVZOsnOe0d8DCMeWrrmnpetyXn1HqvhPel4roUT5I3n6l+Ij40fJG8/UvxEfGruLLcGITUeNOUlReCluhahhIZ07DP0wDp6ePfXkax3RhCUC6KKUlsJSCoAJSMdM9T7j39Kel63JefUeq+E96XiuhSvkjefqX4iPjXnyRvP1L8RHxq+RbTdGkvBy6rUpUdbTROVaFkkhZB6kbeHeOmK0uWK5KQMXd4LG6cqUQk6UgHrvghZ365GelPS9bkvPqPVfCe9LxXQpXyRvP1L8RHxo+SN5+pfiI+NXwWy5M2yQhu4urmLUgtrUoqDYGMjfr+159PCsV2m6ha+VdVJSpZOFalYTrSrx64GnHTcnxp6Xrcl59R6r4T3peK6FF+SN5+pfiI+NHyRvP1L8RHxq+SrZcnJDIYnrQy2wlJUVqy4rtBWQPHKe11GNq0mzXbSQLssKKUgKyo4IQUk4z44OM9dyT0p6Xrcl59R6r4T3peK6FJ+SN5+pfiI+NefJG8/UvxEfGrtHsd3SRz7465nYkApwNxgDON+yc9xTt1NbHLHLWxKBnK5zjyXEL1LyAMjrnI69BgbU9L1uS8+o9V8J70vFdCi/JG8/UvxEfGvfkjefqX4iPjV0csd1UtSxdl8wqc7RyMJVjSBjpjAOOhx4E09a7dPjTHnJdxVKZUrLbZBGgbjHXfbR179R7xh6Xrcl59R6r4T3peK6HPfkjefqX4iPjR8kbz9S/ER8a61RT0vW5Lz6j1XwnvS8V0OS/JG8/UvxEfGj5I3n6l+Ij411qinpetyXn1HqvhPel4rocl+SN5+pfiI+NHyRvP1L8RHxrrVFPS9bkvPqPVfCe9LxXQ5L8kbz9S/ER8aPkjefqX4iPjXWqKel63JefUeq+E96XiuhyX5I3n6l+Ij40fJG8/UvxEfGutUU9L1uS8+o9V8J70vFdDkvyRvP1L8RHxo+SN5+pfiI+Ndaop6Xrcl59R6r4T3peK6HJfkjefqX4iPjR8kbz9S/ER8a61RT0vW5Lz6j1XwnvS8V0OS/JG8/UvxEfGj5I3n6l+Ij411qinpetyXn1HqvhPel4rocl+SN5+pfiI+NHyRvP1L8RHxrrVFPS9bkvPqPVfCe9LxXQ5L8kbz9S/ER8aPkjefqX4iPjXWqKel63JefUeq+E96XiuhyX5I3n6l+Ij40fJG8/UvxEfGutUU9L1uS8+o9V8J70vFdDkvyRvP1L8RHxo+SN5+pfiI+Ndaop6Xrcl59R6r4T3peK6HJfkjefqX4iPjR8kbz9S/ER8a61RT0vW5Lz6j1XwnvS8V0OS/JG8/UvxEfGj5I3n6l+Ij411qinpetyXn1HqvhPel4rocl+SN5+pfiI+NHyRvP1L8RHxrrVFPS9bkvPqPVfCe9LxXQ5L8kbz9S/ER8aPkjefqX4iPjXWqKel63JefUeq+E96XiuhyX5I3n6l+Ij40fJG8/UvxEfGutUU9L1uS8+o9V8J70vFdDkvyRvP1L8RHxo+SN5+pfiI+Ndaop6Xrcl59R6r4T3peK6HJfkjefqX4iPjRXWqKel63JefUeq+E96XiuhBxOKbXIaW4XVNac5C05206uqcjoDt12O2xphXEFrQrSuWhJ1lsBSVDKgCSBtvjBpdiysSY8V5xxYWGgE6W2xoBB2HZ8FKA9p8a9+TULUhRJJQQUktNHTgpIx2Nt0J/uivKPpDY9xHbG2HHOepehvmFCW1FWN+7HeAT7AT03qVbWHEak5x03GKhzw5ELKmStRbUACnltbgZ2+Z/WI9hIp5EJxCdKJ0kDJONLf+CgHKKU9Ve+vyf7rf8Ago9Ve+vyf7rf+CgG6KU9Ve+vyf7rf+Cj1V76/J/ut/4KAbopT1V76/J/ut/4KPVXvr8n+63/AIKAbopT1V76/J/ut/4KPVXvr8n+63/goBuikH2346EuCY85haAUrSjBBUAeiQe+vIrb78Vp5U55JWgKICW8DI800JSuSFFKeqvfX5H91v8Aw0eqv/X5H91v/DQWXMborRCUtTB5iitSVqTqIAJwSO6t9CGrBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQBRRRQC9u/+Hxv9Un8hTFKogMoSEoU+lIGAA+vYe+vfUm/9JI/fr+NAM0Ut6k3/AKSR+/X8aPUm/wDSSP36/jQDNFLepN/6SR+/X8aPUm/9JI/fr+NAM0Ut6k3/AKSR+/X8aPUm/wDSSP36/jQDNFLepN/6SR+/X8aPUm/9JI/fr+NAM0Ut6k3/AKSR+/X8aPUm/wDSSP36/jQBcv8Ayo/1jf8AzprQ3H9asLbAUE8xhKckZxt4Vv8AUWiRqU8oAhWFPKIyDkbZrxMBlCQlKnkpAwAHl4H30LRdhCRZnncFE1xtYORpzhPYKRgZ265p63RFxG1JcfcfUrHaWScYSB/An7ay9Sb+m/8Avl/Gj1Jv6b/75fxqCzm5KzZ7A/mV/wCtX/zGmKwZaQy2EN505J3JJyTnqazqSj3hRRRQgKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKKKKAKK8yB3ijUPEUB7RQCD0NFAFFFFAFFFFAFFFFAFFFFAFFFFAFFFFAFFGRRQFYkXeYk9laR/sivY10mOLwpwY/sio90gnemYYSAKybYRKKmPBOSv7qiZl6ltElLgx7KYkOhKTVflq1qPhVJSZUYHE09J3KTW0cVTEjfl+6oblgjpSshtWcCikxcsg4wkp3LLa/urBfHTydvUkE/2z8KrqG8DetMlkDcDepcpcCLsso4+eSRqgIUPAOY/hWR9IKgO1a8H/X//AI1UGkDmdql5asKwNyaKUuYuy6n0jIA3t2D4c7/8aP5RNQ/U20OHwDx/wVzt8pZQpbgKlD9kHAHtNQUm9yGdZYbZHd2X8n4VMVNvV6GsYSerOqyfSa+wTrsuB4l8/wCClv5UpKjhFqaT/aeJ/hXIYHFUhqUEylK0rOFBQ7vOrbAXGubAdjgakKwoCrSjJbmHBpXRbl+kS7PnMeIwjHduRWlXH9/UtKFR4qUk7qDavjS8Fq3R0gSpLKVDcgrqVNpamNJeiuJLR31JORUxpTtdsyeZFotFzfltpW6psEjoEgVIvuvgANrwfZVShtLiDKHSrT3EYqUZuSVHKl4x1BrdWIuSbK5BcIW+r7hUswSEgFWqqfMvTTRylY8K1wOJiuSG9J0+OaiTW4KRd3CdOxqOfW/qOhaQPNIrW3cgtAzsT0FMstFxGpXfRK28te5Vb9fbxbiTGUypH9dv/vVTX6Ub0w6W3IcJSh36VD/7qv8Af7el1kggkY7qoM6xshSipGx99Z1aMp6wdjOTktxtZ9LM4fz9rjqH9Vwj+Bp1r0tBRANmUpXgmR/+NcvvbCoMooSdSD0NZ8OuINyaC+ilb156qVVUyORRVJHY4npFDykh2xzmwf2kqSoD8ql3OMoDTIcdYlpBGfmA/wAahrS0yllBUkKNL35lAThKRivWVKy1dy+Z2LCxxvZXm9fOcQP6zZ/hWt3j/hto4XPx/wDSX8K43xE6uL/M7JWcbdBSFrtqZbgWtSnFeZ2FcVWu4PKlqVVWR3yPxnYZCct3BrHnkU4jiG1LAKZzGD4rArkEe0NtIB2FSsGIyhwau0nuxVadWcnZhVWdXamx3k5adbWPEKBraF58Me2qhY5aGnAgns92atrK0rSCkjFdbXI1jK5mFg9499eFwDqR760PrSk56Goe6SiGuwSNW1WUbhysbbnxTabe4W5M9ltY6ghSvyFIfLezkZTcmyPKM5VKvltQoqK+0Sc79arMxhEVvKAduua5q1TJKyM3UkdeRxnbFpy2685/ZZx+ZrP5Vx1fzbEpXtCRVCsTjKYbeEjJGc1MRHWtalZFbqnJpDPItPyk2H+SqHmpf/alJnFDzYJaabHtOa9YbaeZ7WMY61EXSGjCihRpKDSDlIWl8bzm/wBhHtGRUU9xxd3D+pe5Y7+yD+YqJuLX6xOonAO/nSvOSlRTkae6uGcpa3dimaRLucT3tacrnvYP0cJ/KlvlJcc4XMlq/wDrGo56SgIwADUY8HHFkoOBXHKT4O5GZonpN5ubgJblvjw7ZNRD17vHMwZr5H9qm7clxQw4ARUl+jmSdSmyamMJS4kZmLwr3clNgLmve+ibfroyApqe6n7awmR0x8coEJP3VCzFEk6jWNVyg7XMpNk1B4tvQUf8tcPtSk/wqcj8VXgoyJqz7Up+FVW1tIdAAIqeZt6gMDBFdMG4pO5jKcluY27xpfGQdL6VY+kgUn/KffmncKTDWnzbP8DWmbBc0nSN6q9xtz4USnx8KrVrT/xbMXWqrdJnR4fpGuLqAXGYmfIEfxp4cfSiN47WfI1zO2R3CkA5zUlyFpOxqn7irb+RjLF11/kXd30gSQMBhIP9of4aXT6THmM82IHM+LgGPcmqNMjO6SQvNQkgLAIUTmsZYutF6SMZY7EJ6SOrn0orPzbe3+9P+GtavSjIwcW1vP8ArT8K5XEWAcE708pxOOoqP3tdr+X0MpbRxXv+SLy/6T7mf5uHHT7VE/wpF70j3pZ7LcZJ8gr41WEIDiRihKAlW4GKzeIxHGRzTx+Kf+bLMzx1xG4kqMpCd+gaR/EUVExgjl7EdaKp21X334mX7vE/94/FnSFrJNZtyCisy3tS7yQk4r6OSaPukeSJZUMUmrJ86zXiju6VnYg0rUEClFuAqrZKVvio90q1bVD0A6ladODWp3KhtRFbLhwASaf9UVp3GPbUasggnkkA4qOmSkwWVPSFdv8AZBqTvshu2s61HU4o4QnxNVGFaZnFclTjrxZhoUNTmPnb7hNbUabkzWEbe0yLcXc79LCILOGTvzFjuB7hS3yRvzzxDzymmsbnx9grrsRuJbW0sxmwhKRp8zt31refShWDg9xNdsaSLOZzVXA0hxDfPcQtIAGQnBHu61MROFXYcFbcSc4lSxgkjpVrMhKAsLPZBH3itPrCeYU5+cMjzrRU4lc8jn6eFeIG5BWxKiLOc4eK9z9lTVl4hunD74Yu8R+Kgndae2yrzz3GrGmSlxvYjIANbVPpU2Q6lK0nZQO4Io6KtoT2j3MlDcm5DSJEdxKkHrg1Ez7okalNqIxSblqQw6HrZ+rbXs4wPm+0CtBgvvOKQE4Hia86v2sJZUjGpFLVbhYXVTiyVuA+RpqHKeLgU2cDNaH7IpkczZWOtO2xsdCNq5P9RO0zJItFklq5qC8sqGe+ugRpLamk6VDpXJXnSxuk4xWxjigsoI1KyO6uuFWKVps0vY6XdZbbbCiSK59xBc0JyEkDNRMrit2UrSlKsVHJdXJc1O+O1aKvFq0CspXIS7xZUpfMQ2paRvUO0tyJIDhSUlJ6V1O3so0ED7KhOK7W0pKXAgBR6gVhWwl12kXqZyibOHOJwrDS1kHG2akbjdAWyVuAJ78mueoYLTgUjs79ablNl9olSlkDzqIYuUVlktRZiV5uPrDyxrykHbFabbfjBOFD7TSbzCuacJIT50tJj6wa4nUc5XZFi7QuJ23joUrUT3Cptm4gJ1IGwrk0ErjSAc5Tmra1NccbSlsYSe+uxSpqG/Uq1wOhRLugLQCQBneuh2mS2uOktrCk48a4E28tBALlWK0cQOxEFIWSPbVaWLjF2kaRbidRv93bhx9W2ruGapz9+XNWNIwB3Cq3dL6qaRryUjurO1z2sgHArOpjHOWWD0JcrktIcffOdJyfGo2XbXpCDr2zU21OYKcFYzS8u5MhOMjNZytvbIuRMPmQmw0sagOhNNtSlF0HISmkZkjmEacYpVtw6jkmpWMnFZU9CUXmLdghrGRnFR1wvRQD356VVXHlDOkml1vlYwc586s9oSlpYNjdwuXMbJXgY8KhEzUrePbGnzrZKZUtBxVdltrZWSDXLOs5aSBZEvNk+VMB9AxnGKrEd1xXfTranFdSayu4rQjeW6HLZCQQadN0QkYSQRVNbbcAyFHes2iSvtE7d2a3p1JpGctNxay76wncj2VHO27nOZAKq0NvJbRqya2QrultwpUce2pdpbzBskYVpUzggAU/6yqNsobUob20MdsZ8BSky6NrA3yTRpJaGciUcnoUnfrSMh9pSTkUqy4HQcV5IR2DvjypJJq6MHqa0PpbV2OlbFzQB83eoRUkIfKc9DTeoKRnV1rmbtoc0kNGaHMpKaRmxi4gqRQlB1ZycU0XAGvmms7KRg0V/lKQrfrTDbKnN81ufwtZwCKwbe5eciqKmlqzGUbm5JWyNjWLsjPtrW5J1bbVqISsE1VpvcYuI7DeUW1b/tUVjb0jkq/tfwFFVyMjKdkK6UdyVGtmvIr1kpU5v3V9O/aPvUkLpjKXucgVg8C2MVNtoCthWD1v5iutXycijKw8hTihhJrAxV4yRVoatgSvfc17IjNpSeyBUOlcgi7W2hpCcgZNSclbYZwcb9/h4moZ57kOkAdkUndZjjkVaGMhZQUg+BNaRatYlK7Kg+hd8vq1Lz6mhWys7JQMjA8yasSHUR2m47CEoQjYJTsAKTbQmJC5DWchOSfE95pdx7VqKTgg6hXTCOVWNXqOyHMlxXiKj7hMKXFbkA4UCN69DqXt9WFdOuxFapDa14CQDnzqrnY0jTuapE1K2CP2ijO/eRUWLqOanK8qSQM48e+mJVtfWnux0wDikXbI62FqQCSrB8xUKsS6LNyLgRLCEklKtxuPCnGLkdGpX2Y8MmoGXFeZWjLZSoDORWDZcCmyok4OMd25rWNRMpKm0XOHP/UgjcZAJ8PP8qm7fMbkMhShhR6+2ufsSVNsLaCj13GambRLIBBOMkkEHpnvqJWkVcNLFjuMplLKgogVAxJwbBydu6seISSgOpICVJ++qsmUoL0k9DXh42rKNS3I5XeLsWS43PsnBz5UjbQZSlqX0HdUfrCwd96ctbxjOEjB9tc8ZOTTluK5rsmUwhqBSMGvHctgdM1revCkowAN/Gox+a6RqUkgHxqalZR0gLonYt2LB05z51hcHpMpOtQAGNsnFVf1s8wHPfTUietwfOyK6KGKeW0iVqLBbjszlY76utmsCnmQoo1H7hVNtb6BcmivpnBNdvsJQuIgN40Y7q6cLCE25PUlI57eOGV6TpRpPj3VRp9rUwpYS6CodxGK+i5cFMhpQCBuNzXNeJbW3FUrmNJCfHHWt6mGpz1JcDkCXUtvEK+cDg5qftyuboSncq6VEXm3FVzc5YVpVukAb1P8MWl0LQ47qOO415jorNZlNCXasS1jWXiPIDatrVrDK8LyTVshttNxe0B7KSnFpZwk6FDpW86FNL2US2hJFrRoOwyfGoW7QVNOjRqR7Dsack3FcVZDqsYqJn3kycJGDjpXNVjCUbW1IzIYZJQACon7a9U4Qck5qOaE11QCGyQe+pRi2TXB2kCuRwe5BWN7ElJABFMpSFnI76U/REhvtKJA8BWOtbW25xRQcVeRN7aEgpgBJwN6QciqJJNb25hA7QrCTOSBttV7JgjpLha2zkVBz3krJ2p+ZKSpRqFnOpztWai7kpXPWHgkDOaeaeKgNJ6VCtlJB7RzTbKlH5gNWcWycqRNsyBjCutbDpCspO5qF/XIUCBkVJRnkOJAX86toJvRmTiMZeV2UbikpbL2rJB+ymUzERs+FaH7my5+1gVp2dkc846i7Ty2T2gamLdMYcwCe1USqQwpByc1GKkch3Ug7VR3juM2mdDZdabHUZrXLkNlOx3qiqu69gVnNY/pVQIyomqOTMGmStwUS9lA3zTbCylsDO+KhBODpBzT0eWgp7R3rOVK7uZyjoSaZYGx2FSSH2lR+6q6VoWayD5SNCVbVnlaZzOI89JayQFAmk9Ws4rFqIlStZ60ylgpOUjJq0U3vKZTfGhocAzWx+36EkozWlt5bSh2cU2m4g4SoVooRK5Dy3Q3uQrPXV/AUVN299osZ260VPZIjIW91R6CsWQ4HM1uOCa2tYxmvaUUfYD8FztJyak0kb1CIUEb5rNUtQHzqm9t5DJZ11Ke/FRU6SMHB2rHmqcT41h6tzU5VmrZm9xBEujmKJ7zUdNVyiArvG9T8iOlCdhjFVHiKWG1HcAAEH20gva1LxFHnv1qtKs7UokqwvA2xt76Tguc+QSndRO/mKn4sPmtbAg9MEVs5m8YXFLdGdU4s6AQOu+x9lTCImWwcZPXrRAiFkKJxkedMOOhDWDgHwFYydzeKsKJbxnI2rJLYJ6ClHZgCtjtWxiWlWMGsG9ToURh63tvp+aCagpNlUFBppBxqJUR3Duqyx30jv2ppCmyrORmt4uyM5Ip0iwENKUjSkqTkZFQ0ZmRFeCVbYUenTPdXTlttqQe/NQVxgIWSEAD2VPaNMpkTIZTaplvdQRlYAUBnzqoyEBpzIJwKtkVSmpDkc943OeoqAvCEc8oBAKRj2d+K5MdGMkpHnYmOVkeH8HY0evaFdaUWN9jWpaM753rzXFyWhyInoEoOvNhwdnNOXEDOc1V2JBbVg1Jsy1OfOVmqReRNMszcWwpQwOvWmFRAW+ycnwNbISArrj2048hKW8jrVlPjYlNWIDSUO46HNdL4BvoQExpCvYTXPZCdS8kU/bXinfGKYerKFS5ZOx9BIfCmwpJBTiqN6Q5Udi2HnY1k7DvqHh3uYywA09lIHQ91VTjaW5PYLjj5LiTsCMV7U614NxLuV0eRFx3nAtaRk1aLT6uSlOAc91cgTOktpIRmn7Rf5seUgklSQRtXHTV3dlMh9BxeH/XIwJw3kbYqtcQcNS4QUtJCx11Crfw1fWZ9uZcbUN0jIrLiKa3+j3dZHTYV2uEbGmRWOSTWUuxVczSpafGq56qtchKkt4SDvipt0LXIUFEhJVmpJuOgN6tIzXHJRmZtI32haW2gFJAwKcfuTDG+oCoSRJS0fnY8qi42m63uLDUsoZWvU859FtI1LP2JBrNyS0RCXIsEq8oUrljJWcYTjc56VEmclaskEAkjJHeOtPXWXFu9+sN5tspmSET24j/ACW1ICBry1kKAPzMpz/VqA4jlKbscAgn/wA/NH/Eipd9bkuNiXU81y9iM1GuKS47pztXs5ESPwkm+JKi3Jabjst6zlMkKIcJ8glGf9sU7eILMSDciLc5HYhssuRrkVrIlqUU5G50nIUojT000cCVFiyLWyoas71rctLKzjOamrpG9UavkgQ3UQmXo6Yjx1aFoWofNPflJqD4rvDEfiGfEgQRFZiPLZBDilleFYycny7qtkjElqwu9amGNwkUm6EtO6CkpV0xjf3VYOJEqZtD6Y1pcU0zEakm5lxQSor05xnskZVpAG+2fGji8w7jcZziYYYkRJUFBfQ6ol4Oo3yM4GMDGMVZ01wIaIxrSWyHEkblO4xuOo9talaWiFJT2ScA42J/9mpUssPy4VudUtMVfEM5nGs6lABvCdR7ycDJ8afjoTNj8Ns3Oxqt0dyfLC4upxPMSGkEHKjkbjH2VZRQylbedQW+0BVXu7qG1EpxVt4Xat9+evUxyM20mI22piAFPuJOThSjoy4oDHd3q7hSF0jWC2yOIpYgLuDcOJFdbiyC+wll1xeFDtBK1J3BGeoPXvqso3WhXJfUqDch9z5icJ8zTAamODVgEe2pK7m3WniqOfVtFuW3GlLjaydKXG0LUgHrjtEDfNdCuHDlktMOc96wl9drZcelpKzhSXQfVcf8OfbWMaTd9SjpXOU+rSskuNqACdWcHpnGfZmtqmJCXA1yllzOAnG/uq9OllmwTVN6v1thZeUSoncykjbPT2Cn0rSv0xtJ06lesI7Pj+rG1S6C5mTonMEuuIO6Fe6mWpSttIPurpDFigXGTZBPt5si5ctxhyOVLGtCUghQ15IJJ0+2tPE9ptMOGw7GY9WlF5TZaS0+lCkAdcugdod+D31V0pRVzOVB2bKMiWod+KyTJWV5Bpu4xEKQS2kZ8qjIocQopINc+VtnJKBPQppOEqNTMd5Kh1qsNtYIJyk1KMKGgb71eEHuZnkJzQhW5NKvpAPQEVGO3TkZBPSoiVeFqcJQoikoJFXAuMB0pZUAf2vHyFFV21XFa46ySPnn8hRU5kMh2D1tQPzFe6shcMbYI+yrQYDRPzBWl62NfRFetKi+DPpCCNxQf2sVqNwCiADUnItTedkilF2hsHOM+ysqlOa3Mg8YmpOADUlHmJ07kbdahZEUx0/qxiqnfLvIjPrYUooSeh1Y28amDtoy8Ypltul+QguJQ3qbTsTnr5VSOI5iZ41tI5fcU+deRH3H4bIT2UuOKUtZVnCUgZP50st6NKkrRGUrIG3xqe0tKx6EaCULpG3htoF9SlnYHHnV9jRTywobCqZww0tcvlr6pVgmuhJ0hISTgCtb3K2siPlANNk6j7aq9yuIbCgDmpbiK7R4yVBzUE+NUCdf7etZCipPnWVRvga07LVmx+5KLnWmItxOc6qg3HGXjrZcSoHwNYJd0K61yu6OmLTLizdMd9PsXMHHa3qiCVg7Gt7M1QUDmrxmw4o6K1cQB1yK1SpIWpJyBvVSYn5AGacTKLmBUuZPZowmr03vAzjBJqv3t0pkuKKcBW4qVcdC7ghRUNwQSar95d1yFHUPIeVMT7VNHjY1aiiXDk+dbOvWk9ePKhKyTtmuG+VWOBam9Te+R0rNvLdaw4fCs05XtmsJu7LEhHnLbxg4xT4uC3wEITqUe4d9Q8aC666Ejv8AE1O8tFvjluKnVMUnYq7s11YbDzm+SLQpub0NrEFxxYMhaWhjJyckfZWLl2t0Nam0Oh1TeNYApeNaLvKWY0GO45KdA1Or3SkeZqy2j0PFKVvXC4KTIcG+jcJr0YYalB3tdnXHDxW8gF8SRfWENRm3BrTnVg4FHrcK4BQDhLg2OOldAtXoyiRmuW9LU/jdJIxik716JTKyYFzUwNtSFDKVDw2xW2Sna1izox3HNZlqVziGiMHdKRuTSkeK+08kyGy2knoRVmuHA3EljW6GS3IYIJC1Ekj2eH/aq5GmOtyPV7k6oOg4ylXh5Vi6EUvY3mcqFloXWyXNMBGGFqA8KlHL6ZAPNXnwFVllnmvJQ0pOk9DVjg8MNqa1uPuFZ8O6uZdtJ5bHNaS0ZETJrSFFasUg7ff1ZCKcvPDj7MgI5mtlXRRqq3OG5BeKFdPGsKkase4q1Y9l3BbhUSqo8yVZKgtSSQUkg4yDsRWh5wkkd1eNhaSlxtRC0EKSR3EVgoWdwtRyS1It0hyO6XI7yFAqRnGFDcHbv3++llOqU2ElalAEkAnOCepq9XGc3L4zu09M+A5LeiBy2OvuJ5aFkpGFZ2SoJ14Cu/HlWM1caRcpEZy4W92dNsqGlykOJ5RkhwKOVdASEYz4+2t3S5M0ylYlzfXrfBgNx24sOMVLKUqUouOKAClkk9TpGw2FOQbe9cGxGS8880w2t0NKc7KEpBKiATjpmrFEXEY4hLUeTbnJjFlbRHfWUqjpkgJBJJ7PTIBVtnFOzbm7a+IrZImPwEzFWN1a3WNBaU6Q6E4x2SSQBt1NaqnfVsixVExX5DfIacfebbbK+XrJCUpBUTjy60ipl2W3McbBd5DZfeUVbhOoDO/XdQ99WuLxEP07Febnx2ZUyzqaefKkpSJBSrTqPRJ2Tk1XOB5j0aTfQxcYsKc5ALUd191KUFfNbOAo7ZIBwftqXZNIi1yurkuvNpjGS6YwOQ0VnQD446VICMVoUpb7hKiknKjuR0P2d1WFtyHP42h2952K+9cYKYMySykKR6yobOJI2JCg3kjrhXjUHxPeWhfJItwSiNEWGGCkDdLfZCvMnGftoubDjYymWeUlM5L6HQqFh58LXugqKRq69SSmoOXcJjjyVOTZDi05KVLdUSnbG2/hV8vXFTzF74tuUK6RluS4LSoK0rSs45rfZweigNWxGRjNOWydZ/0vxC5FdjouL7jDjLqHmmQpJby6ELcQpA7Z3G2feKs4pvRiyOWQo06VdIrFpW4mc8sNtFtzQdR/rbYqNYVIkvvrlSHVrdI5hWsqK8ePjXRw/DHpVgzGW48KGiYyV6HUqbBGNSgoAJwTk7DFRVp4eNl4htkq8u29+3etp5qWJLb+E5zlSUknHjVHFvREqxXHG9fadUVHAGVHJwBgD3U2yvUFanXFBYSlQKidQHQHxxjaulRZC2rzYVX64WydcWprrhfj6FIRH5eEpWQADlW4B6D20lwyJr8m7TH5cdq+PsJTFkPJQ2hGFDUE7aUnSMA1aELMiSuU66wpUQoZkFxHMYbWlOvILagFp6HpuDik0LkNvB7nOc4b8zUdWfbXSOLrau5XJcwyY8pUeHGTIdaWNKl6Ak4x138K2cLluHDhepzbbDdM3NxVLWlKlMDThKdQ3Se3kDfOM1Zwu7GLh7Vjm71xkyXQZMh11aRpClqKiB7TUk09cLpJiRkvvyX3FBplLjhOCogADJ2qy27iCPbFWiDBlQkRXb3IEoFKFZjlTYTqJGQgjV5HHlT3BFwajpt/6JuNvgJauS1z/WFpQpxnUnRgqG6cBQwO8586o6a3NlXT7ynMyHW3FNPZCkkpI8CKdjrZJySM0LhplTJKm1gpU6ogjoRk0rJsruSWiQfbWG45nEl3VMlnbGcVXpE9yO6oI3FYJgzmiQpaikedZtwivdRz7ao5tbjNx5iEmW5IO+1awjVjJ3qW/R2oEgZpdULSvGCB41k25byMpJ2FCfU1dPnn8hRUjYoATDVufnn8hRVsjIsfQ6ZQHU0KlI7yKg3JAzsaSdl77Gut453PcLGuQg5JIpZyQ3Va/SB1Eaqy9aKh1rKeNk9yG8kZkhKjgb1z7jWGl94PoA1Aad1eHfjvqzSn1Blwg9sAlNU66NPusJcXzCk7KKhg+f2V0ULy9uRtSXELekr4dcQwSXVBaEhPjlOwpDheFI/TTbK23EEDU6FjGB/+6nuAJURDk1t0ABj9a0D7j/CmbUoS72/KCzpcd0gEYzjetJR9tM9SnK8LEzYIIYeWs9Sa18TXNcRYCSdPfiphhISdhgUhdYrUgKLgztW0noYx36nNuIOIWnkFLjgx51UX5EOSCkqRk94NWPizhqIpK3Irrkd7Ofndk1zO526czMIAcU2SAD86s4xzcSaknHgSTzbkdeqO6oeG9PQp7qsJdOT41EKaehyvVnHA4rSDsc01GSvOSKrUTi7SJpNPVE8iQcdaYaexjJqAU8pHspORNcXslRFRGJq52OgQe30UKmYrShg9RXJobs/mAokKxnxq8cNPTUrTzHSsk7p61ZwvxEar3WJxpordcz+wcEk4FV27xDpcUFFStW3cKsXrBbVIWAnBUe/wqMkrblE5c7P0TVaso2ynk4qScyuNMqx2jvTTTSgNxTLrSG1ddq1Or2wmuZwTRwOWp6lOetOQoiHncLUEJHU0pHa1HdYB86dU4mOGkLRnmZOoeVKWGzTV9xrTjmdiUkuGLGBhgFwdMjOD51b+BOHlOsplXEhbqjqVnoD4AVQrRMfkzG0BslBcPU4x5122yILcBpJO4Ga9ayirI9GEcsdCYhssx0hLLaUjxA3rJ+WhJKQcmq9deI4MDUh6SkLH7I3NQrPE0J5wEPgg+O1YznbRG0Kd9WXhuUe6mW5XnVehXBp1AKVA5p/noSkqzURbIlElXVodbIODnqDXPuK+CbRckvvpjBqUoZ1t7HI6bVZkT2teC4kZ8TWDjiVqIQ6lXlmrOQjG2hwphSrVeFIfW6otDods/wDvNdCtN3Q6EZXpyNgag/Srbec2l9sAPJOQo1VrDIkqQAt4HGNJBzVs2l0c9emlqjqdwktSdDaT2vCq5feH5MpK3CGhtsCd6RhTVszELeUpWKlpFwkSuy0OtUTjVWpxXTOXSobrEpbb2UlJ6U5bLRcrklz9G2+VKS2cLLLRUAfPFWC/2l4JLqxlR327qleBWlz7daW1v3CEi23JTy3YqAttwHQTzTqGjAHzlbYz4VxujaWV7iUjn6LNdZsaTJjW992PHKg84lBIbIGTnw2rKNbLp+ilXFFulKt6esgNHRgdTnw86Yu17jyLRcLewtzLt1clgj5ikEYH21YG+N4ItMVTSER7lFgepJSqCHgvslOzmsYSc7gpPU9aoqceYVis21F+bjPXiyxpQjsJUl19tvUjTjtAgjBGOo3rVxA1eTbLbxBeHVPN3IKS0tWxSEHAGOgHgBtU7a75aER7Y/MduTT8G3vQkw2mUqaUtaVguatQ669xjOR4VVLrLiy+FbPDy+ifb1uo0lALa0LVr1as5BB2xj7asopK1w2rC78efyA76o+W+R6zqCCRytWnX/ZztnxrKNapbzqmpKH47iXo7R1NZSkPfNKjnbbBA76tfCfGsS28NxLVcIbj2X1x5S0pBKoCwoqbBz84LWVD2Cot7iZl6ffZMht5Jn3OLKaSlIOhppajpO/UJKQPZV8seYSQrL/SHCcd6dAnhLvrsm1lSWxqHL0ZUCc6c6u7cY60teeFr1brXFuYjvvWx+K1JMlLZ0I1jOCfLOM1jxddo92tbseMh4OLu8ueNaQBy3QjSOvXsnNWGPdbQqO1NjuXNdyTZU2kxFspDJVy9BVr1bpGScaeoFLR3E6FTZsV4Nq/SybdLVbhuZPKOjGcZz4Z76krBaZ10tl2mxEBTNtZD7vmCoDA88ZPsBq8/KmJ+iGFtspj3Fi3CBoVADuoBGjZzWMJPUgpOMnrVGtEmHb7dfIU9b6GbhFDSXGkBZQtLiVjIJGx0467ZqcsUyjSuSdzsdxttsh3JyO67bX47T3rIbIQkrAITnyzjPjT0e0zI9tbnyLfIbhOYKXlNkJOem/nUA9xhEXFkMgSVFViYtqEKHZ5qHUKJ6/Nwk7+NW+8+kKDc7dcH7e36vOnR0sORzABIHZBHN17gY27OelWWUOKGmLFJXIfEODJfDAQXCGsFGpOoZHdtms4JcnKLUKG9KcAyUtIKiB0ycUhcuIRdIt2biolNiW9EWjUMApbaKVA7/SIxXnC7KjbOJ25k16CwuG2jntoKykl5HcCCQeh8jU3V9CNHoeuKlO3JVujQZC5wJywls60465HdUJcY05+6fowwZAuJOkR+WdecZ6ezerAxxPDi3Wch9p2RBftzMD1t6OHFrLeDrU3qGQcYxqzgClJXE0SVdJaHnnm4blsFvZlxYYbWyNQUcN6zkEZT87ODVJWfErkjzKmbFck30WtVvkC5HpH0HURjOfZjfPSmBZbobqq2It0lVxTuY4bJWBjOceHnUy9xDZ0T0xmXLkiAuzJtapZZSHkKC9WoJ1YKSAEkZzgmttl4ms1qmz46UypMCVCaimVKZDqtSCCTyyv5hxjTq2wPZWThF8SJRRGRH5VrmriXFh6O+2cKbcSUqH2VMt3hknTkA1EcUXqLeZwdblI5USMhiOBE5PMAO4wFKxjJwSegxUEt8FOUmsJXi7IxlBJ6F4VMjvDAUNR7qiZS1trOhOR5VAQZakLGdxVjgzGV5DmM+FOBjJWZ5a5hWrQ4nTv31NqjNuEEYqFnIQghxrH2Uoq6uITsSCKghRuXy1QkpjKx01fwFFQ3DV7cet6ioHIcI+4UVe6LdmdNW5k5FLSD1PfQl4eNaHnk95rldNpnp3FlEpXnvre2vCdzSrqgrcHavBIBqzgiIs3Smi60TnbO48R4VXbkptuzLC1ua0KKCnPWrIHUpaUpZASBkk1zzi+6APuNN7rPaUkdE56Z867sMm13HVS1IITXocxL7TxS7jSlseB8RVu4LmPzOIYoeWSAFEJBOBtXOy6ht5p1WVqUVayavvoxUHLg09tskj7q7NJO51QnJeyjraylA3OKQnqHKJz1qNvtzSypCdWN6rV54iKRpB29tUlI3hTehvuUZMoqSrI881V51gcQollw48CK2jiHCu2a1yOJkKIQjBVWMWbyihIWhYOXgD54Fem0EgFKfuqctiJlwRzC2NHlVntlpC07jJqU8zsVypK5yW5QlZKQMHp0qk3tubHc7CFBr6Xj9vdXdL5ZktSdSgBvUFP4fU4eZGxnvHca0jJIznSzbmcxiRp0e2NzlqJbUrASD2vbjvq/cErkPAur1aEDJJBFTtm4fUXUKksNEJ+kKnuJizD4feLKUIWQEdkY6mr1Jxf8VYyUXRi5SdysOuq5SSkdk94NaFKwCRv50jElONHIVgd4VuDUkktvoKm0pDpHzM7Vgkpas8KpN1HciZrq86e4UqhatYJ3Fb5QIcKjmvGlJI3ArFoq5agHlBzYbVIXCIJbEdzWQn6A76jFlOcU3IkAORw2RhtJTpz1866MLJuTTOnD6ssHCrobuCG1AKUpQAAGyQK67zFvR0stK5QUMKX4J8vOueeiOxmUZFxlgKJVpb8vGr7fX24DBUtWhpIyTXROWtz1IRvZGmRDgpRymWW1DvUoZJPmaq15sTAUXWEpT34TVS4s9KyrfhiwWsvnVpVJkIJyf6qfCsbbxTfr3aVynbeyrQoDDKFNOHbOQDkEd1UyuSuXUkpZS58PPKSnQglSQfdVkmPOJh75FYcEWEi3tyJCVJde7ZQe6rDfbSHrepDYwdPWqpOwlJZrFHajevvDmuL0+RxVjj2iOhkcgltxI2Vq764vc+OpPDk4+tW99QCykJWeWNvvq6cJ+lK038JYlx3La+TpQpxWpC1eGe6rpStciUknlTJPjNn1qzuc3suJyCfA1xbh2S+1c1tKIKWlHGPbXd+J4LlwsslLKu2UZBHfXBLfzG7qckNrC+2cd2amGqaMq6ui9SXFHBQkqJp+0Ova8L2pVt9soBBBBGa3ty22/mkaq4e1yyPIvYn5TSFtFRUMEd9cz4liNetKLedPQ476sdxuj6kaASE+VVuUVOL3BO/fWk66noiXK5Fx7W48oBCTpp9FmLW6hvUxa1htHbwK2z5jZRhA3rHMmUbsV95gJTpwAaSdgBWCetbJslRdPhWtyclKAO+lyNWLraS2CMdKRkOJz0re46p4kio99pSVHfOaXuWV0TQscxb6W4zXrZ5DclRYSpQQladQByBvirDZ7Y76ow8IzgZeVoQ6UHSo77DA36H3Gom08TuxHlKRCikKjsxylalkHlp0hRGd9uoO2wqQY4meZiMNNRI/Oa5X63K8qDYUEjGcDZR6Der3itbl7XGkwpcpcYRorikySoMrKCErISTgHvPZOPZVbNnl3S5zIobMZcVvmP8xtaigZA+ahJUTlQ6Dzp39OzeQhtECOlwBsLfyvU4ENLaSMasDsrPQDeo5UyQm5ia7EYeWGW2dDhWlPYSlIOUqBz2B3+NQ5RJskRqOHpCYnriVNOMqUA3pJBWCtSAQCNgShXXHSrfw9ww8SkuOMIXyC+W1E6sArBHTu0HrgdN8mixz7i/GehvyeY1IcDi0qSCB2lKwB9ElROOlXRlSoLAcQzHJDBZzgjCSpSjsCBjKjsdthttVopXuVcosYt1oYEZKikdKyVaoqicpFV08ToisqaJOU7VCK4tk81SsdnupKoluKpkzf4cdkkIABFRcWKy6MKAGaiZt8dmuZX0rQm4qbHYV0rLM2yjRYJtqjBGUgHFVi5sttglsYrbLvDqmsJJyaiDJcfP6w1LLRpvezX2iratrSFKOMVuaaBG1SUOOScgVRpESVhJpsp3xTDalBQJyMVIereVKyW+WeoxRK5nlNqJOw5ivvpxCGXUHoaiVsFxGpPdSiHHGHMZIFTawyu50HhqIhMFzSNuafyFFbOD3wq1KOf86fyFFaqBfKyfNx2xq3NahK5i8Ek1WVytLnzqehTW9Xzt6idJ2udJOOP6U7dK1x1kkrVjTShkcwpSO+m4LS5kgNstqUc4AFYQpyvdlo9x5dJClNsNnZLrqU+0dcfdVJYimdapcjTqecQ48T3lQX/2rqjUOE1IZTMQJDiFheAeygj8z91StxbjvQNFvS0wUH5qQAn2EdK6KUXbV6ntUNnVXFOfs3PnIw1pQ2f84rdI6Z7qv/o0iOsvv8xpaA23nKhtk91dBEZLZbU48Sp04GrtBAx3dN6YuxajQQlgYQEdfHzrpi02b1MEqKzXuc242luBeEHvqpX+YU6dGT2ck1ZOJ3EvJDg3B8Kp0taV6QfOsL8CZqy0Ir1l2Q5oB01LRrU6GS6kkqxVedblR5C5McBzfdB76nLfxKpMdBXFXpUOo++tLaaHOnfeZI4ku1sQlpheEp8R1qbtXG8gaXFOkHvGcVAP3SBNBBCkk7bjOKWRa2lupUmS0QegzUKCLZpI6czxZbrzbpEeY5pkcs6VZ6fbUJw9xGQeS+oK0nGaizw+mPALq/DuqpNumJcFIyQknapcVwJU2nqd3gzWpCAQQD5Gq36QZgQ3FiJVnUS4r8h/Gq5Zbi+VoS2SSSBW26yBIurinCFaMJB67AUUb7zk2hVy0rLiLsLCUgqOB51uVLBTpbTjxPea1PaSns++vYwBO+KjKfP3M3nVutjmpyR+131HSHSjcHFS72AjYjFQFycSCe+onG5KdzASjzAM1LTgjDCkqBJGSKp7j+HezmrzYbMi52RM25T2oEcOaG1qGpTmOuB/GrUZRg22duFhKU8qR2T0W6W+G2gOqiT99XN2MzIQEuISo/1hmqZwfHFuiojNucxtO6VDvFWddwbYSSs71pmR6jg0yJu/CEWc4VqWpPsOKXZtFvtWkKJdVnACjnJpl+/BZKUqAqp3qU7MmoQw8ULSQrUN8Gsm+KN4qW6RZ7p6QLLZJaID0yP66cDl6h2fL203G9IVpdW1Hlyo7C3dkcxYBP2VzRzgaPLkeszG0uyFf5/QAqpJPo2gTUpXJ/Xuo+YtY3T7q0TZV06fEvV0sMC+LVqCA8nvGN612/gaEznnMtODwU0kj8qjJKnLCqBh0rQEhpSjtnwq3W69IebGrfIopcGVmpJXjuMXILUVrltJARjGnuFfM/F7Ah8YSUAgpSs5TjqM5FfTkx9KkKKTkEV88cS2m4S+Lpkz1J8wkuZL2g6Me2rwko3ZhVvluNvD9WktnAIrGGggg5JNekhQBHdXqF6BsN68yVWMmePJjSkgjJxWlTGv5iCfsrGO6C+NW4z31a4amA0MhPtrLK5PQi9itNWxShlQNYSoSW04xVrQtlaynIoftwda6BQNbRjlWhRu5zSZEwvptUbKipSnOK6VK4fCxlI99RZ4ew6eaQUipsyynY57GZdW5pbbUoHptU2xwxKkt6iNOe7FdCslljpUFFKUgVZC1FZQAQKm3Mi99xx35HSNQA1DzqRYsJitp9YyopGAT3CuoFMYpynANVq+LCgpLYBNLJashtriV5TEdCMaRnxqs3VTQcUnOCOlWgW19xBUomqjfGDHdVzfHrVU+4LfqYRJ7kZ5OgAkd9TjnEq/VSgnUojFVmDynM5z5GpBqJzCE4HtxUSll4l8hGPyNS1LO6icmly/rNStwtJa7Q76gHEKacIpB3LZRh0kDY0vqcJ763IVqIzTIQkoJIxWmhrGKe80oBW2NXUVqSMLIrYp0A4HdWhS+2TirO1i0rcCXjBOBk1Z7QyytI1EZqlRXHHNkA0+idJiqBCVGsWjlndlzksob+Zg1A3GOVLyAR5Vna7mqQ8kOEg1Z3GIy0JyBk99StNSISaepU0ZbbAWCBWyRDakRioDcb1aXrS07GJQQdu+oBH+TyCyfm+Bq6dyJM2cJF1q3vIGSA8ce5NFW7hqGwYCzgbuH8hRWqiWUznEqcQrY5NbrdKcUrrk91QrSXHnUoSkqWs4SkdSa736NPRsi3IauV+QFyyApEY9G/NXifKr01KfwO6lTzsR4M4SuFzDcuakx4nUEjtLHkPDzro8O2IgtqbjRm20HqQMk+01MrcSkY1D2ClXnsDYmurKluPRoU1D+KIyREbCTqio270pwarVxiNN6n4q1IdRuUdyvKrJMlKSlRQrOO6qTxDNOC61lLgO4FYVbHvYKM295XL9eiy21hxWnOtBHgQdqauN4DtvCQrohI3/ALIql8Vr2YKNkKUdvAk5x99R6bkrS62T80jH90VjTdmzo2kkqaXebJtxQHlMvH9Wo4z4edRkyMpAKk7ioq6PlxZ3pqxXVKh6lLOx2bWfyNTa54qlfRjEZscxG2xPQ1MR7WWHTJgIS8NJCo6j0z1I86j7kgsKQUDfFKIvTjDwUlRB7x41aMraFcsXpIsTdsshtQalISxOUe3rTpIUT+VRl+4Zt8XkmJMSkaFLUdec46YpuNxUhSQJbaHU4xhxOqmRe7a4nEaAyhZ/a0YrojJcisqVtVIo8a6XZtL0ZrLkU7DWTt50IiKfDanN3BuasEwBzKWUaluHASkbk1hGt7qNRdwlY/YG5Ht8Kzk+Jlu1kzbbnkW5rmKGp0jCE/xpCVKAkqCDsAAfbgZ++s5UdaSVKWVLx9gquuOLbf0q6GocvZsjy8XWjVeVE+JRI+dW5t9WnY1HRRqRkmpFoI5YrOxwaIXemOA4Ktq0lPNQSones5GnVkYzWrnpSjr0pFW3lXu0FHYwG9dFZgRzwrEmS0qeixooCGgSApxS1dcd2xPuqgF4OKGK7L6MpUSfw7+iZ7aS2FlRUpOU4O+D/wC++qTp9q7Hp7MxHY1deKHfRnczM4f1OqTzm3CgpH7KdtP3U1f7iUKUArpTM1+y2uS1b7YI7S3CcIZHcBnc+NVniNRUTjO9RLRWue9TjmlmaFU3RRJIVvScG9tMTVuyl4Qkkml7e0VuYPfXPeOpz9vlqZZBBWtRB9n/AO60hG+4zqSUW2zqL/H1ymSQi1Rm0ND5urGoipK3ekO5wFtKusRJjLONYAz91fM5fkZKiFqJO5rxUqQ2pKiVjT036V0Wivic/a8HHQ+vuJLrEutjTIjuBSVYUk+BpGx3NSUJCjXH/R9d5lyt70dZJbQtJBHTeumQ2VNqHhWbV3curJWRfY8vmo2OciqKZN3nTY8qFLxCU6I62U7aDnfUO/O9WO0nmqQ0pzl69tROMU0qyROFbLcJa5AcaILwKiB2huB5nNZzi5KyJhOMLykcnkyEB5YQMYURiskuZHmagUSuYolR76bbkBI6nNee4p3sfOWuyTSnKgc4qThokyFBtskjyqARMHeasdgubbeNwDWVOEr6kSLNaLEU4W5kq8zVjahYTjbaoli+NBCUpIKvKt5vCT1ODXfFJbit0jbP5bKO0B7apl1uaEOKSg5NSd4nqeSoIOari4qlErcRmpcuCM27myHdHio5VpFNSJMl0p0nCR3k1X5LqIqgegrJV7SlGx2xVWlxCuN3G9uRU4UcHxFNWGYmf23DnFUe7zzJBxtXtlvRhbZ2rOemqLqFzrXMYbaOcdK59xo2y6VKbxqpC58SuvKSltePKlCt+WNS+lVc7oKNmI2/ShaScdcEVaYZQSCcDaqpLZU2oqPZ9lew57qFpGskeFZSTZs5FjvBSUZScjwqv/o52QskNnHjirpYIBuOkrRtVzb4fQhoANpA9lbU4NIzc3wOSRLG6sA6CPsrN+zvAFOnautt2ptpPaSB51FzWGUOaTpIzWuXQpmadzj71pfbc3SSKUlRVN/OBHtrrs6JGDeQE5xmqld4okoUlphTh7tKc1D0WpZOVSVoor1rdQ2kZx51Lqfjrbx2TnvqLj8MXySopi22UvPTs4/OpWF6MuNZZAZtrjaT3uqxVFVpvRNM6Xgau9xaIxbzbSyWyARvWD3EElGNChgeNXm3+gvi2QP8pdiMZ6kr1VOwv/DvNUP8svTKT/UaJ/jWid90X4M1/btKzt4o55A4w/V8pzUlXj3VE3W7LcfLiD9orrFy/wDD/c47RXbrlElKSMhC0lony7xXLOJLDOsctcO6xXI0hP7Kx1HiD0I8xV+zcdWYOkWTg29urtbmSch0j/hTRURwc3ptrw3/AJ8/8qaKuiOzR1T0WcEiAGb3c2gqSoZisq6I/rq/hV8uHE8Vl5UdCnZb6fnIjp1aT5noPZmozi+9K5qbdBWW3HE63XB1ba6beBPQeWaqrFwZi4aYAQhPQCuptQVluPoIU40YqKWpcBxI3kc2BNbSf2igKx7iTTkW5x5gUqI+FkfOSdiPaDuKqzE8OAb1vcYRJKXUEtSU/MdRsofEeVZ5rm0aq/yRNzHA6k9ULHfnp/2qpXlHNDgI0u43x0UPEVLsTFvL9XlBKJiRlJHzXB4j+IpO5t81s7HUPm+R8Kq3fRntYayV4nMbwnnRXmuq2zqA9lU2TIKHtQOy0j4VfbykNXBLhGEudlQzsDVBukctqfaHVlZI/smskrM02hTz0rojpLhJJzS47fXr416V5GO+hPnV0j5tsmGLsp2KlmUcuo2Cj+0PjXjgZfTuMGosDPnTkVKCQFb0UeJN7maIqcjDhxU1aLa7IXpjpUvHzl42T7TUVIdjQ47j6h2UDYE9T3Crx6KFvv8ABb77vaL01RTnuAA6VZtpXOjC4eNaqoS3F94Ss0G1R2HkJSuWQdbp3PsHhU7OtFpvORNjjmnbmtnSrP2fxqHtutQC1Zzud98f9qloyFLdHaJwfbRO+89WvhKUo5GtDmvG3A1ytAckRUmXb+vNQN0D+sO729K5FOdPrO4wK+yYb/LGlRBSdt65r6T/AEWxLpHeuvDrIbmJBW5FR81zxKR3Hy76s4X1R8nitndm3KnuOJQZCA3vipBH6xGUHr3VAojOx3VNuJUMHBB7qmIqgGwAqqqx5E1Y1vsua06M71pXEcKtzkeypZtaVqSMVLIYSWegzikEpGWaxVWGCheTXWvRe/HRrQopSs9M99c1nNFpZOMDNWCwr0KbWyrp4VtRVpaF4y4nXuJbHBEJu525llqVHXqc0JALiDsr3dfsqqXlGpB8aRncQuxm0o5qtSuoz1FOOviVamJIGdSd6pilF/x3nu7MxDlJxkyFjHlugjxpa9cNs3YlLjeXM8xtfn3j2GmkjUsY8an1vpixtSh0TtWFNnpTXtFLi8GMDSFNAb43HSmLp6O0PsoQwyFvuHShI6+32edWS3cXsNL5UqIhwDoojerFbuLIryw1GjJbUrYqxuR7a1hCO8mpNJWSIK0cExuGrJHjRhrdSdbrmPnq7/s8KfPdVpmKD0QK7sVT7jJTH5hz82pkcSdys8aXtcd6PGjOFK0HmKIPTw/jVXvPEVzukZEeVKcWwjcIztnzpWaXpk959zdTis+wd1bY8JJ3VvXDKpFyPIq4mcm1fTkJRXFJOFU8l4YplyKhKdk1HOjQrrVXJXOc3F0Zwa3Rn18wBKiKSYQXXAKtFqsragkrVk9al0+JBMWVwJaB6q8TU0yStXaOa0261o0dcAeNSrUZpjfmJJ9oqznGC9p2KxozqP2E2YCO3jKulapgaaYJBFYynX1EhCMp8QRSyrZcZzehtpZz9FJV+VczxtBO2dPzOmOzcVJX7N/NW+pQeIZeJRSnpVfefUnO+1dVb9F92nOay08M+LePzIqSZ9CUx8D1glHtcSPyzUrEKf8AGMn/AML6GkdnVl/JxX/Evom2cLdmY2JrQp0qyUqxX0hC9AltBzLcST/aUr+IqwwPQxw7GxqQlXsbH8c1ou2l/Gk/m0vuaLBwjrKqvld/ZLzPk2K4pMhJUSRmrjDW+tnDUd1W22lBNfUUH0e8PQwAiHn7dP5YqXY4as7PzLex/tDV+dWVDEy/xivm39vuQ8Pht+dv5Jfd/Q+P5Nmvk7ssW5456asJ/M1Y+GPR/diErlQXQo9yU6vvG1fVzEWPHGGGW2x4JSBW6rrBVn/KaXwXV/YnJhktIt/F9EvqcWsHB94i4LUBZT/XUlP5mrQOG728AFIiMj+ssqP3VcbnerXayBcrjEiEjID7yUHHjuaZhS486K1JhvNvx3RqQ42rUlQ8Qa3WBdrynK3yX0X3CqUlpGCv839X9imJ4IkupxJuKEg9zbX8Saya9G9rCtT78h0+0AVeK1OyWWW3FuutoQ0nUtSlABI8T4CpWBpcU38W39yXXfBJfBJfYgY/BdiZx/kQWfFa1H+NSLFjtbGCzAjJI79AzS7XFVhdubNvavEFya8MtsoeSVKGMjGPKubemf0nJsS2bdw5cwm7MSE+tIS0FgN4JKSSMZ6dN67MPsyNSooU6aTfd57jGtj3CDlKbaXedhQhCBhCQkeAFZVS+PuOfklboktNqkXBt9Cllba0oQ2AAdye852GO41TfSXx3dpPo1tHEfCYcixpDmZDpUnUzg6Qgg9cqyMjw866KODqVMtlZSdk+8wqYmEL31a1Otu3KE1Paguy2ETHQVNsKcAWsDO4T1PQ+6m64RebxNRxj6N71doMBM65I5a3WtR0pUrCdJzj5ro7juTUDxX6QuKW+IeIZsW9MwmbPNTHatqkp/Xo1qTnBGT83J9u2K6IbOnUaUWt33twuYyx0YXzL8tc+lelVj0gcIwuMLE7EkoSJKQVRn8btr9vge8Vxv0ixJ934/t8R27XJq3X2D60mMh0pS24lpRSjHTGpIzt310b0B3N65+jaCZLq3Xo7jjBUs5OArIGfIECsq2CyUFVzXvbT43+6ZpSxWeq6drfi6nBbBDchNzI0hsoeZkrbWk9xAAIorsfEHAokcR3WUxMZbRJf5ugp3SSlOfvBP20VxLB1Gro2daKdjn8S6quUOTdlntTnVLT5NjsoHuH31F+skvdTmtHD7ueEbeE9A3ppVbmlzesZo96UrzbLfa5OdO9WaG6CBXPbZJ7QGat9vfzjesk9SzV0TE9hMhoHJStJ1IWOqT4ilhI9ZjrDoCX2+y6B9yh5U0lzLfWoqSv1eUh/wDZzoc80n4datI6sDWdOeV7mVTi5kpQtYABT2+neOtUy8R9b7clG4cSNWe+uh8RtlTLyD10kGqTGHPtyc7lCtJrN8z6O2aFiiTGjHlKQeg3B8RWvJzU9f4h5YeSN29j7Kr2cHBrVbj5XFUeyquJvSc9RW9tzBAFKF4d3Ws215zj31Jhcj+JJSnXGoyM4TuR4k19B8GWg2vhS2QFJIcS3zHMfSVua4nwLZjf+OorSxlhpXOd/sp7vfgV9NNtJUTjGR3Y7qrLXQ9bZkcqdV/A1MthlCQPuH/vFOIdDSSTjNRkmRhZKugOPEe/qKVZlqWpxZJKRsB1I9vlTceo6bmrss8d7ATk4+2peDIJGxqnMzAlvBIH5GpWBM5MZTjmdtwCc+6tIyOPEYa6KN6Y+Emiv9OwWglKjplISOiu5f29/wD3rk6W0p6V9KyCbja5cZxIPrDamwD0yRXzbLSpDq0pByk4NVnzPkNq4XsaifMcitIICj1qVYcCMdoEVAMSglvSrINalzFawEHJz0FUjJJaHj5Xcn5ZbUklQGa1Is9w0B1plTTa/mlSwjPsyRV64A4TUEouF6a7eNTLCh081fCoLjuG/N42t7EhavVnVDbO2M70b0Podn7CdaOes2u4wa4QvzjaFqYacChlJ9ZaJP8AxVN2qDMjWh2LOb0KQo6cLSoYPsJ76rHEtzusC/x0Itxi2zXykFKgUqT4nHQ9+9XC0xWozDqI5JUGkrJPVZJVqJ+4VpaLXedS2V+0qOcZaL7lOZuqI9wLDxCVA9/fVwL0ebGQhawMjINc045YC56ltZSoVFW3iKbCSGX9TrQ6EHtCslB70aSqLdI6cqwtlwKSvI8an7JZozKwsuZPnXM43F6OXgvKTnuUk1uTxYpIJaWtw9wGwrZJmEpLmdZ4ivceBA0hY2GBvVClTlPwH5K84VskHzqCi+uXuWl2YpRQDskdBVtnQYgsv+V+tNsoUMFhsK8fnZ6VnUTaaQVOVSLjTV2ykuvNp8KzguLkvpajoLjiuiRUj8lk3ILNvnFCh0RIa0Z+0E11T0Pej9tEUybgAoA/rCP84r6IP0R99eTVhODUIK8pbvu33I4o7KqU25YpZYrjz7l3v+yoWvg243FA0oWT3htBVj2npU5G9EE58gusujP0nUJ/713ll2FHKIrLjDZGyWkqAP2Cmq6Y7Lm9atV37rJfRvzLLEUIaUqK+d2/rbyOLQPQ2lsguBhB8S4pR/hVlh+jKMyBrmYHghrH3k1Y+J+Lbfw5PtMOeiQp25PclnlN6gDlIyo52HaFL2LjSHeOLrvw+zHfalW0ArW5jSsZ/Zwc9499dS2LTcc0lKS36yfO3PmU9JyjLLHLF90V0NUfgK1N/wA6uQ75KVj8qkWOE7KzjEFCj/XUpX5mq3L9IaE+k+28MQ/U5ESS0ouSG3dSm3AFnQQNgeyOvjVv4hvEWwWh+5Tw6Y7IGoNNlajkgAADzIrZbIoUnG1JXe7S7Kek61RP/Udlv1N0e1wIxyxDYbPilAFN7JHcBVa4I41tfGLMtVrEhtyIsNvMyG9C0E9Mj7D7qoXpfTNTxFGcnJlrsYbG0dWkBXfvuM9OvdXoYbA5qvYv2X8PseZjcf2FHt0s35xep2OiuPcV3Z9PAlkmcNy3UQI6+W4pSil3UNgFY2I65+ymuLrrxLDFjQLq2hq5tpZWttodleoZWNvBQ++to7PlK3tJXbWt+G85pbWhHNeLdlF6Wt7W7lxOr1rdebaGXXEoGCe0cbDrXHfSJIlsX2Lb7ldpMeI1B1odbyOa6AdzjxIFJcRoeufAHD14uHNclIdUwtRJ7bZUdz59kb1pT2dmUJSlpLu+NvpryMqu2MsqkIw1hrv5Wvztv05nZ03OCqE5MRLZVFbyVupWClOOuTUbaeLbJdnX24E5LqmUFxfYUnCR1O46VzaFYZSoHGllgtONtcxtyOFZCVAKKsaj5YpLgltT3GKYEiKIfrVvVGWlCgc4RuvbvOnNXWApZJyUrta8N1k9V4+Bk9rV+0pxyJKWj377taP5LfzOhWn0hWq6XQQYzUnW4Fcla0YS6UgkhPu761cKcbSOIrz6m1aXWGmkn1lxa88pe+E4x34qD4N4Iu9mvsV2U1DdjxlK0vqdUpQSQfmpzgHerVwzwy9ZuIr1cDIQtiesLS2E7pOSdz9pqleOEp5lT1001437u7XXiaYapj6uR1dNXdW4Wvx79NOByL/xCwkJ9IfDcp2Abg3JZDJihZQXilfzdQ3GdYqY9I11uPDvC3BlptJVwzGnqDclQVrMQdnKdR32KlHOR82uicZcEwOK7hZ5k5+Sy7bHS61ySBqOUnByDtlIqX4gsNs4it5hXqG1LjZCghfcfEEbg+ykcZBQpRkrqN7+dtNx2yws3Ko4u17W+/efO8y/Xu9eijiFqRcXpq7Jcmwic2ogvNElO5HUdD7CKkfR7erXf/SZxDBUHX7dxFECNkqSCsNgrBOxH7Yz7K7rZuHbTZbUbbbIDDEFWdTITkLz11Z6/bTcK3w4DSGoURiO0jOlDTYQBnrgCpnj6eWcIwte9tbW3d3NXIjg53jKUt2/z+zPljh/hafFhWydDs8xdygX/Q4pDKipTICSD/ZBSrfzqy8Z+jjil3iXiKPardHl2+9PpkpluOJSWSFFWNzkbqI6HIxX0ZRR7VqZ86S+fxv5MLZ0FHK3+bjiPEXo44p4mtPDcmY/bm7pCjrjPxn8raCSSErGMgq04z5geFTVn9Fsxn0e3PhS5XsPR5DqVx3EM/zACgo7E75IPf311Sl3JaGn1tugoQlvmFxRATjvrB46s4qKskndaLTW5r+0pReZ8dN5UZfo7t8+28MRp8qUtywhPIdbIQVlIT84YO3YHSmbx6OuFrxfBd7jamnpuQVK1KCVkdCpIOD9oqww7nCmuutxJbDzjXz0trCin20jC4os865iBEmpdlHUAlKVYOnrhWMH31nGpiP8W9OXBPV/Il/t1bNbXdu1a0HZNpt8mZHlyIUZ2VGBDLq2wVNg9dJ7q2NNRbdEUGGWo7CMq0tpCQPsFabhdY8F3lOa1PFBcCEp6gbdelc8439IkK02tci4ZQgnS0yk5Us0w2HqYp5Ya8DSrUjR1lpceTIXJfkvL6rdJ+zaiuY2D0ni4RXnUW8pSHSkAq8gf40V9F+xrR0UfNHk9snqUvg17m8NFrOS0r7jWEk/rDUT6PXnGZU23vAghrUk/SAI+NS04FKzXx++J9nUTjNpm+3vYcFXG2P5A33qhRVYcBq12l3IFc7VmbLVFzZcy2M0lcRrZcSe9JrOK52MZrVPVhsnyqWQtGV+5SeacE7qZQo+3eqxa2ilEhGMZJO1SLjhW49g9wT7qSbdMd5Y/ZaQVKx4+FGrn1kJWhdisthJJSsakLG/mDVCuENcaW4yrfSdj4juNdCZVz2TuNt0+w91RHE0PMVqYkbp/VufwP5j3UjLgeftLD56faR4fQqLMYqNbpZTGYIHzsVtacA8qSuI1AknapzXPBynRvQZGbjQLtdXR21uJYQfvP5iujzrz6mytxlSVqSnPXYnw8jXL+C3VQ+B0LQNjLUT5nSKnIdvkLjJK8qbdOo47x3fbU8bn0uDopUYomkXd24hThSAVbdMZ8jW5l1TbR7SsZ9ik/EVrhxUtIDYAyeue+sJjoDgQjfTsCfyNRe53WSVkOsvKW4kA9Tv4Gpdl7muBA2Q3uR51WWXSlOBuVHAHgakmZBbKY7W6+pV4eZpexSUbk1LugiRJEromOgkeZ7q481F5yypRyVHJPjVk9IF0SxBZgNHHNOpePAYwPfVQiXAIITmpT4M+E/UNZTxCpQ3RXmezoOXQhlBUtRwEgZJNdD4G4ITZkJuN2Qly4K3baO4ZHifFX5VLcEWFuGyi53FI9aWMstq6tjxPmasz7rZBUrpRpbzq2RszLatWWvBA290zXOuOLjBduaUR3czoag5gp2I7wD7Pyq6PzGErCEuDJ7s1yriqOtHEqXwP1brKs+0VS59VTp29otV+lxZNo5buCh5OcjuPjSFruDjEdp9balISCyl3B0rzglOemdgahrEy/xCLdFaUAjGXF9yUjqa6y5Y4MmxG3FjTGQnSkd4P0sjv7810UMPKabPO2ntGlQtTkr5t/w/NxwTieeiTNcIBSrO4IwRUHhK+oqzcRW5Ue6vQbik8xo9l0Dcp7j5iohu2OBeGyHEeIqq9l2Z5VfDyS7SGsXxI0pQk91SlrbS64lP5VucsD606gk1NcMWJ3npJSRikpHNGDe8tdiitMMJ7O+O+rDFfDF1iMkjD7ThKT4Aj41ttNgWsJU4dDY7zS8tLKbitxCsqQA2hQ7k9/vNZt6HqbPpudZZdy3nlztzSZ7LjaG0IJ6BI6/aO8eHhXcuHYiI/DsNgDYsjPmTufzrnXBdrF2DsmayHIyAUI/t/wD6rpPD6yq0sNqP6xpPKX7Rt/3+2kKTVZVHxVvP7/Yw23iY1LUIv+L1/O4+NPUxFamOGPMRJgXJKHbg2rKWUZIA0/SynIOR0rt3GfHNyY4tbjW67cu0T7E5KirKUp/W8takq1EZzlI286kpnoPtc68XCZLu9w5EyQqQuMzpQnJJOD1zjJ386tt69HHDF6iW2NcLfrat7YZj6XFJIQMdkkHcbd9fU4jH4erKLlro+G66XPkz4ajhK8IyS03ceXw7jjPEXFNwn+h/hi7t3R9dxiXAtTCh4hR3WQF48kp6+NTy230enTiCPAXy3bxZlGOsHGFlpJB96DXVYfBPDcO3uwWLND9TddD62Vo1oKwMA4Oe6ptMaO04lxLLSFpSEBQSAQkdBnwrknjqdnGEdHm82mvBo6I4Sbs5y5eV15nyPw1GuVou9kkweGbo5dbRIWqfpaV+tBUNIzg4OCR086+jfSnar1feCZMTh15TE9ZQrQHNBWkHdGru/wC2Kt/Mb5vL1J5mNWnO+PHFaWZ8Z8tcl1Lgd1aCncHScK38jVMRjpV6kauXWPz7+vyL0cLGlGVNy3/Lu6HIfQ/wXxTwzxI/Omx4cK2T2yX4weLriFJzp337yT1PWrrxrwhL4hlpdi3d6E2WuS6yEkpWM53GR41PSL5BZZjvc3Wy++Y6Vp6BYJBz4bpIpxcpCoS5EYpfSElSdKtlY86pUxVaVXtrWe7d1I/bUJ0nQbut+/oVtngeAnhAWBx14slQWt1OAoq1Zz3geHsqRmcM22bCt8WY2t5uDjkkrIIIGMkjGelJcP3q5XRcJ95NuYiyEcwNJeK3SCMjuFNscTQ5F0TCbbkaVuKabkFH6pa0gkpB8Rg+WxqkpV8z1d1d/PiVprCOKtFWaSV+KW7f8SRuNrg3JKE3CIxJCDlIdQFY9maZQ02htLaEJS2kYSkDYDyqo/pyctfDqonbYkyHWJBeKUklIUO4deyTtjpilbfebrBuUpEgNO25u4mMoqUS6nmEFJHdpGpIxUOhO1r/AJexb95SUr238bdyf0ZdZZYTFd9aKEsaSFlZwMedQPC9t4ZivuOcPohl4DC1Mua1Ae3JwKx4mFxl2G7sSYkduOY7mlaXytRIG3Z0jHvqtWaa85f7JKS9bH3HW1NGPCQUrQhSQSpRydhpHXHWrUqcnTlaXTRX/ORnXxEVWjeF+9rXV20v+M6XWpElhx5bKHW1Oo+cgKBI9ornNsfcF3tj5anqvK5S0z8oc0IbIUAn6OkdnGPDNb7JaJ0XilC2oLiG0PvKdcebbwEK1YKXBhSicjYg4+yksKo3vLh+f0I4+U7ZYb3b4bu7v1XCxc2r5bHbiYLc5hUsEgtBW+R1Ht8qhrlxW23docSEhxxsyxHfdLR5YJB7IV0yFY++oW08I3CLKiMS0GTFjSOch0yylI3Jzywn52/ealX+Gbipz1Zmcwi2iWJiQpklwK16ynOcYznfrVnToQlbNdfnL6FO2xVSH8bO/wCLX6rwJeRLfa4qhxS5/k0iM6oIwPnpKd8+xVKcYX9dlENphKOfLWpKVrSpSUBIyTpSCT7BTt7s6rk/DfZmvQ34xXpcaSkkhQwR2gR3Vgrh+PIgojXJ6ROKF8xDrq9LiT5FGMfZWUHSTjKWvNeP9HRUjXanGGl9z8NOfMgjxNcJFlbyz6nMelpiJfcbUlGDvzAlQB6ZAB76Rl3Kc/EeiJuy1qi3JmOuUyEpUptwDY4GMgqI+yrjHsduZt7kL1cORnFalpeUXNZ8SVEk9BTEO3QoTXLiRWWWzg6UIAG3Sr9tTjfLHj+f9DL9rXnbPPhrv/rx3lau1lblcR2yLLXKegmI4kpLqgFLSU4KsHc9o+6kIttnzIdtTJaeUtcCVDeUsbjtAIJz4gVf6KosTJRUeX99fI1lgYSk5c/66ebKlabE4w5ZHExkRktwXGJSUkAhSgggbddwqqzY3Jjd5sVqaMZ5u2vuJ1NpWHNGlYysEYT18d9sV1OkbvcY1qiLkylBIHRI6rPgPOjxipxlKput16kejs8oqm9br57tPJFS41mFu+thrGpmMSr/AGlD4V8v+k+4OXniNwIJMeN+rQO7PeffXZuKr24mBcLi+f17/wA0eHckfZXE/V9aipW6ickmvpP0tg5woSr1FZybfy4fO1vE4NvY2MK0aUHfKrfPj53G+CYyk2p4Ef58/wDKmirFwnHCbc6Mf50/8qaK92UPaep46xuhXOHHFi8BTzSULWhSdSDse/7OlSVwGpRIqEtzE9FxYWplQQFYO3casDzK1K+YfdX5pay0P1TG/wDaJvkRzIIXVotPdURHhuFWdB91WS1R1gJyk+6uaS1KRZOQxlIry5pPqyz4A05EaKUjKTWc6OVMqGDuKNEqSuctjzEtRXFkguE0itSkxFlZJU6aYXAW06tgNqAQsjGOpzWqaw4txKUtr0pGBtV2fRxndLULIs4cQRnljP8Asn/3mpINIfadjvDLLo0K8vP7Ov2Upw0w4L2lDiDoWkpVttU0q2utSFsaVYQdjjqO6sXo7nUssllZyO4JcgTXozow40opPxqOkyFLGkd9Xj0g2pwzI0pDZ1OILbmB1KcYPuI91I8FWBMue8/NaKmmANKSNlKPT3VKR87LDvt+xRb+GoqWuC4zS9v8pWRnvwlI/jV4timVW5TbYwUlSk+XjVWmoXHgwWENkDCnSAPpKx+Sa94envtyVJcSeWdXUfdVrH0EcsYqNyVdlpZQ4pR7R2x4nypJS+W2S4rtH53l51Dz5DiLipoJUpts5GR49PurQt6TNd5TSV4/bVg4xSxftY8ybjysrHKGtxQxv0Ap8vJgx9ROp5W+/f8A9qjmE+otJCWyp09E43PmT4VH3Fx8JWtwKKsb7flRLmcOMx0aMcsXr9CpcW3IybysFWShIGfPrU76MbezNuS5k3SWmCA2F9FOHOM+zH5VSX47z0lx1TatS1EnarpcY71s4ZtUaOlSXyC+vAOSVeP2Yqq1Pktn0licW6s9Uteh1RExbK1LlkledsjpQt9ySeyvI8qpHDF9lvREtXJtboQRhWDqH21ZOSvT6xGUpaAMnGyvtqHc+6g4P2j11lXrKVnbSc1C31sSG1qGNTaiR7DUrEu8d9ZbkpWy54mo6XoHrKY5Lo0qV0O5qEma54veHoPgPGbcGnE/q2W1Jz7VJI/KurRwktKQnGAaivRvDTC4fVLW0W3Zqg4U94TjbP3n7alGOxdHmz80nUmvZwyy07M/PdrVY1cVLJuWngUD0rcNuzILNzgtFyQwdDqGxkqQfLvwfzNcmjuOxXuY2opWOoNfT6wOYtlZyhwaTt0qly7LZr4+7CvUQtz21FHrDPYWrHQ56H7QapWw/aPNFm+z9q/t49nUV0crgcZKaJbmQmnUeKeyasNs44s6TlEZ5tfhgVtu3oqbS+pNsu6QT0RKaKf+JOc+6lIPomvAd1LnWsI+kHFH/wC2uV4aS4HpLF4Opq2voSlw4xkz0ciKktxyN8dT7ad4Pt827PpbBIaTs48roge3xqXsfo+hx1Nquc1ckjJ5UdOlJx3ajufuq+xkMRLeliKw2ywkZShCcDPn5+dXhhW3ee4tiNt0aFPs8Krvnw/sl+EoyIdtcaZBDQUUpz4DbNPMSkwwp0jKFKwrH50vAUGbeE9DjfFKS3Aq2Op3766cqbsfKym5PM3qy2NuocbStCgUqGRXq3ENjK1pSPM4qnsKRP4Z5EjOCChWDuPMV8/cQ26ba+KVha3HEg5SSSQR3EVzVU6ep6Wz8FDGNpzytd3DxPqV+821jPOnR0+1YrCa1Gv1keaadC2JLZSlxP5j2GuDqlKMNtwJJJFX/wBGHEiAx+j5atAJy2VdAe9P29RXE8ZKnVhdWi+PJ8PH6ndjthKlh3OMs3Nd3ETjXKeqTJ4kcSsuWtCIUloftgA8wj2KKT7BVhtzb8G18IAFwAr0vpSTg621Hf8A2qtbbURoPBtptIeUVOAJ+eTsSfGtwdQAAMADpXsVMUpaKNv+lvuz4+jgJQ1lO7+90/OyRzw2UJsdztSbe6pxm4JkBJQSl5sug7KOx7OQd87Va+G7c5bpF2ZDIahLkBcdIxjSUJ1YHcNWamecjxo5yPGs54iU00+P9dDalgoUpKS4afLXr5EBwlw1FtEBjmQoyZ7eoF5CBqIJON/Zik4/Cs5pyAybm3+j4L/PZbDHbVknZSs/1iM4q185PjRzkeNQ8RUbcm9/59yywdJRjFLRfLly+CIY8NRl24RFvPDTJXJbcQdKm1KUVbf3iKbVZYS1yFONlZkOtvOZUd1oxpP/AAit7txiM/zshpH9pQFJP8TWdgEuXBgAeBz+VYSxSj/KdvmdEMGn/GF/kS60pWgpWApJGCD0IpeHBiwkkRIzLAPUNoCfyqsTPSNw1GzquCVEdyQf41BzPTLw3HyEiS4f6rZP5UjJz0gm/gm/omXlTyu87L4tL6nTKK4tN9PVtbyI1pmO+BO35iq7N/8AEDcFLKYVjPtXW8cLiZ/xpS8Lf/KxVzpR/lNeN/pc+i6K+WZ3p14sdyI8Jhn/AGdX8Kr070tccys/5Vyh/wDLbIrrhsjHT/3dvjKP2bMpYrDx/wA7/BP7pH2OdutLvTYrH89Iab/tLAr4sPH/ABc4rL8t17yWnIp6H6Sb2wRzrfGdx38rBrb1fx3OH/ub/wDqjN7Qw63KT+S//R9cOcRWhs4VcGCfBKtX5Uuvim2/5lT7x/8AlsLP8K+bYfpdkIwmRZz/ALB/7VYIfpZgHAfgymlf2ciqvYGMW+a+S/5vsPSWHW+D8f8Al+52tXFST/M22Wv+1pT+ZrSrieWvPKtyE/6x/wCANcxjekuzupGHXGyfpIIqTY4ytLidQltfacVT0JVX8pS8F0HpOlwivnfqi4yL3eXAoN+qMjHUJKz9+Kp891+XJU5MeU+6P2lHZPsHQUjdfSBbI7awl4uKIxhsEmucX7i+4XiU1DgMLixFntH9pXtNd+C2DDOp1I3txk7277br/I5MVteSg4wdvh9L7/MkeM55nSkRY/8AMNHJP0jUNHt2R2hUr6kvnfMOw8Kdbiqx8w+6vq4VI04KMWfMyourNzmM8NwwiC4NP+cP5CipexMqTEWCk/zh/IUVwTrPMzojh1bcd+CU4HZHur3SnwHur0dBXNrzwlxQ9xJMl2y7NswVqJjsrWohGwd1Ed/69KRj6BUPKvgj7M6RpT4D3UaU+A91U9u2cVizWhv9KtCelxQmuKwQWyrUCnCd1AJCPYpRySBURGtHHLLq5C5kd17ToSlcru0Y3IbA3Woq6bAAUB0fSPAUaR4CqLGicZQbDe3ps5uXcUrS7BbZA0qCVFXLI057Qwkn7dup1qtXG7Cl8i6MydCdI5rgSHToKQcBvsYJCj1yR3dKAv2lP0R7qNKfoj3VRLhB4sZsUOOzPedukie6XHUKSENNFDpbGdBwkENZ2JJ2zvWDdg4ubmrkC8pUt9aEPFZGEs8x7VoATsoIU1jPeFZNAX7Sn6I91GlPgPdXOhbuOWYj7kq4JcWhtxaAy6CS4G0YOOV2klaXMIGMBQ3Pdd7CiY3Z4gua9c4thT5HQLO5A8gTgeQFAPaU/RHuo0p+iPdXtFAeaU/RHuo0p+iPdXtFAeaU/RHuo0p+iPdXtFAeaU+A91GlPgPdXtFAeaE/RHuo0p+iPdXtFAeaU/RHuo0p8B7q9ooDzSn6I91GlPgPdXtFAeaR4CjSPAV7RQHmB4CjSPAV7RQHmkeAo0jwFe0UB5pHgK9wPAUUUAYHgKMDwFFFAeYHgKNI8B7q9ooDzSnwHuo0jwHur2igDA8BRgeAoooAwPAUYHgKKKAMDwFGB4CiigPNI8BRpT4D3V7RQHmlP0RRoT9Ee6vaKA80J+iPdRoT9Ee6vaKA80J+iPdRoT9Ee6vaKA80J+iPdRoT9Ee6vaKA80J+iPdRoT9Ee6vaKA80p+iKNKfoivaKA80p+iKNKfoivaKA80p8BRpHgK9ooDWtIz0FFer60UBmOgqON8tokOMqltoca+eF5SE7qG5O3VCh9nmMyI6CoaVw1apUiQ+9HKnXzlw6zg/M7s4/zafv8TkCSdmRWlaXZLKFZ04UsA5xnHu3rBVwhIShS5cdKXEhSCXEgKBIAI33GSPfSVw4dts911cppay6QVAOKA+aE7YO2wAOOtD1mtryENqBwEBgBLhGQkK2278KX7zQDKrvbw8GvXGS4TgJCgSTq0428D18O+sv0pALfMEyOpGpCNSXARlRwkbeJO1IL4XtKzlccqO3VxXQYwOvTAA+ytzVgt7TLrSGlBDpQVgKIyUHIPt8T30A4bhCDTbplxw25koXzE4Vjrg53xitbd2t7hITNjEhQR/ODqRke8bjxpdVgt60xwtpS+RzAgqWSe2cqz7TWlNgtMhAU0jUkEDLbp30HocHuI+6gJBFygrKAibGUVkBIDqTqJJAxvvuD7jWfr0TmJb9aY5iuieYMnp3faPeKjv0LamX2lEBCkOh9KS4ca84BwfMge6vE8N2/mLcUlZcU8p4qCyO0VEg9e7UQKAfNzgjl5mMYcXy0HmDBVjOnPjjuoTc4Cs6ZsY4GTh1Ow2Pj5j30siwW9EGPES0oMMK1oTrVnPmc5P20u/wraHyguxioIUlSRzFADGcDGemVE486AkE3WArpMj43wS4MHAycHvwOuOlZruENCUKXLjpC060EuAak+I33G43qOPDVuEdTbTakEhQSrUTp1Y6b/1Rt5UK4at7jLCH0OOraZQyHFLIUQhWpJOO/O9AOm62/RqE6MU4Khh1JyAcbb777e2sv0nABIM2MCM5BdSCMDJzvtgbnwqNh8K2yMlB5SnHUtJaLi1HKgnp+XdW1HDdsRkoYKVFwvags5CznfP20BICbFLK3RJYLSFaFLDgwlXTBPjuNvOsU3KCokJmRiQM7Op6Z0+Pjt7aVRYoSIkiKEr9XfUHFI1ftZzqz1z079sDGK0Dha0iKmP6t+qA041kZGFDBOd/nn7cHqBQEiq4wUJSpcyMlKkcxJLqRlH0hv086P0lB16PXI2rUEY5qc5JIA69cg+6o+Vw1b5RbD6FqbbbQhDerASUFRCtu/tGth4dtxdQ4GVJKTkBKykfOKtwOu6j18aAYXd7ehvX64wpOnV2FhRIzjOB3Z2rx6821lp1xyfFCGklS/1oJSAcHb27e3alVcM2wjHKcCdAb0hxQGBjuz5CsXOGLY6txbjbhW4lSCrmEHCiSQD3Z1K9/soCQkXKFGKg/KZQpJSCkrGoFXzRjrv3VkbhCCG1mXHCXElSCXBhQHUjfcClJNhgyZapLqHeapQWcOqAyBjpnw615+gLfyo7ZaUW2AQhOs4wc9R/tHA7s0A45cIbbhbclx0ODqlTgBG2emfDf2VqReLasqCZ8U6Tg/rU/RCvHwIPsNaZthgTXXVyW1r5uQtPMIByEg7f7KfdWB4ctpkh8sEuBanBlZI1Kxk4+wUA6i4wnI7khEtgsNq0rc5g0pO3U9O8e+vP0nB5yGhLYU6twtJQlYJKwMkYHeBS4skQQnIg5oiq04bCyNJT3g9e4d/dQzYoDMlp9ptaXGipScOKxkkk5Gd9yaAYN0gAqzOijSCT+tTtjr391YputvUlKvXI4CnC0nU4E5UDpIGeu/5jxpIcMWsDZpzIUhYVzVZBQCE4Oe4GsEcK21CiAlzlaQkN8wkYClKPtyVf8I8BQEqmdEVytMpg84Et4cHbA7x41gu5wUBBVMjhK1FCTzBgkJKiM/2QT7KWVYYCkMJ5awGBhGlZGDvvt1PaPvr1FigIgsxEtHkNHUlJWTnslO56nYnrQHj/ABDaWJbEZy4Rw8+oobSFZyod2RsD7a3SbtBjIjrekoDb5w24nKkncDOobAZI3O29IucL25awSl0o161IKyQezpA8QMY6eFMzLHCmtMNykreDJyjWonw+AoBiTcYcZIL0htOQogA5JA64A32rWbxbhIUwZrHNSNSk6xsN8k+GNJz4VoNghKiNR3A6pCGUsE8wgrSnOM+J3Vv5msV8NWxx7muMqUvlFkEuK2Qc9nr03NAOm5Q+UtxEht1KAlSuUeYQFdDhOTg+Na2Lxbno7TyJrAbcQFp1rCTpIJBwdxsD18D4VpjWOMw9PUlThbloDam9RASMHOPAnP5VrTw1bENONNtONtOFRUhLigO187v79vcKAeaucF59DLMyO46sEpQhwKJwM93lvWiPfLfJLIjyObzhlGhCjkZAz02GSOtaoPD8KEpSmQ4FEFAIWRpQc9kAdw1GsodhgwF6oCFx1BCm06FbICiCcA5HUA0A67OiNL0uymEK32U4Ads5/I+41vQtK05QoKGSMg53BwfvqIkcOwJMmU9JQpxUhWVDUQMYSNO3dlAV7akocVuHHDLOrQCpXaUVElRJJyfMmgN1FFFARguMhx99EaAt1DS+WV81KcnAPQ+2s/W5/wDRiv36Kxs385cP/Uq/5U1uubz7CEKYQpW5yEpyScbDyBPfWt1e1l59TLW12/oa/W5/9GK/foo9bn/0Yr9+ilTc5pcUUwlhsHbKFEkZOD08BnHsHU17+kJ+lSlwVISBnCcqPU7YxvsPvFWy9y8f7IzLm/z5DPrc/wDoxX79FYLuUhlbXrMBbba1pb1h1KsEnA2HnW61ypEpDhkxywUkAZz2tuoyOlab/wD+Xjf+pZ/5xVdL5Wl59SXfLmT/ADwBFykPLd9WgLcbQtTesupTkg4Ox86z9bn/ANGK/forCwf+Xk/+pe/5zRe350cMKgM87CsuJHeMjb7z/wC9qlWcsqS8+ou8uZtmfrc/+jFfv0Uetz/6MV+/RUczepziiBAUUggKVudGycjAGcjPT277Vten3NJhFEVSkKSoyCG/mHuwM5PQ9M9RVsmtml4/2Vz97/PkOetz/wCjFfv0Uu/e/VWLi5MiONGFH9ZUkLSrUntdMd/YNSMBxx2DHcfSUvKQkrBGMKxvtVa4s/8ALcT/AP8AUD//AGqsLSdmvrzFRuMcyf5YrX8stp/o2d70fGj+WW0/0bO96PjXDKlo8KC9DYUqYhD5yXUk/NBUAOuBsMnY+Ar6yWxsJHen4nzsdqYmW5o67/LLaf6Nne9Hxo/lltP9Gzvej41ydq1wdKXHJo0BSAsJUns6ids567Y2Hn0rXEhwHIKVuyUCTk5QV42KgB5dAo9e8Vn6KwXJlvSOK5ryOufyy2n+jZ3vR8auvB/Ekfii1KnRGXWUJcLZS5jORjw9tfK9d/8AQV//AA53/wBUv8k1x7V2bQwtDPTTvfmdez8dWr1sk3pY6EvrRQvrRXzp7hmOgqDlcNRJMpT7rjhKlLURhO+oYIzjOPt6ADoKmAs4HSvdZ8qArvyOgGQ06px9SW+jZI0/NSnpjwSBW8cLw0wGYgUvQ04XEqKUkklGg523yDv49Om1Tes+VGs+VAQsjhqO9yCJMhCmWW2EqTpzhCsg9PHqOnTbahzhiIqE1GS8+hCFLUogjK9Swsg7eKR9gxU1rPlRrPlQEC1wpEbt78QPyFJeKSpaiCrsjA6jHs2228BWcjhiLIjJZW4pKUpKOwhON1FWQCDg5P24B7hU3rPlRrPlQFeXwhBXJbfL0kONuqdSQoDc4yNh/VG/Xzp2xWGPZVLMV10pWhKVJWQQcE79Ou5qU1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgM6Kw1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgM6Kw1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgM6Kw1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgM6Kw1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgM6Kw1nyo1nyoDOisNZ8qNZ8qAzorDWfKjWfKgIltu6RJMv1eLEeaddLiVLkqQdwNiNB8PGtvrF5/o6D/vqv+lUjrPlRrPlVs3NFMjW5/QjvWLz/R0H/fVf9Kj1i8/0dB/31X/SqR1nyo1nypmXL6jK+f06Ed6xef6Og/76r/pVpkN3Sapht+JDZaS6hxS0SlLOEnOw5Y8PGpfWfKjWfKpzW3IZG97+hER27pCU+2xEhvNKdW4la5SkHCjnccs+PjW71i8/0dB/31X/AEqkdZ8qNZ8qZr70FBrc/oR3rF5/o6D/AL6r/pUesXn+joP++q/6VSOs+VGs+VRmXL6jK+f06Ed6xef6Og/76r/pUhOtlwuUa8pkNxo7kyEIrYQ8XADhe5OkYHbHjVg1nyo1nyqVO25EOnm0bOD/AMj1/wDrVt/eL/w0fyPX/wCtW394v/DXeNZ8qNZ8q9P01i/eXgjg9E4fk/E4P/I9f/rVt/eL/wANH8j1/wDrVt/eL/w13jWfKjWfKnprF+8vBD0Th+T8Tg/8j1/+tW394v8Aw11D0bcOSuGLAuFOcZceU8pzLRJTggDvA8KtGs+VGs+Vc+J2jXxMMlR6fA3oYCjQlnhvBfWisFqOaK4TsP/Z\";s:4:\"type\";s:10:\"screenshot\";s:6:\"timing\";i:9820;}}i:11;a:6:{s:2:\"id\";s:19:\"script-treemap-data\";s:5:\"title\";s:19:\"Script Treemap Data\";s:11:\"description\";s:20:\"Used for treemap app\";s:5:\"score\";N;s:16:\"scoreDisplayMode\";s:11:\"informative\";s:7:\"details\";a:2:{s:5:\"nodes\";a:52:{i:0;a:3:{s:11:\"unusedBytes\";i:45958;s:13:\"resourceBytes\";i:96642;s:4:\"name\";s:72:\"https://cdn-cookieyes.com/client_data/e85b40dd25e78971ffea1980/script.js\";}i:1;a:4:{s:4:\"name\";s:30:\"https://choiceresources.co.uk/\";s:8:\"children\";a:18:{i:0;a:3:{s:4:\"name\";s:27:\"(inline) window._wpemojiâ€¦\";s:13:\"resourceBytes\";i:3283;s:11:\"unusedBytes\";i:1323;}i:1;a:3:{s:4:\"name\";s:27:\"(inline) window.dataLayeâ€¦\";s:13:\"resourceBytes\";i:306;s:11:\"unusedBytes\";i:0;}i:2;a:3:{s:13:\"resourceBytes\";i:247;s:4:\"name\";s:27:\"(inline) !function(c,h,iâ€¦\";s:11:\"unusedBytes\";i:0;}i:3;a:3:{s:11:\"unusedBytes\";i:533;s:4:\"name\";s:27:\"(inline) const lazyloadRâ€¦\";s:13:\"resourceBytes\";i:1027;}i:4;a:3:{s:11:\"unusedBytes\";i:0;s:4:\"name\";s:27:\"(inline) (function () {\nâ€¦\";s:13:\"resourceBytes\";i:142;}i:5;a:3:{s:4:\"name\";s:27:\"(inline) var wc_add_to_câ€¦\";s:11:\"unusedBytes\";i:0;s:13:\"resourceBytes\";i:239;}i:6;a:3:{s:13:\"resourceBytes\";i:109;s:11:\"unusedBytes\";i:0;s:4:\"name\";s:27:\"(inline) var woocommerceâ€¦\";}i:7;a:3:{s:4:\"name\";s:27:\"(inline) var mailchimp_pâ€¦\";s:13:\"resourceBytes\";i:234;s:11:\"unusedBytes\";i:0;}i:8;a:3:{s:4:\"name\";s:27:\"(inline) var localize = â€¦\";s:13:\"resourceBytes\";i:1148;s:11:\"unusedBytes\";i:0;}i:9;a:3:{s:4:\"name\";s:27:\"(inline) var convPlatforâ€¦\";s:11:\"unusedBytes\";i:0;s:13:\"resourceBytes\";i:179;}i:10;a:3:{s:4:\"name\";s:27:\"(inline) var cbr_ajax_obâ€¦\";s:13:\"resourceBytes\";i:101;s:11:\"unusedBytes\";i:0;}i:11;a:3:{s:4:\"name\";s:27:\"(inline) var wc_cart_fraâ€¦\";s:11:\"unusedBytes\";i:0;s:13:\"resourceBytes\";i:268;}i:12;a:3:{s:13:\"resourceBytes\";i:68;s:4:\"name\";s:27:\"(inline) wp.i18n.setLocaâ€¦\";s:11:\"unusedBytes\";i:0;}i:13;a:3:{s:13:\"resourceBytes\";i:1370;s:11:\"unusedBytes\";i:0;s:4:\"name\";s:27:\"(inline) var ElementorPrâ€¦\";}i:14;a:3:{s:13:\"resourceBytes\";i:2581;s:4:\"name\";s:27:\"(inline) var elementorFrâ€¦\";s:11:\"unusedBytes\";i:0;}i:15;a:3:{s:11:\"unusedBytes\";i:0;s:4:\"name\";s:27:\"(inline) var _wpUtilSettâ€¦\";s:13:\"resourceBytes\";i:70;}i:16;a:3:{s:13:\"resourceBytes\";i:409;s:11:\"unusedBytes\";i:0;s:4:\"name\";s:27:\"(inline) var wc_add_to_câ€¦\";}i:17;a:3:{s:13:\"resourceBytes\";i:532;s:11:\"unusedBytes\";i:0;s:4:\"name\";s:27:\"(inline) var wc_single_pâ€¦\";}}s:11:\"unusedBytes\";i:1856;s:13:\"resourceBytes\";i:12313;}i:2;a:3:{s:11:\"unusedBytes\";i:32897;s:4:\"name\";s:65:\"https://choiceresources.co.uk/wp-includes/js/jquery/jquery.min.js\";s:13:\"resourceBytes\";i:87482;}i:3;a:3:{s:4:\"name\";s:73:\"https://choiceresources.co.uk/wp-includes/js/jquery/jquery-migrate.min.js\";s:11:\"unusedBytes\";i:4156;s:13:\"resourceBytes\";i:13577;}i:4;a:3:{s:13:\"resourceBytes\";i:3393;s:4:\"name\";s:105:\"https://choiceresources.co.uk/wp-content/plugins/woo-product-country-base-restrictions/assets/js/front.js\";s:11:\"unusedBytes\";i:3010;}i:5;a:3:{s:13:\"resourceBytes\";i:25202;s:4:\"name\";s:109:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js\";s:11:\"unusedBytes\";i:20015;}i:6;a:3:{s:13:\"resourceBytes\";i:2939;s:11:\"unusedBytes\";i:554;s:4:\"name\";s:101:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js\";}i:7;a:3:{s:11:\"unusedBytes\";i:38159;s:13:\"resourceBytes\";i:57177;s:4:\"name\";s:52:\"https://app.convertful.com/Convertful.js?owner=33464\";}i:8;a:3:{s:13:\"resourceBytes\";i:147588;s:4:\"name\";s:127:\"https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5255694111165315&host=ca-host-pub-2644536267352236\";s:11:\"unusedBytes\";i:75614;}i:9;a:3:{s:11:\"unusedBytes\";i:0;s:13:\"resourceBytes\";i:5740;s:4:\"name\";s:99:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js\";}i:10;a:3:{s:4:\"name\";s:91:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js\";s:13:\"resourceBytes\";i:4997;s:11:\"unusedBytes\";i:740;}i:11;a:3:{s:11:\"unusedBytes\";i:37880;s:13:\"resourceBytes\";i:58859;s:4:\"name\";s:92:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";}i:12;a:3:{s:13:\"resourceBytes\";i:8171;s:11:\"unusedBytes\";i:6525;s:4:\"name\";s:81:\"https://choiceresources.co.uk/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js\";}i:13;a:3:{s:13:\"resourceBytes\";i:6607;s:4:\"name\";s:83:\"https://choiceresources.co.uk/wp-includes/js/dist/vendor/regenerator-runtime.min.js\";s:11:\"unusedBytes\";i:5151;}i:14;a:3:{s:4:\"name\";s:75:\"https://choiceresources.co.uk/wp-includes/js/dist/vendor/wp-polyfill.min.js\";s:11:\"unusedBytes\";i:5492;s:13:\"resourceBytes\";i:16143;}i:15;a:3:{s:13:\"resourceBytes\";i:4627;s:11:\"unusedBytes\";i:1198;s:4:\"name\";s:62:\"https://choiceresources.co.uk/wp-includes/js/dist/hooks.min.js\";}i:16;a:3:{s:13:\"resourceBytes\";i:9445;s:4:\"name\";s:61:\"https://choiceresources.co.uk/wp-includes/js/dist/i18n.min.js\";s:11:\"unusedBytes\";i:6540;}i:17;a:3:{s:4:\"name\";s:72:\"https://cdn-cookieyes.com/client_data/e85b40dd25e78971ffea1980/banner.js\";s:13:\"resourceBytes\";i:96934;s:11:\"unusedBytes\";i:37861;}i:18;a:3:{s:4:\"name\";s:88:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/frontend.min.js\";s:13:\"resourceBytes\";i:24674;s:11:\"unusedBytes\";i:16359;}i:19;a:3:{s:4:\"name\";s:96:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js\";s:11:\"unusedBytes\";i:9785;s:13:\"resourceBytes\";i:12198;}i:20;a:3:{s:11:\"unusedBytes\";i:15739;s:4:\"name\";s:66:\"https://choiceresources.co.uk/wp-includes/js/jquery/ui/core.min.js\";s:13:\"resourceBytes\";i:21436;}i:21;a:3:{s:4:\"name\";s:84:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/frontend.min.js\";s:13:\"resourceBytes\";i:40436;s:11:\"unusedBytes\";i:18822;}i:22;a:3:{s:4:\"name\";s:97:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js\";s:11:\"unusedBytes\";i:21120;s:13:\"resourceBytes\";i:35433;}i:23;a:3:{s:4:\"name\";s:94:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.min.js\";s:13:\"resourceBytes\";i:2673;s:11:\"unusedBytes\";i:2429;}i:24;a:3:{s:13:\"resourceBytes\";i:21504;s:4:\"name\";s:106:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js\";s:11:\"unusedBytes\";i:19483;}i:25;a:3:{s:13:\"resourceBytes\";i:31626;s:4:\"name\";s:99:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.min.js\";s:11:\"unusedBytes\";i:31361;}i:26;a:3:{s:11:\"unusedBytes\";i:9464;s:4:\"name\";s:110:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.min.js\";s:13:\"resourceBytes\";i:9749;}i:27;a:3:{s:11:\"unusedBytes\";i:13013;s:13:\"resourceBytes\";i:18833;s:4:\"name\";s:62:\"https://choiceresources.co.uk/wp-includes/js/underscore.min.js\";}i:28;a:3:{s:11:\"unusedBytes\";i:1219;s:4:\"name\";s:59:\"https://choiceresources.co.uk/wp-includes/js/wp-util.min.js\";s:13:\"resourceBytes\";i:1426;}i:29;a:3:{s:11:\"unusedBytes\";i:12967;s:13:\"resourceBytes\";i:13786;s:4:\"name\";s:108:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min.js\";}i:30;a:3:{s:13:\"resourceBytes\";i:6427;s:4:\"name\";s:101:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js\";s:11:\"unusedBytes\";i:5778;}i:31;a:3:{s:11:\"unusedBytes\";i:280000;s:13:\"resourceBytes\";i:387627;s:4:\"name\";s:101:\"https://pagead2.googlesyndication.com/pagead/managed/js/adsense/m202309140101/show_ads_impl_fy2021.js\";}i:32;a:3:{s:13:\"resourceBytes\";i:7661;s:11:\"unusedBytes\";i:6157;s:4:\"name\";s:104:\"https://choiceresources.co.uk/wp-content/uploads/siteground-optimizer-assets/woolentor-block-main.min.js\";}i:33;a:3:{s:13:\"resourceBytes\";i:7888;s:11:\"unusedBytes\";i:3765;s:4:\"name\";s:89:\"https://choiceresources.co.uk/wp-content/plugins/sg-cachepress/assets/js/lazysizes.min.js\";}i:34;a:3:{s:4:\"name\";s:107:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js\";s:13:\"resourceBytes\";i:9636;s:11:\"unusedBytes\";i:7711;}i:35;a:3:{s:11:\"unusedBytes\";i:2339;s:4:\"name\";s:98:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js\";s:13:\"resourceBytes\";i:3037;}i:36;a:3:{s:13:\"resourceBytes\";i:1845;s:11:\"unusedBytes\";i:246;s:4:\"name\";s:97:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js\";}i:37;a:3:{s:13:\"resourceBytes\";i:2139;s:4:\"name\";s:98:\"https://choiceresources.co.uk/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js\";s:11:\"unusedBytes\";i:1237;}i:38;a:3:{s:11:\"unusedBytes\";i:38999;s:4:\"name\";s:88:\"https://choiceresources.co.uk/wp-content/plugins/woolentor-addons/assets/js/slick.min.js\";s:13:\"resourceBytes\";i:41954;}i:39;a:3:{s:13:\"resourceBytes\";i:4085;s:4:\"name\";s:92:\"https://choiceresources.co.uk/wp-content/plugins/woolentor-addons/assets/js/accordion.min.js\";s:11:\"unusedBytes\";i:3763;}i:40;a:3:{s:11:\"unusedBytes\";i:4902;s:4:\"name\";s:120:\"https://choiceresources.co.uk/wp-content/plugins/mailchimp-for-woocommerce/public/js/mailchimp-woocommerce-public.min.js\";s:13:\"resourceBytes\";i:7237;}i:41;a:3:{s:4:\"name\";s:124:\"https://choiceresources.co.uk/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js\";s:11:\"unusedBytes\";i:3854;s:13:\"resourceBytes\";i:9223;}i:42;a:3:{s:4:\"name\";s:93:\"https://choiceresources.co.uk/wp-content/uploads/siteground-optimizer-assets/eael-5228.min.js\";s:13:\"resourceBytes\";i:87411;s:11:\"unusedBytes\";i:68622;}i:43;a:3:{s:11:\"unusedBytes\";i:210;s:4:\"name\";s:95:\"https://choiceresources.co.uk/wp-content/plugins/creame-whatsapp-me/public/js/qr-creator.min.js\";s:13:\"resourceBytes\";i:11995;}i:44;a:3:{s:13:\"resourceBytes\";i:8083;s:4:\"name\";s:93:\"https://choiceresources.co.uk/wp-content/plugins/creame-whatsapp-me/public/js/joinchat.min.js\";s:11:\"unusedBytes\";i:4324;}i:45;a:3:{s:11:\"unusedBytes\";i:1894;s:4:\"name\";s:102:\"https://chimpstatic.com/mcjs-connected/js/users/a3a816175111933448c756f14/10e084d1081264699fee647bf.js\";s:13:\"resourceBytes\";i:2200;}i:46;a:3:{s:13:\"resourceBytes\";i:17314;s:11:\"unusedBytes\";i:8287;s:4:\"name\";s:49:\"https://tpc.googlesyndication.com/sodar/sodar2.js\";}i:47;a:4:{s:4:\"name\";s:62:\"https://tpc.googlesyndication.com/sodar/sodar2/225/runner.html\";s:13:\"resourceBytes\";i:12763;s:8:\"children\";a:1:{i:0;a:3:{s:11:\"unusedBytes\";i:5896;s:4:\"name\";s:27:\"(inline) (function(){/*\nâ€¦\";s:13:\"resourceBytes\";i:12763;}}s:11:\"unusedBytes\";i:5896;}i:48;a:4:{s:8:\"children\";a:1:{i:0;a:3:{s:13:\"resourceBytes\";i:38320;s:4:\"name\";s:11:\"/(unmapped)\";s:11:\"unusedBytes\";i:23;}}s:11:\"unusedBytes\";i:23;s:4:\"name\";s:87:\"https://pagead2.googlesyndication.com/bg/D38i8ocviMyns63bFlxz04547CGgVcdJsS8VZS_5djY.js\";s:13:\"resourceBytes\";i:38320;}i:49;a:3:{s:4:\"name\";s:116:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/nav-menu.70d63d6d093f3a45a0c6.bundle.min.js\";s:11:\"unusedBytes\";i:1439;s:13:\"resourceBytes\";i:4651;}i:50;a:3:{s:11:\"unusedBytes\";i:93;s:4:\"name\";s:115:\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/js/text-editor.2c35aafbe5bf0e127950.bundle.min.js\";s:13:\"resourceBytes\";i:1360;}i:51;a:3:{s:11:\"unusedBytes\";i:1237;s:13:\"resourceBytes\";i:4733;s:4:\"name\";s:129:\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.faa7b80e9ba9e5072070.bundle.min.js\";}}s:4:\"type\";s:12:\"treemap-data\";}}}}}}s:9:\"timeStamp\";i:1695168023;s:13:\"optimizations\";a:0:{}s:6:\"scores\";a:3:{s:3:\"fcp\";a:3:{s:10:\"class_name\";s:42:\"placeholder-without-svg placeholder-meduim\";s:16:\"class_name_table\";s:7:\"warning\";s:5:\"score\";d:2558.5;}s:5:\"score\";a:3:{s:10:\"class_name\";s:42:\"placeholder-without-svg placeholder-meduim\";s:16:\"class_name_table\";s:7:\"warning\";s:5:\"score\";d:58;}s:12:\"descriptions\";a:2:{s:5:\"score\";s:34:\"Summarizes the page\'s performance.\";s:3:\"fcp\";s:75:\"Speed Index shows how quickly the contents of a page are visibly populated.\";}}s:6:\"device\";s:7:\"desktop\";}','no'),
(4821796,'updraft_lock_4dcc17e8951c','0','no'),
(5152831,'wp_attachment_pages_enabled','1','yes'),
(5518113,'cky_admin_notices','a:0:{}','yes'),
(5518716,'essential-addons-for-elementor_notices','a:3:{s:19:\"black_friday_notice\";a:4:{s:5:\"start\";i:1707927791;s:10:\"recurrence\";b:0;s:7:\"refresh\";s:5:\"5.9.9\";s:6:\"expire\";i:1701561599;}s:7:\"version\";s:5:\"1.1.0\";s:6:\"review\";a:3:{s:5:\"start\";i:1708532598;s:10:\"recurrence\";i:30;s:7:\"refresh\";s:5:\"5.9.9\";}}','no'),
(5518721,'forminator_action_scheduler_db_updated','1','yes'),
(5518732,'_tifm_force_disable_feature_update','1','yes'),
(5518792,'woocommerce_product_match_featured_image_by_sku','no','yes'),
(5518793,'woocommerce_feature_order_attribution_enabled','yes','yes'),
(5518794,'woocommerce_store_id','d2a4640c-1a2d-46d7-90c2-572539b39a85','yes'),
(5518801,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),
(5518802,'_transient_timeout_woocommerce_blocks_asset_api_script_data_ssl','1732803887','no'),
(5518803,'_transient_woocommerce_blocks_asset_api_script_data_ssl','{\"script_data\":{\"assets\\/client\\/blocks\\/wc-settings.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js\",\"version\":\"07c2f0675ddd247d2325\",\"dependencies\":[\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-middleware.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js\",\"version\":\"ca04183222edaf8a26be\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-data.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js\",\"version\":\"c96aba0171b12e03b8a6\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-vendors.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js\",\"version\":\"0b6a0d8207806c01caa1\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-registry.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js\",\"version\":\"1c879273bd5c193cad0a\",\"dependencies\":[\"react\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js\",\"version\":\"677b3101ccf9725b0789\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-dom-ready\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-context.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js\",\"version\":\"6eb6865831aa5a75475d\",\"dependencies\":[\"react\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\",\"version\":\"5e01ba7861e4c09bce65\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/price-format.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js\",\"version\":\"eb7a7398126f71912b09\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-checkout.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js\",\"version\":\"9f469ef17beaf7c51576\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/blocks-components.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-components.js\",\"version\":\"b165bb2bd213326d7f31\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\",\"version\":\"1cea5e9e36e528d7493b\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\",\"version\":\"c1d99df3ef00991aa5e3\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/active-filters.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters.js\",\"version\":\"95a1b3f19b7fe4333a57\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/active-filters-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters-frontend.js\",\"version\":\"70e84d296b0795687d51\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/all-products.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products.js\",\"version\":\"2749b82bd8ff0710a02b\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-products-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products-frontend.js\",\"version\":\"817507c468f28d7dc664\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-reviews.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-reviews.js\",\"version\":\"9f6883440908e5e52100\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/reviews-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-frontend.js\",\"version\":\"329e37284479fc3ec518\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/attribute-filter.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter.js\",\"version\":\"0318ade40f521370e630\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/attribute-filter-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter-frontend.js\",\"version\":\"deb7825537a9a0def635\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/breadcrumbs.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/breadcrumbs.js\",\"version\":\"418c5059b135f1aa7830\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/catalog-sorting.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/catalog-sorting.js\",\"version\":\"8b529214dc52ced84c1a\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/legacy-template.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/legacy-template.js\",\"version\":\"7a28cf530204660de807\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/classic-shortcode.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/classic-shortcode.js\",\"version\":\"76824181596fde792ec6\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/customer-account.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/customer-account.js\",\"version\":\"29d7fa83f6c2f9a2ce01\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/featured-category.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-category.js\",\"version\":\"148e4c038b098e102c5a\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"assets\\/client\\/blocks\\/featured-product.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-product.js\",\"version\":\"c1aba3f06758a23823df\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"assets\\/client\\/blocks\\/filter-wrapper.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper.js\",\"version\":\"6e0bde12b66fdc6a52d4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/filter-wrapper-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper-frontend.js\",\"version\":\"1343caca35a219ba93be\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/handpicked-products.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/handpicked-products.js\",\"version\":\"f26a537f9581cb15be17\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/mini-cart.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart.js\",\"version\":\"b9d45061c08714f5ce20\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/mini-cart-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-frontend.js\",\"version\":\"7f4b55b97a7cb539b252\",\"dependencies\":[\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/store-notices.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/store-notices.js\",\"version\":\"05d34da6f782826693d8\",\"dependencies\":[\"lodash\",\"react\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-compose\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/price-filter.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter.js\",\"version\":\"1acccd58ca149d97a900\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/price-filter-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter-frontend.js\",\"version\":\"9737cbab23b19364820a\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-add-to-cart.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-add-to-cart.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-add-to-cart-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-add-to-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-best-sellers.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-best-sellers.js\",\"version\":\"b63bce746658e0b84e06\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-button.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\",\"version\":\"afe142c2b881b96719e3\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/product-categories.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-categories.js\",\"version\":\"832123a81b454988a134\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"assets\\/client\\/blocks\\/product-category.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-category.js\",\"version\":\"839c90df96d3182fd44f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection.js\",\"version\":\"bcadee0c5276b5702d5f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection-no-results.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection-no-results.js\",\"version\":\"3310bc6ce1501b94381d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-new.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-new.js\",\"version\":\"21903dd7b7340a5bbd65\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-on-sale.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-on-sale.js\",\"version\":\"bd498aa4d0e917c49ced\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-template.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-template.js\",\"version\":\"ebc6e378a32a6481e06c\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-query.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query.js\",\"version\":\"202aa5d3b35c4be8c140\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-query-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-results-count.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-results-count.js\",\"version\":\"a651c6e11bed0abf0a6e\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-search.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-search.js\",\"version\":\"904865bb60432f0703aa\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-summary.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-summary.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-tag.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-tag.js\",\"version\":\"3eb8588c8ebc599f84ba\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-title.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-title-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-top-rated.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-top-rated.js\",\"version\":\"21f88fabd15e241a44bf\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/products-by-attribute.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/products-by-attribute.js\",\"version\":\"e3b1e887efef84839d9e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/rating-filter.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/rating-filter.js\",\"version\":\"094dd57e09c4e444ac49\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/reviews-by-category.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-category.js\",\"version\":\"1f83bd36afb2334f1e26\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/reviews-by-product.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-product.js\",\"version\":\"4d2f490293bf2193b18c\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/single-product.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/single-product.js\",\"version\":\"0a4baf55884c120a7af9\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-store-data\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/stock-filter.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter.js\",\"version\":\"1a0b810e62e59a05b3e9\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/stock-filter-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter-frontend.js\",\"version\":\"91648cab5b0244ffedf0\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/page-content-wrapper.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/page-content-wrapper.js\",\"version\":\"f35e44dbb78e412a7ad8\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-status.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-status.js\",\"version\":\"9259ba035fec1019a3c4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-summary.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-summary.js\",\"version\":\"42d4d02662ee78e67430\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-date\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals.js\",\"version\":\"058cf0fedd7d960dc6c3\",\"dependencies\":[\"react\",\"wc-price-format\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\",\"version\":\"129cdd90c94398a18c88\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads.js\",\"version\":\"9b8381e57115e792aacd\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\",\"version\":\"44ee817b8cd877854069\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-address.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-address.js\",\"version\":\"b3df4293ff6f2fc1e5aa\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\",\"version\":\"cbe3b727556f17cccbeb\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\",\"version\":\"1340068d7a04db3610f6\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\",\"version\":\"0f2a58a6d1253ce3c18d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-information.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-information.js\",\"version\":\"9ff9792a5b25249e7107\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/cart.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart.js\",\"version\":\"acefa58be16d3beca24c\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/wc-payment-method-paypal.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-payment-method-paypal.js\",\"version\":\"4f3d2abcb093ae2f0375\",\"dependencies\":[\"react\",\"wc-blocks-registry\",\"wc-settings\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/cart-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-frontend.js\",\"version\":\"77a2ac425fb136be0522\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-cart-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-cart-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/empty-cart-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-cart-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-totals-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-totals-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-items-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-line-items-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-line-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-express-payment-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-express-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/proceed-to-checkout-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/proceed-to-checkout-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout.js\",\"version\":\"9c453d40445d6b160616\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-frontend.js\",\"version\":\"e2d912fa982858c6ccaa\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-actions-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-actions-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-billing-address-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-billing-address-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-contact-information-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-contact-information-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-express-payment-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-express-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-fields-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-fields-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-note-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-note-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-payment-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-address-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-address-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-method-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-method-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-pickup-options-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-pickup-options-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-terms-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-terms-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-totals-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-totals-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents.js\",\"version\":\"98918e12a7aa368a9390\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-footer-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-footer-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-items-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-products-table-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-products-table-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-label-block.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-label-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-component-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-component-frontend.js\",\"version\":\"85605a0a865173a632e8\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\":{\"src\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\",\"version\":\"4a2c7176103baca81cfd\",\"dependencies\":[\"react\",\"react-dom\",\"wc-settings\",\"wp-api-fetch\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]}},\"version\":\"11.8.0-dev\",\"hash\":\"6a36b07f17bc9de9536b170b436ecc58\"}','no'),
(5518818,'wcpay_was_in_use','no','yes'),
(5518821,'woocommerce_attribute_lookup_enabled','yes','yes'),
(5518912,'_transient_timeout_woocommerce_blocks_asset_api_script_data','1732803304','no'),
(5518913,'_transient_woocommerce_blocks_asset_api_script_data','{\"script_data\":{\"assets\\/client\\/blocks\\/wc-settings.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js\",\"version\":\"07c2f0675ddd247d2325\",\"dependencies\":[\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-middleware.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js\",\"version\":\"ca04183222edaf8a26be\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-data.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js\",\"version\":\"c96aba0171b12e03b8a6\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-vendors.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js\",\"version\":\"0b6a0d8207806c01caa1\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-registry.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js\",\"version\":\"1c879273bd5c193cad0a\",\"dependencies\":[\"react\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js\",\"version\":\"677b3101ccf9725b0789\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-dom-ready\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-context.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js\",\"version\":\"6eb6865831aa5a75475d\",\"dependencies\":[\"react\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\",\"version\":\"5e01ba7861e4c09bce65\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/price-format.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js\",\"version\":\"eb7a7398126f71912b09\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-checkout.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js\",\"version\":\"9f469ef17beaf7c51576\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/blocks-components.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-components.js\",\"version\":\"b165bb2bd213326d7f31\",\"dependencies\":[\"lodash\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\",\"version\":\"1cea5e9e36e528d7493b\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\",\"version\":\"c1d99df3ef00991aa5e3\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/active-filters.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters.js\",\"version\":\"95a1b3f19b7fe4333a57\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/active-filters-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters-frontend.js\",\"version\":\"70e84d296b0795687d51\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/all-products.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products.js\",\"version\":\"2749b82bd8ff0710a02b\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-products-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products-frontend.js\",\"version\":\"817507c468f28d7dc664\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-reviews.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-reviews.js\",\"version\":\"9f6883440908e5e52100\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/reviews-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-frontend.js\",\"version\":\"329e37284479fc3ec518\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/attribute-filter.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter.js\",\"version\":\"0318ade40f521370e630\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/attribute-filter-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter-frontend.js\",\"version\":\"deb7825537a9a0def635\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/breadcrumbs.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/breadcrumbs.js\",\"version\":\"418c5059b135f1aa7830\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/catalog-sorting.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/catalog-sorting.js\",\"version\":\"8b529214dc52ced84c1a\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/legacy-template.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/legacy-template.js\",\"version\":\"7a28cf530204660de807\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/classic-shortcode.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/classic-shortcode.js\",\"version\":\"76824181596fde792ec6\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/customer-account.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/customer-account.js\",\"version\":\"29d7fa83f6c2f9a2ce01\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/featured-category.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-category.js\",\"version\":\"148e4c038b098e102c5a\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"assets\\/client\\/blocks\\/featured-product.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-product.js\",\"version\":\"c1aba3f06758a23823df\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\"]},\"assets\\/client\\/blocks\\/filter-wrapper.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper.js\",\"version\":\"6e0bde12b66fdc6a52d4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/filter-wrapper-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper-frontend.js\",\"version\":\"1343caca35a219ba93be\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/handpicked-products.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/handpicked-products.js\",\"version\":\"f26a537f9581cb15be17\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/mini-cart.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart.js\",\"version\":\"b9d45061c08714f5ce20\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/mini-cart-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-frontend.js\",\"version\":\"7f4b55b97a7cb539b252\",\"dependencies\":[\"wc-price-format\",\"wc-settings\",\"wp-api-fetch\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/store-notices.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/store-notices.js\",\"version\":\"05d34da6f782826693d8\",\"dependencies\":[\"lodash\",\"react\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-compose\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/price-filter.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter.js\",\"version\":\"1acccd58ca149d97a900\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/price-filter-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter-frontend.js\",\"version\":\"9737cbab23b19364820a\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-add-to-cart.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-add-to-cart.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-add-to-cart-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-add-to-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-best-sellers.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-best-sellers.js\",\"version\":\"b63bce746658e0b84e06\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-button.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\",\"version\":\"afe142c2b881b96719e3\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/product-categories.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-categories.js\",\"version\":\"832123a81b454988a134\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"assets\\/client\\/blocks\\/product-category.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-category.js\",\"version\":\"839c90df96d3182fd44f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection.js\",\"version\":\"bcadee0c5276b5702d5f\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection-no-results.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection-no-results.js\",\"version\":\"3310bc6ce1501b94381d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-new.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-new.js\",\"version\":\"21903dd7b7340a5bbd65\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-on-sale.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-on-sale.js\",\"version\":\"bd498aa4d0e917c49ced\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-template.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-template.js\",\"version\":\"ebc6e378a32a6481e06c\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-query.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query.js\",\"version\":\"202aa5d3b35c4be8c140\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-query-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-results-count.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-results-count.js\",\"version\":\"a651c6e11bed0abf0a6e\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-search.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-search.js\",\"version\":\"904865bb60432f0703aa\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-summary.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-summary.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-tag.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-tag.js\",\"version\":\"3eb8588c8ebc599f84ba\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-title.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-title-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-top-rated.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-top-rated.js\",\"version\":\"21f88fabd15e241a44bf\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/products-by-attribute.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/products-by-attribute.js\",\"version\":\"e3b1e887efef84839d9e\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\",\"wp-url\"]},\"assets\\/client\\/blocks\\/rating-filter.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/rating-filter.js\",\"version\":\"094dd57e09c4e444ac49\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/reviews-by-category.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-category.js\",\"version\":\"1f83bd36afb2334f1e26\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/reviews-by-product.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-product.js\",\"version\":\"4d2f490293bf2193b18c\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-element\",\"wp-escape-html\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/single-product.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/single-product.js\",\"version\":\"0a4baf55884c120a7af9\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-store-data\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/stock-filter.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter.js\",\"version\":\"1a0b810e62e59a05b3e9\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/stock-filter-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter-frontend.js\",\"version\":\"91648cab5b0244ffedf0\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/page-content-wrapper.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/page-content-wrapper.js\",\"version\":\"f35e44dbb78e412a7ad8\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-status.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-status.js\",\"version\":\"9259ba035fec1019a3c4\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-summary.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-summary.js\",\"version\":\"42d4d02662ee78e67430\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-date\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals.js\",\"version\":\"058cf0fedd7d960dc6c3\",\"dependencies\":[\"react\",\"wc-price-format\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\",\"version\":\"129cdd90c94398a18c88\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads.js\",\"version\":\"9b8381e57115e792aacd\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\",\"version\":\"44ee817b8cd877854069\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-address.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-address.js\",\"version\":\"b3df4293ff6f2fc1e5aa\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\",\"version\":\"cbe3b727556f17cccbeb\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\",\"version\":\"1340068d7a04db3610f6\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\",\"version\":\"0f2a58a6d1253ce3c18d\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-information.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-information.js\",\"version\":\"9ff9792a5b25249e7107\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/cart.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart.js\",\"version\":\"acefa58be16d3beca24c\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/wc-payment-method-paypal.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-payment-method-paypal.js\",\"version\":\"4f3d2abcb093ae2f0375\",\"dependencies\":[\"react\",\"wc-blocks-registry\",\"wc-settings\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/cart-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-frontend.js\",\"version\":\"77a2ac425fb136be0522\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-blocks\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-cart-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-cart-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/empty-cart-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-cart-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-totals-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-totals-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-items-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-line-items-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-line-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-express-payment-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-express-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/proceed-to-checkout-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/proceed-to-checkout-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout.js\",\"version\":\"9c453d40445d6b160616\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-editor\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-frontend.js\",\"version\":\"e2d912fa982858c6ccaa\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-actions-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-actions-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-billing-address-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-billing-address-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-contact-information-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-contact-information-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-express-payment-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-express-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-fields-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-fields-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-note-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-note-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-payment-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-payment-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-address-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-address-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-method-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-method-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-pickup-options-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-pickup-options-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-terms-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-terms-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-totals-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-totals-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents.js\",\"version\":\"98918e12a7aa368a9390\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-footer-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-footer-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-items-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-items-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-products-table-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-products-table-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-label-block.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-label-block.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-component-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-component-frontend.js\",\"version\":\"85605a0a865173a632e8\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-warning\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"11.8.0-dev\",\"dependencies\":[]}},\"version\":\"11.8.0-dev\",\"hash\":\"6a36b07f17bc9de9536b170b436ecc58\"}','no'),
(5518921,'_elementor_notifications_data','a:2:{s:7:\"timeout\";i:1730152574;s:5:\"value\";s:11012:\"[{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]},{\"id\":\"variable-fonts-3.24\",\"title\":\"Elevate text design with Variable Fonts\",\"description\":\"Experience unparalleled fluidity in your design with precise control over text width and weight.\",\"topic\":\"New in Elementor Pro 3.24\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-variable-fonts.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"variable-fonts-3.24\",\"title\":\"Elevate text design with Variable Fonts\",\"description\":\"Experience unparalleled fluidity in your design with precise control over text width and weight.\",\"topic\":\"New in Elementor Pro 3.24\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-variable-fonts.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-24-variable-fonts\\/\"},{\"id\":\"floating-bars-3.24\",\"title\":\"Increase conversion with Floating Bars\",\"description\":\"Place your most important messages and promotions at the top or bottom of your page seamlessly with over 30 pre-made templates.\",\"topic\":\"New in Elementor 3.24\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-floating-bar.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ai-featured-image\",\"title\":\"Featured Image: Let AI Do the Work\",\"description\":\"Say goodbye to image searches! Let AI craft stunning featured images with a click, perfectly matching your content. No prompts needed. Discover how easy it is.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/featured_ai.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"introduction_meta\",\"meta\":\"ai_get_started\"}]],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image\\/\"},{\"id\":\"ai-featured-image\",\"title\":\"Featured Image: Let AI Do the Work\",\"description\":\"Say goodbye to image searches! Let AI craft stunning featured images with a click, perfectly matching your content. No prompts needed. Discover how easy it is.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/featured_ai.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Start Free Trial\",\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image-blog\\/\",\"readMoreText\":\"Learn More\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-featured-image\\/\\/\"},{\"id\":\"search-widget-3.23\",\"title\":\"Increases site exploration with AJAX loading & live results\",\"description\":\"Enabling faster, more accurate content discovery and helping visitors find what they\'re looking for.\",\"topic\":\"Elementor Pro 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/search-widget-3.23.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"search-widget-3.23\",\"title\":\"Increases site exploration with AJAX loading & live results\",\"description\":\"Enabling faster, more accurate content discovery and helping visitors find what they\'re looking for.\",\"topic\":\"Elementor Pro 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/search-widget-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-search-widget\\/\"},{\"id\":\"floating-buttons-3.23\",\"title\":\"Get more leads with Floating Buttons\",\"description\":\"Empowering you to increase conversion by seamlessly integrating a direct link to a chat or different platforms in the form of a floating button.\",\"topic\":\"Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/floating-buttons-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"link-in-bio-3.23\",\"title\":\"New Link in Bio Widgets for any Purpose\",\"description\":\"Create a polished and professional page with just a few clicks and effectively showcase all your important links. Choose from 7 unique widgets and over 60 templates!\",\"topic\":\"Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/link-in-bio-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-link-in-bio-3-23-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"nested-elements-3.23\",\"title\":\"Work faster on Nested Elements\",\"description\":\"Customize Nested Elements faster with version 3.23. Now every change to a Nested Element will only affect the relevant element and not require reloading the entire widget, improving Editor interaction time by 60%-98%.\",\"topic\":\"Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/nested-elements-3.23.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"element-caching-3.22\",\"title\":\"Accelerate Loading Times with Element Caching\",\"description\":\"Ensure a smooth and engaging experience for visitors by activating Element Caching.\",\"topic\":\"Elementor 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/performance-caching.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-element-caching-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"element-caching-3.22\",\"title\":\"Accelerate Loading Times with Element Caching\",\"description\":\"Ensure a smooth and engaging experience for visitors by activating Element Caching.\",\"topic\":\"Elementor 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/performance-caching.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-element-caching-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"off-canvas-3.22\",\"title\":\"Build Interactive Layouts with the New Off-Canvas Widget\",\"description\":\"Tigger containers from a connected link to allow them to slide into view anywhere on the page.\",\"topic\":\"Elementor Pro 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-off-canvas-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"off-canvas-3.22\",\"title\":\"Build Interactive Layouts with the New Off-Canvas Widget\",\"description\":\"Tigger containers from a connected link to allow them to slide into view anywhere on the page.\",\"topic\":\"Elementor Pro 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-off-canvas-blog\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-off-canvas\\/\\/\"},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"display-conditions-dynamic-content-3.20\",\"title\":\"Display Conditions for Dynamic Content\",\"description\":\"Transform your single post and page templates into dynamic designs that fit their content by setting display conditions based on Dynamic Tags, including native WordPress Custom Fields.\",\"topic\":\"Version Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/dynamic-content-pro-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-display-conditions-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"display-conditions-dynamic-content-3.20\",\"title\":\"Display Content on Your Terms: Decide When, Where, and by Who the Content is Viewed\",\"description\":\"Tailor the content on your page to visitors based on various rules to create a powerful experience.\",\"topic\":\"Version Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/display-conditions-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-display-conditions-blog\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-dispaly-conditions\\/\"},{\"id\":\"elementor-add-ons\",\"title\":\"Exciting Add-Ons & Plugins to Enhance Elementor Websites\",\"description\":\"Uncover a treasure trove of tools from Elementor and others, put together to boost your website\'s capabilities and enhance its overall appeal.\",\"topic\":\"Elementor Add-Ons\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/elementor-add-ons.png\",\"cta\":\"Check it out\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-addons\\/\"}]\";}','off'),
(5554769,'cartflows_docs_data','O:8:\"stdClass\":2:{s:10:\"categories\";O:8:\"stdClass\":10:{s:14:\"stripe-payment\";O:8:\"stdClass\":2:{s:4:\"name\";s:14:\"Stripe Payment\";s:13:\"subcategories\";O:8:\"stdClass\":3:{s:30:\"getting-started-stripe-payment\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Getting Started\";s:13:\"subcategories\";a:0:{}}s:14:\"local-gateways\";O:8:\"stdClass\":2:{s:4:\"name\";s:14:\"Local Gateways\";s:13:\"subcategories\";a:0:{}}s:23:\"developer-documentation\";O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"Developer Documentation\";s:13:\"subcategories\";a:0:{}}}}s:15:\"getting-started\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Getting Started\";s:13:\"subcategories\";a:0:{}}s:20:\"installation-updates\";O:8:\"stdClass\":2:{s:4:\"name\";s:26:\"Installation &amp; Updates\";s:13:\"subcategories\";a:0:{}}s:12:\"integrations\";O:8:\"stdClass\":2:{s:4:\"name\";s:12:\"Integrations\";s:13:\"subcategories\";a:0:{}}s:7:\"general\";O:8:\"stdClass\":2:{s:4:\"name\";s:7:\"General\";s:13:\"subcategories\";a:0:{}}s:8:\"features\";O:8:\"stdClass\":2:{s:4:\"name\";s:8:\"Features\";s:13:\"subcategories\";O:8:\"stdClass\":20:{s:24:\"pre-fill-checkout-fields\";O:8:\"stdClass\":2:{s:4:\"name\";s:24:\"Pre-fill Checkout Fields\";s:13:\"subcategories\";a:0:{}}s:20:\"add-products-via-url\";O:8:\"stdClass\":2:{s:4:\"name\";s:20:\"Add products via URL\";s:13:\"subcategories\";a:0:{}}s:18:\"delete-plugin-data\";O:8:\"stdClass\":2:{s:4:\"name\";s:18:\"Delete Plugin Data\";s:13:\"subcategories\";a:0:{}}s:14:\"dynamic-offers\";O:8:\"stdClass\":2:{s:4:\"name\";s:14:\"Dynamic Offers\";s:13:\"subcategories\";a:0:{}}s:20:\"address-autocomplete\";O:8:\"stdClass\":2:{s:4:\"name\";s:20:\"Address Autocomplete\";s:13:\"subcategories\";a:0:{}}s:15:\"flow-step-clone\";O:8:\"stdClass\":2:{s:4:\"name\";s:17:\"Flow / Step Clone\";s:13:\"subcategories\";a:0:{}}s:23:\"cartflows-split-testing\";O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"CartFlows Split Testing\";s:13:\"subcategories\";a:0:{}}s:22:\"replace-checkout-order\";O:8:\"stdClass\":2:{s:4:\"name\";s:22:\"Replace Checkout Order\";s:13:\"subcategories\";a:0:{}}s:13:\"import-export\";O:8:\"stdClass\":2:{s:4:\"name\";s:19:\"Import &amp; Export\";s:13:\"subcategories\";a:0:{}}s:15:\"global-checkout\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Global Checkout\";s:13:\"subcategories\";a:0:{}}s:10:\"order-bump\";O:8:\"stdClass\":2:{s:4:\"name\";s:10:\"Order Bump\";s:13:\"subcategories\";a:0:{}}s:18:\"pre-checkout-offer\";O:8:\"stdClass\":2:{s:4:\"name\";s:18:\"Pre-Checkout Offer\";s:13:\"subcategories\";a:0:{}}s:21:\"checkout-field-editor\";O:8:\"stdClass\":2:{s:4:\"name\";s:21:\"Checkout Field editor\";s:13:\"subcategories\";a:0:{}}s:17:\"one-click-upsells\";O:8:\"stdClass\":2:{s:4:\"name\";s:17:\"One Click Upsells\";s:13:\"subcategories\";a:0:{}}s:20:\"shortcodes-reference\";O:8:\"stdClass\":2:{s:4:\"name\";s:20:\"Shortcodes Reference\";s:13:\"subcategories\";a:0:{}}s:18:\"permalink-settings\";O:8:\"stdClass\":2:{s:4:\"name\";s:18:\"Permalink Settings\";s:13:\"subcategories\";a:0:{}}s:15:\"flows-analytics\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Flows Analytics\";s:13:\"subcategories\";a:0:{}}s:5:\"optin\";O:8:\"stdClass\":2:{s:4:\"name\";s:5:\"Optin\";s:13:\"subcategories\";a:0:{}}s:23:\"cartflows-refund-offers\";O:8:\"stdClass\":2:{s:4:\"name\";s:23:\"CartFlows Refund Offers\";s:13:\"subcategories\";a:0:{}}s:15:\"separate-orders\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Separate Orders\";s:13:\"subcategories\";a:0:{}}}}s:16:\"cart-abandonment\";O:8:\"stdClass\":2:{s:4:\"name\";s:16:\"Cart Abandonment\";s:13:\"subcategories\";a:0:{}}s:15:\"troubleshooting\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Troubleshooting\";s:13:\"subcategories\";a:0:{}}s:13:\"account-store\";O:8:\"stdClass\":2:{s:4:\"name\";s:19:\"Account &amp; Store\";s:13:\"subcategories\";a:0:{}}s:13:\"code-snippets\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Code Snippets\";s:13:\"subcategories\";a:0:{}}}s:4:\"docs\";a:159:{i:0;O:8:\"stdClass\":3:{s:5:\"title\";s:77:\"How to Fix the Blank Page Issue When Importing CartFlows Elementor Templates?\";s:3:\"url\";s:104:\"https://cartflows.com/docs/how-to-fix-the-blank-page-issue-when-importing-cartflows-elementor-templates/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:1;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"How to Enable Google Ads Pixel Support in Cartflows?\";s:3:\"url\";s:52:\"https://cartflows.com/docs/google-ads-pixel-support/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:2;O:8:\"stdClass\":3:{s:5:\"title\";s:29:\"How to import Divi templates?\";s:3:\"url\";s:56:\"https://cartflows.com/docs/how-to-import-divi-templates/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:3;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"Modern Cart for WooCommerce\";s:3:\"url\";s:55:\"https://cartflows.com/docs/modern-cart-for-woocommerce/\";s:8:\"category\";a:0:{}}i:4;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"Flow Analytics in a New Way\";s:3:\"url\";s:51:\"https://cartflows.com/docs/improved-flow-analytics/\";s:8:\"category\";a:1:{i:0;s:15:\"flows-analytics\";}}i:5;O:8:\"stdClass\":3:{s:5:\"title\";s:96:\"How to Use the &#8220;Order Custom Field&#8221; rule of Dynamic Offers with custom field editor.\";s:3:\"url\";s:63:\"https://cartflows.com/docs/use-custom-fields-in-dynamic-offers/\";s:8:\"category\";a:1:{i:0;s:14:\"dynamic-offers\";}}i:6;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"How to Modify Offer Accept/Reject Popup Strings\";s:3:\"url\";s:54:\"https://cartflows.com/docs/modify-offer-popup-strings/\";s:8:\"category\";a:1:{i:0;s:17:\"one-click-upsells\";}}i:7;O:8:\"stdClass\":3:{s:5:\"title\";s:57:\"How to Fix 5XX Error While Importing Flow/Step Templates?\";s:3:\"url\";s:67:\"https://cartflows.com/docs/fix-5xx-error-while-importing-templates/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:8;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"How to View the CartFlows logs\";s:3:\"url\";s:47:\"https://cartflows.com/docs/view-cartflows-logs/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:9;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"How to show the order summary open on mobile devices\";s:3:\"url\";s:80:\"https://cartflows.com/docs/how-to-show-the-order-summary-open-on-mobile-devices/\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:10;O:8:\"stdClass\":3:{s:5:\"title\";s:47:\"How to enable the product tab on store checkout\";s:3:\"url\";s:61:\"https://cartflows.com/docs/enable-product-tab-store-checkout/\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:11;O:8:\"stdClass\":3:{s:5:\"title\";s:22:\"What is Store Checkout\";s:3:\"url\";s:42:\"https://cartflows.com/docs/store-checkout/\";s:8:\"category\";a:1:{i:0;s:15:\"global-checkout\";}}i:12;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"Variation Swatches for WooCommerce Plugin\";s:3:\"url\";s:69:\"https://cartflows.com/docs/variation-swatches-for-woocommerce-plugin/\";s:8:\"category\";a:0:{}}i:13;O:8:\"stdClass\":3:{s:5:\"title\";s:29:\"Offers JS Triggers Shortcodes\";s:3:\"url\";s:57:\"https://cartflows.com/docs/offers-js-triggers-shortcodes/\";s:8:\"category\";a:0:{}}i:14;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"User role manager\";s:3:\"url\";s:45:\"https://cartflows.com/docs/user-role-manager/\";s:8:\"category\";a:0:{}}i:15;O:8:\"stdClass\":3:{s:5:\"title\";s:29:\"CartFlows Pro WP CLI Commands\";s:3:\"url\";s:43:\"https://cartflows.com/docs/wp-cli-commands/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:16;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"Configuring WooCommerce Cart Abandonment Recovery Settings\";s:3:\"url\";s:86:\"https://cartflows.com/docs/configuring-woocommerce-cart-abandonment-recovery-settings/\";s:8:\"category\";a:2:{i:0;s:15:\"getting-started\";i:1;s:16:\"cart-abandonment\";}}i:17;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"How to create Google Address API Key\";s:3:\"url\";s:57:\"https://cartflows.com/docs/create-google-address-api-key/\";s:8:\"category\";a:1:{i:0;s:20:\"address-autocomplete\";}}i:18;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"Enabling the Google Address Autocomplete\";s:3:\"url\";s:65:\"https://cartflows.com/docs/enabling-google-address-autocompletes/\";s:8:\"category\";a:1:{i:0;s:20:\"address-autocomplete\";}}i:19;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"Override Global Checkout aka Replace Checkout page\";s:3:\"url\";s:52:\"https://cartflows.com/docs/override-global-checkout/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:15:\"global-checkout\";}}i:20;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"Dynamic Order Bumps aka Conditional order bumps.\";s:3:\"url\";s:47:\"https://cartflows.com/docs/dynamic-order-bumps/\";s:8:\"category\";a:1:{i:0;s:10:\"order-bump\";}}i:21;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"Steps To Renew Your CartFlows Pro Expired License\";s:3:\"url\";s:77:\"https://cartflows.com/docs/steps-to-renew-your-cartflows-pro-expired-license/\";s:8:\"category\";a:1:{i:0;s:13:\"account-store\";}}i:22;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"How to Download and Install CartFlows Beta Versions?\";s:3:\"url\";s:57:\"https://cartflows.com/docs/about-cartflows-beta-versions/\";s:8:\"category\";a:2:{i:0;s:20:\"installation-updates\";i:1;s:7:\"general\";}}i:23;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"CartFlows Dynamic Offers aka Rule Engine.\";s:3:\"url\";s:64:\"https://cartflows.com/docs/cartflows-dynamic-offers-rule-engine/\";s:8:\"category\";a:1:{i:0;s:14:\"dynamic-offers\";}}i:24;O:8:\"stdClass\":3:{s:5:\"title\";s:25:\"List of CartFlows Cookies\";s:3:\"url\";s:53:\"https://cartflows.com/docs/list-of-cartflows-cookies/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:25;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"Cart Abandonment Cookies/GDPR Compliance\";s:3:\"url\";s:52:\"https://cartflows.com/docs/cart-abandonment-cookies/\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:26;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"How to Add Multiple Order Bump\";s:3:\"url\";s:51:\"https://cartflows.com/docs/add-multiple-order-bump/\";s:8:\"category\";a:1:{i:0;s:10:\"order-bump\";}}i:27;O:8:\"stdClass\":3:{s:5:\"title\";s:81:\"VAT Field of WooCommerce EU/UK VAT Compliance (Premium) plugin is not displaying.\";s:3:\"url\";s:65:\"https://cartflows.com/docs/vat-field-of-eu-uk-vat-not-displaying/\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:28;O:8:\"stdClass\":3:{s:5:\"title\";s:108:\"How to Resolve â€œCannot Activate API Key. Key Already Activated with the same Instance IDâ€ Error Message?\";s:3:\"url\";s:73:\"https://cartflows.com/docs/how-to-resolve-same-instance-id-error-message/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:29;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"How to Delete the Pluginâ€™s Data While Un-Installing the Plugin\";s:3:\"url\";s:72:\"https://cartflows.com/docs/delete-plugin-data-while-uninstalling-plugin/\";s:8:\"category\";a:1:{i:0;s:18:\"delete-plugin-data\";}}i:30;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"How to Add the Products on the Checkout Page via URL\";s:3:\"url\";s:80:\"https://cartflows.com/docs/how-to-add-the-products-on-the-checkout-page-via-url/\";s:8:\"category\";a:1:{i:0;s:20:\"add-products-via-url\";}}i:31;O:8:\"stdClass\":3:{s:5:\"title\";s:62:\"How to Re-generate the Step&#8217;s Dynamic CSS for Shortcodes\";s:3:\"url\";s:75:\"https://cartflows.com/docs/regenerate-the-steps-dynamic-css-for-shortcodes/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:32;O:8:\"stdClass\":3:{s:5:\"title\";s:45:\"How to Set Default Product in Product Options\";s:3:\"url\";s:66:\"https://cartflows.com/docs/set-default-product-in-product-options/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:33;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"How to Start a Flow From Product Page\";s:3:\"url\";s:65:\"https://cartflows.com/docs/how-to-start-a-flow-from-product-page/\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:34;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"How to Apply the Coupon from the URL\";s:3:\"url\";s:64:\"https://cartflows.com/docs/how-to-apply-the-coupon-from-the-url/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:35;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Complete List of WordPress Locale Codes\";s:3:\"url\";s:67:\"https://cartflows.com/docs/complete-list-of-wordpress-locale-codes/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:36;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"How to Translate CartFlows in Your Own Language using GlotPress?\";s:3:\"url\";s:91:\"https://cartflows.com/docs/how-to-translate-cartflows-in-your-own-language-using-glotpress/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:37;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"How to Move the Step from One Flow to Another?\";s:3:\"url\";s:44:\"https://cartflows.com/docs/how-to-move-step/\";s:8:\"category\";a:1:{i:0;s:15:\"flow-step-clone\";}}i:38;O:8:\"stdClass\":3:{s:5:\"title\";s:62:\"Request Timeout Error while Importing the Flow/Step Templates.\";s:3:\"url\";s:89:\"https://cartflows.com/docs/request-timeout-error-while-importing-the-flow-step-templates/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:39;O:8:\"stdClass\":3:{s:5:\"title\";s:55:\"How to Pre-Fill the Checkout Fields via URL Parameters.\";s:3:\"url\";s:82:\"https://cartflows.com/docs/how-to-pre-fill-the-checkout-fields-via-url-parameters/\";s:8:\"category\";a:1:{i:0;s:24:\"pre-fill-checkout-fields\";}}i:40;O:8:\"stdClass\":3:{s:5:\"title\";s:45:\"Introduction to Gutenberg Blocks of CartFlows\";s:3:\"url\";s:54:\"https://cartflows.com/docs/cartflows-gutenberg-blocks/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:41;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How to Update your Payment Method on CartFlows Store?\";s:3:\"url\";s:54:\"https://cartflows.com/docs/update-your-payment-method/\";s:8:\"category\";a:1:{i:0;s:13:\"account-store\";}}i:42;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"How to Renew your CartFlows Pro License Early?\";s:3:\"url\";s:66:\"https://cartflows.com/docs/renew-your-cartflows-pro-license-early/\";s:8:\"category\";a:1:{i:0;s:13:\"account-store\";}}i:43;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"Beaver Builder Modules of CartFlows\";s:3:\"url\";s:63:\"https://cartflows.com/docs/beaver-builder-modules-of-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:44;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"Elementor Error: The Content Area Was Not Found in Your Page\";s:3:\"url\";s:56:\"https://cartflows.com/docs/content-area-not-found-error/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:45;O:8:\"stdClass\":3:{s:5:\"title\";s:69:\"How to Setup Square Gateway for the Cartflows Upsell &#038; Downsell?\";s:3:\"url\";s:62:\"https://cartflows.com/docs/setup-square-gateway-for-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:46;O:8:\"stdClass\":3:{s:5:\"title\";s:30:\"Elementor Widgets of CartFlows\";s:3:\"url\";s:58:\"https://cartflows.com/docs/elementor-widgets-of-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:47;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How to Refresh / Flush WordPress Permalinks?\";s:3:\"url\";s:56:\"https://cartflows.com/docs/refresh-wordpress-permalinks/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:48;O:8:\"stdClass\":3:{s:5:\"title\";s:66:\"How to Replace First Product on the Checkout Page With Order Bump?\";s:3:\"url\";s:79:\"https://cartflows.com/docs/replace-first-product-with-order-bump-checkout-page/\";s:8:\"category\";a:1:{i:0;s:10:\"order-bump\";}}i:49;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"How to Replace the Main Checkout Order with the Upsell/Downsell?\";s:3:\"url\";s:76:\"https://cartflows.com/docs/replace-main-checkout-order-with-upsell-downsell/\";s:8:\"category\";a:1:{i:0;s:22:\"replace-checkout-order\";}}i:50;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"CartFlows Order Bump Conditional Redirect\";s:3:\"url\";s:68:\"https://cartflows.com/docs/order-bump-purchase-conditional-redirect/\";s:8:\"category\";a:1:{i:0;s:10:\"order-bump\";}}i:51;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"How to A/B Test the CartFlows Steps?\";s:3:\"url\";s:51:\"https://cartflows.com/docs/cartflows-split-testing/\";s:8:\"category\";a:1:{i:0;s:23:\"cartflows-split-testing\";}}i:52;O:8:\"stdClass\":3:{s:5:\"title\";s:57:\"How Does CartFlows Work With and Without Global Checkout?\";s:3:\"url\";s:79:\"https://cartflows.com/docs/how-cartflows-work-with-and-without-global-checkout/\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:53;O:8:\"stdClass\":3:{s:5:\"title\";s:66:\"How to Enable the CartFlows Step Post Types for the Page Builders?\";s:3:\"url\";s:78:\"https://cartflows.com/docs/enable-cartflows-step-post-types-for-page-builders/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:54;O:8:\"stdClass\":3:{s:5:\"title\";s:84:\"How to Display the &#8220;Account Creation Fields&#8221; on CartFlows Checkout Page?\";s:3:\"url\";s:74:\"https://cartflows.com/docs/display-account-creation-fields-with-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:55;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"How to Change the &#8220;Choose A variation&#8221; text?\";s:3:\"url\";s:49:\"https://cartflows.com/docs/change-variation-text/\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:56;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"How to Allow Cache Plugins to Cache the CartFlows Pages?\";s:3:\"url\";s:72:\"https://cartflows.com/docs/allow-cache-plugins-to-cache-cartflows-pages/\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:57;O:8:\"stdClass\":3:{s:5:\"title\";s:79:\"How to Collect the User&#8217;s Contact Data and Redirect to the Checkout Page?\";s:3:\"url\";s:84:\"https://cartflows.com/docs/collect-users-contact-data-and-redirect-to-checkout-page/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:58;O:8:\"stdClass\":3:{s:5:\"title\";s:57:\"How to Clone / Duplicate the Funnel or Step in CartFlows?\";s:3:\"url\";s:56:\"https://cartflows.com/docs/clone-flow-step-in-cartflows/\";s:8:\"category\";a:1:{i:0;s:15:\"flow-step-clone\";}}i:59;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"How to Enable/Insert Coupons on the CartFlows Checkout page?\";s:3:\"url\";s:60:\"https://cartflows.com/docs/enable-coupons-on-cartflows-page/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:60;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"Why is the Upsell/Downsell not Working or it is Getting Skipped?\";s:3:\"url\";s:65:\"https://cartflows.com/docs/resolve-upsell-downsell-skipped-issue/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:61;O:8:\"stdClass\":3:{s:5:\"title\";s:102:\"How to Enable/Disable the Shipping Fields &#038; Ship to Different Address on CartFlows Checkout Page?\";s:3:\"url\";s:63:\"https://cartflows.com/docs/ship-to-different-address-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:62;O:8:\"stdClass\":3:{s:5:\"title\";s:77:\"How to Resolve Checkout Page Getting Redirected to Home Page of Your Website?\";s:3:\"url\";s:70:\"https://cartflows.com/docs/resolve-checkout-page-homepage-redirection/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:63;O:8:\"stdClass\":3:{s:5:\"title\";s:84:\"How to Resolve Page Not Found Message on CartFlows Checkout Page During the Payment?\";s:3:\"url\";s:68:\"https://cartflows.com/docs/resolve-page-not-found-message-cartflows/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:64;O:8:\"stdClass\":3:{s:5:\"title\";s:64:\"How to Translate or Change CartFlows Strings with LocoTranslate?\";s:3:\"url\";s:73:\"https://cartflows.com/docs/change-cartflows-strings-using-loco-translate/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:65;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"How to Turn Off the Auto-fill of Checkout Fields?\";s:3:\"url\";s:62:\"https://cartflows.com/docs/turn-off-auto-fill-checkout-fields/\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:66;O:8:\"stdClass\":3:{s:5:\"title\";s:89:\"How to Enable the Theme&#8217;s Scripts &#038; Styles without Changing the Page Template?\";s:3:\"url\";s:67:\"https://cartflows.com/docs/enable-themes-style-for-existing-layout/\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:67;O:8:\"stdClass\":3:{s:5:\"title\";s:69:\"How to Turn Off the Auto-fill of Address Fields on Entering Zip-Code?\";s:3:\"url\";s:61:\"https://cartflows.com/docs/turn-off-auto-fill-address-fields/\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:68;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"How to Resolve the Recovery Email Going to Spam?\";s:3:\"url\";s:61:\"https://cartflows.com/docs/resolve-recovery-email-spam-issue/\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:69;O:8:\"stdClass\":3:{s:5:\"title\";s:90:\"How to Create the Subscription Product in WooCommerce &#038; Assign it on CartFlows Pages?\";s:3:\"url\";s:68:\"https://cartflows.com/docs/use-subscription-product-cartflows-pages/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:70;O:8:\"stdClass\":3:{s:5:\"title\";s:74:\"How to Resolve the â€œCartFlows Pro: Download not found.â€ Error Message?\";s:3:\"url\";s:68:\"https://cartflows.com/docs/resolve-download-not-found-error-message/\";s:8:\"category\";a:1:{i:0;s:20:\"installation-updates\";}}i:71;O:8:\"stdClass\":3:{s:5:\"title\";s:72:\"How to Import the Ready-Made Templates for Flows and Steps in CartFlows?\";s:3:\"url\";s:70:\"https://cartflows.com/docs/import-cartflows-templates-for-flows-steps/\";s:8:\"category\";a:1:{i:0;s:13:\"import-export\";}}i:72;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"Which Multi-Currency Plugin does CartFlows Support?\";s:3:\"url\";s:68:\"https://cartflows.com/docs/use-multi-currency-plugin-with-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:73;O:8:\"stdClass\":3:{s:5:\"title\";s:97:\"How to Resolve â€œThe Following Required Query String Data is Missing: Instanceâ€ Error Message?\";s:3:\"url\";s:93:\"https://cartflows.com/docs/resolve-required-query-string-data-missing-instance-error-message/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:74;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"What is the â€œYour Cart is Emptyâ€ Error Message?\";s:3:\"url\";s:60:\"https://cartflows.com/docs/resolve-your-cart-is-empty-error/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:75;O:8:\"stdClass\":3:{s:5:\"title\";s:61:\"What to Do if the Order Status is Stuck at MainOrderAccepted?\";s:3:\"url\";s:60:\"https://cartflows.com/docs/order-stuck-at-mainorderaccepted/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:76;O:8:\"stdClass\":3:{s:5:\"title\";s:57:\"How and Where to Add the Custom JS, CSS &#038; PHP Codes?\";s:3:\"url\";s:44:\"https://cartflows.com/docs/add-custom-codes/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:77;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"Introducing the â€œSeparate Ordersâ€ Feature in CartFlows?\";s:3:\"url\";s:63:\"https://cartflows.com/docs/introducing-separate-orders-feature/\";s:8:\"category\";a:1:{i:0;s:15:\"separate-orders\";}}i:78;O:8:\"stdClass\":3:{s:5:\"title\";s:108:\"How to Resolve Stripe Payment Gateway Icons Displayed in Large Size and Credit Card Fields are not Editable?\";s:3:\"url\";s:74:\"https://cartflows.com/docs/resolve-stripe-icons-issue-fields-not-editable/\";s:8:\"category\";a:0:{}}i:79;O:8:\"stdClass\":3:{s:5:\"title\";s:65:\"How to Resolve â€œNo product is selected&#8230;â€ error message?\";s:3:\"url\";s:69:\"https://cartflows.com/docs/resolve-no-product-selected-error-message/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:80;O:8:\"stdClass\":3:{s:5:\"title\";s:63:\"How to Activate the â€œAPI Key/Licenseâ€ of the CartFlows Pro?\";s:3:\"url\";s:58:\"https://cartflows.com/docs/activate-cartflows-pro-license/\";s:8:\"category\";a:1:{i:0;s:20:\"installation-updates\";}}i:81;O:8:\"stdClass\":3:{s:5:\"title\";s:107:\"How to Add the Custom Support of any Payment Gateway for One-Click Upsell &#038; Downsell in the CartFlows?\";s:3:\"url\";s:69:\"https://cartflows.com/docs/add-custom-support-of-any-payment-gateway/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:82;O:8:\"stdClass\":3:{s:5:\"title\";s:74:\"How to Resolve â€œSorry this product cannot be purchasedâ€ Error Message?\";s:3:\"url\";s:83:\"https://cartflows.com/docs/resolve-sorry-product-cannot-be-purchased-error-message/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:83;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"How to Resolve â€œSession Expiredâ€ Error message?\";s:3:\"url\";s:57:\"https://cartflows.com/docs/session-expired-error-message/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:84;O:8:\"stdClass\":3:{s:5:\"title\";s:87:\"How to Resolve &#8220;Order Does not Exist Error&#8221; on Upsell &#038; Downsell Page?\";s:3:\"url\";s:62:\"https://cartflows.com/docs/resolve-order-does-not-exist-error/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:85;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"Abandoned Orders Not Capturing [Cart Abandonment]\";s:3:\"url\";s:58:\"https://cartflows.com/docs/abandoned-orders-not-capturing/\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:86;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"Cart Recovery Emails not Sending [Cart Abandonment]\";s:3:\"url\";s:55:\"https://cartflows.com/docs/recovery-emails-not-sending/\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:87;O:8:\"stdClass\":3:{s:5:\"title\";s:49:\"How to Use â€œPermalink Settingsâ€ of CartFlows?\";s:3:\"url\";s:56:\"https://cartflows.com/docs/cartflows-permalink-settings/\";s:8:\"category\";a:1:{i:0;s:18:\"permalink-settings\";}}i:88;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"What is the â€œRefund Offerâ€ Feature in CartFlows?\";s:3:\"url\";s:58:\"https://cartflows.com/docs/refund-offer-feature-cartflows/\";s:8:\"category\";a:1:{i:0;s:23:\"cartflows-refund-offers\";}}i:89;O:8:\"stdClass\":3:{s:5:\"title\";s:65:\"How to resolve &#8220;Checkout ID not Found&#8221; Error message?\";s:3:\"url\";s:63:\"https://cartflows.com/docs/resolve-checkout-id-not-found-error/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:90;O:8:\"stdClass\":3:{s:5:\"title\";s:66:\"How to Set Quantity and Discount for Product on the Checkout Page.\";s:3:\"url\";s:61:\"https://cartflows.com/docs/set-product-quantity-and-discount/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:91;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"How to Style the Highlight Product Section?\";s:3:\"url\";s:70:\"https://cartflows.com/docs/how-to-style-the-highlight-product-section/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:92;O:8:\"stdClass\":3:{s:5:\"title\";s:66:\"How to &#8220;Highlight Product&#8221; in CartFlows Checkout Page?\";s:3:\"url\";s:72:\"https://cartflows.com/docs/highlight-product-in-cartflows-checkout-page/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:93;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"How To Create A Marketing Sales Funnel?\";s:3:\"url\";s:66:\"https://cartflows.com/docs/how-to-create-a-marketing-sales-funnel/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:94;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"How to Customize Checkout Fields of CartFlows?\";s:3:\"url\";s:67:\"https://cartflows.com/docs/custom-checkout-fields-and-its-settings/\";s:8:\"category\";a:1:{i:0;s:21:\"checkout-field-editor\";}}i:95;O:8:\"stdClass\":3:{s:5:\"title\";s:62:\"How to Activate the License of the CartFlows Pro on Multisite?\";s:3:\"url\";s:78:\"https://cartflows.com/docs/how-to-activate-cartflows-pro-license-on-multisite/\";s:8:\"category\";a:2:{i:0;s:15:\"getting-started\";i:1;s:20:\"installation-updates\";}}i:96;O:8:\"stdClass\":3:{s:5:\"title\";s:59:\"How to Modify the Checkout Page Using the Backend Settings?\";s:3:\"url\";s:48:\"https://cartflows.com/docs/modify-checkout-page/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:21:\"checkout-field-editor\";}}i:97;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How to Enable Paypal Reference Transactions?\";s:3:\"url\";s:71:\"https://cartflows.com/docs/how-to-enable-paypal-reference-transactions/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:98;O:8:\"stdClass\":3:{s:5:\"title\";s:39:\"Introducing Upsell Downsell Shortcodes!\";s:3:\"url\";s:66:\"https://cartflows.com/docs/introducing-upsell-downsell-shortcodes/\";s:8:\"category\";a:1:{i:0;s:20:\"shortcodes-reference\";}}i:99;O:8:\"stdClass\":3:{s:5:\"title\";s:84:\"How to Solve the &#8220;Order Not Found&#8221; Error Message on the Thank  You Page?\";s:3:\"url\";s:81:\"https://cartflows.com/docs/solve-order-not-found-error-message-on-thank-you-page/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:100;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"How to Setup A/B Testing with Google Optimize for CartFlows?\";s:3:\"url\";s:79:\"https://cartflows.com/docs/setup-ab-testing-with-google-optimize-for-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:101;O:8:\"stdClass\":3:{s:5:\"title\";s:65:\"How to Solve the Never-Ending Loading Issue on the Checkout Page?\";s:3:\"url\";s:64:\"https://cartflows.com/docs/solve-loading-issue-on-checkout-page/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:102;O:8:\"stdClass\":3:{s:5:\"title\";s:55:\"List of all the Supported Payment Gateways by CartFlows\";s:3:\"url\";s:67:\"https://cartflows.com/docs/supported-payment-gateways-by-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:103;O:8:\"stdClass\":3:{s:5:\"title\";s:76:\"How to Setup Authorize.net Gateway for the Cartflows Upsell &#038; Downsell?\";s:3:\"url\";s:69:\"https://cartflows.com/docs/setup-authorize-net-gateway-for-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:104;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"How to Enable Enfold Avia Layout Builder in CartFlows Steps?\";s:3:\"url\";s:47:\"https://cartflows.com/docs/enfold-avia-builder/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:105;O:8:\"stdClass\":3:{s:5:\"title\";s:52:\"Introducing Personalization Shortcodes in CartFlows!\";s:3:\"url\";s:64:\"https://cartflows.com/docs/personalization-shortcodes-cartflows/\";s:8:\"category\";a:1:{i:0;s:20:\"shortcodes-reference\";}}i:106;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How to Enable Google Analytics Tracking in CartFlows?\";s:3:\"url\";s:70:\"https://cartflows.com/docs/enable-google-analytics-tracking-cartflows/\";s:8:\"category\";a:1:{i:0;s:15:\"flows-analytics\";}}i:107;O:8:\"stdClass\":3:{s:5:\"title\";s:40:\"Troubleshooting Google Analytics Issues!\";s:3:\"url\";s:76:\"https://cartflows.com/docs/troubleshooting-google-analytics-tracking-issues/\";s:8:\"category\";a:1:{i:0;s:15:\"flows-analytics\";}}i:108;O:8:\"stdClass\":3:{s:5:\"title\";s:96:\"How to Resolve the Error &#8211; &#8220;Please select a Simple, Virtual and Free product&#8221;?\";s:3:\"url\";s:68:\"https://cartflows.com/docs/select-a-simple-virtual-and-free-product/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:109;O:8:\"stdClass\":3:{s:5:\"title\";s:48:\"How to Pass Variable as Query Parameters to URL?\";s:3:\"url\";s:68:\"https://cartflows.com/docs/pass-variable-as-query-parameters-to-url/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:110;O:8:\"stdClass\":3:{s:5:\"title\";s:36:\"Introducing CartFlows Optin Feature!\";s:3:\"url\";s:63:\"https://cartflows.com/docs/introducing-cartflows-optin-feature/\";s:8:\"category\";a:1:{i:0;s:5:\"optin\";}}i:111;O:8:\"stdClass\":3:{s:5:\"title\";s:62:\"How to Create Conditional Upsell &#038; Downsell in CartFlows?\";s:3:\"url\";s:62:\"https://cartflows.com/docs/create-conditional-upsell-downsell/\";s:8:\"category\";a:1:{i:0;s:17:\"one-click-upsells\";}}i:112;O:8:\"stdClass\":3:{s:5:\"title\";s:55:\"How to Enable Collapsible Checkout Fields in CartFlows?\";s:3:\"url\";s:62:\"https://cartflows.com/docs/enable-collapsible-checkout-fields/\";s:8:\"category\";a:1:{i:0;s:21:\"checkout-field-editor\";}}i:113;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"How to Use Global Checkout Filter?\";s:3:\"url\";s:50:\"https://cartflows.com/docs/global-checkout-filter/\";s:8:\"category\";a:1:{i:0;s:15:\"global-checkout\";}}i:114;O:8:\"stdClass\":3:{s:5:\"title\";s:63:\"How to Translate the CartFlows using the Loco Translate Plugin?\";s:3:\"url\";s:68:\"https://cartflows.com/docs/translate-cartflows-using-loco-translate/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:115;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How to Enable Fusion Page Builder on CartFlows Steps?\";s:3:\"url\";s:54:\"https://cartflows.com/docs/enable-fusion-page-builder/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:116;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"How to Enable Facebook Pixel Support in Cartflows?\";s:3:\"url\";s:50:\"https://cartflows.com/docs/facebook-pixel-support/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:117;O:8:\"stdClass\":3:{s:5:\"title\";s:38:\"Setup Pre-Checkout Upsell in CartFlows\";s:3:\"url\";s:53:\"https://cartflows.com/docs/setup-pre-checkout-upsell/\";s:8:\"category\";a:1:{i:0;s:18:\"pre-checkout-offer\";}}i:118;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"How to Troubleshoot a Conflict with the Plugin &#038; Theme?\";s:3:\"url\";s:49:\"https://cartflows.com/docs/troubleshooting-steps/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:119;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How to Translate the CartFlows Plugin with GlotPress?\";s:3:\"url\";s:62:\"https://cartflows.com/docs/translate-cartflows-with-glotpress/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:120;O:8:\"stdClass\":3:{s:5:\"title\";s:53:\"How Does Paypal/Stripe Work in the Case of Cartflows?\";s:3:\"url\";s:67:\"https://cartflows.com/docs/working-of-paypal-stripe-with-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:121;O:8:\"stdClass\":3:{s:5:\"title\";s:58:\"How to Translate the CartFlows Plugin with TranslatePress?\";s:3:\"url\";s:67:\"https://cartflows.com/docs/translate-cartflows-with-translatepress/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:122;O:8:\"stdClass\":3:{s:5:\"title\";s:56:\"Shortcode Reference for Email Fields in Cart Abandonment\";s:3:\"url\";s:64:\"https://cartflows.com/docs/shortcode-reference-for-email-fields/\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:123;O:8:\"stdClass\":3:{s:5:\"title\";s:34:\"Filters to Customize Product Table\";s:3:\"url\";s:62:\"https://cartflows.com/docs/filters-to-customize-product-table/\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:124;O:8:\"stdClass\":3:{s:5:\"title\";s:71:\"How to Enable Webhooks in WooCommerce Cart Abandonment Recovery Plugin?\";s:3:\"url\";s:91:\"https://cartflows.com/docs/enable-webhooks-in-woocommerce-cart-abandonment-recovery-plugin/\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:125;O:8:\"stdClass\":3:{s:5:\"title\";s:26:\"Facebook Pixel Integration\";s:3:\"url\";s:54:\"https://cartflows.com/docs/facebook-pixel-integration/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:126;O:8:\"stdClass\":3:{s:5:\"title\";s:50:\"How To Display a Terms &#038; Conditions Checkbox?\";s:3:\"url\";s:70:\"https://cartflows.com/docs/how-to-a-display-terms-conditions-checkbox/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:127;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How To Enable ActiveCampaign With CartFlows?\";s:3:\"url\";s:71:\"https://cartflows.com/docs/how-to-enable-activecampaign-with-cartflows/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:128;O:8:\"stdClass\":3:{s:5:\"title\";s:37:\"Placing Shortcode In The Right Places\";s:3:\"url\";s:65:\"https://cartflows.com/docs/placing-shortcode-in-the-right-places/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:129;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"How To Add Order Bumps To WooCommerce Sales Funnel?\";s:3:\"url\";s:78:\"https://cartflows.com/docs/how-to-add-order-bumps-to-woocommerce-sales-funnel/\";s:8:\"category\";a:1:{i:0;s:10:\"order-bump\";}}i:130;O:8:\"stdClass\":3:{s:5:\"title\";s:70:\"How To Import/Export Funnels &#038; Individual Page Builder Templates?\";s:3:\"url\";s:70:\"https://cartflows.com/docs/import-export-flows-page-builder-templates/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:13:\"import-export\";}}i:131;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"How Coupons Work?\";s:3:\"url\";s:44:\"https://cartflows.com/docs/how-coupons-work/\";s:8:\"category\";a:0:{}}i:132;O:8:\"stdClass\":3:{s:5:\"title\";s:20:\"Flatsome UX Builder?\";s:3:\"url\";s:47:\"https://cartflows.com/docs/flatsome-ux-builder/\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:133;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"Flow In Test Mode\";s:3:\"url\";s:45:\"https://cartflows.com/docs/flow-in-test-mode/\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:134;O:8:\"stdClass\":3:{s:5:\"title\";s:26:\"Creating Variable Products\";s:3:\"url\";s:54:\"https://cartflows.com/docs/creating-variable-products/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:135;O:8:\"stdClass\":3:{s:5:\"title\";s:20:\"CartFlows Step Types\";s:3:\"url\";s:48:\"https://cartflows.com/docs/cartflows-step-types/\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:136;O:8:\"stdClass\":3:{s:5:\"title\";s:35:\"How to Use LearnDash with CartFlows\";s:3:\"url\";s:37:\"https://cartflows.com/docs/learndash/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:137;O:8:\"stdClass\":3:{s:5:\"title\";s:23:\"How to Disable Caching?\";s:3:\"url\";s:43:\"https://cartflows.com/docs/disable-caching/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:138;O:8:\"stdClass\":3:{s:5:\"title\";s:38:\"How To Connect Stripe Payment Gateway?\";s:3:\"url\";s:65:\"https://cartflows.com/docs/how-to-connect-stripe-payment-gateway/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:139;O:8:\"stdClass\":3:{s:5:\"title\";s:15:\"GDPR Compliance\";s:3:\"url\";s:43:\"https://cartflows.com/docs/gdpr-compliance/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:140;O:8:\"stdClass\":3:{s:5:\"title\";s:28:\"How to Set Flow As Homepage?\";s:3:\"url\";s:48:\"https://cartflows.com/docs/set-flow-as-homepage/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:141;O:8:\"stdClass\":3:{s:5:\"title\";s:32:\"How To Add An Affiliate Program?\";s:3:\"url\";s:59:\"https://cartflows.com/docs/how-to-add-an-affiliate-program/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:142;O:8:\"stdClass\":3:{s:5:\"title\";s:20:\"Using Pricing Tables\";s:3:\"url\";s:48:\"https://cartflows.com/docs/using-pricing-tables/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:143;O:8:\"stdClass\":3:{s:5:\"title\";s:46:\"How To Hide WooCommerce Pages &#038; Products?\";s:3:\"url\";s:66:\"https://cartflows.com/docs/how-to-hide-woocommerce-pages-products/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:144;O:8:\"stdClass\":3:{s:5:\"title\";s:24:\"Best Permalinks Settings\";s:3:\"url\";s:52:\"https://cartflows.com/docs/best-permalinks-settings/\";s:8:\"category\";a:1:{i:0;s:18:\"permalink-settings\";}}i:145;O:8:\"stdClass\":3:{s:5:\"title\";s:60:\"How To Embed A Checkout Form on the CartFlows Checkout page?\";s:3:\"url\";s:56:\"https://cartflows.com/docs/how-to-embed-a-checkout-form/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:146;O:8:\"stdClass\":3:{s:5:\"title\";s:54:\"How To Use Your Themes Header &#038; Footer In A Step?\";s:3:\"url\";s:74:\"https://cartflows.com/docs/how-to-use-your-themes-header-footer-in-a-step/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:147;O:8:\"stdClass\":3:{s:5:\"title\";s:24:\"CartFlows Tutorial Video\";s:3:\"url\";s:52:\"https://cartflows.com/docs/cartflows-tutorial-video/\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:148;O:8:\"stdClass\":3:{s:5:\"title\";s:25:\"General Settings Overview\";s:3:\"url\";s:53:\"https://cartflows.com/docs/general-settings-overview/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:149;O:8:\"stdClass\":3:{s:5:\"title\";s:27:\"How To Install WooCommerce?\";s:3:\"url\";s:54:\"https://cartflows.com/docs/how-to-install-woocommerce/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:150;O:8:\"stdClass\":3:{s:5:\"title\";s:23:\"How To Use WooCommerce?\";s:3:\"url\";s:50:\"https://cartflows.com/docs/how-to-use-woocommerce/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:151;O:8:\"stdClass\":3:{s:5:\"title\";s:15:\"Global Checkout\";s:3:\"url\";s:43:\"https://cartflows.com/docs/global-checkout/\";s:8:\"category\";a:2:{i:0;s:7:\"general\";i:1;s:15:\"global-checkout\";}}i:152;O:8:\"stdClass\":3:{s:5:\"title\";s:51:\"How to Hide Checkout Fields from the Checkout Page?\";s:3:\"url\";s:55:\"https://cartflows.com/docs/how-to-hide-checkout-fields/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:153;O:8:\"stdClass\":3:{s:5:\"title\";s:43:\"How To Use CartFlows With Thrive Architect?\";s:3:\"url\";s:70:\"https://cartflows.com/docs/how-to-use-cartflows-with-thrive-architect/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:154;O:8:\"stdClass\":3:{s:5:\"title\";s:32:\"How To Use CartFlows With Brizy?\";s:3:\"url\";s:59:\"https://cartflows.com/docs/how-to-use-cartflows-with-brizy/\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:155;O:8:\"stdClass\":3:{s:5:\"title\";s:41:\"How To Use CartFlows With Beaver Builder?\";s:3:\"url\";s:68:\"https://cartflows.com/docs/how-to-use-cartflows-with-beaver-builder/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:156;O:8:\"stdClass\":3:{s:5:\"title\";s:44:\"How To Use CartFlows With Your Own Template?\";s:3:\"url\";s:71:\"https://cartflows.com/docs/how-to-use-cartflows-with-your-own-template/\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:157;O:8:\"stdClass\":3:{s:5:\"title\";s:17:\"One Click Upsells\";s:3:\"url\";s:45:\"https://cartflows.com/docs/one-click-upsells/\";s:8:\"category\";a:1:{i:0;s:17:\"one-click-upsells\";}}i:158;O:8:\"stdClass\":3:{s:5:\"title\";s:29:\"How To Install CartFlows Pro?\";s:3:\"url\";s:52:\"https://cartflows.com/docs/how-to-install-cartflows/\";s:8:\"category\";a:1:{i:0;s:20:\"installation-updates\";}}}}','yes'),
(5568462,'can_compress_scripts','1','yes'),
(5569081,'elementor_woocommerce_purchase_summary_page_id','','yes'),
(5569903,'elementor_recreate_kit','','yes'),
(5569904,'elementor_safe_mode','','yes'),
(5619266,'_site_transient_wp_plugin_dependencies_plugin_data','a:1:{s:11:\"woocommerce\";a:35:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:7:\"version\";s:5:\"9.3.3\";s:6:\"author\";s:48:\"<a href=\"https://woocommerce.com\">Automattic</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/woothemes/\";s:12:\"contributors\";a:49:{s:10:\"automattic\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/automattic/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/687b3bf96c41800814e3b93766444283?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Automattic\";}s:11:\"woocommerce\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/woocommerce/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/f3c6ec4fe984504efa75aa4ba51e06cc?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"WooCommerce\";}s:10:\"mikejolley\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/mikejolley/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9b87f99f47e30735e1136c5141531fdf?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:18:\"Mike Jolley (a11n)\";}s:11:\"jameskoster\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/jameskoster/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/19a6a101c57df54bc1c40adcfba785d8?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"James Koster\";}s:14:\"claudiosanches\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/claudiosanches/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/908480753c07509e76322dc17d305c8b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Claudio Sanches\";}s:13:\"rodrigosprimo\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/rodrigosprimo/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/f2271ae6814a29d8cbf38ae2d0305a72?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Rodrigo Primo\";}s:15:\"peterfabian1000\";a:3:{s:7:\"profile\";s:47:\"https://profiles.wordpress.org/peterfabian1000/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/be249b86dddbf495565a36196625d77a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Peter Fabian\";}s:7:\"vedjain\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/vedjain/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7a640eb2847d9a0a0d5e6af385e21881?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Vedanshu - a11n\";}s:8:\"jamosova\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/jamosova/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/eb515897a71b0df82ccd2788548588c4?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Julia Amosova\";}s:16:\"obliviousharmony\";a:3:{s:7:\"profile\";s:48:\"https://profiles.wordpress.org/obliviousharmony/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/185f31c1e5af65fee78506769ca13276?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"obliviousharmony\";}s:9:\"konamiman\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/konamiman/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6f89064cf77f281c903ade9911b347b5?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:23:\"NÃ©stor Soriano Vilchez\";}s:8:\"sadowski\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/sadowski/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/b987d10dc6a883713646f4b77eee26fe?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"sadowski\";}s:8:\"wpmuguru\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/wpmuguru/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7b8ff059b9a4504dfbaebd4dd190466e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Ron Rennick\";}s:5:\"royho\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/royho/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/715b4097a10f874f8681b15608687f83?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"royho\";}s:13:\"barryhughes-1\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/barryhughes-1/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/4d7aea8e7879e3ea257ddb4a99a300f1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Barry\";}s:12:\"claudiulodro\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/claudiulodro/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/ef37f6ac5bb6d898709078c843699fa8?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"Claudiu Lodromanean\";}s:12:\"tiagonoronha\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/tiagonoronha/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/de4488154c03a4bb7a0197eaaddbfd3d?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Tiago Noronha\";}s:6:\"ryelle\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/ryelle/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/ca5ab31df7108a28998792f75bb1d7d1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"Kelly Choyce-Dwan\";}s:10:\"levinmedia\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/levinmedia/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/40511bf4877318776a0d1bcfaa95f57a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"levinmedia\";}s:7:\"aljullu\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/aljullu/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c0faac1ed3a278b78d4cc54555011a00?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:21:\"Albert JuhÃ© Lluveras\";}s:6:\"nerrad\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/nerrad/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/82c44d1ed35aec5d4a7252da502eb04b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:22:\"Darren Ethier (nerrad)\";}s:10:\"joshuawold\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/joshuawold/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/78f0d973775bae2efe33199b84682818?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Joshua Wold\";}s:13:\"assassinateur\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/assassinateur/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/123fd4de078afed33253db23c740b7f9?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"Nadir Seghir a11n\";}s:7:\"haszari\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/haszari/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/2770b107404b421d75483443454357d6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Rua Haszard\";}s:10:\"mppfeiffer\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/mppfeiffer/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/8a71536ecdb56815f4a6d7f090f9a1d6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"Michael P. Pfeiffer\";}s:10:\"nielslange\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/nielslange/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0eb4d4cb15c2538a435c4ef2f300f98c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Niels Lange\";}s:9:\"ralucastn\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/ralucastn/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/ab46081c522a76d8ded00afe35709fce?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:6:\"Raluca\";}s:11:\"tjcafferkey\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/tjcafferkey/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/afb82270d62c2e15e93cd67266cbd05b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"tjcafferkey\";}s:13:\"danielwrobert\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/danielwrobert/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/8be94139fba3931699d23861915de7ad?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"danielwrobert\";}s:19:\"patriciahillebrandt\";a:3:{s:7:\"profile\";s:51:\"https://profiles.wordpress.org/patriciahillebrandt/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/754f035dc61fdb1ee0c421d0dd9b6548?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"patriciahillebrandt\";}s:7:\"albarin\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/albarin/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/ebd9116182de32acff7c937e63a334ca?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"albarin\";}s:10:\"dinhtungdu\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/dinhtungdu/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/256a636b71ef62a4a25b675e7df193cb?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"Tung Du\";}s:10:\"imanish003\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/imanish003/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/07ad3b84edb8ad248f32865259e93f76?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"imanish003\";}s:12:\"karolmanijak\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/karolmanijak/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/baa4e8535d51ead12d13f4f9b4635941?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Karol Manijak\";}s:13:\"sunyatasattva\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/sunyatasattva/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/3812e0fa65aaf3301b4b7831adb34116?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:20:\"sunyatasattva (a11n)\";}s:13:\"alexandrelara\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/alexandrelara/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0bb01184012ef3dcea27d39f608efbc8?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Alexandre Lara\";}s:7:\"gigitux\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/gigitux/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/14b4ac105ab488143e3054b0f19b0f45?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Luigi Teschio\";}s:12:\"danieldudzic\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/danieldudzic/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/ac71ae93eb8b7b125e9e8456a215a2f3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"danieldudzic\";}s:11:\"samueljseay\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/samueljseay/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0e0c7d17bef89462fcad9e26d52698eb?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:3:\"Sam\";}s:12:\"alexflorisca\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/alexflorisca/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/59637462ac8fbc0127f06e1720fd9da9?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Alex Florisca\";}s:5:\"opr18\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/opr18/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d05a54809270fd5369e3a78965aff28e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"opr18\";}s:12:\"tarunvijwani\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/tarunvijwani/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/bab931f4c1112615f335676fc6273b95?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"tarunvijwani\";}s:12:\"pauloarromba\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/pauloarromba/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/fdebebd87b97260b706c1170326042f5?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Paulo Arromba\";}s:9:\"saadtarhi\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/saadtarhi/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/8ecbf20755aea99f876f5e1f1cf29537?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"Saad T.\";}s:4:\"bor0\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/bor0/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/bdf960f676361ad8583435b91d88f9e4?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Boro Sitnikovski\";}s:5:\"kloon\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/kloon/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0ca73c5a054774e42732997af3cd8b53?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"Gerhard Potgieter\";}s:12:\"coreymckrill\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/coreymckrill/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/3ae68dc337436ff11f96e370ec4b8276?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:18:\"Corey McKrill a11n\";}s:12:\"jorgeatorres\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/jorgeatorres/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/3e4f939e694f5a7068a799f464fa4234?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Jorge A. Torres\";}s:10:\"leifsinger\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/leifsinger/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/2e936c01386eb16a680e41fda6a7b4aa?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Leif Singer\";}}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:3632;i:4;i:180;i:3;i:98;i:2;i:104;i:1;i:391;}s:11:\"num_ratings\";i:4405;s:11:\"support_url\";s:49:\"https://wordpress.org/support/plugin/woocommerce/\";s:15:\"support_threads\";i:1309;s:24:\"support_threads_resolved\";i:1056;s:15:\"active_installs\";i:8000000;s:12:\"last_updated\";s:21:\"2024-09-25 1:56pm GMT\";s:5:\"added\";s:10:\"2011-09-27\";s:8:\"homepage\";s:24:\"https://woocommerce.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:12560:\"<p><a href=\"https://woocommerce.com/woocommerce/\" rel=\"nofollow ugc\">WooCommerce</a> is the open-source ecommerce platform for WordPress.</p>\n<p>Our core platform is free, flexible, and amplified by a global community. The freedom of open-source means you retain full ownership of your storeâ€™s content and data forever.</p>\n<p>Whether youâ€™re launching a business, taking brick-and-mortar retail online, or developing sites for clients, use WooCommerce for a store that powerfully blends content and commerce.</p>\n<ul>\n<li><strong>Create beautiful, enticing storefronts</strong> with <a href=\"https://woocommerce.com/product-category/themes/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">themes</a> suited to your brand and industry.</li>\n<li><strong>Increase revenue</strong> with an optimized <a href=\"https://woocommerce.com/checkout-blocks/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">shopping cart experience</a> that converts.</li>\n<li><strong>Customize product pages in minutes</strong> using modular <a href=\"https://woocommerce.com/document/woocommerce-blocks/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">product blocks</a>.</li>\n<li>Showcase physical and digital goods, product variations, custom configurations, instant downloads, and affiliate items.</li>\n<li>Sell <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">subscriptions</a>, <a href=\"https://woocommerce.com/products/woocommerce-bookings/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">bookings</a>, or <a href=\"https://woocommerce.com/products/woocommerce-memberships/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">memberships</a>, with our developer-vetted extensions.</li>\n<li><strong>Rise to the top of search results</strong> by leveraging <a href=\"https://www.searchenginejournal.com/wordpress-best-cms-seo/\" rel=\"nofollow ugc\">WordPressâ€™ SEO advantage</a>.</li>\n<li><strong>Build on a platform that scales.</strong> Get flexible ecommerce for <a href=\"https://woocommerce.com/high-volume-stores/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">high-volume stores</a>.</li>\n</ul>\n<h4>ALL THE TOOLS YOU NEED TO SELL</h4>\n<p>Built-in tools and popular integrations help you efficiently manage your business operations. Many services are free to add with a single click via the optional <a href=\"https://woocommerce.com/document/woocommerce-setup-wizard/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Setup Wizard</a>.</p>\n<ul>\n<li><strong>Choose how you want to get paid</strong>. Conveniently manage payments from the comfort of your store with <a href=\"https://woocommerce.com/payments/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooPayments</a> (Available in the U.S., U.K., Ireland, Australia, New Zealand, Canada, Spain, France, Germany, and Italy). Securely accept credit cards, mobile wallets, bank transfers, and cash thanks to <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">100+ payment gateways</a> â€“ including <a href=\"https://woocommerce.com/products/stripe/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Stripe</a>, <a href=\"https://woocommerce.com/products/woocommerce-gateway-paypal-checkout/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">PayPal</a>, and <a href=\"https://woocommerce.com/products/square/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Square</a>.</li>\n<li><strong>Configure your shipping options</strong>. Print USPS labels right from your dashboard and even schedule a pickup with <a href=\"https://woocommerce.com/products/shipping/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Shipping</a> (U.S.-only). Connect with <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">well-known carriers</a> such as UPS and FedEx â€“ plus a wide variety of delivery, inventory, and fulfillment solutions for your locale.</li>\n<li><strong>Simplify sales tax</strong>. Add <a href=\"https://woocommerce.com/products/tax/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Tax</a> or <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/tax?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">similar integrated services</a> to make automated calculations a reality.</li>\n</ul>\n<h4>Grow your business, add features, and monitor your store on the go</h4>\n<p>WooCommerce means business. Keep tabs on the performance metrics most important to you with <a href=\"https://wordpress.org/plugins/woocommerce-admin/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"ugc\">WooCommerce Admin</a> â€“ a powerful, customizable central dashboard for your store.</p>\n<p>Expand your audience across marketing and social channels with <a href=\"https://woocommerce.com/products/google-ads/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Google Ads</a>, <a href=\"https://woocommerce.com/products/hubspot-for-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">HubSpot</a>, <a href=\"https://woocommerce.com/products/mailchimp-for-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Mailchimp</a>, and <a href=\"https://woocommerce.com/products/facebook/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Facebook</a> integrations. You can always check out the in-dashboard <a href=\"https://woocommerce.com/document/marketing-hub/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Marketing Hub</a> for fresh ideas and tips to help you succeed.</p>\n<p>Enhance store functionality with hundreds of free and paid extensions from the <a href=\"https://woocommerce.com/products/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">official WooCommerce Marketplace</a>. Our developers <a href=\"https://woocommerce.com/document/marketplace-overview/#section-6?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">vet each new extension</a> and regularly review existing extensions to maintain Marketplace quality standards. We are actively <a href=\"https://woocommerce.com/document/marketplace-overview/#section-2?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">looking for products that help store builders create successful stores</a>.</p>\n<p>Manage your store from anywhere with the free WooCommerce <a href=\"https://woocommerce.com/mobile/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">mobile app</a> (Android and iOS). Spoiler alert: Keep an ear out for the slightly addictive &#8220;cha-ching&#8221; notification sound each time you make a new sale!</p>\n<h4>Own and control your store data â€“ forever</h4>\n<p>With <a href=\"https://woocommerce.com/woocommerce/\" rel=\"nofollow ugc\">WooCommerce</a>, your data belongs to you. Always.</p>\n<p>If you opt to share <a href=\"https://woocommerce.com/usage-tracking/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">usage data</a> with us, you can feel confident knowing that itâ€™s anonymized and kept secure. Choose to opt-out at any time without impacting your store.</p>\n<p>Unlike hosted ecommerce solutions, WooCommerce store data is future-proof; youâ€™re free to export all your content and take your site to any platform you choose. No restrictions.</p>\n<h4>Why developers choose (and love) WooCommerce</h4>\n<p>Developers can use <a href=\"https://woocommerce.com/woocommerce/\" rel=\"nofollow ugc\">WooCommerce</a> to create, customize, and scale a store to meet a clientâ€™s exact specifications, making enhancements through extensions or custom solutions.</p>\n<ul>\n<li>Leverage <a href=\"https://woocommerce.com/document/introduction-to-hooks-actions-and-filters/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">hooks and filters</a> to modify or create functionality.</li>\n<li>Integrate virtually any service using a robust <a href=\"https://developer.woocommerce.com/docs/getting-started-with-the-woocommerce-rest-api/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">REST API</a> and webhooks.</li>\n<li>Design and build custom content blocks with React.</li>\n<li><a href=\"https://developer.woocommerce.com/docs/category/extension-development/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Inspect and modify</a> any aspect of the core plugin code.</li>\n<li>Speed up development with a lightning-fast <a href=\"https://woocommerce.github.io/code-reference/classes/wc-cli-rest-command.html?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">CLI</a>.</li>\n</ul>\n<p>The core platform is tested rigorously and often, supported by a dedicated development team working across time zones. Comprehensive documentation is updated with each release, empowering you to build exactly the store required.</p>\n<h4>Be part of our growing international community</h4>\n<p>WooCommerce has a large, passionate community dedicated to helping merchants succeed â€“ and itâ€™s growing fast.</p>\n<p>There are <a href=\"https://woocommerce.com/meetups/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Meetups</a> in locations around the world that you can attend for free and even get involved in running. These events are a great way to learn from others, share your expertise, and connect with like-minded folks.</p>\n<p>WooCommerce also has a regular presence at WordCamps across the globe â€“ weâ€™d love to meet you.</p>\n<h4>Contribute and translate</h4>\n<p>WooCommerce is developed and supported by Automattic, the creators of WordPress.com and Jetpack. We also have hundreds of independent contributors, and thereâ€™s always room for more. Head to the <a href=\"https://github.com/woocommerce/woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce GitHub Repository</a> to find out how you can pitch in.</p>\n<p>WooCommerce is translated into multiple languages, including Danish, Ukrainian, and Persian. Help localize WooCommerce even further by adding your locale â€“ visit <a href=\"https://translate.wordpress.org/projects/wp-plugins/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">translate.wordpress.org</a>.</p>\n<h4>Connection to WooCommerce.com</h4>\n<p>You can connect your store to <a href=\"https://woocommerce.com/\" rel=\"nofollow ugc\">WooCommerce.com</a> to manage your subscriptions on WooCommerce Marketplace and receive product updates without leaving WordPress admin. Connection also enables installation of purchased products right from WooCommerce.com and streamlines access to technical support. If youâ€™d like to learn about what data is gathered and how it is used, please refer to our <a href=\"https://automattic.com/privacy/\" rel=\"nofollow ugc\">Privacy Policy</a>.</p>\n\";s:12:\"installation\";s:2382:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP 7.4 or greater is required (PHP 8.0 or greater is recommended)</li>\n<li>MySQL 5.6 or greater, OR MariaDB version 10.1 or greater, is required</li>\n</ul>\n<p>Visit the <a href=\"https://woocommerce.com/document/server-requirements/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">WooCommerce server requirements documentation</a> for a detailed list of server requirements.</p>\n<h4>Automatic installation</h4>\n<p>Automatic installation is the easiest option &#8212; WordPress will handle the file transfer, and you wonâ€™t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu, and click â€œAdd New.â€</p>\n<p>In the search field type â€œWooCommerce,â€ then click â€œSearch Plugins.â€ Once youâ€™ve found us,  you can view details about it such as the point release, rating, and description. Most importantly of course, you can install it by! Click â€œInstall Now,â€ and WordPress will take it from there.</p>\n<h4>Manual installation</h4>\n<p>Manual installation method requires downloading the WooCommerce plugin and uploading it to your web server via your favorite FTP application. The WordPress codex contains <a href=\"https://wordpress.org/support/article/managing-plugins/#manual-plugin-installation\" rel=\"ugc\">instructions on how to do this here</a>.</p>\n<h4>Updating</h4>\n<p>Automatic updates should work smoothly, but we still recommend you back up your site.</p>\n<p>If you encounter issues with the shop/category pages after an update, flush the permalinks by going to WordPress &gt; Settings &gt; Permalinks and hitting â€œSave.â€ That should return things to normal.</p>\n<h4>Sample data</h4>\n<p>WooCommerce comes with some sample data you can use to see how products look; import sample_products.xml via the <a href=\"https://wordpress.org/plugins/wordpress-importer/\" rel=\"ugc\">WordPress importer</a>. You can also use the core <a href=\"https://woocommerce.com/document/product-csv-importer-exporter/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">CSV importer</a> or our <a href=\"https://woocommerce.com/products/product-csv-import-suite/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">CSV Import Suite extension</a> to import sample_products.csv</p>\n\";s:3:\"faq\";s:7803:\"\n<dt id=\'where%20can%20i%20find%20woocommerce%20documentation%20and%20user%20guides%3F\'>\nWhere can I find WooCommerce documentation and user guides?\n</h4>\n<p>\n<p>For help setting up and configuring WooCommerce, please refer to <a href=\"https://woocommerce.com/documentation/plugins/woocommerce/getting-started/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Getting Started</a> and the <a href=\"https://woocommerce.com/guides/new-store/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">New WooCommerce Store Owner Guide</a>.</p>\n<p>For extending or theming WooCommerce, see our <a href=\"https://github.com/woocommerce/woocommerce/tree/trunk/docs\" rel=\"nofollow ugc\">documentation</a>, as well as the <a href=\"https://github.com/woocommerce/woocommerce/blob/trunk/docs/extension-development/extension-development-best-practices.md\" rel=\"nofollow ugc\">Plugin Developer Best Practices</a>.</p>\n</p>\n<dt id=\'where%20can%20i%20get%20help%20or%20talk%20to%20other%20users%20about%20woocommerce%20core%3F\'>\nWhere can I get help or talk to other users about WooCommerce Core?\n</h4>\n<p>\n<p>If you get stuck, you can ask for help in the <a href=\"https://wordpress.org/support/plugin/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"ugc\">WooCommerce Support Forum</a> by following <a href=\"https://wordpress.org/support/topic/guide-to-the-woocommerce-forum/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"ugc\">these guidelines</a>, reach out via the <a href=\"https://woocommerce.com/community-slack/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Community Slack</a>, or post in the <a href=\"https://www.facebook.com/groups/advanced.woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Community group</a> on Facebook.</p>\n</p>\n<dt id=\'where%20can%20i%20get%20help%20for%20extensions%20i%20have%20purchased%20from%20the%20woocommerce%20marketplace%3F\'>\nWhere can I get help for extensions I have purchased from the WooCommerce Marketplace?\n</h4>\n<p>\n<p>For assistance with paid extensions from the WooCommerce Marketplace: first, review our <a href=\"https://woocommerce.com/document/woocommerce-self-service-guide/\" rel=\"nofollow ugc\">self-service troubleshooting guide</a>. If the problem persists, kindly log a support ticket via <a href=\"https://woocommerce.com/my-account/create-a-ticket/\" rel=\"nofollow ugc\">our helpdesk</a>. Our dedicated Happiness Engineers aim to respond within 24 hours.</p>\n</p>\n<dt id=\'i%E2%80%99m%20having%20trouble%20logging%20in%20to%20woocommerce.com%20%E2%80%93%20what%20now%3F\'>\nIâ€™m having trouble logging in to WooCommerce.com â€“ what now?\n</h4>\n<p>\n<p>First, troubleshoot common login issues using this helpful <a href=\"https://woocommerce.com/document/log-into-woocommerce-com-with-wordpress-com/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">step-by-step guide</a>. Still not working? <a href=\"https://woocommerce.com/contact-us/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Get in touch with us</a>.</p>\n</p>\n<dt id=\'will%20woocommerce%20work%20with%20my%20theme%3F\'>\nWill WooCommerce work with my theme?\n</h4>\n<p>\n<p>Yes! WooCommerce will work with any theme but may require some additional styling. If youâ€™re looking for a theme featuring deep WooCommerce integration, we recommend <a href=\"https://woocommerce.com/storefront/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Storefront</a>.</p>\n</p>\n<dt id=\'how%20do%20i%20update%20woocommerce%3F\'>\nHow do I update WooCommerce?\n</h4>\n<p>\n<p>We have a detailed guide on <a href=\"https://woocommerce.com/document/how-to-update-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">How To Update WooCommerce</a>.</p>\n</p>\n<dt id=\'my%20site%20broke%20%E2%80%93%20what%20do%20i%20do%3F\'>\nMy site broke â€“ what do I do?\n</h4>\n<p>\n<p>Start by diagnosing the issue using our helpful <a href=\"https://woocommerce.com/documentation/get-help/troubleshooting-get-help/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">troubleshooting guide</a>.</p>\n<p>If you noticed the error after updating a theme or plugin, there might be compatibility issues between it and WooCommerce. If the issue appeared after updating WooCommerce, there could be a conflict between WooCommerce and an outdated theme or plugin.</p>\n<p>In both instances, we recommend running a conflict test using <a href=\"https://woocommerce.com/document/troubleshooting-using-health-check/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Health Check</a> (which allows you to disable themes and plugins without affecting your visitors) or troubleshooting the issue using a <a href=\"https://woocommerce.com/document/how-to-test-for-conflicts/#section-3?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">staging site</a>.</p>\n</p>\n<dt id=\'where%20can%20i%20report%20bugs%3F\'>\nWhere can I report bugs?\n</h4>\n<p>\n<p>Report bugs on the <a href=\"https://github.com/woocommerce/woocommerce/issues?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce GitHub repository</a>. You can also notify us via our support forum â€“ be sure to search the forums to confirm that the error has not already been reported.</p>\n</p>\n<dt id=\'where%20can%20i%20request%20new%20features%2C%20themes%2C%20and%20extensions%3F\'>\nWhere can I request new features, themes, and extensions?\n</h4>\n<p>\n<p>Request new features and extensions and vote on existing suggestions on our official <a href=\"https://woocommerce.com/feature-requests/woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">feature request board</a>. Our Product teams regularly review requests and consider them valuable for product planning.</p>\n</p>\n<dt id=\'woocommerce%20is%20awesome%21%20can%20i%20contribute%3F\'>\nWooCommerce is awesome! Can I contribute?\n</h4>\n<p>\n<p>Yes, you can! Join in on our <a href=\"https://github.com/woocommerce/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">GitHub repository</a> and follow the <a href=\"https://woocommerce.wordpress.com/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">development blog</a> to stay up-to-date with everything happening in the project.</p>\n</p>\n<dt id=\'where%20can%20i%20find%20rest%20api%20documentation%3F\'>\nWhere can I find REST API documentation?\n</h4>\n<p>\n<p>Extensive <a href=\"https://woocommerce.github.io/woocommerce-rest-api-docs/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce REST API Documentation</a> is available on GitHub.</p>\n</p>\n<dt id=\'my%20question%20is%20not%20listed%20here.%20where%20can%20i%20find%20more%20answers%3F\'>\nMy question is not listed here. Where can I find more answers?\n</h4>\n<p>\n<p>Check out <a href=\"https://woocommerce.com/document/frequently-asked-questions/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Frequently Asked Questions</a> for more.</p>\n</p>\n\n\";s:9:\"changelog\";s:625:\"<h4>9.3.3 2024-09-25</h4>\n<ul>\n<li>Fix &#8211; An issue where virtual products could not be purchased when using the Additional Fields API <a href=\"https://github.com/woocommerce/woocommerce/pull/51630\" rel=\"nofollow ugc\">#51630</a></li>\n<li>Fix &#8211; Restore the previous default for <code>woocommerce_product_import_batch_size</code> (process 30 lines per batch when importing product CSV data) [#51631] (https://github.com/woocommerce/woocommerce/pull/51631)</li>\n</ul>\n<p><a href=\"https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/changelog.txt\" rel=\"nofollow ugc\">See changelog for all versions</a>.</p>\n\";s:11:\"screenshots\";s:1035:\"<ol><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2366418\" alt=\"\"></a></li></ol>\";s:7:\"reviews\";s:17645:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Bad customer supported plugin In WP Industry</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/rahulmoral/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/44df99cb24ffaa78be4af49b8fc4c0a0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/44df99cb24ffaa78be4af49b8fc4c0a0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/rahulmoral/\" class=\"reviewer-name\">rahulmoral</a> on <span class=\"review-date\">October 26, 2024</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>There is no perfect documentation. Also bad customer support. There is no way to contact them.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Nice plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/chichi01/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/7d74220872820ca9c58616ed288a3403?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/7d74220872820ca9c58616ed288a3403?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/chichi01/\" class=\"reviewer-name\">chichi01</a> on <span class=\"review-date\">October 26, 2024</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The websiteâ€™s technical support feedback was quite fast, which surprised me. So far the experience is good.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Above and beyond</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/niknik670/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/bd06829f55823eda37552ea7b4bbe2fd?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/bd06829f55823eda37552ea7b4bbe2fd?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/niknik670/\" class=\"reviewer-name\">niknik670</a> on <span class=\"review-date\">October 25, 2024</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The problem I encountered was related to the theme I was using rather than the WooCommerce plugin. However, the tech team went above and beyond to help me resolve the issue. I was also able to reach out to the theme developers afterward. </p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Total cost of ownership (TCO) is high.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/sean-h/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d265e5a6791ee9eba3ae2f408d5ec59a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d265e5a6791ee9eba3ae2f408d5ec59a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/sean-h/\" class=\"reviewer-name\">Sean <small>(sean-h)</small></a> on <span class=\"review-date\">October 24, 2024</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Even though I have 10 years experience working with Wordpress, after trying to build a shop with Woo as a first time user over the last few months, and after a few updates that broke things consequently wasting days of my time, and with Woo \'support\' basically shrugging their shoulders and offering a half hearted band-aid workaround, I looked into other options.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In short, Shopify looks cheaper to run in the long term, in both time and money spent. Out of the box Woo doesn\'t actually do much, you need to add seemingly countless other 3rd party paid features to reach the same level of functionality as an entry level Shopify account.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But to be clear, I can see how Woo is great if you yourself are or you have a team of experienced coders on hand who really know what they\'re doing. Woo offering 100% control and open source flexibility. There are some very big companies using Woo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But, if you are just starting out with your first ever online shop and haven\'t got time or money to spend fiddling, go for Shopify who will in turn take care of most of the heavy lifting for you such as hosting and updates, but particularly the handling of payment gateways. All Shopify stores being Level 1 PCI compliant by default. Hosting on Google Cloud Platform, all Shopify accounts also include unlimited products/bandwidth/storage and Fastly CDN. Your 1-stop....shop.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So what are the key differences between Woo and Shopify?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With Woo being just another WP plugin, <em>you</em> need to find the <em>right</em> hosting, install Wordpress then Woo and a bunch of other plugins to make it really work. <em>You</em> then need to take the responsibility of maintaining it all. And when it breaks, and it will, who is accountable? Woo? Wordpress? Your web host?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With Shopify being a full service platform, you sign up and pay your monthly fees, then you can just concentrate mostly on design, adding products and marketing. If you really need help, they are available 24/7 via live chat. One of the things you pay for. This is what makes them accountable. If <em>they</em> push an update that breaks your shop, <em>they</em> will <em>fix</em> it. You will not be asked, days later, to install yet another plugin to add some extraneous php code to your site.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I don\'t actually care how many times Woo has been downloaded and how many sites are running it. I would instead be interested to know how many sites currently using Woo are <em>successful.</em> However, unless every Woo and Shopify store publicly and accurately declare their earnings, we will never know. So I take those kinds of stats with quite a big pinch of salt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In summary: While Woo itself is free, it\'s for coders who really know what they\'re doing and want <em>complete</em> flexibility. The 2 stars is for wasting my time and making it look easy. Shopify is for folks who want to run online shops. Instead of stars, they get paid.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Being a snowboarder myself, maybe I relate better to Shopify because it was started by some snowboarders who just wanted to sell snowboards online. </p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Nice Web Shop plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/bayejid00/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d7578fd0123db21e4ed506d7edb1198d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d7578fd0123db21e4ed506d7edb1198d?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/bayejid00/\" class=\"reviewer-name\">Bayejid Ahmed <small>(bayejid00)</small></a> on <span class=\"review-date\">October 22, 2024</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I am happy to use this plugin.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Muito bom</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/kemyllyn/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/24406d215d7fe8ce1325525c248f2112?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/24406d215d7fe8ce1325525c248f2112?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/kemyllyn/\" class=\"reviewer-name\">kemyllyn</a> on <span class=\"review-date\">October 22, 2024</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Comecei agora e gostei bastante</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Best Efficiant Webshop Solution</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/alexanderkoch096/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/484f9f7bd850aacc19cdb43713afddb9?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/484f9f7bd850aacc19cdb43713afddb9?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/alexanderkoch096/\" class=\"reviewer-name\">Alex <small>(alexanderkoch096)</small></a> on <span class=\"review-date\">October 18, 2024</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Thanks guys for improving Woocommerce Plugin all the time. </p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Cannot change email address for product stock notifications</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/natheritage24/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a6ac79dc12b54ccc1d0a8aaa4861cbfb?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a6ac79dc12b54ccc1d0a8aaa4861cbfb?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/natheritage24/\" class=\"reviewer-name\">natheritage24</a> on <span class=\"review-date\">October 14, 2024</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Accurate and prompt response.<br /><br />Thank you!</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Full blown webshop</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/loopbenen/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/bd3f950db695f702472bd0e171720dee?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/bd3f950db695f702472bd0e171720dee?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/loopbenen/\" class=\"reviewer-name\">loopbenen</a> on <span class=\"review-date\">October 10, 2024</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I love that WooCommerce is so extendable and what ever webshop you need you can build it. <br />Thanks for a great plugin.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/renato-ranghini/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/03cb6c31c08e54020df5f05a95df4824?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/03cb6c31c08e54020df5f05a95df4824?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/renato-ranghini/\" class=\"reviewer-name\">Renato RANGHINI</a> on <span class=\"review-date\">October 10, 2024</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I am not a programmer but I can create good websites for my business.</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:17:\"short_description\";s:146:\"Everything you need to launch an online store in days and keep it growing for years. From your first sale to millions in revenue, Woo is with you.\";s:13:\"download_link\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.3.zip\";s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}i:2;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}i:3;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}i:4;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}i:5;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}i:6;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}}s:4:\"tags\";a:5:{s:9:\"ecommerce\";s:9:\"ecommerce\";s:12:\"online-store\";s:12:\"online store\";s:11:\"sell-online\";s:11:\"sell online\";s:4:\"shop\";s:4:\"shop\";s:13:\"shopping-cart\";s:13:\"shopping cart\";}s:8:\"versions\";a:452:{s:5:\"3.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.0.zip\";s:5:\"3.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.1.zip\";s:5:\"3.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.2.zip\";s:5:\"3.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.3.zip\";s:5:\"3.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.4.zip\";s:5:\"3.0.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.5.zip\";s:5:\"3.0.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.6.zip\";s:5:\"3.0.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.7.zip\";s:5:\"3.0.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.8.zip\";s:5:\"3.0.9\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.9.zip\";s:5:\"3.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.0.zip\";s:5:\"3.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.1.zip\";s:5:\"3.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.2.zip\";s:5:\"3.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.0.zip\";s:5:\"3.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.1.zip\";s:5:\"3.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.2.zip\";s:5:\"3.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.3.zip\";s:5:\"3.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.4.zip\";s:5:\"3.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.5.zip\";s:5:\"3.2.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.6.zip\";s:5:\"3.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.0.zip\";s:5:\"3.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.1.zip\";s:5:\"3.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.2.zip\";s:10:\"3.3.2-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.2-rc.1.zip\";s:5:\"3.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.3.zip\";s:5:\"3.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.4.zip\";s:5:\"3.3.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.5.zip\";s:5:\"3.3.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.6.zip\";s:5:\"3.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0.zip\";s:12:\"3.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0-beta.1.zip\";s:10:\"3.4.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0-rc.2.zip\";s:5:\"3.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.1.zip\";s:5:\"3.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.2.zip\";s:5:\"3.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.3.zip\";s:5:\"3.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.4.zip\";s:5:\"3.4.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.5.zip\";s:5:\"3.4.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.6.zip\";s:5:\"3.4.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.7.zip\";s:5:\"3.4.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.8.zip\";s:5:\"3.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0.zip\";s:12:\"3.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-beta.1.zip\";s:10:\"3.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.1.zip\";s:10:\"3.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.2.zip\";s:5:\"3.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.1.zip\";s:6:\"3.5.10\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.10.zip\";s:5:\"3.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.2.zip\";s:5:\"3.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.3.zip\";s:5:\"3.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.4.zip\";s:5:\"3.5.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.5.zip\";s:5:\"3.5.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.6.zip\";s:5:\"3.5.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.7.zip\";s:5:\"3.5.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.8.zip\";s:5:\"3.5.9\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.9.zip\";s:5:\"3.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0.zip\";s:12:\"3.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-beta.1.zip\";s:10:\"3.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.1.zip\";s:10:\"3.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.2.zip\";s:10:\"3.6.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.3.zip\";s:5:\"3.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.1.zip\";s:5:\"3.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.2.zip\";s:5:\"3.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.3.zip\";s:5:\"3.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.4.zip\";s:5:\"3.6.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.5.zip\";s:5:\"3.6.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.6.zip\";s:5:\"3.6.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.7.zip\";s:5:\"3.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0.zip\";s:12:\"3.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-beta.1.zip\";s:10:\"3.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.1.zip\";s:10:\"3.7.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.2.zip\";s:5:\"3.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.1.zip\";s:5:\"3.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.2.zip\";s:5:\"3.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.3.zip\";s:5:\"3.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0.zip\";s:12:\"3.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-beta.1.zip\";s:10:\"3.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.1.zip\";s:10:\"3.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.2.zip\";s:5:\"3.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.1.zip\";s:5:\"3.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.2.zip\";s:5:\"3.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.3.zip\";s:5:\"3.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0.zip\";s:12:\"3.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.1.zip\";s:12:\"3.9.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.2.zip\";s:10:\"3.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.1.zip\";s:10:\"3.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.2.zip\";s:10:\"3.9.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.3.zip\";s:10:\"3.9.0-rc.4\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.4.zip\";s:5:\"3.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.1.zip\";s:5:\"3.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.2.zip\";s:5:\"3.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.3.zip\";s:5:\"3.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.4.zip\";s:5:\"3.9.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.5.zip\";s:5:\"4.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0.zip\";s:12:\"4.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-beta.1.zip\";s:10:\"4.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.1.zip\";s:10:\"4.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.2.zip\";s:5:\"4.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.1.zip\";s:5:\"4.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.2.zip\";s:5:\"4.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.3.zip\";s:5:\"4.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.4.zip\";s:5:\"4.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0.zip\";s:12:\"4.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.1.zip\";s:12:\"4.1.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.2.zip\";s:10:\"4.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.1.zip\";s:10:\"4.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.2.zip\";s:5:\"4.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.1.zip\";s:5:\"4.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.2.zip\";s:5:\"4.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.3.zip\";s:5:\"4.1.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.4.zip\";s:5:\"4.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0.zip\";s:10:\"4.2.0-RC.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.1.zip\";s:10:\"4.2.0-RC.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.2.zip\";s:12:\"4.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-beta.1.zip\";s:5:\"4.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.1.zip\";s:5:\"4.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.2.zip\";s:5:\"4.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.3.zip\";s:5:\"4.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.4.zip\";s:5:\"4.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.5.zip\";s:5:\"4.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0.zip\";s:12:\"4.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-beta.1.zip\";s:10:\"4.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.1.zip\";s:10:\"4.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.2.zip\";s:10:\"4.3.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.3.zip\";s:5:\"4.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.1.zip\";s:5:\"4.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.2.zip\";s:5:\"4.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.3.zip\";s:5:\"4.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.4.zip\";s:5:\"4.3.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.5.zip\";s:5:\"4.3.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.6.zip\";s:5:\"4.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0.zip\";s:12:\"4.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0-beta.1.zip\";s:10:\"4.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0-rc.1.zip\";s:5:\"4.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.1.zip\";s:5:\"4.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.2.zip\";s:5:\"4.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.3.zip\";s:5:\"4.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.4.zip\";s:5:\"4.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0.zip\";s:12:\"4.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-beta.1.zip\";s:10:\"4.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.1.zip\";s:10:\"4.5.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.3.zip\";s:5:\"4.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.1.zip\";s:5:\"4.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.2.zip\";s:5:\"4.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.3.zip\";s:5:\"4.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.4.zip\";s:5:\"4.5.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.5.zip\";s:5:\"4.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0.zip\";s:12:\"4.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0-beta.1.zip\";s:10:\"4.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0-rc.1.zip\";s:5:\"4.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.1.zip\";s:5:\"4.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.2.zip\";s:5:\"4.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.3.zip\";s:5:\"4.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.4.zip\";s:5:\"4.6.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.5.zip\";s:5:\"4.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0.zip\";s:12:\"4.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.1.zip\";s:12:\"4.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.2.zip\";s:10:\"4.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-rc.1.zip\";s:5:\"4.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.1.zip\";s:12:\"4.7.1-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.1-beta.1.zip\";s:5:\"4.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.2.zip\";s:5:\"4.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.3.zip\";s:5:\"4.7.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.4.zip\";s:5:\"4.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0.zip\";s:12:\"4.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-beta.1.zip\";s:10:\"4.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.1.zip\";s:10:\"4.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.2.zip\";s:5:\"4.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.1.zip\";s:5:\"4.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.2.zip\";s:5:\"4.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.3.zip\";s:5:\"4.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0.zip\";s:12:\"4.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-beta.1.zip\";s:10:\"4.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.1.zip\";s:10:\"4.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.2.zip\";s:5:\"4.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.1.zip\";s:5:\"4.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.2.zip\";s:5:\"4.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.3.zip\";s:5:\"4.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.4.zip\";s:5:\"4.9.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.5.zip\";s:5:\"5.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0.zip\";s:12:\"5.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.1.zip\";s:12:\"5.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.2.zip\";s:10:\"5.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.1.zip\";s:10:\"5.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.2.zip\";s:10:\"5.0.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.3.zip\";s:5:\"5.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.1.zip\";s:5:\"5.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.2.zip\";s:5:\"5.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.3.zip\";s:5:\"5.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0.zip\";s:12:\"5.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0-beta.1.zip\";s:10:\"5.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0-rc.1.zip\";s:5:\"5.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.1.zip\";s:5:\"5.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.2.zip\";s:5:\"5.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.3.zip\";s:5:\"5.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0.zip\";s:12:\"5.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-beta.1.zip\";s:10:\"5.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.1.zip\";s:10:\"5.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.2.zip\";s:5:\"5.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.1.zip\";s:5:\"5.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.2.zip\";s:5:\"5.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.3.zip\";s:5:\"5.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.4.zip\";s:5:\"5.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.5.zip\";s:5:\"5.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0.zip\";s:12:\"5.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-beta.1.zip\";s:10:\"5.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.1.zip\";s:10:\"5.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.2.zip\";s:5:\"5.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.1.zip\";s:5:\"5.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.2.zip\";s:5:\"5.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.3.zip\";s:5:\"5.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0.zip\";s:12:\"5.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0-beta.1.zip\";s:10:\"5.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0-rc.1.zip\";s:5:\"5.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.1.zip\";s:5:\"5.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.2.zip\";s:5:\"5.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.3.zip\";s:5:\"5.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.4.zip\";s:5:\"5.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0.zip\";s:12:\"5.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-beta.1.zip\";s:10:\"5.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.1.zip\";s:10:\"5.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.2.zip\";s:5:\"5.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.1.zip\";s:5:\"5.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.2.zip\";s:5:\"5.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.3.zip\";s:5:\"5.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.4.zip\";s:5:\"5.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0.zip\";s:12:\"5.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-beta.1.zip\";s:10:\"5.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.1.zip\";s:10:\"5.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.2.zip\";s:5:\"5.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.1.zip\";s:5:\"5.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.2.zip\";s:5:\"5.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0.zip\";s:12:\"5.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0-beta.1.zip\";s:10:\"5.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0-rc.1.zip\";s:5:\"5.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.1.zip\";s:5:\"5.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.2.zip\";s:5:\"5.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0.zip\";s:12:\"5.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.1.zip\";s:12:\"5.8.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.2.zip\";s:10:\"5.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-rc.1.zip\";s:5:\"5.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.1.zip\";s:5:\"5.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0.zip\";s:12:\"5.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-beta.1.zip\";s:10:\"5.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.1.zip\";s:10:\"5.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.2.zip\";s:5:\"5.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.1.zip\";s:5:\"6.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0.zip\";s:12:\"6.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0-beta.1.zip\";s:10:\"6.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0-rc.1.zip\";s:5:\"6.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.1.zip\";s:5:\"6.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0.zip\";s:12:\"6.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-beta.1.zip\";s:10:\"6.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.1.zip\";s:10:\"6.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.2.zip\";s:5:\"6.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.1.zip\";s:5:\"6.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.2.zip\";s:5:\"6.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0.zip\";s:12:\"6.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-beta.1.zip\";s:10:\"6.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.1.zip\";s:10:\"6.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.2.zip\";s:5:\"6.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.1.zip\";s:5:\"6.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.2.zip\";s:5:\"6.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0.zip\";s:12:\"6.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0-beta.1.zip\";s:10:\"6.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0-rc.1.zip\";s:10:\"6.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0-rc.2.zip\";s:5:\"6.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.1.zip\";s:5:\"6.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.0.zip\";s:12:\"6.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.0-beta.1.zip\";s:10:\"6.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.0-rc.1.zip\";s:5:\"6.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.1.zip\";s:5:\"6.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0.zip\";s:12:\"6.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0-beta.1.zip\";s:10:\"6.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0-rc.1.zip\";s:10:\"6.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0-rc.2.zip\";s:5:\"6.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.1.zip\";s:5:\"6.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0.zip\";s:12:\"6.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0-beta.1.zip\";s:10:\"6.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0-rc.1.zip\";s:10:\"6.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0-rc.2.zip\";s:5:\"6.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.1.zip\";s:5:\"6.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0.zip\";s:12:\"6.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0-beta.1.zip\";s:12:\"6.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0-beta.2.zip\";s:10:\"6.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0-rc.1.zip\";s:5:\"6.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0.zip\";s:12:\"6.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0-beta.1.zip\";s:12:\"6.8.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0-beta.2.zip\";s:10:\"6.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0-rc.1.zip\";s:5:\"6.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.1.zip\";s:5:\"6.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.2.zip\";s:5:\"6.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0.zip\";s:12:\"6.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0-beta.1.zip\";s:12:\"6.9.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0-beta.2.zip\";s:10:\"6.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0-rc.1.zip\";s:5:\"6.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.1.zip\";s:5:\"6.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.2.zip\";s:5:\"6.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.3.zip\";s:5:\"6.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.4.zip\";s:5:\"7.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0.zip\";s:12:\"7.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.1.zip\";s:12:\"7.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.2.zip\";s:12:\"7.0.0-beta.3\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.3.zip\";s:10:\"7.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-rc.1.zip\";s:10:\"7.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-rc.2.zip\";s:5:\"7.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.1.zip\";s:5:\"7.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0.zip\";s:12:\"7.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.1.zip\";s:12:\"7.1.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.2.zip\";s:10:\"7.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-rc.1.zip\";s:10:\"7.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-rc.2.zip\";s:5:\"7.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.1.zip\";s:5:\"7.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0.zip\";s:12:\"7.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-beta.1.zip\";s:12:\"7.2.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-beta.2.zip\";s:10:\"7.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-rc.1.zip\";s:10:\"7.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-rc.2.zip\";s:5:\"7.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.1.zip\";s:5:\"7.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.2.zip\";s:5:\"7.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.3.zip\";s:5:\"7.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0.zip\";s:12:\"7.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-beta.1.zip\";s:12:\"7.3.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-beta.2.zip\";s:10:\"7.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-rc.1.zip\";s:10:\"7.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-rc.2.zip\";s:5:\"7.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0.zip\";s:12:\"7.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-beta.1.zip\";s:12:\"7.4.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-beta.2.zip\";s:10:\"7.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-rc.1.zip\";s:10:\"7.4.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-rc.2.zip\";s:5:\"7.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.1.zip\";s:5:\"7.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0.zip\";s:12:\"7.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0-beta.1.zip\";s:12:\"7.5.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0-beta.2.zip\";s:10:\"7.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0-rc.1.zip\";s:5:\"7.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.1.zip\";s:5:\"7.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0.zip\";s:12:\"7.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-beta.1.zip\";s:12:\"7.6.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-beta.2.zip\";s:10:\"7.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.1.zip\";s:10:\"7.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.2.zip\";s:10:\"7.6.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.3.zip\";s:5:\"7.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.1.zip\";s:5:\"7.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0.zip\";s:12:\"7.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0-beta.1.zip\";s:12:\"7.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0-beta.2.zip\";s:10:\"7.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0-rc.1.zip\";s:5:\"7.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.1.zip\";s:5:\"7.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.2.zip\";s:5:\"7.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0.zip\";s:12:\"7.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-beta.1.zip\";s:12:\"7.8.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-beta.2.zip\";s:10:\"7.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-rc.1.zip\";s:10:\"7.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-rc.2.zip\";s:5:\"7.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.1.zip\";s:5:\"7.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.2.zip\";s:5:\"7.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.3.zip\";s:5:\"7.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0.zip\";s:12:\"7.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-beta.1.zip\";s:12:\"7.9.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-beta.2.zip\";s:10:\"7.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-rc.2.zip\";s:10:\"7.9.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-rc.3.zip\";s:5:\"7.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.1.zip\";s:5:\"8.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0.zip\";s:12:\"8.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-beta.1.zip\";s:12:\"8.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-beta.2.zip\";s:10:\"8.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-rc.1.zip\";s:10:\"8.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-rc.2.zip\";s:5:\"8.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.1.zip\";s:5:\"8.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.2.zip\";s:5:\"8.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.3.zip\";s:5:\"8.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.4.zip\";s:5:\"8.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.0.zip\";s:12:\"8.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.0-beta.1.zip\";s:10:\"8.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.0-rc.1.zip\";s:10:\"8.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.0-rc.2.zip\";s:5:\"8.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.1.zip\";s:5:\"8.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.2.zip\";s:5:\"8.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.0.zip\";s:12:\"8.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.0-beta.1.zip\";s:10:\"8.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.0-rc.1.zip\";s:10:\"8.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.0-rc.2.zip\";s:5:\"8.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.1.zip\";s:5:\"8.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.2.zip\";s:5:\"8.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.3.zip\";s:5:\"8.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.0.zip\";s:12:\"8.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.0-beta.1.zip\";s:10:\"8.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.0-rc.1.zip\";s:10:\"8.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.0-rc.2.zip\";s:5:\"8.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.1.zip\";s:5:\"8.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.2.zip\";s:5:\"8.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.0.zip\";s:12:\"8.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.0-beta.1.zip\";s:10:\"8.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.0-rc.1.zip\";s:5:\"8.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.1.zip\";s:5:\"8.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.0.zip\";s:12:\"8.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.0-beta.1.zip\";s:10:\"8.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.0-rc.1.zip\";s:5:\"8.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.1.zip\";s:5:\"8.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.2.zip\";s:5:\"8.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.3.zip\";s:5:\"8.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.0.zip\";s:12:\"8.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.0-beta.1.zip\";s:10:\"8.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.0-rc.1.zip\";s:5:\"8.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.1.zip\";s:5:\"8.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.2.zip\";s:5:\"8.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.0.zip\";s:12:\"8.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.0-beta.1.zip\";s:12:\"8.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.0-beta.2.zip\";s:10:\"8.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.0-rc.1.zip\";s:5:\"8.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.1.zip\";s:5:\"8.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.0.zip\";s:12:\"8.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.0-beta.1.zip\";s:10:\"8.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.0-rc.1.zip\";s:5:\"8.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.1.zip\";s:5:\"8.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.2.zip\";s:5:\"8.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.3.zip\";s:5:\"8.8.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.4.zip\";s:5:\"8.8.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.5.zip\";s:5:\"8.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.0.zip\";s:12:\"8.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.0-beta.1.zip\";s:10:\"8.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.0-rc.1.zip\";s:5:\"8.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.1.zip\";s:5:\"8.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.2.zip\";s:5:\"8.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.3.zip\";s:5:\"9.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.0.zip\";s:12:\"9.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.0-beta.1.zip\";s:12:\"9.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.0-beta.2.zip\";s:10:\"9.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.0-rc.1.zip\";s:5:\"9.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.1.zip\";s:5:\"9.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.2.zip\";s:5:\"9.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.0.zip\";s:12:\"9.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.0-beta.1.zip\";s:10:\"9.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.0-rc.1.zip\";s:5:\"9.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.1.zip\";s:5:\"9.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.2.zip\";s:5:\"9.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.3.zip\";s:5:\"9.1.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.4.zip\";s:5:\"9.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.0.zip\";s:12:\"9.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.0-beta.1.zip\";s:10:\"9.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.0-rc.1.zip\";s:5:\"9.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.1.zip\";s:5:\"9.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.2.zip\";s:5:\"9.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.3.zip\";s:5:\"9.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.0.zip\";s:12:\"9.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.0-beta.1.zip\";s:10:\"9.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.0-rc.1.zip\";s:5:\"9.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.1.zip\";s:5:\"9.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.2.zip\";s:5:\"9.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.3.zip\";s:12:\"9.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.0-beta.1.zip\";s:12:\"9.4.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.0-beta.2.zip\";s:10:\"9.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.1.zip\";s:5:\"trunk\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";}s:14:\"business_model\";s:10:\"commercial\";s:14:\"repository_url\";s:0:\"\";s:22:\"commercial_support_url\";s:0:\"\";s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";s:4:\"high\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";}s:12:\"preview_link\";s:0:\"\";s:4:\"Name\";s:11:\"WooCommerce\";}}','off'),
(5619304,'elementor_pro_remote_info_api_data_3.19.2','a:2:{s:7:\"timeout\";i:1715087091;s:5:\"value\";s:218381:\"{\"stable_version\":\"3.21.2\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:203750:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.21.2\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzE1MDQzNTEwLCJleHAiOjE3MTUxMjk5MTB9.m7P1RAwI701MH095R2-5YtqHa9XY6Y9Jwjqy6Pfy0jc\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzE1MDQzNTEwLCJleHAiOjE3MTUxMjk5MTB9.m7P1RAwI701MH095R2-5YtqHa9XY6Y9Jwjqy6Pfy0jc\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.5.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJpYXQiOjE3MTUwNDM1MTAsImV4cCI6MTcxNTEyOTkxMH0.RTtv5X96yyzETmNKIkLfIQ01CPneI51LwBMLfGrUE1A\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJpYXQiOjE3MTUwNDM1MTAsImV4cCI6MTcxNTEyOTkxMH0.RTtv5X96yyzETmNKIkLfIQ01CPneI51LwBMLfGrUE1A\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}','no'),
(5620874,'wpmautic_options','a:4:{s:8:\"base_url\";s:35:\"https://email.choiceresources.co.uk\";s:15:\"script_location\";s:6:\"footer\";s:18:\"fallback_activated\";b:0;s:17:\"track_logged_user\";b:0;}','yes'),
(5621951,'updraft_lock_ce52c896aeae','1715084399','no'),
(5623002,'wc_stripe_wh_monitor_began_at','1715116364','yes'),
(5623003,'wc_stripe_wh_last_success_at','0','yes'),
(5623004,'wc_stripe_wh_last_failure_at','0','yes'),
(5623005,'wc_stripe_wh_last_error','validation_succeeded','yes'),
(5623007,'wc_stripe_show_style_notice','no','yes'),
(5623008,'wc_stripe_show_sca_notice','no','yes'),
(5623009,'wc_stripe_version','8.2.0','yes'),
(5623052,'woocommerce_stripe_settings','a:28:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:20:\"Credit Card (Stripe)\";s:11:\"description\";s:37:\"Pay with your credit card via Stripe.\";s:15:\"api_credentials\";s:0:\"\";s:8:\"testmode\";s:3:\"yes\";s:20:\"test_publishable_key\";s:0:\"\";s:15:\"test_secret_key\";s:0:\"\";s:15:\"publishable_key\";s:107:\"pk_live_51PDvRHIJpRsKKplR5bMEblmJFzwR20ZEqW8lkBVCONtco9izX44CuRrbYA02BGXmb2eXJRzdd3cYflSSVM6P0eHY00jzBNvG6s\";s:10:\"secret_key\";s:107:\"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\";s:7:\"webhook\";s:0:\"\";s:19:\"test_webhook_secret\";s:38:\"whsec_4pZIV83sPZyw5JNp8tqo04qL3Wr2Mxkt\";s:14:\"webhook_secret\";s:38:\"whsec_4pZIV83sPZyw5JNp8tqo04qL3Wr2Mxkt\";s:14:\"inline_cc_form\";s:2:\"no\";s:20:\"statement_descriptor\";s:0:\"\";s:26:\"short_statement_descriptor\";s:0:\"\";s:7:\"capture\";s:3:\"yes\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:27:\"payment_request_button_size\";s:7:\"default\";s:11:\"saved_cards\";s:3:\"yes\";s:7:\"logging\";s:2:\"no\";s:31:\"upe_checkout_experience_enabled\";s:3:\"yes\";s:41:\"upe_checkout_experience_accepted_payments\";a:2:{i:0;s:4:\"card\";i:1;s:4:\"link\";}s:25:\"apple_pay_verified_domain\";s:21:\"choiceresources.co.uk\";s:20:\"apple_pay_domain_set\";s:3:\"yes\";s:37:\"is_short_statement_descriptor_enabled\";s:2:\"no\";}','yes'),
(5623124,'wc_stripe_wh_test_monitor_began_at','1715119737','yes'),
(5623125,'wc_stripe_wh_test_last_success_at','0','yes'),
(5623126,'wc_stripe_wh_test_last_failure_at','0','yes'),
(5623127,'wc_stripe_wh_test_last_error','validation_succeeded','yes'),
(5623169,'jetpack_sync_settings_disable','0','yes'),
(5623174,'widget_currency_switcher_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(5623175,'woocommerce_woocommerce_payments_settings','a:23:{s:7:\"enabled\";s:3:\"yes\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:3:\"yes\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";s:17:\"platform_checkout\";s:3:\"yes\";s:35:\"payment_request_button_branded_type\";s:0:\"\";s:25:\"apple_pay_verified_domain\";s:21:\"choiceresources.co.uk\";s:20:\"apple_pay_domain_set\";s:3:\"yes\";s:25:\"reporting_export_language\";s:0:\"\";s:28:\"platform_checkout_store_logo\";s:0:\"\";}','yes'),
(5623176,'woocommerce_woocommerce_payments_bancontact_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623177,'woocommerce_woocommerce_payments_sepa_debit_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623178,'woocommerce_woocommerce_payments_giropay_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623179,'woocommerce_woocommerce_payments_sofort_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623180,'woocommerce_woocommerce_payments_p24_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623181,'woocommerce_woocommerce_payments_ideal_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623182,'woocommerce_woocommerce_payments_au_becs_debit_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623183,'woocommerce_woocommerce_payments_eps_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623184,'woocommerce_woocommerce_payments_link_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623185,'woocommerce_woocommerce_payments_affirm_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623186,'woocommerce_woocommerce_payments_afterpay_clearpay_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623187,'woocommerce_woocommerce_payments_klarna_settings','a:17:{s:7:\"enabled\";s:2:\"no\";s:28:\"account_statement_descriptor\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:6:\"medium\";s:34:\"platform_checkout_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:32:\"platform_checkout_custom_message\";s:84:\"By placing this order, you agree to our [terms] and understand our [privacy_policy].\";}','yes'),
(5623188,'wcpay_activation_timestamp','1715120049','yes'),
(5623189,'woocommerce_woocommerce_payments_version','7.5.3','yes'),
(5623190,'wcpay_multi_currency_store_currency','GBP','yes'),
(5623192,'wcpay_multi_currency_stored_customer_currencies','a:1:{i:0;s:3:\"GBP\";}','yes'),
(5623194,'wcpay_connect_incentive','a:3:{s:4:\"data\";a:3:{s:9:\"incentive\";a:0:{}s:3:\"ttl\";i:86400;s:12:\"context_hash\";s:32:\"abd9a4d7440d2169e0851af460f24256\";}s:7:\"fetched\";i:1715120051;s:7:\"errored\";b:0;}','no'),
(5623200,'wcpay_fraud_services_data','a:3:{s:4:\"data\";a:2:{s:6:\"stripe\";a:0:{}s:4:\"sift\";a:2:{s:10:\"beacon_key\";s:10:\"affbdadb36\";s:18:\"sandbox_beacon_key\";s:10:\"6ad0ad748b\";}}s:7:\"fetched\";i:1715120053;s:7:\"errored\";b:0;}','no'),
(5623201,'wcpay_session_store_id','st_D2fpvX-vnsAH3dcpQrxeQy6JMOvTp','yes'),
(5623207,'jetpack_tos_agreed','1','yes'),
(5623208,'jetpack_secrets','a:0:{}','no'),
(5623209,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),
(5623210,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),
(5623211,'_transient_jetpack_assumed_site_creation_date','2021-03-30 03:15:01','yes'),
(5623213,'jetpack_package_versions','a:2:{s:10:\"connection\";s:5:\"2.1.1\";s:4:\"sync\";s:5:\"2.4.0\";}','yes'),
(5623214,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"qsWKZ9j^r)DgJCJ3H4eBf8CDQoiDE0!z.Sn4#pu4PktG(TAtt1fsnnX9&3wyiU@X*\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"m3FBOOVU3w$XFUzamFnXgf2@4ghSmPrX.p)b9LaKPH6IQTHSnTg)fXwW(Bwg)PQtD.1\";}}','yes'),
(5623215,'jetpack_sync_settings_custom_queue_table_enabled','1','yes'),
(5623216,'jetpack_sync_settings_max_queue_size','5000','yes'),
(5623217,'jetpack_sync_settings_max_queue_lag','7200','yes'),
(5623222,'jetpack_sync_settings_dedicated_sync_enabled','1','on'),
(5623226,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),
(5623227,'jetpack_sync_settings_upload_max_bytes','600000','yes'),
(5623228,'jetpack_sync_settings_upload_max_rows','500','yes'),
(5623229,'jetpack_sync_settings_sync_wait_time','10','yes'),
(5623230,'jetpack_sync_settings_sync_wait_threshold','10','yes'),
(5623231,'jetpack_sync_settings_enqueue_wait_time','1','yes'),
(5623232,'jetpack_sync_settings_queue_max_writes_sec','100','yes');
INSERT INTO `wphu_options` VALUES
(5623233,'jetpack_sync_settings_post_types_blacklist','a:37:{i:0;s:10:\"_term_meta\";i:1;s:11:\"ai1ec_event\";i:2;s:6:\"ai_log\";i:3;s:17:\"amp_validated_url\";i:4;s:9:\"bwg_album\";i:5;s:11:\"bwg_gallery\";i:6;s:19:\"customize_changeset\";i:7;s:12:\"dn_wp_yt_log\";i:8;s:16:\"flamingo_contact\";i:9;s:16:\"flamingo_inbound\";i:10;s:17:\"flamingo_outbound\";i:11;s:4:\"http\";i:12;s:8:\"idx_page\";i:13;s:19:\"jetpack_inspect_log\";i:14;s:17:\"jetpack_migration\";i:15;s:14:\"jp_img_sitemap\";i:16;s:20:\"jp_img_sitemap_index\";i:17;s:10:\"jp_sitemap\";i:18;s:16:\"jp_sitemap_index\";i:19;s:17:\"jp_sitemap_master\";i:20;s:14:\"jp_vid_sitemap\";i:21;s:20:\"jp_vid_sitemap_index\";i:22;s:11:\"msm_sitemap\";i:23;s:17:\"postman_sent_mail\";i:24;s:10:\"rssap-feed\";i:25;s:15:\"rssmi_feed_item\";i:26;s:16:\"scheduled-action\";i:27;s:20:\"secupress_log_action\";i:28;s:17:\"sg_optimizer_jobs\";i:29;s:14:\"sl-insta-media\";i:30;s:6:\"snitch\";i:31;s:19:\"vip-legacy-redirect\";i:32;s:15:\"wp-rest-api-log\";i:33;s:12:\"wp_automatic\";i:34;s:6:\"wp_log\";i:35;s:17:\"wpephpcompat_jobs\";i:36;s:15:\"wprss_feed_item\";}','yes'),
(5623235,'jetpack_sync_settings_taxonomies_blacklist','a:149:{i:0;s:9:\"ancestors\";i:1;s:13:\"archives_link\";i:2;s:13:\"attached_file\";i:3;s:14:\"attached_media\";i:4;s:19:\"attached_media_args\";i:5;s:10:\"attachment\";i:6;s:19:\"available_languages\";i:7;s:6:\"avatar\";i:8;s:20:\"avatar_comment_types\";i:9;s:11:\"avatar_data\";i:10;s:10:\"avatar_url\";i:11;s:12:\"bloginfo_rss\";i:12;s:13:\"blogs_of_user\";i:13;s:13:\"bookmark_link\";i:14;s:9:\"bookmarks\";i:15;s:8:\"calendar\";i:16;s:13:\"canonical_url\";i:17;s:19:\"categories_per_page\";i:18;s:19:\"categories_taxonomy\";i:19;s:13:\"category_form\";i:20;s:20:\"category_form_fields\";i:21;s:17:\"category_form_pre\";i:22;s:7:\"comment\";i:23;s:10:\"comment_ID\";i:24;s:14:\"comment_author\";i:25;s:17:\"comment_author_IP\";i:26;s:20:\"comment_author_email\";i:27;s:19:\"comment_author_link\";i:28;s:18:\"comment_author_url\";i:29;s:23:\"comment_author_url_link\";i:30;s:12:\"comment_date\";i:31;s:15:\"comment_excerpt\";i:32;s:12:\"comment_link\";i:33;s:20:\"comment_misc_actions\";i:34;s:12:\"comment_text\";i:35;s:12:\"comment_time\";i:36;s:12:\"comment_type\";i:37;s:13:\"comments_link\";i:38;s:15:\"comments_number\";i:39;s:21:\"comments_pagenum_link\";i:40;s:11:\"custom_logo\";i:41;s:8:\"date_sql\";i:42;s:22:\"default_comment_status\";i:43;s:16:\"delete_post_link\";i:44;s:18:\"edit_bookmark_link\";i:45;s:17:\"edit_comment_link\";i:46;s:14:\"edit_post_link\";i:47;s:13:\"edit_tag_link\";i:48;s:14:\"edit_term_link\";i:49;s:14:\"edit_user_link\";i:50;s:8:\"enclosed\";i:51;s:15:\"feed_build_date\";i:52;s:13:\"form_advanced\";i:53;s:17:\"form_after_editor\";i:54;s:16:\"form_after_title\";i:55;s:21:\"form_before_permalink\";i:56;s:8:\"form_top\";i:57;s:18:\"handle_product_cat\";i:58;s:16:\"header_image_tag\";i:59;s:16:\"header_video_url\";i:60;s:9:\"image_tag\";i:61;s:15:\"image_tag_class\";i:62;s:12:\"lastpostdate\";i:63;s:16:\"lastpostmodified\";i:64;s:4:\"link\";i:65;s:18:\"link_category_form\";i:66;s:25:\"link_category_form_fields\";i:67;s:22:\"link_category_form_pre\";i:68;s:15:\"main_network_id\";i:69;s:5:\"media\";i:70;s:15:\"media_item_args\";i:71;s:7:\"ms_user\";i:72;s:7:\"network\";i:73;s:12:\"object_terms\";i:74;s:6:\"option\";i:75;s:4:\"page\";i:76;s:9:\"page_form\";i:77;s:15:\"page_of_comment\";i:78;s:8:\"page_uri\";i:79;s:12:\"pagenum_link\";i:80;s:5:\"pages\";i:81;s:6:\"plugin\";i:82;s:4:\"post\";i:83;s:14:\"post_galleries\";i:84;s:12:\"post_gallery\";i:85;s:9:\"post_link\";i:86;s:18:\"post_modified_time\";i:87;s:11:\"post_status\";i:88;s:9:\"post_time\";i:89;s:8:\"postmeta\";i:90;s:14:\"posts_per_page\";i:91;s:19:\"product_search_form\";i:92;s:11:\"profile_url\";i:93;s:4:\"pung\";i:94;s:9:\"role_list\";i:95;s:16:\"sample_permalink\";i:96;s:21:\"sample_permalink_html\";i:97;s:8:\"schedule\";i:98;s:11:\"search_form\";i:99;s:12:\"search_query\";i:100;s:9:\"shortlink\";i:101;s:4:\"site\";i:102;s:18:\"site_email_content\";i:103;s:13:\"site_icon_url\";i:104;s:11:\"site_option\";i:105;s:13:\"space_allowed\";i:106;s:3:\"tag\";i:107;s:8:\"tag_form\";i:108;s:15:\"tag_form_fields\";i:109;s:12:\"tag_form_pre\";i:110;s:8:\"tag_link\";i:111;s:4:\"tags\";i:112;s:13:\"tags_per_page\";i:113;s:4:\"term\";i:114;s:9:\"term_link\";i:115;s:18:\"term_relationships\";i:116;s:15:\"term_taxonomies\";i:117;s:13:\"term_taxonomy\";i:118;s:5:\"terms\";i:119;s:10:\"terms_args\";i:120;s:14:\"terms_defaults\";i:121;s:12:\"terms_fields\";i:122;s:13:\"terms_orderby\";i:123;s:23:\"the_archive_description\";i:124;s:17:\"the_archive_title\";i:125;s:14:\"the_categories\";i:126;s:8:\"the_date\";i:127;s:11:\"the_excerpt\";i:128;s:8:\"the_guid\";i:129;s:17:\"the_modified_date\";i:130;s:17:\"the_modified_time\";i:131;s:25:\"the_post_type_description\";i:132;s:8:\"the_tags\";i:133;s:9:\"the_terms\";i:134;s:8:\"the_time\";i:135;s:21:\"theme_starter_content\";i:136;s:7:\"to_ping\";i:137;s:4:\"user\";i:138;s:17:\"user_created_user\";i:139;s:9:\"user_form\";i:140;s:12:\"user_profile\";i:141;s:19:\"user_profile_update\";i:142;s:8:\"usermeta\";i:143;s:12:\"usernumposts\";i:144;s:12:\"users_drafts\";i:145;s:7:\"webhook\";i:146;s:6:\"widget\";i:147;s:19:\"woocommerce_archive\";i:148;s:12:\"wp_title_rss\";}','yes'),
(5623237,'jetpack_sync_settings_render_filtered_content','0','yes'),
(5623238,'jetpack_sync_settings_post_meta_whitelist','a:72:{i:0;s:11:\"_visibility\";i:1;s:4:\"_sku\";i:2;s:6:\"_price\";i:3;s:14:\"_regular_price\";i:4;s:11:\"_sale_price\";i:5;s:22:\"_sale_price_dates_from\";i:6;s:20:\"_sale_price_dates_to\";i:7;s:11:\"total_sales\";i:8;s:11:\"_tax_status\";i:9;s:10:\"_tax_class\";i:10;s:13:\"_manage_stock\";i:11;s:11:\"_backorders\";i:12;s:18:\"_sold_individually\";i:13;s:7:\"_weight\";i:14;s:7:\"_length\";i:15;s:6:\"_width\";i:16;s:7:\"_height\";i:17;s:11:\"_upsell_ids\";i:18;s:14:\"_crosssell_ids\";i:19;s:14:\"_purchase_note\";i:20;s:19:\"_default_attributes\";i:21;s:19:\"_product_attributes\";i:22;s:8:\"_virtual\";i:23;s:13:\"_downloadable\";i:24;s:15:\"_download_limit\";i:25;s:16:\"_download_expiry\";i:26;s:9:\"_featured\";i:27;s:19:\"_downloadable_files\";i:28;s:16:\"_wc_rating_count\";i:29;s:18:\"_wc_average_rating\";i:30;s:16:\"_wc_review_count\";i:31;s:22:\"_variation_description\";i:32;s:13:\"_thumbnail_id\";i:33;s:11:\"_file_paths\";i:34;s:22:\"_product_image_gallery\";i:35;s:16:\"_product_version\";i:36;s:12:\"_wp_old_slug\";i:37;s:10:\"_order_key\";i:38;s:15:\"_order_currency\";i:39;s:13:\"_billing_city\";i:40;s:14:\"_billing_state\";i:41;s:17:\"_billing_postcode\";i:42;s:16:\"_billing_country\";i:43;s:14:\"_shipping_city\";i:44;s:15:\"_shipping_state\";i:45;s:18:\"_shipping_postcode\";i:46;s:17:\"_shipping_country\";i:47;s:15:\"_completed_date\";i:48;s:10:\"_paid_date\";i:49;s:14:\"_cart_discount\";i:50;s:18:\"_cart_discount_tax\";i:51;s:15:\"_order_shipping\";i:52;s:19:\"_order_shipping_tax\";i:53;s:10:\"_order_tax\";i:54;s:12:\"_order_total\";i:55;s:15:\"_payment_method\";i:56;s:21:\"_payment_method_title\";i:57;s:12:\"_created_via\";i:58;s:14:\"_order_version\";i:59;s:19:\"_prices_include_tax\";i:60;s:15:\"_date_completed\";i:61;s:10:\"_date_paid\";i:62;s:15:\"_payment_tokens\";i:63;s:22:\"_billing_address_index\";i:64;s:23:\"_shipping_address_index\";i:65;s:15:\"_recorded_sales\";i:66;s:29:\"_recorded_coupon_usage_counts\";i:67;s:29:\"_download_permissions_granted\";i:68;s:20:\"_order_stock_reduced\";i:70;s:14:\"_refund_amount\";i:71;s:12:\"_refunded_by\";i:72;s:14:\"_refund_reason\";}','yes'),
(5623240,'jetpack_sync_settings_comment_meta_whitelist','a:1:{i:0;s:6:\"rating\";}','yes'),
(5623242,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),
(5623243,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),
(5623244,'jetpack_sync_settings_sync_via_cron','1','yes'),
(5623245,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),
(5623246,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),
(5623247,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),
(5623248,'jetpack_sync_settings_sync_sender_enabled','1','yes'),
(5623249,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),
(5623250,'jetpack_sync_settings_full_sync_send_duration','9','yes'),
(5623251,'jetpack_sync_settings_full_sync_limits','a:5:{s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}}','yes'),
(5623252,'jetpack_sync_settings_checksum_disable','0','yes'),
(5623255,'jetpack_plugin_api_action_links','a:23:{s:23:\"cartflows/cartflows.php\";a:3:{s:8:\"Settings\";s:74:\"https://choiceresources.co.uk/wp-admin/admin.php?page=cartflows&settings=1\";s:4:\"Docs\";s:96:\"https://cartflows.com/docs/?utm_source=plugin-page&utm_medium=free-cartflows&utm_campaign=go-pro\";s:8:\" Go Pro \";s:99:\"https://cartflows.com/pricing/?utm_source=plugin-page&utm_medium=free-cartflows&utm_campaign=go-pro\";}s:25:\"convertful/convertful.php\";a:1:{s:8:\"Settings\";s:67:\"https://choiceresources.co.uk/wp-admin/tools.php?page=conv-settings\";}s:35:\"cookie-law-info/cookie-law-info.php\";a:2:{s:8:\"Settings\";s:69:\"https://choiceresources.co.uk/wp-admin/admin.php?page=cookie-law-info\";s:7:\"Support\";s:34:\"https://www.cookieyes.com/support/\";}s:39:\"copy-delete-posts/copy-delete-posts.php\";a:1:{s:8:\"Settings\";s:71:\"https://choiceresources.co.uk/wp-admin/admin.php?page=copy-delete-posts\";}s:87:\"woo-product-country-base-restrictions/woocommerce-product-country-base-restrictions.php\";a:4:{s:8:\"Settings\";s:99:\"https://choiceresources.co.uk/wp-admin/admin.php?page=woocommerce-product-country-base-restrictions\";s:4:\"Docs\";s:70:\"https://www.zorem.com/docs/country-based-restrictions-for-woocommerce/\";s:6:\"Review\";s:92:\"https://wordpress.org/support/plugin/woo-product-country-base-restrictions/reviews/#new-post\";s:6:\"Go Pro\";s:61:\"https://www.zorem.com/products/country-based-restriction-pro/\";}s:23:\"elementor/elementor.php\";a:1:{s:8:\"Settings\";s:63:\"https://choiceresources.co.uk/wp-admin/admin.php?page=elementor\";}s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";a:2:{s:8:\"Settings\";s:98:\"https://choiceresources.co.uk/wp-admin/options-general.php?page=erident-custom-login-and-dashboard\";s:7:\"Support\";s:72:\"https://wordpress.org/support/plugin/erident-custom-login-and-dashboard/\";}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";a:2:{s:8:\"Settings\";s:67:\"https://choiceresources.co.uk/wp-admin/admin.php?page=eael-settings\";s:6:\"Go Pro\";s:61:\"https://wpdeveloper.com/in/upgrade-essential-addons-elementor\";}s:27:\"fluent-smtp/fluent-smtp.php\";a:1:{s:8:\"Settings\";s:88:\"https://choiceresources.co.uk/wp-admin/options-general.php?page=fluent-mail#/connections\";}s:25:\"forminator/forminator.php\";a:3:{s:9:\"Dashboard\";s:64:\"https://choiceresources.co.uk/wp-admin/admin.php?page=forminator\";s:4:\"Docs\";s:133:\"https://wpmudev.com/docs/wpmu-dev-plugins/forminator/?utm_source=forminator&utm_medium=plugin&utm_campaign=forminator_pluginlist_docs\";s:20:\"Upgrade For 80% Off!\";s:124:\"https://wpmudev.com/project/forminator-pro/?utm_source=forminator&utm_medium=plugin&utm_campaign=forminator_pluginlist_renew\";}s:31:\"creame-whatsapp-me/joinchat.php\";a:2:{s:8:\"Settings\";s:62:\"https://choiceresources.co.uk/wp-admin/admin.php?page=joinchat\";s:7:\"Premium\";s:87:\"https://join.chat/en/premium/?utm_source=action&utm_medium=wpadmin&utm_campaign=v5_0_17\";}s:42:\"peters-login-redirect/wplogin_redirect.php\";a:2:{s:8:\"Settings\";s:74:\"https://choiceresources.co.uk/wp-admin/admin.php?page=loginwp-redirections\";s:10:\"Go Premium\";s:96:\"https://loginwp.com/pricing/?utm_source=wp_dashboard&utm_medium=upgrade&utm_campaign=action_link\";}s:47:\"woolentor-addons/woolentor_addons_elementor.php\";a:2:{s:8:\"Settings\";s:63:\"https://choiceresources.co.uk/wp-admin/admin.php?page=woolentor\";s:6:\"Go Pro\";s:83:\"https://woolentor.com/pricing/?utm_source=admin&utm_medium=notice&utm_campaign=free\";}s:35:\"google-site-kit/google-site-kit.php\";a:1:{s:8:\"Settings\";s:76:\"https://choiceresources.co.uk/wp-admin/admin.php?page=googlesitekit-settings\";}s:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";a:2:{s:7:\"Upgrade\";s:100:\"https://choiceresources.co.uk/wp-admin/admin.php?billing_cycle=annual&page=unlimitedelements-pricing\";s:6:\"Opt In\";s:141:\"https://choiceresources.co.uk/wp-admin/admin.php?nonce=3c7adaebfe&fs_action=unlimited-elements-for-elementor_reconnect&page=unlimitedelements\";}s:27:\"updraftplus/updraftplus.php\";a:3:{s:21:\"Premium / Pro Support\";s:24:\"https://updraftplus.com/\";s:8:\"Settings\";s:75:\"https://choiceresources.co.uk/wp-admin/options-general.php?page=updraftplus\";s:9:\"Take Tour\";s:94:\"https://choiceresources.co.uk/wp-admin/options-general.php?page=updraftplus&updraftplus_tour=1\";}s:27:\"woocommerce/woocommerce.php\";a:1:{s:8:\"Settings\";s:65:\"https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings\";}s:93:\"woocommerce-gateway-amazon-payments-advanced/woocommerce-gateway-amazon-payments-advanced.php\";a:3:{s:8:\"Settings\";s:111:\"https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=amazon_payments_advanced\";s:7:\"Support\";s:29:\"https://docs.woocommerce.com/\";s:4:\"Docs\";s:63:\"https://docs.woocommerce.com/document/amazon-payments-advanced/\";}s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";a:1:{s:8:\"Settings\";s:83:\"https://choiceresources.co.uk/wp-admin/admin.php?page=woo-cart-abandonment-recovery\";}s:51:\"woocommerce-memberships/woocommerce-memberships.php\";a:4:{s:5:\"Setup\";s:74:\"https://choiceresources.co.uk/wp-admin/index.php?page=wc-memberships-setup\";s:4:\"Docs\";s:62:\"https://docs.woocommerce.com/document/woocommerce-memberships/\";s:7:\"Support\";s:43:\"https://woocommerce.com/my-account/tickets/\";s:6:\"Review\";s:66:\"https://woocommerce.com/products/woocommerce-memberships/#comments\";}s:55:\"woocommerce-subscriptions/woocommerce-subscriptions.php\";a:3:{s:8:\"Settings\";s:83:\"https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=subscriptions\";s:4:\"Docs\";s:51:\"http://docs.woocommerce.com/document/subscriptions/\";s:7:\"Support\";s:59:\"https://woocommerce.com/my-account/marketplace-ticket-form/\";}s:45:\"woocommerce-payments/woocommerce-payments.php\";a:1:{s:8:\"Settings\";s:107:\"https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments\";}s:22:\"wp-mautic/wpmautic.php\";a:1:{s:8:\"Settings\";s:72:\"https://choiceresources.co.uk/wp-admin/options-general.php?page=wpmautic\";}}','yes'),
(5623270,'jetpack_callables_sync_checksum','a:10:{s:8:\"site_url\";i:2731058229;s:8:\"home_url\";i:2731058229;s:11:\"get_plugins\";i:3487746698;s:10:\"get_themes\";i:884110318;s:14:\"paused_plugins\";i:223132457;s:13:\"paused_themes\";i:223132457;s:8:\"timezone\";i:3808505409;s:23:\"wp_get_environment_type\";i:1138987844;s:18:\"wp_max_upload_size\";i:677931734;s:10:\"wp_version\";i:3055508252;}','no'),
(5623294,'jetpack_constants_sync_checksum','a:32:{s:7:\"ABSPATH\";i:3689871974;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:16:\"ATOMIC_CLIENT_ID\";i:634125391;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:9:\"FS_METHOD\";i:634125391;s:12:\"IS_PRESSABLE\";i:634125391;s:11:\"PHP_VERSION\";i:2642017422;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:14:\"WP_CONTENT_DIR\";i:1117719519;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:8:\"WP_DEBUG\";i:734881840;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1687072552;s:15:\"WP_MEMORY_LIMIT\";i:1839787262;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:14:\"WC_PLUGIN_FILE\";i:2732821856;s:10:\"WC_ABSPATH\";i:419302630;s:18:\"WC_PLUGIN_BASENAME\";i:1149093810;s:10:\"WC_VERSION\";i:2661324162;s:19:\"WOOCOMMERCE_VERSION\";i:2661324162;s:21:\"WC_ROUNDING_PRECISION\";i:498629140;s:25:\"WC_DISCOUNT_ROUNDING_MODE\";i:450215437;s:20:\"WC_TAX_ROUNDING_MODE\";i:2212294583;s:12:\"WC_DELIMITER\";i:2455911554;s:10:\"WC_LOG_DIR\";i:3368406176;s:22:\"WC_SESSION_CACHE_GROUP\";i:4278978988;s:22:\"WC_TEMPLATE_DEBUG_MODE\";i:734881840;}','yes'),
(5623295,'jpsq_sync_checkout','0:0','no'),
(5623301,'jpsq_sync-1715120076.072810-3060-6','a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:48:\"jetpack_sync_settings_custom_queue_table_enabled\";i:1;s:1:\"0\";i:2;i:1;}i:2;i:0;i:3;d:1715120076.07256;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:1;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:265:\"https://choiceresources.co.uk/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fsettings&_for=jetpack&token=qsWKZ9j%5Er%29DgJCJ3H4eBf8CDQoiDE0%21z%3A1%3A0&timestamp=1715120076&nonce=arl4T6UjlZ&body-hash=p03riSqJgAEbjpEe4NzGVpfkolQ%3D&signature=xb9JC1sM9CION01sxL%2F4%2FxOQLL4%3D\";}}','no'),
(5623302,'jetpack_next_sync_time_sync','1721186143','on'),
(5623303,'jp_sync_lock_full_sync','','no'),
(5623306,'jetpack_next_sync_time_full-sync-enqueue','1715121166','yes'),
(5623310,'jp_sync_last_success_immediate-send','1715121165.9403','no'),
(5623312,'jp_sync_last_success_sync','1730171709.5038','off'),
(5623316,'jetpack_persistent_blog_id','188541933','no'),
(5623317,'woocommerce_setup_jetpack_opted_in','1','yes'),
(5623323,'jpsq_full_sync-1715120083.892521-884620-1','a:6:{i:0;s:21:\"jetpack_full_sync_end\";i:1;a:2:{i:0;s:0:\"\";i:1;a:0:{}}i:2;i:0;i:3;d:1715120083.892294;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:1;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:265:\"https://choiceresources.co.uk/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fsettings&_for=jetpack&token=qsWKZ9j%5Er%29DgJCJ3H4eBf8CDQoiDE0%21z%3A1%3A0&timestamp=1715120076&nonce=arl4T6UjlZ&body-hash=p03riSqJgAEbjpEe4NzGVpfkolQ%3D&signature=xb9JC1sM9CION01sxL%2F4%2FxOQLL4%3D\";}}','no'),
(5623367,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:1774635487;s:11:\"update_core\";i:3026328192;s:13:\"update_themes\";i:3321184092;}','yes'),
(5623377,'_wcpay_feature_woopay_first_party_auth','1','yes'),
(5623436,'jetpack_sync_full_status','a:4:{s:7:\"started\";i:1715121159;s:8:\"finished\";i:1715121165;s:8:\"progress\";a:3:{s:7:\"options\";a:1:{s:8:\"finished\";b:1;}s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}s:9:\"constants\";a:1:{s:8:\"finished\";b:1;}}s:6:\"config\";a:5:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}s:15:\"network_options\";b:1;}}','no'),
(5623441,'jp_sync_retry_after_immediate-send','1715121222.8866','no'),
(5623442,'jp_sync_error_log_immediate-send','a:4:{s:15:\"1715121161.7712\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:27:\"concurrent_processing_error\";a:1:{i:0;s:61:\"There is another sync processing running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:27:\"concurrent_processing_error\";a:5:{s:7:\"headers\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 07 May 2024 22:32:43 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:62:\"Want root?  Visit join.a8c.com/hacker and mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:22:\"jetpack-dedicated-sync\";s:2:\"on\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-ac\";s:17:\"4.dfw _dfw BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";}s:4:\"body\";s:472:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_processing_error] There is another sync processing running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:27:\"concurrent_processing_error\";a:1:{i:0;i:400;}}}s:15:\"1715121162.1921\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:27:\"concurrent_processing_error\";a:1:{i:0;s:61:\"There is another sync processing running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:27:\"concurrent_processing_error\";a:5:{s:7:\"headers\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 07 May 2024 22:32:43 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:62:\"Want root?  Visit join.a8c.com/hacker and mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:22:\"jetpack-dedicated-sync\";s:2:\"on\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-ac\";s:17:\"4.dfw _dfw BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";}s:4:\"body\";s:472:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_processing_error] There is another sync processing running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:27:\"concurrent_processing_error\";a:1:{i:0;i:400;}}}s:15:\"1715121162.5266\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:27:\"concurrent_processing_error\";a:1:{i:0;s:61:\"There is another sync processing running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:27:\"concurrent_processing_error\";a:5:{s:7:\"headers\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 07 May 2024 22:32:43 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:62:\"Want root?  Visit join.a8c.com/hacker and mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:22:\"jetpack-dedicated-sync\";s:2:\"on\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-ac\";s:17:\"4.dfw _dfw BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";}s:4:\"body\";s:472:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_processing_error] There is another sync processing running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:27:\"concurrent_processing_error\";a:1:{i:0;i:400;}}}s:15:\"1715121162.8879\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:27:\"concurrent_processing_error\";a:1:{i:0;s:61:\"There is another sync processing running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:27:\"concurrent_processing_error\";a:5:{s:7:\"headers\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 07 May 2024 22:32:44 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:62:\"Want root?  Visit join.a8c.com/hacker and mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:22:\"jetpack-dedicated-sync\";s:2:\"on\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-ac\";s:17:\"4.dfw _dfw BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";}s:4:\"body\";s:472:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_processing_error] There is another sync processing running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:27:\"concurrent_processing_error\";a:1:{i:0;i:400;}}}}','yes'),
(5623449,'wcpay_onboarding_fields_data__en_US','a:3:{s:4:\"data\";a:3:{s:14:\"business_types\";a:38:{i:0;a:3:{s:3:\"key\";s:2:\"AE\";s:4:\"name\";s:20:\"United Arab Emirates\";s:5:\"types\";a:1:{i:0;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:3:\"llc\";s:4:\"name\";s:3:\"LLC\";}i:1;a:2:{s:3:\"key\";s:18:\"sole_establishment\";s:4:\"name\";s:18:\"Sole establishment\";}i:2;a:2:{s:3:\"key\";s:13:\"free_zone_llc\";s:4:\"name\";s:13:\"Free zone LLC\";}i:3;a:2:{s:3:\"key\";s:23:\"free_zone_establishment\";s:4:\"name\";s:23:\"Free zone establishment\";}}}}}i:1;a:3:{s:3:\"key\";s:2:\"AT\";s:4:\"name\";s:7:\"Austria\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:2;a:3:{s:3:\"key\";s:2:\"AU\";s:4:\"name\";s:9:\"Australia\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:14:\"Public company\";}i:1;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Proprietary company\";}i:2;a:2:{s:3:\"key\";s:19:\"sole_proprietorship\";s:4:\"name\";s:11:\"Sole trader\";}i:3;a:2:{s:3:\"key\";s:19:\"private_partnership\";s:4:\"name\";s:11:\"Partnership\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:1:{i:0;a:2:{s:3:\"key\";s:26:\"unincorporated_association\";s:4:\"name\";s:26:\"Unincorporated association\";}}}}}i:3;a:3:{s:3:\"key\";s:2:\"BE\";s:4:\"name\";s:7:\"Belgium\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:4;a:3:{s:3:\"key\";s:2:\"BG\";s:4:\"name\";s:8:\"Bulgaria\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:5;a:3:{s:3:\"key\";s:2:\"CA\";s:4:\"name\";s:6:\"Canada\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:3:{i:0;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}i:1;a:2:{s:3:\"key\";s:19:\"private_partnership\";s:4:\"name\";s:19:\"Private partnership\";}i:2;a:2:{s:3:\"key\";s:19:\"sole_proprietorship\";s:4:\"name\";s:19:\"Sole proprietorship\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:18:\"registered_charity\";s:4:\"name\";s:18:\"Registered charity\";}i:1;a:2:{s:3:\"key\";s:3:\"nil\";s:4:\"name\";s:23:\"Non-profit organization\";}}}}}i:6;a:3:{s:3:\"key\";s:2:\"CH\";s:4:\"name\";s:11:\"Switzerland\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:7;a:3:{s:3:\"key\";s:2:\"CY\";s:4:\"name\";s:6:\"Cyprus\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:8;a:3:{s:3:\"key\";s:2:\"CZ\";s:4:\"name\";s:14:\"Czech Republic\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:9;a:3:{s:3:\"key\";s:2:\"DE\";s:4:\"name\";s:7:\"Germany\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:10;a:3:{s:3:\"key\";s:2:\"DK\";s:4:\"name\";s:7:\"Denmark\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:11;a:3:{s:3:\"key\";s:2:\"EE\";s:4:\"name\";s:7:\"Estonia\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:12;a:3:{s:3:\"key\";s:2:\"ES\";s:4:\"name\";s:5:\"Spain\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:13;a:3:{s:3:\"key\";s:2:\"FI\";s:4:\"name\";s:7:\"Finland\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:14;a:3:{s:3:\"key\";s:2:\"FR\";s:4:\"name\";s:6:\"France\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:15;a:3:{s:3:\"key\";s:2:\"GB\";s:4:\"name\";s:14:\"United Kingdom\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:16;a:3:{s:3:\"key\";s:2:\"GR\";s:4:\"name\";s:6:\"Greece\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:17;a:3:{s:3:\"key\";s:2:\"HK\";s:4:\"name\";s:9:\"Hong Kong\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:3:{i:0;a:2:{s:3:\"key\";s:19:\"sole_proprietorship\";s:4:\"name\";s:19:\"Sole proprietorship\";}i:1;a:2:{s:3:\"key\";s:15:\"private_company\";s:4:\"name\";s:15:\"Private company\";}i:2;a:2:{s:3:\"key\";s:19:\"private_partnership\";s:4:\"name\";s:19:\"Private partnership\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:18;a:3:{s:3:\"key\";s:2:\"HR\";s:4:\"name\";s:7:\"Croatia\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:19;a:3:{s:3:\"key\";s:2:\"HU\";s:4:\"name\";s:7:\"Hungary\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:20;a:3:{s:3:\"key\";s:2:\"IE\";s:4:\"name\";s:7:\"Ireland\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:21;a:3:{s:3:\"key\";s:2:\"IT\";s:4:\"name\";s:5:\"Italy\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:22;a:3:{s:3:\"key\";s:2:\"JP\";s:4:\"name\";s:5:\"Japan\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:1:{i:0;a:2:{s:3:\"key\";s:19:\"sole_proprietorship\";s:4:\"name\";s:19:\"Sole proprietorship\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:0:{}}}}i:23;a:3:{s:3:\"key\";s:2:\"LT\";s:4:\"name\";s:9:\"Lithuania\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:24;a:3:{s:3:\"key\";s:2:\"LU\";s:4:\"name\";s:10:\"Luxembourg\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:25;a:3:{s:3:\"key\";s:2:\"LV\";s:4:\"name\";s:6:\"Latvia\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:26;a:3:{s:3:\"key\";s:2:\"MT\";s:4:\"name\";s:5:\"Malta\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:27;a:3:{s:3:\"key\";s:2:\"NL\";s:4:\"name\";s:11:\"Netherlands\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:28;a:3:{s:3:\"key\";s:2:\"NO\";s:4:\"name\";s:6:\"Norway\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:29;a:3:{s:3:\"key\";s:2:\"NZ\";s:4:\"name\";s:11:\"New Zealand\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:1;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:11:\"Corporation\";}i:2;a:2:{s:3:\"key\";s:19:\"sole_proprietorship\";s:4:\"name\";s:11:\"Sole trader\";}i:3;a:2:{s:3:\"key\";s:19:\"private_partnership\";s:4:\"name\";s:11:\"Partnership\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:30;a:3:{s:3:\"key\";s:2:\"PL\";s:4:\"name\";s:6:\"Poland\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:31;a:3:{s:3:\"key\";s:2:\"PT\";s:4:\"name\";s:8:\"Portugal\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:32;a:3:{s:3:\"key\";s:2:\"RO\";s:4:\"name\";s:7:\"Romania\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:33;a:3:{s:3:\"key\";s:2:\"SE\";s:4:\"name\";s:6:\"Sweden\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:34;a:3:{s:3:\"key\";s:2:\"SG\";s:4:\"name\";s:9:\"Singapore\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:19:\"sole_proprietorship\";s:4:\"name\";s:19:\"Sole proprietorship\";}i:1;a:2:{s:3:\"key\";s:15:\"private_company\";s:4:\"name\";s:7:\"Company\";}i:2;a:2:{s:3:\"key\";s:14:\"public_company\";s:4:\"name\";s:14:\"Public company\";}i:3;a:2:{s:3:\"key\";s:19:\"private_partnership\";s:4:\"name\";s:11:\"Partnership\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:0:{}}}}i:35;a:3:{s:3:\"key\";s:2:\"SI\";s:4:\"name\";s:8:\"Slovenia\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:36;a:3:{s:3:\"key\";s:2:\"SK\";s:4:\"name\";s:8:\"Slovakia\";s:5:\"types\";a:3:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:4:{i:0;a:2:{s:3:\"key\";s:24:\"incorporated_partnership\";s:4:\"name\";s:24:\"Incorporated partnership\";}i:1;a:2:{s:3:\"key\";s:26:\"unincorporated_partnership\";s:4:\"name\";s:26:\"Unincorporated partnership\";}i:2;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}i:3;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}}}i:37;a:3:{s:3:\"key\";s:2:\"US\";s:4:\"name\";s:13:\"United States\";s:5:\"types\";a:4:{i:0;a:3:{s:3:\"key\";s:10:\"individual\";s:4:\"name\";s:10:\"Individual\";s:10:\"structures\";a:0:{}}i:1;a:3:{s:3:\"key\";s:7:\"company\";s:4:\"name\";s:7:\"Company\";s:10:\"structures\";a:8:{i:0;a:2:{s:3:\"key\";s:19:\"sole_proprietorship\";s:4:\"name\";s:19:\"Sole proprietorship\";}i:1;a:2:{s:3:\"key\";s:17:\"single_member_llc\";s:4:\"name\";s:17:\"Single-member LLC\";}i:2;a:2:{s:3:\"key\";s:16:\"multi_member_llc\";s:4:\"name\";s:16:\"Multi-member LLC\";}i:3;a:2:{s:3:\"key\";s:19:\"private_partnership\";s:4:\"name\";s:19:\"Private partnership\";}i:4;a:2:{s:3:\"key\";s:19:\"private_corporation\";s:4:\"name\";s:19:\"Private corporation\";}i:5;a:2:{s:3:\"key\";s:26:\"unincorporated_association\";s:4:\"name\";s:26:\"Unincorporated association\";}i:6;a:2:{s:3:\"key\";s:18:\"public_partnership\";s:4:\"name\";s:18:\"Public partnership\";}i:7;a:2:{s:3:\"key\";s:18:\"public_corporation\";s:4:\"name\";s:18:\"Public corporation\";}}}i:2;a:3:{s:3:\"key\";s:10:\"non_profit\";s:4:\"name\";s:10:\"Non-profit\";s:10:\"structures\";a:2:{i:0;a:2:{s:3:\"key\";s:23:\"incorporated_non_profit\";s:4:\"name\";s:23:\"Incorporated non-profit\";}i:1;a:2:{s:3:\"key\";s:25:\"unincorporated_non_profit\";s:4:\"name\";s:25:\"Unincorporated non-profit\";}}}i:3;a:3:{s:3:\"key\";s:17:\"government_entity\";s:4:\"name\";s:17:\"Government entity\";s:10:\"structures\";a:3:{i:0;a:2:{s:3:\"key\";s:17:\"governmental_unit\";s:4:\"name\";s:17:\"Governmental unit\";}i:1;a:2:{s:3:\"key\";s:26:\"government_instrumentality\";s:4:\"name\";s:26:\"Government instrumentality\";}i:2;a:2:{s:3:\"key\";s:37:\"tax_exempt_government_instrumentality\";s:4:\"name\";s:37:\"Tax exempt government instrumentality\";}}}}}}s:17:\"mccs_display_tree\";a:15:{i:0;a:4:{s:2:\"id\";s:12:\"most_popular\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:12:\"Most popular\";s:5:\"items\";a:3:{i:0;a:5:{s:2:\"id\";s:31:\"most_popular__software_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:8:\"Software\";s:3:\"mcc\";i:7372;s:8:\"keywords\";a:9:{i:0;s:11:\"programming\";i:1;s:3:\"web\";i:2;s:7:\"website\";i:3;s:6:\"design\";i:4;s:4:\"data\";i:5;s:5:\"entry\";i:6;s:10:\"processing\";i:7;s:10:\"integrated\";i:8;s:7:\"systems\";}}i:1;a:5:{s:2:\"id\";s:34:\"most_popular__clothing_and_apparel\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:24:\"Clothing and accessories\";s:3:\"mcc\";i:5699;s:8:\"keywords\";a:0:{}}i:2;a:5:{s:2:\"id\";s:33:\"most_popular__consulting_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:10:\"Consulting\";s:3:\"mcc\";i:8999;s:8:\"keywords\";a:0:{}}}}i:1;a:4:{s:2:\"id\";s:6:\"retail\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:6:\"Retail\";s:5:\"items\";a:10:{i:0;a:5:{s:2:\"id\";s:16:\"retail__software\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:8:\"Software\";s:3:\"mcc\";i:5734;s:8:\"keywords\";a:18:{i:0;s:3:\"app\";i:1;s:8:\"business\";i:2;s:8:\"computer\";i:3;s:7:\"digital\";i:4;s:10:\"electronic\";i:5;s:8:\"hardware\";i:6;s:5:\"lease\";i:7;s:11:\"maintenance\";i:8;s:8:\"personal\";i:9;s:10:\"processing\";i:10;s:7:\"product\";i:11;s:7:\"program\";i:12;s:11:\"programming\";i:13;s:6:\"repair\";i:14;s:4:\"saas\";i:15;s:4:\"sell\";i:16;s:8:\"software\";i:17;s:6:\"retail\";}}i:1;a:5:{s:2:\"id\";s:28:\"retail__clothing_and_apparel\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:24:\"Clothing and accessories\";s:3:\"mcc\";i:5699;s:8:\"keywords\";a:19:{i:0;s:11:\"accessories\";i:1;s:7:\"apparel\";i:2;s:4:\"baby\";i:3;s:8:\"children\";i:4;s:7:\"clothes\";i:5;s:8:\"clothing\";i:6;s:5:\"dress\";i:7;s:6:\"family\";i:8;s:6:\"infant\";i:9;s:3:\"men\";i:10;s:4:\"pant\";i:11;s:5:\"shirt\";i:12;s:5:\"short\";i:13;s:5:\"skirt\";i:14;s:7:\"t-shirt\";i:15;s:3:\"tee\";i:16;s:12:\"undergarment\";i:17;s:5:\"women\";i:18;s:6:\"retail\";}}i:2;a:5:{s:2:\"id\";s:26:\"retail__convenience_stores\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:18:\"Convenience stores\";s:3:\"mcc\";i:5499;s:8:\"keywords\";a:23:{i:0;s:5:\"candy\";i:1;s:11:\"convenience\";i:2;s:5:\"dairy\";i:3;s:4:\"deli\";i:4;s:12:\"delicatessen\";i:5;s:5:\"drink\";i:6;s:4:\"fast\";i:7;s:4:\"food\";i:8;s:5:\"fruit\";i:9;s:7:\"gourmet\";i:10;s:7:\"grocery\";i:11;s:6:\"health\";i:12;s:6:\"market\";i:13;s:4:\"meal\";i:14;s:7:\"poultry\";i:15;s:11:\"preparation\";i:16;s:7:\"produce\";i:17;s:6:\"retail\";i:18;s:9:\"specialty\";i:19;s:11:\"supermarket\";i:20;s:9:\"vegetable\";i:21;s:7:\"vitamin\";i:22;s:6:\"retail\";}}i:3;a:5:{s:2:\"id\";s:23:\"retail__beauty_products\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Beauty products\";s:3:\"mcc\";i:5999;s:8:\"keywords\";a:15:{i:0;s:6:\"barber\";i:1;s:6:\"beauty\";i:2;s:8:\"cosmetic\";i:3;s:4:\"make\";i:4;s:7:\"make-up\";i:5;s:6:\"makeup\";i:6;s:8:\"moisture\";i:7;s:11:\"moisturizer\";i:8;s:6:\"retail\";i:9;s:5:\"serum\";i:10;s:4:\"skin\";i:11;s:8:\"skincare\";i:12;s:9:\"treatment\";i:13;s:2:\"up\";i:14;s:6:\"retail\";}}i:4;a:5:{s:2:\"id\";s:38:\"retail__home_furnishings_and_furniture\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:24:\"Home goods and furniture\";s:3:\"mcc\";i:5712;s:8:\"keywords\";a:22:{i:0;s:11:\"accessories\";i:1;s:9:\"appliance\";i:2;s:7:\"bedding\";i:3;s:8:\"covering\";i:4;s:6:\"custom\";i:5;s:7:\"drapery\";i:6;s:10:\"electronic\";i:7;s:9:\"equipment\";i:8;s:5:\"floor\";i:9;s:10:\"furnishing\";i:10;s:9:\"furniture\";i:11;s:4:\"home\";i:12;s:9:\"household\";i:13;s:4:\"made\";i:14;s:8:\"mattress\";i:15;s:5:\"order\";i:16;s:7:\"outdoor\";i:17;s:5:\"patio\";i:18;s:5:\"porch\";i:19;s:10:\"upholstery\";i:20;s:6:\"window\";i:21;s:6:\"retail\";}}i:5;a:5:{s:2:\"id\";s:24:\"retail__home_electronics\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:16:\"Home electronics\";s:3:\"mcc\";i:5732;s:8:\"keywords\";a:24:{i:0;s:9:\"appliance\";i:1;s:8:\"assembly\";i:2;s:9:\"camcorder\";i:3;s:6:\"camera\";i:4;s:8:\"computer\";i:5;s:12:\"construction\";i:6;s:4:\"dslr\";i:7;s:10:\"electronic\";i:8;s:10:\"furnishing\";i:9;s:8:\"hardware\";i:10;s:4:\"home\";i:11;s:9:\"household\";i:12;s:6:\"laptop\";i:13;s:4:\"part\";i:14;s:2:\"pc\";i:15;s:5:\"radio\";i:16;s:6:\"repair\";i:17;s:6:\"stereo\";i:18;s:6:\"tablet\";i:19;s:10:\"television\";i:20;s:2:\"tv\";i:21;s:3:\"vcr\";i:22;s:5:\"video\";i:23;s:6:\"retail\";}}i:6;a:5:{s:2:\"id\";s:34:\"retail__auto_parts_and_accessories\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:26:\"Auto parts and accessories\";s:3:\"mcc\";i:5533;s:8:\"keywords\";a:11:{i:0;s:11:\"accessories\";i:1;s:10:\"automotive\";i:2;s:3:\"car\";i:3;s:10:\"electronic\";i:4;s:9:\"equipment\";i:5;s:5:\"motor\";i:6;s:4:\"part\";i:7;s:8:\"supplies\";i:8;s:4:\"tire\";i:9;s:7:\"vehicle\";i:10;s:6:\"retail\";}}i:7;a:5:{s:2:\"id\";s:59:\"retail__jewelry_stores_watches_clocks_and_silverware_stores\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:54:\"Jewelry Stores, Watches, Clocks, and Silverware Stores\";s:3:\"mcc\";i:5944;s:8:\"keywords\";a:20:{i:0;s:11:\"accessories\";i:1;s:7:\"antique\";i:2;s:5:\"clock\";i:3;s:7:\"diamond\";i:4;s:4:\"fine\";i:5;s:8:\"flatware\";i:6;s:3:\"gem\";i:7;s:7:\"jewelry\";i:8;s:5:\"metal\";i:9;s:4:\"pawn\";i:10;s:8:\"precious\";i:11;s:6:\"repair\";i:12;s:6:\"retail\";i:13;s:6:\"silver\";i:14;s:12:\"silver-plate\";i:15;s:11:\"silversmith\";i:16;s:5:\"stamp\";i:17;s:8:\"sterling\";i:18;s:5:\"watch\";i:19;s:6:\"retail\";}}i:8;a:5:{s:2:\"id\";s:54:\"retail__precious_stones_and_metals_watches_and_jewelry\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:47:\"Precious Stones and Metals, Watches and Jewelry\";s:3:\"mcc\";i:5094;s:8:\"keywords\";a:21:{i:0;s:3:\"b2b\";i:1;s:8:\"business\";i:2;s:5:\"clock\";i:3;s:7:\"costume\";i:4;s:7:\"diamond\";i:5;s:11:\"distributor\";i:6;s:7:\"durable\";i:7;s:8:\"gemstone\";i:8;s:5:\"goods\";i:9;s:7:\"jewelry\";i:10;s:5:\"metal\";i:11;s:4:\"part\";i:12;s:5:\"pearl\";i:13;s:8:\"precious\";i:14;s:6:\"repaid\";i:15;s:10:\"silverware\";i:16;s:5:\"stone\";i:17;s:8:\"trophies\";i:18;s:5:\"watch\";i:19;s:9:\"wholesale\";i:20;s:6:\"retail\";}}i:9;a:5:{s:2:\"id\";s:25:\"retail__other_merchandise\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:17:\"Other merchandise\";s:3:\"mcc\";i:5999;s:8:\"keywords\";a:29:{i:0;s:10:\"ammunition\";i:1;s:5:\"atlas\";i:2;s:6:\"beauty\";i:3;s:7:\"bottled\";i:4;s:11:\"collectible\";i:5;s:9:\"distilled\";i:6;s:7:\"firearm\";i:7;s:8:\"firework\";i:8;s:5:\"frame\";i:9;s:10:\"gravestone\";i:10;s:9:\"headstone\";i:11;s:5:\"hobby\";i:12;s:3:\"ice\";i:13;s:5:\"magic\";i:14;s:3:\"map\";i:15;s:11:\"memorabilia\";i:16;s:8:\"monument\";i:17;s:5:\"party\";i:18;s:10:\"photograph\";i:19;s:7:\"picture\";i:20;s:6:\"poster\";i:21;s:6:\"retail\";i:22;s:9:\"specialty\";i:23;s:6:\"sports\";i:24;s:8:\"sunglass\";i:25;s:6:\"supply\";i:26;s:6:\"trophy\";i:27;s:5:\"water\";i:28;s:6:\"retail\";}}}}i:2;a:4:{s:2:\"id\";s:16:\"digital_products\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:16:\"Digital products\";s:5:\"items\";a:7:{i:0;a:5:{s:2:\"id\";s:39:\"digital_products__software_as_a_service\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:21:\"Software as a service\";s:3:\"mcc\";i:5817;s:8:\"keywords\";a:18:{i:0;s:3:\"app\";i:1;s:8:\"business\";i:2;s:8:\"computer\";i:3;s:7:\"digital\";i:4;s:10:\"electronic\";i:5;s:8:\"hardware\";i:6;s:5:\"lease\";i:7;s:11:\"maintenance\";i:8;s:8:\"personal\";i:9;s:10:\"processing\";i:10;s:7:\"product\";i:11;s:7:\"program\";i:12;s:11:\"programming\";i:13;s:6:\"repair\";i:14;s:4:\"saas\";i:15;s:4:\"sell\";i:16;s:8:\"software\";i:17;s:16:\"digital products\";}}i:1;a:5:{s:2:\"id\";s:22:\"digital_products__apps\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:4:\"Apps\";s:3:\"mcc\";i:5817;s:8:\"keywords\";a:10:{i:0;s:3:\"app\";i:1;s:11:\"application\";i:2;s:8:\"computer\";i:3;s:7:\"digital\";i:4;s:10:\"electronic\";i:5;s:9:\"equipment\";i:6;s:4:\"game\";i:7;s:7:\"product\";i:8;s:8:\"software\";i:9;s:16:\"digital products\";}}i:2;a:5:{s:2:\"id\";s:23:\"digital_products__books\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:5:\"Books\";s:3:\"mcc\";i:5815;s:8:\"keywords\";a:11:{i:0;s:4:\"book\";i:1;s:7:\"digital\";i:2;s:10:\"electronic\";i:3;s:4:\"good\";i:4;s:5:\"media\";i:5;s:5:\"movie\";i:6;s:5:\"music\";i:7;s:7:\"product\";i:8;s:6:\"record\";i:9;s:7:\"theater\";i:10;s:16:\"digital products\";}}i:3;a:5:{s:2:\"id\";s:33:\"digital_products__music_and_media\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:20:\"Music or other media\";s:3:\"mcc\";i:5815;s:8:\"keywords\";a:11:{i:0;s:4:\"book\";i:1;s:7:\"digital\";i:2;s:10:\"electronic\";i:3;s:4:\"good\";i:4;s:5:\"media\";i:5;s:5:\"movie\";i:6;s:5:\"music\";i:7;s:7:\"product\";i:8;s:6:\"record\";i:9;s:7:\"theater\";i:10;s:16:\"digital products\";}}i:4;a:5:{s:2:\"id\";s:23:\"digital_products__games\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:5:\"Games\";s:3:\"mcc\";i:5816;s:8:\"keywords\";a:13:{i:0;s:9:\"amusement\";i:1;s:6:\"arcade\";i:2;s:6:\"casino\";i:3;s:7:\"digital\";i:4;s:10:\"electronic\";i:5;s:13:\"establishment\";i:6;s:8:\"gambling\";i:7;s:4:\"game\";i:8;s:7:\"lottery\";i:9;s:7:\"product\";i:10;s:4:\"race\";i:11;s:5:\"video\";i:12;s:16:\"digital products\";}}i:5;a:5:{s:2:\"id\";s:40:\"digital_products__content_blogs_articles\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:25:\"Blogs and written content\";s:3:\"mcc\";i:5815;s:8:\"keywords\";a:13:{i:0;s:7:\"article\";i:1;s:4:\"blog\";i:2;s:7:\"content\";i:3;s:7:\"digital\";i:4;s:5:\"media\";i:5;s:6:\"online\";i:6;s:6:\"plugin\";i:7;s:8:\"substack\";i:8;s:8:\"template\";i:9;s:6:\"tumblr\";i:10;s:9:\"wordpress\";i:11;s:5:\"write\";i:12;s:16:\"digital products\";}}i:6;a:5:{s:2:\"id\";s:37:\"digital_products__other_digital_goods\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:19:\"Other digital goods\";s:3:\"mcc\";i:5815;s:8:\"keywords\";a:17:{i:0;s:3:\"app\";i:1;s:7:\"content\";i:2;s:7:\"digital\";i:3;s:8:\"download\";i:4;s:5:\"ebook\";i:5;s:4:\"good\";i:6;s:10:\"intangible\";i:7;s:8:\"internet\";i:8;s:5:\"music\";i:9;s:6:\"online\";i:10;s:5:\"radio\";i:11;s:6:\"stream\";i:12;s:9:\"subscribe\";i:13;s:10:\"television\";i:14;s:2:\"tv\";i:15;s:7:\"virtual\";i:16;s:16:\"digital products\";}}}}i:3;a:4:{s:2:\"id\";s:14:\"food_and_drink\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:14:\"Food and drink\";s:5:\"items\";a:5:{i:0;a:5:{s:2:\"id\";s:27:\"food_and_drink__restaurants\";s:4:\"type\";s:3:\"mcc\";s:3:\"mcc\";i:5812;s:5:\"title\";s:25:\"Restaurants and nightlife\";s:8:\"keywords\";a:22:{i:0;s:3:\"bar\";i:1;s:4:\"cafe\";i:2;s:9:\"cafeteria\";i:3;s:4:\"cake\";i:4;s:8:\"cocktail\";i:5;s:8:\"delivery\";i:6;s:7:\"dessert\";i:7;s:5:\"diner\";i:8;s:5:\"drink\";i:9;s:6:\"eating\";i:10;s:13:\"establishment\";i:11;s:4:\"fast\";i:12;s:4:\"food\";i:13;s:6:\"lounge\";i:14;s:9:\"nightclub\";i:15;s:10:\"restaurant\";i:16;s:7:\"service\";i:17;s:4:\"soda\";i:18;s:5:\"table\";i:19;s:7:\"takeout\";i:20;s:6:\"tavern\";i:21;s:14:\"food and drink\";}}i:1;a:5:{s:2:\"id\";s:30:\"food_and_drink__grocery_stores\";s:4:\"type\";s:3:\"mcc\";s:3:\"mcc\";i:5411;s:5:\"title\";s:14:\"Grocery stores\";s:8:\"keywords\";a:44:{i:0;s:5:\"baked\";i:1;s:6:\"bakery\";i:2;s:4:\"book\";i:3;s:5:\"bread\";i:4;s:6:\"canned\";i:5;s:4:\"card\";i:6;s:8:\"cleaning\";i:7;s:11:\"consumption\";i:8;s:8:\"cosmetic\";i:9;s:7:\"counter\";i:10;s:5:\"dairy\";i:11;s:4:\"deli\";i:12;s:7:\"deliver\";i:13;s:10:\"department\";i:14;s:5:\"drink\";i:15;s:3:\"dry\";i:16;s:4:\"fish\";i:17;s:6:\"floral\";i:18;s:4:\"food\";i:19;s:6:\"frozen\";i:20;s:4:\"good\";i:21;s:8:\"greeting\";i:22;s:7:\"grocery\";i:23;s:4:\"home\";i:24;s:9:\"household\";i:25;s:9:\"houseware\";i:26;s:7:\"hygiene\";i:27;s:4:\"item\";i:28;s:8:\"magazine\";i:29;s:6:\"market\";i:30;s:4:\"meal\";i:31;s:4:\"meat\";i:32;s:10:\"perishable\";i:33;s:8:\"personal\";i:34;s:8:\"pharmacy\";i:35;s:9:\"polishing\";i:36;s:7:\"poultry\";i:37;s:11:\"prepackaged\";i:38;s:7:\"produce\";i:39;s:4:\"shop\";i:40;s:7:\"shopper\";i:41;s:5:\"super\";i:42;s:11:\"supermarket\";i:43;s:14:\"food and drink\";}}i:2;a:5:{s:2:\"id\";s:24:\"food_and_drink__caterers\";s:4:\"type\";s:3:\"mcc\";s:3:\"mcc\";i:5811;s:5:\"title\";s:8:\"Caterers\";s:8:\"keywords\";a:20:{i:0;s:4:\"cake\";i:1;s:7:\"caterer\";i:2;s:5:\"clean\";i:3;s:11:\"consumption\";i:4;s:10:\"decoration\";i:5;s:7:\"deliver\";i:6;s:7:\"dessert\";i:7;s:5:\"drink\";i:8;s:6:\"eating\";i:9;s:9:\"equipment\";i:10;s:4:\"food\";i:11;s:9:\"immediate\";i:12;s:9:\"personnel\";i:13;s:4:\"prep\";i:14;s:7:\"prepare\";i:15;s:10:\"restaurant\";i:16;s:5:\"serve\";i:17;s:7:\"serving\";i:18;s:5:\"table\";i:19;s:14:\"food and drink\";}}i:3;a:5:{s:2:\"id\";s:34:\"food_and_drink__packaged_beverages\";s:4:\"type\";s:3:\"mcc\";s:3:\"mcc\";i:5499;s:5:\"title\";s:18:\"Packaged beverages\";s:8:\"keywords\";a:20:{i:0;s:14:\"ready to drink\";i:1;s:3:\"rtd\";i:2;s:11:\"fruit juice\";i:3;s:11:\"soft drinks\";i:4;s:8:\"iced tea\";i:5;s:6:\"matcha\";i:6;s:3:\"tea\";i:7;s:6:\"coffee\";i:8;s:21:\"caffeinated beverages\";i:9;s:13:\"bottled water\";i:10;s:11:\"still water\";i:11;s:15:\"sparkling water\";i:12;s:13:\"energy drinks\";i:13;s:9:\"hydration\";i:14;s:16:\"hydrating drinks\";i:15;s:14:\"vitamin drinks\";i:16;s:18:\"nutritional drinks\";i:17;s:6:\"retail\";i:18;s:9:\"specialty\";i:19;s:14:\"food and drink\";}}i:4;a:5:{s:2:\"id\";s:37:\"food_and_drink__other_food_and_dining\";s:4:\"type\";s:3:\"mcc\";s:3:\"mcc\";i:5499;s:5:\"title\";s:21:\"Other food and dining\";s:8:\"keywords\";a:23:{i:0;s:5:\"candy\";i:1;s:11:\"convenience\";i:2;s:5:\"dairy\";i:3;s:4:\"deli\";i:4;s:12:\"delicatessen\";i:5;s:5:\"drink\";i:6;s:4:\"fast\";i:7;s:4:\"food\";i:8;s:5:\"fruit\";i:9;s:7:\"gourmet\";i:10;s:7:\"grocery\";i:11;s:6:\"health\";i:12;s:6:\"market\";i:13;s:4:\"meal\";i:14;s:7:\"poultry\";i:15;s:11:\"preparation\";i:16;s:7:\"produce\";i:17;s:6:\"retail\";i:18;s:9:\"specialty\";i:19;s:11:\"supermarket\";i:20;s:9:\"vegetable\";i:21;s:7:\"vitamin\";i:22;s:14:\"food and drink\";}}}}i:4;a:4:{s:2:\"id\";s:21:\"professional_services\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:21:\"Professional services\";s:5:\"items\";a:21:{i:0;a:5:{s:2:\"id\";s:55:\"professional_services__printing_and_publishing_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:23:\"Printing and publishing\";s:3:\"mcc\";i:2741;s:8:\"keywords\";a:28:{i:0;s:5:\"atlas\";i:1;s:3:\"b2b\";i:2;s:12:\"blueprinting\";i:3;s:4:\"book\";i:4;s:11:\"bookbinding\";i:5;s:8:\"business\";i:6;s:4:\"copy\";i:7;s:9:\"directory\";i:8;s:6:\"manual\";i:9;s:3:\"map\";i:10;s:5:\"music\";i:11;s:10:\"newsletter\";i:12;s:9:\"newspaper\";i:13;s:5:\"paper\";i:14;s:7:\"pattern\";i:15;s:10:\"periodical\";i:16;s:5:\"print\";i:17;s:8:\"printing\";i:18;s:7:\"publish\";i:19;s:10:\"publishing\";i:20;s:12:\"reproduction\";i:21;s:5:\"sheet\";i:22;s:9:\"technical\";i:23;s:9:\"telephone\";i:24;s:5:\"trade\";i:25;s:9:\"wholesale\";i:26;s:8:\"yearbook\";i:27;s:21:\"professional services\";}}i:1;a:5:{s:2:\"id\";s:44:\"professional_services__attorneys_and_lawyers\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:21:\"Attorneys and lawyers\";s:3:\"mcc\";i:8111;s:8:\"keywords\";a:11:{i:0;s:6:\"advice\";i:1;s:8:\"attorney\";i:2;s:3:\"bar\";i:3;s:10:\"counseling\";i:4;s:3:\"law\";i:5;s:6:\"lawyer\";i:6;s:5:\"legal\";i:7;s:6:\"office\";i:8;s:12:\"professional\";i:9;s:7:\"service\";i:10;s:21:\"professional services\";}}i:2;a:5:{s:2:\"id\";s:42:\"professional_services__bankruptcy_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:19:\"Bankruptcy services\";s:3:\"mcc\";i:8999;s:8:\"keywords\";a:6:{i:0;s:10:\"bankruptcy\";i:1;s:6:\"lawyer\";i:2;s:5:\"legal\";i:3;s:12:\"professional\";i:4;s:7:\"service\";i:5;s:21:\"professional services\";}}i:3;a:5:{s:2:\"id\";s:33:\"professional_services__bail_bonds\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:10:\"Bail Bonds\";s:3:\"mcc\";i:8999;s:8:\"keywords\";a:7:{i:0;s:4:\"bail\";i:1;s:4:\"bond\";i:2;s:5:\"court\";i:3;s:4:\"jail\";i:4;s:12:\"professional\";i:5;s:7:\"service\";i:6;s:21:\"professional services\";}}i:4;a:5:{s:2:\"id\";s:76:\"professional_services__accounting_auditing_bookkeeping_and_tax_prep_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:33:\"Accounting, auditing, or tax prep\";s:3:\"mcc\";i:8931;s:8:\"keywords\";a:13:{i:0;s:10:\"accounting\";i:1;s:5:\"audit\";i:2;s:7:\"billing\";i:3;s:11:\"bookkeeping\";i:4;s:7:\"finance\";i:5;s:6:\"income\";i:6;s:5:\"legal\";i:7;s:7:\"payroll\";i:8;s:11:\"preparation\";i:9;s:12:\"professional\";i:10;s:7:\"service\";i:11;s:3:\"tax\";i:12;s:21:\"professional services\";}}i:5;a:5:{s:2:\"id\";s:63:\"professional_services__computer_maintenance_and_repair_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Computer repair\";s:3:\"mcc\";i:7379;s:8:\"keywords\";a:10:{i:0;s:8:\"analysis\";i:1;s:8:\"computer\";i:2;s:10:\"consulting\";i:3;s:10:\"conversion\";i:4;s:8:\"database\";i:5;s:11:\"development\";i:6;s:11:\"maintenance\";i:7;s:6:\"repair\";i:8;s:12:\"requirements\";i:9;s:21:\"professional services\";}}i:6;a:5:{s:2:\"id\";s:43:\"professional_services__testing_laboratories\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:20:\"Testing laboratories\";s:3:\"mcc\";i:8734;s:8:\"keywords\";a:16:{i:0;s:10:\"automobile\";i:1;s:11:\"calibration\";i:2;s:13:\"certification\";i:3;s:4:\"food\";i:4;s:8:\"forensic\";i:5;s:10:\"industrial\";i:6;s:10:\"inspection\";i:7;s:3:\"lab\";i:8;s:9:\"pollution\";i:9;s:7:\"product\";i:10;s:12:\"professional\";i:11;s:7:\"service\";i:12;s:7:\"testing\";i:13;s:5:\"x-ray\";i:14;s:4:\"xray\";i:15;s:21:\"professional services\";}}i:7;a:5:{s:2:\"id\";s:36:\"professional_services__auto_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:13:\"Auto services\";s:3:\"mcc\";i:7538;s:8:\"keywords\";a:17:{i:0;s:9:\"alignment\";i:1;s:4:\"auto\";i:2;s:9:\"balancing\";i:3;s:3:\"car\";i:4;s:6:\"change\";i:5;s:5:\"glass\";i:6;s:4:\"lube\";i:7;s:7:\"muffler\";i:8;s:3:\"oil\";i:9;s:6:\"repair\";i:10;s:11:\"replacement\";i:11;s:7:\"service\";i:12;s:4:\"tire\";i:13;s:6:\"towing\";i:14;s:7:\"tune-up\";i:15;s:5:\"wheel\";i:16;s:21:\"professional services\";}}i:8;a:5:{s:2:\"id\";s:34:\"professional_services__car_rentals\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:11:\"Car rentals\";s:3:\"mcc\";i:7512;s:8:\"keywords\";a:8:{i:0;s:10:\"automotive\";i:1;s:3:\"car\";i:2;s:11:\"marketplace\";i:3;s:6:\"rental\";i:4;s:5:\"share\";i:5;s:5:\"truck\";i:6;s:7:\"vehicle\";i:7;s:21:\"professional services\";}}i:9;a:5:{s:2:\"id\";s:32:\"professional_services__car_sales\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:9:\"Car sales\";s:3:\"mcc\";i:5511;s:8:\"keywords\";a:19:{i:0;s:11:\"accessories\";i:1;s:4:\"auto\";i:2;s:10:\"automobile\";i:3;s:3:\"buy\";i:4;s:6:\"camper\";i:5;s:6:\"dealer\";i:6;s:5:\"lease\";i:7;s:3:\"new\";i:8;s:4:\"part\";i:9;s:6:\"pickup\";i:10;s:6:\"repair\";i:11;s:11:\"replacement\";i:12;s:2:\"rv\";i:13;s:4:\"sale\";i:14;s:7:\"service\";i:15;s:5:\"truck\";i:16;s:4:\"used\";i:17;s:3:\"van\";i:18;s:21:\"professional services\";}}i:10;a:5:{s:2:\"id\";s:38:\"professional_services__lead_generation\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Lead generation\";s:3:\"mcc\";i:7311;s:8:\"keywords\";a:20:{i:0;s:6:\"action\";i:1;s:2:\"ad\";i:2;s:4:\"call\";i:3;s:5:\"close\";i:4;s:7:\"contact\";i:5;s:7:\"convert\";i:6;s:8:\"customer\";i:7;s:11:\"demographic\";i:8;s:6:\"engine\";i:9;s:4:\"form\";i:10;s:10:\"generation\";i:11;s:11:\"information\";i:12;s:8:\"interest\";i:13;s:4:\"lead\";i:14;s:12:\"optimization\";i:15;s:4:\"sale\";i:16;s:6:\"search\";i:17;s:3:\"seo\";i:18;s:3:\"web\";i:19;s:21:\"professional services\";}}i:11;a:5:{s:2:\"id\";s:48:\"professional_services__direct_marketing_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:16:\"Direct marketing\";s:3:\"mcc\";i:5969;s:8:\"keywords\";a:14:{i:0;s:7:\"address\";i:1;s:10:\"classified\";i:2;s:6:\"direct\";i:3;s:3:\"fax\";i:4;s:4:\"form\";i:5;s:9:\"marketing\";i:6;s:6:\"number\";i:7;s:5:\"order\";i:8;s:7:\"product\";i:9;s:8:\"response\";i:10;s:7:\"service\";i:11;s:9:\"telephone\";i:12;s:6:\"ticket\";i:13;s:21:\"professional services\";}}i:12;a:5:{s:2:\"id\";s:64:\"professional_services__electric_gas_sanitary_and_water_utilities\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:9:\"Utilities\";s:3:\"mcc\";i:4900;s:8:\"keywords\";a:22:{i:0;s:10:\"collection\";i:1;s:9:\"collector\";i:2;s:8:\"disposal\";i:3;s:12:\"distribution\";i:4;s:8:\"electric\";i:5;s:7:\"garbage\";i:6;s:3:\"gas\";i:7;s:10:\"generation\";i:8;s:10:\"management\";i:9;s:7:\"ongoing\";i:10;s:5:\"power\";i:11;s:6:\"refuse\";i:12;s:8:\"sanitary\";i:13;s:7:\"service\";i:14;s:6:\"supply\";i:15;s:6:\"system\";i:16;s:17:\"telecommunication\";i:17;s:12:\"transmission\";i:18;s:7:\"utility\";i:19;s:5:\"waste\";i:20;s:5:\"water\";i:21;s:21:\"professional services\";}}i:13;a:5:{s:2:\"id\";s:50:\"professional_services__general_government_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:19:\"Government services\";s:3:\"mcc\";i:9399;s:8:\"keywords\";a:5:{i:0;s:6:\"agency\";i:1;s:9:\"community\";i:2;s:10:\"government\";i:3;s:7:\"service\";i:4;s:21:\"professional services\";}}i:14;a:5:{s:2:\"id\";s:45:\"professional_services__telemarketing_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:13:\"Telemarketing\";s:3:\"mcc\";i:5966;s:8:\"keywords\";a:8:{i:0;s:7:\"catalog\";i:1;s:6:\"direct\";i:2;s:7:\"mailing\";i:3;s:9:\"marketing\";i:4;s:8:\"outbound\";i:5;s:13:\"telemarketing\";i:6;s:9:\"telephone\";i:7;s:21:\"professional services\";}}i:15;a:5:{s:2:\"id\";s:59:\"professional_services__credit_counseling_or_repair_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:34:\"Credit counseling or credit repair\";s:3:\"mcc\";i:7277;s:8:\"keywords\";a:8:{i:0;s:10:\"counseling\";i:1;s:6:\"credit\";i:2;s:9:\"guarantee\";i:3;s:12:\"professional\";i:4;s:6:\"repair\";i:5;s:5:\"score\";i:6;s:7:\"service\";i:7;s:21:\"professional services\";}}i:16;a:5:{s:2:\"id\";s:51:\"professional_services__mortgage_consulting_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:28:\"Mortgage consulting services\";s:3:\"mcc\";i:7277;s:8:\"keywords\";a:10:{i:0;s:10:\"consulting\";i:1;s:11:\"foreclosure\";i:2;s:9:\"guarantee\";i:3;s:4:\"loan\";i:4;s:12:\"modification\";i:5;s:8:\"mortgage\";i:6;s:12:\"professional\";i:7;s:6:\"relief\";i:8;s:7:\"service\";i:9;s:21:\"professional services\";}}i:17;a:5:{s:2:\"id\";s:46:\"professional_services__debt_reduction_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:23:\"Debt reduction services\";s:3:\"mcc\";i:7277;s:8:\"keywords\";a:17:{i:0;s:9:\"adjusting\";i:1;s:13:\"consolidation\";i:2;s:6:\"credit\";i:3;s:4:\"debt\";i:4;s:9:\"financial\";i:5;s:11:\"foreclosure\";i:6;s:4:\"levy\";i:7;s:12:\"professional\";i:8;s:9:\"reduction\";i:9;s:6:\"relief\";i:10;s:11:\"renegotiate\";i:11;s:9:\"repossess\";i:12;s:7:\"service\";i:13;s:10:\"settlement\";i:14;s:3:\"tax\";i:15;s:4:\"wipe\";i:16;s:21:\"professional services\";}}i:18;a:5:{s:2:\"id\";s:33:\"professional_services__warranties\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:17:\"Warranty Services\";s:3:\"mcc\";i:7699;s:8:\"keywords\";a:15:{i:0;s:9:\"agreement\";i:1;s:8:\"contract\";i:2;s:6:\"device\";i:3;s:8:\"extended\";i:4;s:11:\"maintenance\";i:5;s:4:\"plan\";i:6;s:12:\"professional\";i:7;s:10:\"protection\";i:8;s:6:\"refund\";i:9;s:6:\"repair\";i:10;s:6:\"return\";i:11;s:7:\"service\";i:12;s:12:\"subscription\";i:13;s:8:\"warranty\";i:14;s:21:\"professional services\";}}i:19;a:5:{s:2:\"id\";s:47:\"professional_services__other_marketing_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:24:\"Other Marketing Services\";s:3:\"mcc\";i:7399;s:8:\"keywords\";a:30:{i:0;s:7:\"advisor\";i:1;s:9:\"answering\";i:2;s:11:\"arrangement\";i:3;s:6:\"bureau\";i:4;s:8:\"business\";i:5;s:10:\"conference\";i:6;s:10:\"convention\";i:7;s:9:\"financial\";i:8;s:11:\"information\";i:9;s:3:\"key\";i:10;s:9:\"locksmith\";i:11;s:4:\"mail\";i:12;s:10:\"management\";i:13;s:7:\"meeting\";i:14;s:7:\"message\";i:15;s:7:\"packing\";i:16;s:6:\"paging\";i:17;s:7:\"planner\";i:18;s:8:\"planning\";i:19;s:6:\"postal\";i:20;s:10:\"publishing\";i:21;s:7:\"seminar\";i:22;s:7:\"service\";i:23;s:4:\"show\";i:24;s:9:\"telephone\";i:25;s:7:\"tourist\";i:26;s:5:\"trade\";i:27;s:11:\"translation\";i:28;s:18:\"video-conferencing\";i:29;s:21:\"professional services\";}}i:20;a:5:{s:2:\"id\";s:46:\"professional_services__other_business_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:23:\"Other business services\";s:3:\"mcc\";i:7399;s:8:\"keywords\";a:30:{i:0;s:7:\"advisor\";i:1;s:9:\"answering\";i:2;s:11:\"arrangement\";i:3;s:6:\"bureau\";i:4;s:8:\"business\";i:5;s:10:\"conference\";i:6;s:10:\"convention\";i:7;s:9:\"financial\";i:8;s:11:\"information\";i:9;s:3:\"key\";i:10;s:9:\"locksmith\";i:11;s:4:\"mail\";i:12;s:10:\"management\";i:13;s:7:\"meeting\";i:14;s:7:\"message\";i:15;s:7:\"packing\";i:16;s:6:\"paging\";i:17;s:7:\"planner\";i:18;s:8:\"planning\";i:19;s:6:\"postal\";i:20;s:10:\"publishing\";i:21;s:7:\"seminar\";i:22;s:7:\"service\";i:23;s:4:\"show\";i:24;s:9:\"telephone\";i:25;s:7:\"tourist\";i:26;s:5:\"trade\";i:27;s:11:\"translation\";i:28;s:18:\"video-conferencing\";i:29;s:21:\"professional services\";}}}}i:5;a:4:{s:2:\"id\";s:24:\"membership_organizations\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:24:\"Membership organizations\";s:5:\"items\";a:6:{i:0;a:5:{s:2:\"id\";s:65:\"membership_organizations__civic_fraternal_and_social_associations\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:40:\"Civic, fraternal, or social associations\";s:3:\"mcc\";i:8641;s:8:\"keywords\";a:15:{i:0;s:7:\"alumnae\";i:1;s:6:\"alumni\";i:2;s:11:\"association\";i:3;s:8:\"athletic\";i:4;s:7:\"chamber\";i:5;s:5:\"civic\";i:6;s:8:\"commerce\";i:7;s:9:\"fraternal\";i:8;s:11:\"fundraising\";i:9;s:10:\"membership\";i:10;s:6:\"police\";i:11;s:9:\"political\";i:12;s:6:\"social\";i:13;s:7:\"veteran\";i:14;s:24:\"membership organizations\";}}i:1;a:5:{s:2:\"id\";s:68:\"membership_organizations__charities_and_social_service_organizations\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:41:\"Charities or social service organizations\";s:3:\"mcc\";i:8398;s:8:\"keywords\";a:16:{i:0;s:10:\"charitable\";i:1;s:7:\"charity\";i:2;s:12:\"contribution\";i:3;s:8:\"donation\";i:4;s:9:\"fundraise\";i:5;s:11:\"fundraising\";i:6;s:10:\"membership\";i:7;s:3:\"non\";i:8;s:9:\"nonprofit\";i:9;s:12:\"organization\";i:10;s:9:\"political\";i:11;s:7:\"service\";i:12;s:6:\"social\";i:13;s:7:\"solicit\";i:14;s:7:\"welfare\";i:15;s:24:\"membership organizations\";}}i:2;a:5:{s:2:\"id\";s:49:\"membership_organizations__religious_organizations\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:23:\"Religious organizations\";s:3:\"mcc\";i:8661;s:8:\"keywords\";a:16:{i:0;s:8:\"activity\";i:1;s:6:\"chapel\";i:2;s:7:\"charity\";i:3;s:6:\"church\";i:4;s:10:\"membership\";i:5;s:6:\"mosque\";i:6;s:12:\"organization\";i:7;s:8:\"religion\";i:8;s:9:\"religious\";i:9;s:7:\"service\";i:10;s:5:\"study\";i:11;s:9:\"synagogue\";i:12;s:6:\"temple\";i:13;s:8:\"training\";i:14;s:7:\"worship\";i:15;s:24:\"membership organizations\";}}i:3;a:5:{s:2:\"id\";s:39:\"membership_organizations__country_clubs\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:13:\"Country clubs\";s:3:\"mcc\";i:7997;s:8:\"keywords\";a:28:{i:0;s:8:\"athletic\";i:1;s:4:\"boat\";i:2;s:7:\"bowling\";i:3;s:4:\"club\";i:4;s:7:\"country\";i:5;s:6:\"course\";i:6;s:13:\"entertainment\";i:7;s:8:\"exercise\";i:8;s:8:\"facility\";i:9;s:4:\"golf\";i:10;s:3:\"gun\";i:11;s:6:\"health\";i:12;s:6:\"league\";i:13;s:7:\"massage\";i:14;s:10:\"membership\";i:15;s:8:\"physical\";i:16;s:7:\"private\";i:17;s:11:\"racquetball\";i:18;s:10:\"recreation\";i:19;s:6:\"riding\";i:20;s:7:\"service\";i:21;s:8:\"shooting\";i:22;s:3:\"spa\";i:23;s:6:\"sports\";i:24;s:4:\"swim\";i:25;s:6:\"tennis\";i:26;s:5:\"yacht\";i:27;s:24:\"membership organizations\";}}i:4;a:5:{s:2:\"id\";s:49:\"membership_organizations__political_organizations\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:23:\"Political organizations\";s:3:\"mcc\";i:8651;s:8:\"keywords\";a:14:{i:0;s:9:\"candidate\";i:1;s:7:\"charity\";i:2;s:5:\"civic\";i:3;s:4:\"fund\";i:4;s:10:\"membership\";i:5;s:8:\"national\";i:6;s:12:\"organization\";i:7;s:5:\"party\";i:8;s:9:\"political\";i:9;s:10:\"politician\";i:10;s:5:\"raise\";i:11;s:6:\"social\";i:12;s:5:\"state\";i:13;s:24:\"membership organizations\";}}i:5;a:5:{s:2:\"id\";s:56:\"membership_organizations__other_membership_organizations\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:30:\"Other membership organizations\";s:3:\"mcc\";i:8699;s:8:\"keywords\";a:16:{i:0;s:3:\"art\";i:1;s:11:\"association\";i:2;s:4:\"club\";i:3;s:5:\"condo\";i:4;s:10:\"historical\";i:5;s:3:\"hoa\";i:6;s:4:\"home\";i:7;s:5:\"labor\";i:8;s:10:\"membership\";i:9;s:12:\"organization\";i:10;s:5:\"owner\";i:11;s:6:\"poetry\";i:12;s:12:\"professional\";i:13;s:6:\"tenant\";i:14;s:5:\"union\";i:15;s:24:\"membership organizations\";}}}}i:6;a:4:{s:2:\"id\";s:17:\"personal_services\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:17:\"Personal services\";s:5:\"items\";a:10:{i:0;a:5:{s:2:\"id\";s:38:\"personal_services__photography_studios\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:19:\"Photography studios\";s:3:\"mcc\";i:7221;s:8:\"keywords\";a:10:{i:0;s:7:\"develop\";i:1;s:8:\"personal\";i:2;s:5:\"photo\";i:3;s:11:\"photofinish\";i:4;s:11:\"photography\";i:5;s:8:\"portrait\";i:6;s:5:\"still\";i:7;s:5:\"video\";i:8;s:7:\"wedding\";i:9;s:17:\"personal services\";}}i:1;a:5:{s:2:\"id\";s:41:\"personal_services__health_and_beauty_spas\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:22:\"Health and beauty spas\";s:3:\"mcc\";i:7298;s:8:\"keywords\";a:21:{i:0;s:4:\"bath\";i:1;s:6:\"beauty\";i:2;s:3:\"bed\";i:3;s:6:\"facial\";i:4;s:4:\"hair\";i:5;s:6:\"health\";i:6;s:6:\"herbal\";i:7;s:13:\"instructional\";i:8;s:6:\"makeup\";i:9;s:7:\"massage\";i:10;s:3:\"mud\";i:11;s:8:\"personal\";i:12;s:7:\"service\";i:13;s:5:\"steam\";i:14;s:7:\"styling\";i:15;s:3:\"tan\";i:16;s:11:\"therapeutic\";i:17;s:9:\"treatment\";i:18;s:9:\"whirlpool\";i:19;s:4:\"wrap\";i:20;s:17:\"personal services\";}}i:2;a:5:{s:2:\"id\";s:37:\"personal_services__barbers_and_salons\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:17:\"Salons or barbers\";s:3:\"mcc\";i:7230;s:8:\"keywords\";a:19:{i:0;s:6:\"barber\";i:1;s:6:\"beauty\";i:2;s:4:\"care\";i:3;s:8:\"coloring\";i:4;s:7:\"cutting\";i:5;s:10:\"fingernail\";i:6;s:4:\"hair\";i:7;s:11:\"hairdresser\";i:8;s:6:\"health\";i:9;s:4:\"make\";i:10;s:7:\"make-up\";i:11;s:6:\"makeup\";i:12;s:8:\"manicure\";i:13;s:4:\"nail\";i:14;s:8:\"pedicure\";i:15;s:8:\"personal\";i:16;s:5:\"salon\";i:17;s:7:\"styling\";i:18;s:17:\"personal services\";}}i:3;a:5:{s:2:\"id\";s:39:\"personal_services__landscaping_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:20:\"Landscaping services\";s:3:\"mcc\";i:780;s:8:\"keywords\";a:20:{i:0;s:4:\"care\";i:1;s:6:\"design\";i:2;s:9:\"fertilize\";i:3;s:7:\"florist\";i:4;s:6:\"garden\";i:5;s:12:\"horticulture\";i:6;s:9:\"landscape\";i:7;s:4:\"lawn\";i:8;s:3:\"mow\";i:9;s:5:\"mulch\";i:10;s:7:\"nursery\";i:11;s:4:\"plan\";i:12;s:5:\"plant\";i:13;s:4:\"seed\";i:14;s:3:\"sod\";i:15;s:5:\"spray\";i:16;s:5:\"stock\";i:17;s:6:\"supply\";i:18;s:5:\"trade\";i:19;s:17:\"personal services\";}}i:4;a:5:{s:2:\"id\";s:34:\"personal_services__massage_parlors\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Massage parlors\";s:3:\"mcc\";i:7297;s:8:\"keywords\";a:11:{i:0;s:6:\"beauty\";i:1;s:6:\"health\";i:2;s:3:\"hot\";i:3;s:7:\"massage\";i:4;s:6:\"parlor\";i:5;s:8:\"personal\";i:6;s:5:\"sauna\";i:7;s:3:\"spa\";i:8;s:11:\"therapeutic\";i:9;s:3:\"tub\";i:10;s:17:\"personal services\";}}i:5;a:5:{s:2:\"id\";s:38:\"personal_services__counseling_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:19:\"Counseling services\";s:3:\"mcc\";i:7277;s:8:\"keywords\";a:11:{i:0;s:5:\"abuse\";i:1;s:7:\"alcohol\";i:2;s:10:\"counseling\";i:3;s:4:\"debt\";i:4;s:4:\"drug\";i:5;s:6:\"family\";i:6;s:9:\"financial\";i:7;s:8:\"marriage\";i:8;s:8:\"personal\";i:9;s:7:\"therapy\";i:10;s:17:\"personal services\";}}i:6;a:5:{s:2:\"id\";s:47:\"personal_services__health_and_wellness_coaching\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:28:\"Health and wellness coaching\";s:3:\"mcc\";i:7277;s:8:\"keywords\";a:14:{i:0;s:8:\"behavior\";i:1;s:5:\"being\";i:2;s:6:\"change\";i:3;s:5:\"coach\";i:4;s:5:\"habit\";i:5;s:6:\"health\";i:6;s:10:\"individual\";i:7;s:4:\"life\";i:8;s:8:\"obstacle\";i:9;s:10:\"psychology\";i:10;s:4:\"well\";i:11;s:10:\"well-being\";i:12;s:8:\"wellness\";i:13;s:17:\"personal services\";}}i:7;a:5:{s:2:\"id\";s:48:\"personal_services__laundry_and_cleaning_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:28:\"Laundry or cleaning services\";s:3:\"mcc\";i:7210;s:8:\"keywords\";a:11:{i:0;s:5:\"clean\";i:1;s:8:\"cleaning\";i:2;s:6:\"diaper\";i:3;s:3:\"dry\";i:4;s:4:\"fold\";i:5;s:7:\"garment\";i:6;s:7:\"laundry\";i:7;s:8:\"personal\";i:8;s:5:\"steam\";i:9;s:4:\"wash\";i:10;s:17:\"personal services\";}}i:8;a:5:{s:2:\"id\";s:34:\"personal_services__dating_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Dating services\";s:3:\"mcc\";i:7273;s:8:\"keywords\";a:9:{i:0;s:5:\"adult\";i:1;s:6:\"dating\";i:2;s:6:\"escort\";i:3;s:4:\"love\";i:4;s:8:\"marriage\";i:5;s:10:\"matchmaker\";i:6;s:6:\"online\";i:7;s:8:\"personal\";i:8;s:17:\"personal services\";}}i:9;a:5:{s:2:\"id\";s:42:\"personal_services__other_personal_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:23:\"Other personal services\";s:3:\"mcc\";i:7299;s:8:\"keywords\";a:36:{i:0;s:7:\"advisor\";i:1;s:6:\"animal\";i:2;s:8:\"boarding\";i:3;s:4:\"body\";i:4;s:5:\"breed\";i:5;s:4:\"cash\";i:6;s:6:\"chapel\";i:7;s:12:\"crowdfunding\";i:8;s:10:\"filtration\";i:9;s:9:\"financial\";i:10;s:4:\"gift\";i:11;s:5:\"groom\";i:12;s:5:\"horse\";i:13;s:5:\"hotel\";i:14;s:7:\"housing\";i:15;s:6:\"kennel\";i:16;s:4:\"knot\";i:17;s:8:\"personal\";i:18;s:3:\"pet\";i:19;s:8:\"piercing\";i:20;s:4:\"plan\";i:21;s:7:\"planner\";i:22;s:12:\"purification\";i:23;s:8:\"registry\";i:24;s:6:\"rental\";i:25;s:4:\"rsvp\";i:26;s:7:\"service\";i:27;s:9:\"softening\";i:28;s:6:\"stable\";i:29;s:6:\"tattoo\";i:30;s:11:\"taxidermist\";i:31;s:5:\"train\";i:32;s:9:\"treatment\";i:33;s:5:\"water\";i:34;s:7:\"wedding\";i:35;s:17:\"personal services\";}}}}i:7;a:4:{s:2:\"id\";s:14:\"transportation\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:14:\"Transportation\";s:5:\"items\";a:11:{i:0;a:5:{s:2:\"id\";s:37:\"transportation__ride_sharing_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:11:\"Ridesharing\";s:3:\"mcc\";i:4121;s:8:\"keywords\";a:21:{i:0;s:4:\"auto\";i:1;s:10:\"automobile\";i:2;s:3:\"cab\";i:3;s:3:\"car\";i:4;s:8:\"commuter\";i:5;s:6:\"driver\";i:6;s:4:\"hail\";i:7;s:4:\"limo\";i:8;s:9:\"limousine\";i:9;s:5:\"local\";i:10;s:4:\"lyft\";i:11;s:9:\"passenger\";i:12;s:4:\"ride\";i:13;s:9:\"rideshare\";i:14;s:8:\"suburban\";i:15;s:4:\"taxi\";i:16;s:7:\"taxicab\";i:17;s:14:\"transportation\";i:18;s:6:\"travel\";i:19;s:4:\"uber\";i:20;s:14:\"transportation\";}}i:1;a:5:{s:2:\"id\";s:31:\"transportation__taxis_and_limos\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Taxis and limos\";s:3:\"mcc\";i:4121;s:8:\"keywords\";a:21:{i:0;s:4:\"auto\";i:1;s:10:\"automobile\";i:2;s:3:\"cab\";i:3;s:3:\"car\";i:4;s:8:\"commuter\";i:5;s:6:\"driver\";i:6;s:4:\"hail\";i:7;s:4:\"limo\";i:8;s:9:\"limousine\";i:9;s:5:\"local\";i:10;s:4:\"lyft\";i:11;s:9:\"passenger\";i:12;s:4:\"ride\";i:13;s:9:\"rideshare\";i:14;s:8:\"suburban\";i:15;s:4:\"taxi\";i:16;s:7:\"taxicab\";i:17;s:14:\"transportation\";i:18;s:6:\"travel\";i:19;s:4:\"uber\";i:20;s:14:\"transportation\";}}i:2;a:5:{s:2:\"id\";s:57:\"transportation__courier_services_including_local_delivery\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:16:\"Courier services\";s:3:\"mcc\";i:4215;s:8:\"keywords\";a:18:{i:0;s:3:\"air\";i:1;s:7:\"courier\";i:2;s:7:\"deliver\";i:3;s:8:\"delivery\";i:4;s:7:\"forward\";i:5;s:7:\"freight\";i:6;s:6:\"ground\";i:7;s:6:\"letter\";i:8;s:5:\"motor\";i:9;s:6:\"office\";i:10;s:7:\"package\";i:11;s:6:\"parcel\";i:12;s:4:\"post\";i:13;s:6:\"postal\";i:14;s:9:\"transport\";i:15;s:14:\"transportation\";i:16;s:8:\"trucking\";i:17;s:14:\"transportation\";}}i:3;a:5:{s:2:\"id\";s:28:\"transportation__parking_lots\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:12:\"Parking lots\";s:3:\"mcc\";i:7523;s:8:\"keywords\";a:13:{i:0;s:10:\"automobile\";i:1;s:5:\"basis\";i:2;s:8:\"contract\";i:3;s:5:\"daily\";i:4;s:3:\"fee\";i:5;s:6:\"garage\";i:6;s:6:\"hourly\";i:7;s:7:\"monthly\";i:8;s:4:\"park\";i:9;s:7:\"parking\";i:10;s:7:\"service\";i:11;s:9:\"temporary\";i:12;s:14:\"transportation\";}}i:4;a:5:{s:2:\"id\";s:50:\"transportation__travel_agencies_and_tour_operators\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Travel agencies\";s:3:\"mcc\";i:4722;s:8:\"keywords\";a:31:{i:0;s:13:\"accommodation\";i:1;s:6:\"agency\";i:2;s:5:\"agent\";i:3;s:3:\"air\";i:4;s:6:\"behalf\";i:5;s:7:\"booking\";i:6;s:3:\"bus\";i:7;s:3:\"cab\";i:8;s:7:\"charter\";i:9;s:6:\"cruise\";i:10;s:11:\"information\";i:11;s:4:\"land\";i:12;s:4:\"limo\";i:13;s:9:\"limousine\";i:14;s:7:\"lodging\";i:15;s:8:\"operator\";i:16;s:7:\"package\";i:17;s:9:\"passenger\";i:18;s:4:\"plan\";i:19;s:7:\"railway\";i:20;s:6:\"rental\";i:21;s:3:\"sea\";i:22;s:9:\"steamship\";i:23;s:4:\"taxi\";i:24;s:7:\"taxicab\";i:25;s:9:\"ticketing\";i:26;s:4:\"tour\";i:27;s:14:\"transportation\";i:28;s:6:\"travel\";i:29;s:8:\"traveler\";i:30;s:14:\"transportation\";}}i:5;a:5:{s:2:\"id\";s:34:\"transportation__freight_forwarders\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:18:\"Freight forwarders\";s:3:\"mcc\";i:4215;s:8:\"keywords\";a:23:{i:0;s:3:\"air\";i:1;s:7:\"carrier\";i:2;s:7:\"company\";i:3;s:7:\"courier\";i:4;s:8:\"delivery\";i:5;s:8:\"distance\";i:6;s:4:\"farm\";i:7;s:9:\"forwarder\";i:8;s:7:\"freight\";i:9;s:5:\"goods\";i:10;s:6:\"ground\";i:11;s:9:\"household\";i:12;s:5:\"local\";i:13;s:4:\"long\";i:14;s:6:\"moving\";i:15;s:12:\"refrigerated\";i:16;s:7:\"service\";i:17;s:7:\"storage\";i:18;s:9:\"transport\";i:19;s:14:\"transportation\";i:20;s:8:\"trucking\";i:21;s:11:\"warehousing\";i:22;s:14:\"transportation\";}}i:6;a:5:{s:2:\"id\";s:53:\"transportation__shipping_forwarding_and_drop_shipping\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:22:\"Shipping or forwarding\";s:3:\"mcc\";i:4215;s:8:\"keywords\";a:16:{i:0;s:3:\"air\";i:1;s:5:\"cargo\";i:2;s:10:\"consultant\";i:3;s:8:\"consumer\";i:4;s:7:\"courier\";i:5;s:8:\"customer\";i:6;s:7:\"deliver\";i:7;s:6:\"direct\";i:8;s:7:\"forward\";i:9;s:7:\"freight\";i:10;s:5:\"local\";i:11;s:6:\"parcel\";i:12;s:8:\"supplier\";i:13;s:3:\"ups\";i:14;s:4:\"usps\";i:15;s:14:\"transportation\";}}i:7;a:5:{s:2:\"id\";s:39:\"transportation__commuter_transportation\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:23:\"Commuter transportation\";s:3:\"mcc\";i:4111;s:8:\"keywords\";a:22:{i:0;s:3:\"bus\";i:1;s:3:\"cab\";i:2;s:7:\"carpool\";i:3;s:7:\"commute\";i:4;s:8:\"commuter\";i:5;s:6:\"driver\";i:6;s:5:\"ferry\";i:7;s:4:\"limo\";i:8;s:9:\"limousine\";i:9;s:5:\"local\";i:10;s:4:\"mass\";i:11;s:9:\"passenger\";i:12;s:7:\"railway\";i:13;s:4:\"ride\";i:14;s:5:\"route\";i:15;s:8:\"schedule\";i:16;s:5:\"share\";i:17;s:8:\"suburban\";i:18;s:4:\"taxi\";i:19;s:14:\"transportation\";i:20;s:6:\"travel\";i:21;s:14:\"transportation\";}}i:8;a:5:{s:2:\"id\";s:28:\"transportation__cruise_lines\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:12:\"Cruise lines\";s:3:\"mcc\";i:4411;s:8:\"keywords\";a:24:{i:0;s:3:\"all\";i:1;s:5:\"cabin\";i:2;s:8:\"commuter\";i:3;s:6:\"cruise\";i:4;s:13:\"entertainment\";i:5;s:5:\"ferry\";i:6;s:4:\"food\";i:7;s:9:\"inclusive\";i:8;s:6:\"inland\";i:9;s:4:\"line\";i:10;s:5:\"local\";i:11;s:6:\"luxury\";i:12;s:4:\"open\";i:13;s:9:\"passenger\";i:14;s:8:\"pleasure\";i:15;s:5:\"route\";i:16;s:3:\"sea\";i:17;s:4:\"ship\";i:18;s:8:\"suburban\";i:19;s:14:\"transportation\";i:20;s:6:\"travel\";i:21;s:8:\"vacation\";i:22;s:5:\"water\";i:23;s:14:\"transportation\";}}i:9;a:5:{s:2:\"id\";s:41:\"transportation__airlines_and_air_carriers\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:25:\"Airlines and air carriers\";s:3:\"mcc\";i:4511;s:8:\"keywords\";a:5:{i:0;s:3:\"air\";i:1;s:7:\"airline\";i:2;s:7:\"carrier\";i:3;s:6:\"travel\";i:4;s:14:\"transportation\";}}i:10;a:5:{s:2:\"id\";s:45:\"transportation__other_transportation_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:29:\"Other transportation services\";s:3:\"mcc\";i:4789;s:8:\"keywords\";a:19:{i:0;s:6:\"aerial\";i:1;s:7:\"airport\";i:2;s:7:\"bicycle\";i:3;s:3:\"bus\";i:4;s:3:\"cab\";i:5;s:5:\"cable\";i:6;s:3:\"car\";i:7;s:8:\"carriage\";i:8;s:5:\"drawn\";i:9;s:5:\"ferry\";i:10;s:5:\"horse\";i:11;s:9:\"passenger\";i:12;s:7:\"pedicab\";i:13;s:7:\"shuttle\";i:14;s:4:\"taxi\";i:15;s:7:\"tramway\";i:16;s:14:\"transportation\";i:17;s:6:\"travel\";i:18;s:14:\"transportation\";}}}}i:8;a:4:{s:2:\"id\";s:18:\"travel_and_lodging\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:18:\"Travel and lodging\";s:5:\"items\";a:4:{i:0;a:5:{s:2:\"id\";s:36:\"travel_and_lodging__property_rentals\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:16:\"Property rentals\";s:3:\"mcc\";i:6513;s:8:\"keywords\";a:24:{i:0;s:5:\"agent\";i:1;s:9:\"apartment\";i:2;s:11:\"association\";i:3;s:6:\"broker\";i:4;s:10:\"commercial\";i:5;s:10:\"commission\";i:6;s:5:\"condo\";i:7;s:6:\"estate\";i:8;s:3:\"fee\";i:9;s:9:\"financial\";i:10;s:9:\"homeowner\";i:11;s:5:\"hotel\";i:12;s:7:\"housing\";i:13;s:7:\"lodging\";i:14;s:10:\"management\";i:15;s:7:\"manager\";i:16;s:8:\"mortgage\";i:17;s:5:\"motel\";i:18;s:7:\"payment\";i:19;s:4:\"real\";i:20;s:6:\"rental\";i:21;s:11:\"residential\";i:22;s:7:\"service\";i:23;s:18:\"travel and lodging\";}}i:1;a:5:{s:2:\"id\";s:26:\"travel_and_lodging__hotels\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:23:\"Hotels, inns, or motels\";s:3:\"mcc\";i:7011;s:8:\"keywords\";a:21:{i:0;s:6:\"airbnb\";i:1;s:3:\"bed\";i:2;s:9:\"breakfast\";i:3;s:5:\"cabin\";i:4;s:7:\"central\";i:5;s:7:\"cottage\";i:6;s:5:\"couch\";i:7;s:9:\"homeshare\";i:8;s:5:\"hotel\";i:9;s:3:\"inn\";i:10;s:7:\"lodging\";i:11;s:5:\"motel\";i:12;s:8:\"property\";i:13;s:11:\"reservation\";i:14;s:6:\"resort\";i:15;s:5:\"share\";i:16;s:5:\"short\";i:17;s:4:\"surf\";i:18;s:4:\"term\";i:19;s:6:\"travel\";i:20;s:18:\"travel and lodging\";}}i:2;a:5:{s:2:\"id\";s:30:\"travel_and_lodging__timeshares\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:10:\"Timeshares\";s:3:\"mcc\";i:7012;s:8:\"keywords\";a:10:{i:0;s:7:\"arrange\";i:1;s:5:\"condo\";i:2;s:11:\"condominium\";i:3;s:8:\"exchange\";i:4;s:5:\"lease\";i:5;s:4:\"rent\";i:6;s:4:\"sell\";i:7;s:9:\"timeshare\";i:8;s:6:\"travel\";i:9;s:18:\"travel and lodging\";}}i:3;a:5:{s:2:\"id\";s:44:\"travel_and_lodging__other_travel_and_lodging\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:24:\"Other travel and lodging\";s:3:\"mcc\";i:4789;s:8:\"keywords\";a:19:{i:0;s:6:\"aerial\";i:1;s:7:\"airport\";i:2;s:7:\"bicycle\";i:3;s:3:\"bus\";i:4;s:3:\"cab\";i:5;s:5:\"cable\";i:6;s:3:\"car\";i:7;s:8:\"carriage\";i:8;s:5:\"drawn\";i:9;s:5:\"ferry\";i:10;s:5:\"horse\";i:11;s:9:\"passenger\";i:12;s:7:\"pedicab\";i:13;s:7:\"shuttle\";i:14;s:4:\"taxi\";i:15;s:7:\"tramway\";i:16;s:14:\"transportation\";i:17;s:6:\"travel\";i:18;s:18:\"travel and lodging\";}}}}i:9;a:4:{s:2:\"id\";s:16:\"medical_services\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:16:\"Medical services\";s:5:\"items\";a:14:{i:0;a:5:{s:2:\"id\";s:33:\"medical_services__medical_devices\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Medical devices\";s:3:\"mcc\";i:5047;s:8:\"keywords\";a:41:{i:0;s:3:\"aid\";i:1;s:4:\"aids\";i:2;s:3:\"als\";i:3;s:9:\"alzheimer\";i:4;s:9:\"arthritis\";i:5;s:5:\"bipap\";i:6;s:6:\"cancer\";i:7;s:7:\"contact\";i:8;s:5:\"covid\";i:9;s:4:\"cpap\";i:10;s:13:\"defibrillator\";i:11;s:6:\"dental\";i:12;s:6:\"dermal\";i:13;s:6:\"device\";i:14;s:8:\"diabetes\";i:15;s:10:\"disposable\";i:16;s:10:\"electrical\";i:17;s:8:\"eyeglass\";i:18;s:6:\"filler\";i:19;s:7:\"hearing\";i:20;s:3:\"hiv\";i:21;s:10:\"hypodermic\";i:22;s:7:\"implant\";i:23;s:7:\"inhaler\";i:24;s:7:\"insulin\";i:25;s:3:\"kit\";i:26;s:5:\"lense\";i:27;s:7:\"medical\";i:28;s:6:\"muscle\";i:29;s:9:\"nebulizer\";i:30;s:4:\"need\";i:31;s:6:\"needle\";i:32;s:12:\"prescription\";i:33;s:10:\"rheumatoid\";i:34;s:8:\"serology\";i:35;s:3:\"std\";i:36;s:3:\"sti\";i:37;s:11:\"stimulation\";i:38;s:7:\"syringe\";i:39;s:7:\"testing\";i:40;s:16:\"medical services\";}}i:1;a:5:{s:2:\"id\";s:40:\"medical_services__doctors_and_physicians\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:22:\"Doctors and physicians\";s:3:\"mcc\";i:8011;s:8:\"keywords\";a:19:{i:0;s:8:\"cosmetic\";i:1;s:13:\"dermatologist\";i:2;s:6:\"doctor\";i:3;s:7:\"general\";i:4;s:12:\"gynecologist\";i:5;s:7:\"medical\";i:6;s:8:\"medicine\";i:7;s:11:\"neurologist\";i:8;s:12:\"obstetrician\";i:9;s:11:\"orthopedist\";i:10;s:12:\"pediatrician\";i:11;s:9:\"physician\";i:12;s:7:\"plastic\";i:13;s:12:\"psychiatrist\";i:14;s:11:\"radiologist\";i:15;s:11:\"specialized\";i:16;s:7:\"surgeon\";i:17;s:7:\"surgery\";i:18;s:16:\"medical services\";}}i:2;a:5:{s:2:\"id\";s:58:\"medical_services__opticians_opticians_goods_and_eyeglasses\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:24:\"Opticians and eyeglasses\";s:3:\"mcc\";i:8043;s:8:\"keywords\";a:10:{i:0;s:4:\"exam\";i:1;s:3:\"eye\";i:2;s:8:\"eyeglass\";i:3;s:7:\"glasses\";i:4;s:5:\"goods\";i:5;s:7:\"medical\";i:6;s:7:\"optical\";i:7;s:8:\"optician\";i:8;s:12:\"prescription\";i:9;s:16:\"medical services\";}}i:3;a:5:{s:2:\"id\";s:44:\"medical_services__dentists_and_orthodontists\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:26:\"Dentists and orthodontists\";s:3:\"mcc\";i:8021;s:8:\"keywords\";a:10:{i:0;s:6:\"dental\";i:1;s:7:\"dentist\";i:2;s:6:\"doctor\";i:3;s:7:\"general\";i:4;s:7:\"medical\";i:5;s:12:\"orthodontist\";i:6;s:9:\"physician\";i:7;s:11:\"specialized\";i:8;s:7:\"surgery\";i:9;s:16:\"medical services\";}}i:4;a:5:{s:2:\"id\";s:31:\"medical_services__chiropractors\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:13:\"Chiropractors\";s:3:\"mcc\";i:8041;s:8:\"keywords\";a:11:{i:0;s:8:\"adjusted\";i:1;s:12:\"chiropractor\";i:2;s:6:\"column\";i:3;s:6:\"doctor\";i:4;s:5:\"limbs\";i:5;s:11:\"manipulated\";i:6;s:7:\"medical\";i:7;s:9:\"physician\";i:8;s:6:\"spinal\";i:9;s:7:\"therapy\";i:10;s:16:\"medical services\";}}i:5;a:5:{s:2:\"id\";s:54:\"medical_services__nursing_and_personal_care_facilities\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:35:\"Nursing or personal care facilities\";s:3:\"mcc\";i:8050;s:8:\"keywords\";a:17:{i:0;s:4:\"care\";i:1;s:12:\"convalescent\";i:2;s:5:\"elder\";i:3;s:8:\"facility\";i:4;s:4:\"heal\";i:5;s:4:\"home\";i:6;s:7:\"hospice\";i:7;s:7:\"housing\";i:8;s:9:\"inpatient\";i:9;s:4:\"long\";i:10;s:7:\"medical\";i:11;s:7:\"nursing\";i:12;s:8:\"personal\";i:13;s:4:\"rest\";i:14;s:7:\"surgery\";i:15;s:4:\"term\";i:16;s:16:\"medical services\";}}i:6;a:5:{s:2:\"id\";s:27:\"medical_services__hospitals\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:9:\"Hospitals\";s:3:\"mcc\";i:8062;s:8:\"keywords\";a:17:{i:0;s:4:\"care\";i:1;s:10:\"continuous\";i:2;s:10:\"diagnostic\";i:3;s:5:\"elder\";i:4;s:9:\"extensive\";i:5;s:4:\"home\";i:6;s:8:\"hospital\";i:7;s:7:\"medical\";i:8;s:6:\"mental\";i:9;s:7:\"nursing\";i:10;s:11:\"psychiatric\";i:11;s:7:\"service\";i:12;s:8:\"services\";i:13;s:7:\"surgery\";i:14;s:9:\"treatment\";i:15;s:10:\"veterinary\";i:16;s:16:\"medical services\";}}i:7;a:5:{s:2:\"id\";s:54:\"medical_services__personal_fundraising_or_crowdfunding\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:36:\"Personal fundraising or crowdfunding\";s:3:\"mcc\";i:8398;s:8:\"keywords\";a:12:{i:0;s:9:\"awareness\";i:1;s:12:\"crowdfunding\";i:2;s:7:\"expense\";i:3;s:9:\"financial\";i:4;s:11:\"fundraising\";i:5;s:9:\"invention\";i:6;s:5:\"money\";i:7;s:8:\"personal\";i:8;s:5:\"raise\";i:9;s:7:\"service\";i:10;s:7:\"support\";i:11;s:16:\"medical services\";}}i:8;a:5:{s:2:\"id\";s:40:\"medical_services__mental_health_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:22:\"Mental health services\";s:3:\"mcc\";i:8099;s:8:\"keywords\";a:13:{i:0;s:7:\"counsel\";i:1;s:6:\"health\";i:2;s:9:\"inpatient\";i:3;s:10:\"medication\";i:4;s:10:\"meditation\";i:5;s:6:\"mental\";i:6;s:13:\"psychotherapy\";i:7;s:11:\"residential\";i:8;s:7:\"service\";i:9;s:11:\"supervision\";i:10;s:7:\"therapy\";i:11;s:4:\"yoga\";i:12;s:16:\"medical services\";}}i:9;a:5:{s:2:\"id\";s:33:\"medical_services__assisted_living\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Assisted living\";s:3:\"mcc\";i:8050;s:8:\"keywords\";a:9:{i:0;s:8:\"assisted\";i:1;s:5:\"elder\";i:2;s:4:\"home\";i:3;s:6:\"living\";i:4;s:7:\"medical\";i:5;s:5:\"nurse\";i:6;s:7:\"nursing\";i:7;s:6:\"senior\";i:8;s:16:\"medical services\";}}i:10;a:5:{s:2:\"id\";s:37:\"medical_services__veterinary_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:19:\"Veterinary services\";s:3:\"mcc\";i:742;s:8:\"keywords\";a:16:{i:0;s:6:\"animal\";i:1;s:3:\"cat\";i:2;s:6:\"clinic\";i:3;s:7:\"dentist\";i:4;s:3:\"dog\";i:5;s:4:\"food\";i:6;s:8:\"hospital\";i:7;s:9:\"livestock\";i:8;s:7:\"medical\";i:9;s:8:\"medicine\";i:10;s:3:\"pet\";i:11;s:6:\"supply\";i:12;s:7:\"surgery\";i:13;s:3:\"vet\";i:14;s:10:\"veterinary\";i:15;s:16:\"medical services\";}}i:11;a:5:{s:2:\"id\";s:54:\"medical_services__medical_organizations_and_membership\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:21:\"Medical organizations\";s:3:\"mcc\";i:8699;s:8:\"keywords\";a:16:{i:0;s:3:\"art\";i:1;s:11:\"association\";i:2;s:4:\"club\";i:3;s:5:\"condo\";i:4;s:10:\"historical\";i:5;s:3:\"hoa\";i:6;s:4:\"home\";i:7;s:5:\"labor\";i:8;s:10:\"membership\";i:9;s:12:\"organization\";i:10;s:5:\"owner\";i:11;s:6:\"poetry\";i:12;s:12:\"professional\";i:13;s:6:\"tenant\";i:14;s:5:\"union\";i:15;s:16:\"medical services\";}}i:12;a:5:{s:2:\"id\";s:36:\"medical_services__telemed_telehealth\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:27:\"Telemedicine and Telehealth\";s:3:\"mcc\";i:8011;s:8:\"keywords\";a:14:{i:0;s:4:\"care\";i:1;s:12:\"consultation\";i:2;s:7:\"deliver\";i:3;s:8:\"dispense\";i:4;s:7:\"medical\";i:5;s:4:\"mill\";i:6;s:8:\"pharmacy\";i:7;s:4:\"pill\";i:8;s:12:\"prescription\";i:9;s:7:\"service\";i:10;s:10:\"telehealth\";i:11;s:7:\"telemed\";i:12;s:7:\"virtual\";i:13;s:16:\"medical services\";}}i:13;a:5:{s:2:\"id\";s:40:\"medical_services__other_medical_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:22:\"Other medical services\";s:3:\"mcc\";i:8099;s:8:\"keywords\";a:27:{i:0;s:4:\"bank\";i:1;s:5:\"blood\";i:2;s:8:\"chemical\";i:3;s:6:\"clinic\";i:4;s:10:\"dependency\";i:5;s:9:\"fertility\";i:6;s:4:\"hair\";i:7;s:6:\"health\";i:8;s:7:\"hearing\";i:9;s:7:\"massage\";i:10;s:7:\"medical\";i:11;s:8:\"medicine\";i:12;s:6:\"mental\";i:13;s:8:\"physical\";i:14;s:12:\"practitioner\";i:15;s:12:\"professional\";i:16;s:12:\"psychiatrist\";i:17;s:12:\"psychologist\";i:18;s:11:\"replacement\";i:19;s:7:\"service\";i:20;s:6:\"sports\";i:21;s:8:\"surgical\";i:22;s:7:\"testing\";i:23;s:11:\"therapeutic\";i:24;s:9:\"therapist\";i:25;s:9:\"treatment\";i:26;s:16:\"medical services\";}}}}i:10;a:4:{s:2:\"id\";s:9:\"education\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:9:\"Education\";s:5:\"items\";a:5:{i:0;a:5:{s:2:\"id\";s:30:\"education__child_care_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:19:\"Child care services\";s:3:\"mcc\";i:8351;s:8:\"keywords\";a:14:{i:0;s:11:\"babysitting\";i:1;s:4:\"care\";i:2;s:5:\"child\";i:3;s:8:\"children\";i:4;s:3:\"day\";i:5;s:6:\"infant\";i:6;s:3:\"kid\";i:7;s:7:\"nannies\";i:8;s:5:\"nanny\";i:9;s:7:\"nursery\";i:10;s:8:\"personal\";i:11;s:9:\"preschool\";i:12;s:7:\"service\";i:13;s:9:\"education\";}}i:1;a:5:{s:2:\"id\";s:73:\"education__colleges_junior_colleges_universities_and_professional_schools\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:24:\"Colleges or universities\";s:3:\"mcc\";i:8220;s:8:\"keywords\";a:18:{i:0;s:8:\"academic\";i:1;s:7:\"college\";i:2;s:9:\"community\";i:3;s:6:\"course\";i:4;s:6:\"degree\";i:5;s:6:\"dental\";i:6;s:9:\"education\";i:7;s:11:\"engineering\";i:8;s:8:\"graduate\";i:9;s:6:\"junior\";i:10;s:3:\"law\";i:11;s:7:\"medical\";i:12;s:12:\"professional\";i:13;s:6:\"school\";i:14;s:8:\"seminary\";i:15;s:11:\"theological\";i:16;s:10:\"university\";i:17;s:9:\"education\";}}i:2;a:5:{s:2:\"id\";s:47:\"education__vocational_schools_and_trade_schools\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:35:\"Vocational schools or trade schools\";s:3:\"mcc\";i:8249;s:8:\"keywords\";a:16:{i:0;s:9:\"carpentry\";i:1;s:7:\"driving\";i:2;s:9:\"education\";i:3;s:6:\"estate\";i:4;s:9:\"institute\";i:5;s:11:\"instruction\";i:6;s:9:\"mechanics\";i:7;s:4:\"real\";i:8;s:7:\"special\";i:9;s:9:\"technical\";i:10;s:5:\"trade\";i:11;s:8:\"training\";i:12;s:5:\"truck\";i:13;s:10:\"vocational\";i:14;s:4:\"weld\";i:15;s:9:\"education\";}}i:3;a:5:{s:2:\"id\";s:43:\"education__elementary_and_secondary_schools\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:31:\"Elementary or secondary schools\";s:3:\"mcc\";i:8211;s:8:\"keywords\";a:14:{i:0;s:8:\"academic\";i:1;s:4:\"care\";i:2;s:5:\"child\";i:3;s:9:\"education\";i:4;s:10:\"elementary\";i:5;s:5:\"grade\";i:6;s:7:\"grammar\";i:7;s:4:\"high\";i:8;s:11:\"instruction\";i:9;s:12:\"kindergarten\";i:10;s:6:\"middle\";i:11;s:6:\"school\";i:12;s:9:\"secondary\";i:13;s:9:\"education\";}}i:4;a:5:{s:2:\"id\";s:37:\"education__other_educational_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:26:\"Other educational services\";s:3:\"mcc\";i:8299;s:8:\"keywords\";a:19:{i:0;s:3:\"art\";i:1;s:4:\"auto\";i:2;s:8:\"aviation\";i:3;s:4:\"cook\";i:4;s:6:\"course\";i:5;s:8:\"culinary\";i:6;s:6:\"driver\";i:7;s:7:\"driving\";i:8;s:9:\"education\";i:9;s:6:\"flying\";i:10;s:11:\"instruction\";i:11;s:3:\"job\";i:12;s:6:\"karate\";i:13;s:5:\"model\";i:14;s:6:\"school\";i:15;s:7:\"service\";i:16;s:7:\"traffic\";i:17;s:5:\"train\";i:18;s:9:\"education\";}}}}i:11;a:4:{s:2:\"id\";s:28:\"entertainment_and_recreation\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:28:\"Entertainment and recreation\";s:5:\"items\";a:12:{i:0;a:5:{s:2:\"id\";s:45:\"entertainment_and_recreation__ticket_agencies\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Event ticketing\";s:3:\"mcc\";i:7922;s:8:\"keywords\";a:24:{i:0;s:6:\"agency\";i:1;s:3:\"art\";i:2;s:7:\"booking\";i:3;s:7:\"casting\";i:4;s:7:\"company\";i:5;s:7:\"concert\";i:6;s:13:\"entertainment\";i:7;s:9:\"equipment\";i:8;s:5:\"event\";i:9;s:5:\"group\";i:10;s:8:\"lighting\";i:11;s:4:\"live\";i:12;s:10:\"performing\";i:13;s:10:\"production\";i:14;s:4:\"road\";i:15;s:5:\"scalp\";i:16;s:7:\"scenery\";i:17;s:6:\"summer\";i:18;s:4:\"swap\";i:19;s:7:\"theater\";i:20;s:10:\"theatrical\";i:21;s:9:\"ticketing\";i:22;s:5:\"trade\";i:23;s:28:\"entertainment and recreation\";}}i:1;a:5:{s:2:\"id\";s:49:\"entertainment_and_recreation__tourist_attractions\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:19:\"Tourist attractions\";s:3:\"mcc\";i:7991;s:8:\"keywords\";a:15:{i:0;s:8:\"aquarium\";i:1;s:9:\"arboretum\";i:2;s:3:\"art\";i:3;s:10:\"attraction\";i:4;s:9:\"botanical\";i:5;s:5:\"craft\";i:6;s:13:\"entertainment\";i:7;s:7:\"exhibit\";i:8;s:10:\"exposition\";i:9;s:6:\"garden\";i:10;s:6:\"museum\";i:11;s:4:\"show\";i:12;s:7:\"tourist\";i:13;s:6:\"winery\";i:14;s:28:\"entertainment and recreation\";}}i:2;a:5:{s:2:\"id\";s:48:\"entertainment_and_recreation__recreational_camps\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:18:\"Recreational camps\";s:3:\"mcc\";i:7032;s:8:\"keywords\";a:16:{i:0;s:3:\"boy\";i:1;s:4:\"camp\";i:2;s:10:\"campground\";i:3;s:8:\"children\";i:4;s:4:\"dude\";i:5;s:13:\"entertainment\";i:6;s:4:\"girl\";i:7;s:3:\"kid\";i:8;s:6:\"nudist\";i:9;s:5:\"ranch\";i:10;s:10:\"recreation\";i:11;s:12:\"recreational\";i:12;s:5:\"sport\";i:13;s:8:\"sporting\";i:14;s:7:\"trailer\";i:15;s:28:\"entertainment and recreation\";}}i:3;a:5:{s:2:\"id\";s:60:\"entertainment_and_recreation__musicians_bands_and_orchestras\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:31:\"Musicians, bands, or orchestras\";s:3:\"mcc\";i:7929;s:8:\"keywords\";a:12:{i:0;s:4:\"band\";i:1;s:8:\"comedian\";i:2;s:5:\"dance\";i:3;s:2:\"dj\";i:4;s:9:\"entertain\";i:5;s:13:\"entertainment\";i:6;s:8:\"magician\";i:7;s:5:\"music\";i:8;s:8:\"musician\";i:9;s:9:\"orchestra\";i:10;s:10:\"theatrical\";i:11;s:28:\"entertainment and recreation\";}}i:4;a:5:{s:2:\"id\";s:68:\"entertainment_and_recreation__amusement_parks_carnivals_and_circuses\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:39:\"Amusement parks, carnivals, or circuses\";s:3:\"mcc\";i:7996;s:8:\"keywords\";a:27:{i:0;s:9:\"amusement\";i:1;s:6:\"animal\";i:2;s:9:\"astrology\";i:3;s:4:\"card\";i:4;s:8:\"carnival\";i:5;s:6:\"circus\";i:6;s:6:\"county\";i:7;s:13:\"entertainment\";i:8;s:7:\"exhibit\";i:9;s:4:\"fair\";i:10;s:4:\"food\";i:11;s:7:\"fortune\";i:12;s:4:\"game\";i:13;s:10:\"mechanical\";i:14;s:6:\"mystic\";i:15;s:4:\"park\";i:16;s:7:\"psychic\";i:17;s:4:\"read\";i:18;s:4:\"ride\";i:19;s:5:\"snack\";i:20;s:5:\"stand\";i:21;s:5:\"state\";i:22;s:5:\"tarot\";i:23;s:7:\"telling\";i:24;s:5:\"theme\";i:25;s:7:\"tourist\";i:26;s:28:\"entertainment and recreation\";}}i:5;a:5:{s:2:\"id\";s:45:\"entertainment_and_recreation__fortune_tellers\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Fortune tellers\";s:3:\"mcc\";i:7996;s:8:\"keywords\";a:7:{i:0;s:13:\"entertainment\";i:1;s:7:\"fortune\";i:2;s:7:\"psychic\";i:3;s:10:\"recreation\";i:4;s:5:\"tarot\";i:5;s:6:\"teller\";i:6;s:28:\"entertainment and recreation\";}}i:6;a:5:{s:2:\"id\";s:44:\"entertainment_and_recreation__movie_theaters\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:14:\"Movie theaters\";s:3:\"mcc\";i:7832;s:8:\"keywords\";a:11:{i:0;s:6:\"cinema\";i:1;s:13:\"entertainment\";i:2;s:4:\"film\";i:3;s:6:\"motion\";i:4;s:5:\"movie\";i:5;s:6:\"online\";i:6;s:7:\"picture\";i:7;s:11:\"refreshment\";i:8;s:7:\"theater\";i:9;s:6:\"ticket\";i:10;s:28:\"entertainment and recreation\";}}i:7;a:5:{s:2:\"id\";s:56:\"entertainment_and_recreation__betting_and_fantasy_sports\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:25:\"Betting or fantasy sports\";s:3:\"mcc\";i:7995;s:8:\"keywords\";a:9:{i:0;s:7:\"betting\";i:1;s:6:\"casino\";i:2;s:5:\"draft\";i:3;s:13:\"entertainment\";i:4;s:7:\"fantasy\";i:5;s:8:\"gambling\";i:6;s:10:\"recreation\";i:7;s:5:\"sport\";i:8;s:28:\"entertainment and recreation\";}}i:8;a:5:{s:2:\"id\";s:39:\"entertainment_and_recreation__lotteries\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:9:\"Lotteries\";s:3:\"mcc\";i:7995;s:8:\"keywords\";a:7:{i:0;s:13:\"entertainment\";i:1;s:8:\"gambling\";i:2;s:10:\"government\";i:3;s:8:\"licensed\";i:4;s:7:\"lottery\";i:5;s:5:\"owned\";i:6;s:28:\"entertainment and recreation\";}}i:9;a:5:{s:2:\"id\";s:71:\"entertainment_and_recreation__sports_forecasting_or_prediction_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:41:\"Sports forecasting or prediction services\";s:3:\"mcc\";i:7999;s:8:\"keywords\";a:16:{i:0;s:6:\"advice\";i:1;s:8:\"athletic\";i:2;s:3:\"bet\";i:3;s:11:\"calculation\";i:4;s:4:\"data\";i:5;s:10:\"estimation\";i:6;s:7:\"fantasy\";i:7;s:8:\"football\";i:8;s:11:\"forecasting\";i:9;s:8:\"gambling\";i:10;s:11:\"information\";i:11;s:7:\"outcome\";i:12;s:10:\"prediction\";i:13;s:8:\"research\";i:14;s:6:\"sports\";i:15;s:28:\"entertainment and recreation\";}}i:10;a:5:{s:2:\"id\";s:45:\"entertainment_and_recreation__online_gambling\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Online gambling\";s:3:\"mcc\";i:7801;s:8:\"keywords\";a:11:{i:0;s:3:\"bet\";i:1;s:9:\"blackjack\";i:2;s:4:\"card\";i:3;s:5:\"draft\";i:4;s:13:\"entertainment\";i:5;s:8:\"gambling\";i:6;s:6:\"online\";i:7;s:5:\"poker\";i:8;s:10:\"recreation\";i:9;s:6:\"sports\";i:10;s:28:\"entertainment and recreation\";}}i:11;a:5:{s:2:\"id\";s:58:\"entertainment_and_recreation__other_types_of_entertainment\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:34:\"Other entertainment and recreation\";s:3:\"mcc\";i:7999;s:8:\"keywords\";a:38:{i:0;s:6:\"active\";i:1;s:8:\"aircraft\";i:2;s:7:\"balloon\";i:3;s:7:\"batting\";i:4;s:7:\"bicycle\";i:5;s:4:\"cage\";i:6;s:6:\"diving\";i:7;s:7:\"driving\";i:8;s:8:\"electric\";i:9;s:13:\"entertainment\";i:10;s:7:\"fishing\";i:11;s:4:\"game\";i:12;s:4:\"golf\";i:13;s:9:\"horseback\";i:14;s:7:\"hunting\";i:15;s:11:\"instruction\";i:16;s:7:\"license\";i:17;s:9:\"mini-golf\";i:18;s:9:\"miniature\";i:19;s:8:\"minigolf\";i:20;s:10:\"motorcycle\";i:21;s:11:\"parachuting\";i:22;s:13:\"participation\";i:23;s:8:\"physical\";i:24;s:4:\"pool\";i:25;s:6:\"public\";i:26;s:5:\"range\";i:27;s:10:\"recreation\";i:28;s:6:\"rental\";i:29;s:6:\"riding\";i:30;s:6:\"roller\";i:31;s:7:\"scooter\";i:32;s:8:\"shooting\";i:33;s:7:\"skating\";i:34;s:3:\"ski\";i:35;s:3:\"sky\";i:36;s:5:\"slope\";i:37;s:28:\"entertainment and recreation\";}}}}i:12;a:4:{s:2:\"id\";s:17:\"building_services\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:17:\"Building services\";s:5:\"items\";a:8:{i:0;a:5:{s:2:\"id\";s:38:\"building_services__general_contractors\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:19:\"General contractors\";s:3:\"mcc\";i:1520;s:8:\"keywords\";a:31:{i:0;s:8:\"addition\";i:1;s:3:\"air\";i:2;s:5:\"alter\";i:3;s:8:\"building\";i:4;s:9:\"carpentry\";i:5;s:10:\"commercial\";i:6;s:8:\"concrete\";i:7;s:12:\"conditioning\";i:8;s:12:\"construction\";i:9;s:10:\"contractor\";i:10;s:10:\"electrical\";i:11;s:7:\"general\";i:12;s:7:\"heating\";i:13;s:10:\"insulation\";i:14;s:7:\"masonry\";i:15;s:5:\"metal\";i:16;s:10:\"plastering\";i:17;s:8:\"plumbing\";i:18;s:7:\"remodel\";i:19;s:6:\"repair\";i:20;s:11:\"residential\";i:21;s:7:\"roofing\";i:22;s:7:\"setting\";i:23;s:5:\"sheet\";i:24;s:6:\"siding\";i:25;s:7:\"special\";i:26;s:9:\"stonework\";i:27;s:13:\"subcontractor\";i:28;s:4:\"tile\";i:29;s:5:\"trade\";i:30;s:17:\"building services\";}}i:1;a:5:{s:2:\"id\";s:41:\"building_services__electrical_contractors\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:22:\"Electrical contractors\";s:3:\"mcc\";i:1731;s:8:\"keywords\";a:19:{i:0;s:5:\"alarm\";i:1;s:5:\"cable\";i:2;s:10:\"commercial\";i:3;s:10:\"contractor\";i:4;s:8:\"electric\";i:5;s:10:\"electrical\";i:6;s:9:\"equipment\";i:7;s:4:\"fire\";i:8;s:7:\"general\";i:9;s:7:\"install\";i:10;s:8:\"internet\";i:11;s:5:\"phone\";i:12;s:11:\"residential\";i:13;s:5:\"sound\";i:14;s:7:\"special\";i:15;s:7:\"telecom\";i:16;s:9:\"telephone\";i:17;s:5:\"trade\";i:18;s:17:\"building services\";}}i:2;a:5:{s:2:\"id\";s:40:\"building_services__carpentry_contractors\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:21:\"Carpentry contractors\";s:3:\"mcc\";i:1750;s:8:\"keywords\";a:15:{i:0;s:7:\"cabinet\";i:1;s:9:\"carpentry\";i:2;s:10:\"commercial\";i:3;s:10:\"contractor\";i:4;s:4:\"door\";i:5;s:6:\"finish\";i:6;s:7:\"framing\";i:7;s:7:\"general\";i:8;s:7:\"install\";i:9;s:11:\"residential\";i:10;s:7:\"special\";i:11;s:5:\"trade\";i:12;s:4:\"trim\";i:13;s:6:\"window\";i:14;s:17:\"building services\";}}i:3;a:5:{s:2:\"id\";s:44:\"building_services__special_trade_contractors\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:25:\"Special trade contractors\";s:3:\"mcc\";i:1799;s:8:\"keywords\";a:36:{i:0;s:6:\"awning\";i:1;s:4:\"bath\";i:2;s:8:\"building\";i:3;s:10:\"commercial\";i:4;s:12:\"construction\";i:5;s:10:\"contractor\";i:6;s:10:\"decorating\";i:7;s:10:\"demolition\";i:8;s:4:\"door\";i:9;s:6:\"escape\";i:10;s:5:\"fence\";i:11;s:4:\"fire\";i:12;s:6:\"garage\";i:13;s:7:\"general\";i:14;s:5:\"glass\";i:15;s:9:\"glasswork\";i:16;s:4:\"home\";i:17;s:5:\"house\";i:18;s:7:\"install\";i:19;s:8:\"interior\";i:20;s:5:\"metal\";i:21;s:6:\"moving\";i:22;s:5:\"paint\";i:23;s:4:\"pool\";i:24;s:8:\"refinish\";i:25;s:11:\"replacement\";i:26;s:11:\"residential\";i:27;s:8:\"swimming\";i:28;s:5:\"trade\";i:29;s:3:\"tub\";i:30;s:9:\"wallpaper\";i:31;s:10:\"waterproof\";i:32;s:4:\"weld\";i:33;s:4:\"well\";i:34;s:6:\"window\";i:35;s:17:\"building services\";}}i:4;a:5:{s:2:\"id\";s:35:\"building_services__telecom_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:16:\"Telecom services\";s:3:\"mcc\";i:4814;s:8:\"keywords\";a:16:{i:0;s:7:\"billing\";i:1;s:4:\"call\";i:2;s:7:\"calling\";i:3;s:4:\"card\";i:4;s:4:\"cell\";i:5;s:8:\"cellular\";i:6;s:8:\"distance\";i:7;s:3:\"fax\";i:8;s:5:\"local\";i:9;s:4:\"long\";i:10;s:8:\"periodic\";i:11;s:7:\"prepaid\";i:12;s:7:\"service\";i:13;s:17:\"telecommunication\";i:14;s:9:\"telephone\";i:15;s:17:\"building services\";}}i:5;a:5:{s:2:\"id\";s:36:\"building_services__telecom_equipment\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:17:\"Telecom equipment\";s:3:\"mcc\";i:4812;s:8:\"keywords\";a:14:{i:0;s:4:\"call\";i:1;s:4:\"cell\";i:2;s:10:\"electronic\";i:3;s:9:\"equipment\";i:4;s:3:\"fax\";i:5;s:7:\"machine\";i:6;s:6:\"mobile\";i:7;s:5:\"pager\";i:8;s:5:\"phone\";i:9;s:7:\"prepaid\";i:10;s:7:\"service\";i:11;s:17:\"telecommunication\";i:12;s:9:\"telephone\";i:13;s:17:\"building services\";}}i:6;a:5:{s:2:\"id\";s:46:\"building_services__a_c_and_heating_contractors\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:27:\"A/C and heating contractors\";s:3:\"mcc\";i:1711;s:8:\"keywords\";a:29:{i:0;s:2:\"ac\";i:1;s:3:\"air\";i:2;s:9:\"balancing\";i:3;s:10:\"commercial\";i:4;s:9:\"condition\";i:5;s:10:\"contractor\";i:6;s:5:\"drain\";i:7;s:9:\"equipment\";i:8;s:7:\"freezer\";i:9;s:7:\"furnace\";i:10;s:7:\"general\";i:11;s:7:\"heating\";i:12;s:7:\"install\";i:13;s:10:\"irrigation\";i:14;s:8:\"plumbing\";i:15;s:4:\"pump\";i:16;s:12:\"refrigerator\";i:17;s:6:\"repair\";i:18;s:11:\"residential\";i:19;s:5:\"sewer\";i:20;s:5:\"solar\";i:21;s:7:\"special\";i:22;s:9:\"sprinkler\";i:23;s:6:\"supply\";i:24;s:6:\"system\";i:25;s:7:\"testing\";i:26;s:5:\"trade\";i:27;s:5:\"water\";i:28;s:17:\"building services\";}}i:7;a:5:{s:2:\"id\";s:42:\"building_services__other_building_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:23:\"Other building services\";s:3:\"mcc\";i:1799;s:8:\"keywords\";a:36:{i:0;s:6:\"awning\";i:1;s:4:\"bath\";i:2;s:8:\"building\";i:3;s:10:\"commercial\";i:4;s:12:\"construction\";i:5;s:10:\"contractor\";i:6;s:10:\"decorating\";i:7;s:10:\"demolition\";i:8;s:4:\"door\";i:9;s:6:\"escape\";i:10;s:5:\"fence\";i:11;s:4:\"fire\";i:12;s:6:\"garage\";i:13;s:7:\"general\";i:14;s:5:\"glass\";i:15;s:9:\"glasswork\";i:16;s:4:\"home\";i:17;s:5:\"house\";i:18;s:7:\"install\";i:19;s:8:\"interior\";i:20;s:5:\"metal\";i:21;s:6:\"moving\";i:22;s:5:\"paint\";i:23;s:4:\"pool\";i:24;s:8:\"refinish\";i:25;s:11:\"replacement\";i:26;s:11:\"residential\";i:27;s:8:\"swimming\";i:28;s:5:\"trade\";i:29;s:3:\"tub\";i:30;s:9:\"wallpaper\";i:31;s:10:\"waterproof\";i:32;s:4:\"weld\";i:33;s:4:\"well\";i:34;s:6:\"window\";i:35;s:17:\"building services\";}}}}i:13;a:4:{s:2:\"id\";s:18:\"financial_services\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:18:\"Financial services\";s:5:\"items\";a:15:{i:0;a:5:{s:2:\"id\";s:29:\"financial_services__insurance\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:9:\"Insurance\";s:3:\"mcc\";i:6300;s:8:\"keywords\";a:15:{i:0;s:2:\"tv\";i:1;s:2:\"ad\";i:2;s:10:\"automobile\";i:3;s:7:\"billing\";i:4;s:6:\"direct\";i:5;s:9:\"insurance\";i:6;s:8:\"magazine\";i:7;s:4:\"mail\";i:8;s:9:\"marketing\";i:9;s:9:\"statement\";i:10;s:7:\"stuffer\";i:11;s:9:\"telephone\";i:12;s:10:\"television\";i:13;s:9:\"toll-free\";i:14;s:18:\"financial services\";}}i:1;a:5:{s:2:\"id\";s:48:\"financial_services__security_brokers_and_dealers\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:27:\"Security brokers or dealers\";s:3:\"mcc\";i:6211;s:8:\"keywords\";a:20:{i:0;s:7:\"advisor\";i:1;s:6:\"binary\";i:2;s:4:\"bond\";i:3;s:6:\"broker\";i:4;s:11:\"commodities\";i:5;s:8:\"exchange\";i:6;s:9:\"financial\";i:7;s:7:\"foreign\";i:8;s:5:\"forex\";i:9;s:4:\"fund\";i:10;s:10:\"investment\";i:11;s:8:\"licensed\";i:12;s:6:\"manage\";i:13;s:6:\"mutual\";i:14;s:6:\"option\";i:15;s:7:\"planner\";i:16;s:8:\"security\";i:17;s:7:\"service\";i:18;s:5:\"stock\";i:19;s:18:\"financial services\";}}i:2;a:5:{s:2:\"id\";s:32:\"financial_services__money_orders\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:12:\"Money orders\";s:3:\"mcc\";i:6051;s:8:\"keywords\";a:8:{i:0;s:3:\"atm\";i:1;s:4:\"cash\";i:2;s:5:\"check\";i:3;s:9:\"financial\";i:4;s:5:\"money\";i:5;s:5:\"order\";i:6;s:7:\"service\";i:7;s:18:\"financial services\";}}i:3;a:5:{s:2:\"id\";s:38:\"financial_services__currency_exchanges\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:18:\"Currency exchanges\";s:3:\"mcc\";i:6051;s:8:\"keywords\";a:11:{i:0;s:4:\"cash\";i:1;s:6:\"credit\";i:2;s:8:\"currency\";i:3;s:8:\"exchange\";i:4;s:9:\"financial\";i:5;s:7:\"foreign\";i:6;s:13:\"international\";i:7;s:5:\"money\";i:8;s:7:\"service\";i:9;s:6:\"travel\";i:10;s:18:\"financial services\";}}i:4;a:5:{s:2:\"id\";s:34:\"financial_services__wire_transfers\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:14:\"Wire transfers\";s:3:\"mcc\";i:4829;s:8:\"keywords\";a:16:{i:0;s:7:\"digital\";i:1;s:3:\"eft\";i:2;s:10:\"electronic\";i:3;s:9:\"financial\";i:4;s:5:\"funds\";i:5;s:5:\"money\";i:6;s:5:\"order\";i:7;s:10:\"remittance\";i:8;s:7:\"service\";i:9;s:6:\"stored\";i:10;s:9:\"telegraph\";i:11;s:8:\"transfer\";i:12;s:5:\"value\";i:13;s:6:\"wallet\";i:14;s:4:\"wire\";i:15;s:18:\"financial services\";}}i:5;a:5:{s:2:\"id\";s:33:\"financial_services__check_cashing\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:13:\"Check Cashing\";s:3:\"mcc\";i:4829;s:8:\"keywords\";a:8:{i:0;s:3:\"atm\";i:1;s:4:\"cash\";i:2;s:5:\"check\";i:3;s:9:\"financial\";i:4;s:5:\"money\";i:5;s:5:\"order\";i:6;s:7:\"service\";i:7;s:18:\"financial services\";}}i:6;a:5:{s:2:\"id\";s:55:\"financial_services__loans_and_other_lending_instruments\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:16:\"Loans or lending\";s:3:\"mcc\";i:6012;s:8:\"keywords\";a:11:{i:0;s:4:\"back\";i:1;s:6:\"credit\";i:2;s:4:\"debt\";i:3;s:9:\"financial\";i:4;s:4:\"lend\";i:5;s:4:\"loan\";i:6;s:3:\"owe\";i:7;s:3:\"pay\";i:8;s:9:\"repayment\";i:9;s:7:\"service\";i:10;s:18:\"financial services\";}}i:7;a:5:{s:2:\"id\";s:40:\"financial_services__collections_agencies\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:20:\"Collections agencies\";s:3:\"mcc\";i:7299;s:8:\"keywords\";a:9:{i:0;s:6:\"agency\";i:1;s:4:\"call\";i:2;s:10:\"collection\";i:3;s:4:\"debt\";i:4;s:9:\"financial\";i:5;s:7:\"invoice\";i:6;s:9:\"repayment\";i:7;s:7:\"service\";i:8;s:18:\"financial services\";}}i:8;a:5:{s:2:\"id\";s:67:\"financial_services__money_service_businesses_and_money_transmitters\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:30:\"Money services or transmission\";s:3:\"mcc\";i:4829;s:8:\"keywords\";a:10:{i:0;s:3:\"app\";i:1;s:4:\"cash\";i:2;s:9:\"financial\";i:3;s:5:\"money\";i:4;s:4:\"peer\";i:5;s:7:\"receive\";i:6;s:10:\"remittance\";i:7;s:4:\"send\";i:8;s:7:\"service\";i:9;s:18:\"financial services\";}}i:9;a:5:{s:2:\"id\";s:39:\"financial_services__investment_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:19:\"Investment services\";s:3:\"mcc\";i:6211;s:8:\"keywords\";a:13:{i:0;s:4:\"bond\";i:1;s:6:\"broker\";i:2;s:9:\"financial\";i:3;s:4:\"fund\";i:4;s:5:\"index\";i:5;s:10:\"investment\";i:6;s:6:\"mutual\";i:7;s:10:\"retirement\";i:8;s:6:\"saving\";i:9;s:8:\"security\";i:10;s:7:\"service\";i:11;s:5:\"stock\";i:12;s:18:\"financial services\";}}i:10;a:5:{s:2:\"id\";s:38:\"financial_services__virtual_currencies\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:18:\"Virtual currencies\";s:3:\"mcc\";i:6051;s:8:\"keywords\";a:8:{i:0;s:6:\"crypto\";i:1;s:8:\"currency\";i:2;s:7:\"digital\";i:3;s:6:\"online\";i:4;s:7:\"product\";i:5;s:7:\"virtual\";i:6;s:6:\"wallet\";i:7;s:18:\"financial services\";}}i:11;a:5:{s:2:\"id\";s:35:\"financial_services__digital_wallets\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:15:\"Digital Wallets\";s:3:\"mcc\";i:6540;s:8:\"keywords\";a:8:{i:0;s:7:\"digital\";i:1;s:9:\"financial\";i:2;s:7:\"prepaid\";i:3;s:7:\"service\";i:4;s:6:\"stored\";i:5;s:5:\"value\";i:6;s:6:\"wallet\";i:7;s:18:\"financial services\";}}i:12;a:5:{s:2:\"id\";s:53:\"financial_services__cryptocurrencies_and_stored_value\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:16:\"Cryptocurrencies\";s:3:\"mcc\";i:6051;s:8:\"keywords\";a:10:{i:0;s:7:\"bitcoin\";i:1;s:4:\"coin\";i:2;s:6:\"crypto\";i:3;s:8:\"currency\";i:4;s:7:\"digital\";i:5;s:3:\"nft\";i:6;s:7:\"product\";i:7;s:6:\"stored\";i:8;s:5:\"value\";i:9;s:18:\"financial services\";}}i:13;a:5:{s:2:\"id\";s:48:\"financial_services__other_financial_institutions\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:28:\"Other financial institutions\";s:3:\"mcc\";i:6012;s:8:\"keywords\";a:18:{i:0;s:11:\"association\";i:1;s:4:\"bank\";i:2;s:6:\"borrow\";i:3;s:6:\"broker\";i:4;s:7:\"central\";i:5;s:10:\"commercial\";i:6;s:6:\"credit\";i:7;s:9:\"financial\";i:8;s:11:\"institution\";i:9;s:6:\"invest\";i:10;s:4:\"lend\";i:11;s:4:\"loan\";i:12;s:5:\"money\";i:13;s:8:\"mortgage\";i:14;s:6:\"retail\";i:15;s:4:\"save\";i:16;s:5:\"union\";i:17;s:18:\"financial services\";}}i:14;a:5:{s:2:\"id\";s:54:\"financial_services__financial_information_and_research\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:34:\"Financial information and research\";s:3:\"mcc\";i:7277;s:8:\"keywords\";a:10:{i:0;s:5:\"class\";i:1;s:9:\"education\";i:2;s:7:\"finance\";i:3;s:9:\"financial\";i:4;s:11:\"information\";i:5;s:7:\"markets\";i:6;s:8:\"personal\";i:7;s:8:\"research\";i:8;s:7:\"service\";i:9;s:18:\"financial services\";}}}}i:14;a:4:{s:2:\"id\";s:37:\"regulated_and_age_restricted_products\";s:4:\"type\";s:5:\"group\";s:5:\"title\";s:37:\"Regulated and age-restricted products\";s:5:\"items\";a:10:{i:0;a:5:{s:2:\"id\";s:69:\"regulated_and_age_restricted_products__pharmacies_and_pharmaceuticals\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:29:\"Pharmacies or pharmaceuticals\";s:3:\"mcc\";i:5912;s:8:\"keywords\";a:23:{i:0;s:4:\"back\";i:1;s:4:\"card\";i:2;s:11:\"convenience\";i:3;s:8:\"cosmetic\";i:4;s:7:\"counter\";i:5;s:4:\"drug\";i:6;s:4:\"food\";i:7;s:8:\"greeting\";i:8;s:7:\"heating\";i:9;s:8:\"medicine\";i:10;s:11:\"merchandise\";i:11;s:15:\"nonprescription\";i:12;s:7:\"novelty\";i:13;s:4:\"over\";i:14;s:3:\"pad\";i:15;s:8:\"pharmacy\";i:16;s:12:\"prescription\";i:17;s:11:\"proprietary\";i:18;s:6:\"retail\";i:19;s:7:\"support\";i:20;s:7:\"tobacco\";i:21;s:10:\"toiletries\";i:22;s:37:\"regulated and age-restricted products\";}}i:1;a:5:{s:2:\"id\";s:57:\"regulated_and_age_restricted_products__tobacco_and_cigars\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:17:\"Tobacco or cigars\";s:3:\"mcc\";i:5993;s:8:\"keywords\";a:14:{i:0;s:5:\"cigar\";i:1;s:9:\"cigarette\";i:2;s:5:\"e-cig\";i:3;s:4:\"ecig\";i:4;s:10:\"electronic\";i:5;s:8:\"nicotine\";i:6;s:4:\"pipe\";i:7;s:7:\"product\";i:8;s:6:\"retail\";i:9;s:5:\"smoke\";i:10;s:6:\"smoker\";i:11;s:6:\"supply\";i:12;s:7:\"tobacco\";i:13;s:37:\"regulated and age-restricted products\";}}i:2;a:5:{s:2:\"id\";s:65:\"regulated_and_age_restricted_products__adult_content_and_services\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:25:\"Adult content or services\";s:3:\"mcc\";i:7273;s:8:\"keywords\";a:17:{i:0;s:5:\"adult\";i:1;s:5:\"bride\";i:2;s:7:\"content\";i:3;s:6:\"erotic\";i:4;s:6:\"escort\";i:5;s:6:\"fetish\";i:6;s:4:\"film\";i:7;s:9:\"gentlemen\";i:8;s:4:\"mail\";i:9;s:5:\"order\";i:10;s:4:\"porn\";i:11;s:6:\"retail\";i:12;s:3:\"sex\";i:13;s:5:\"strip\";i:14;s:7:\"swinger\";i:15;s:7:\"topless\";i:16;s:37:\"regulated and age-restricted products\";}}i:3;a:5:{s:2:\"id\";s:85:\"regulated_and_age_restricted_products__vapes_e_cigarettes_e_juice_or_related_products\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:48:\"Vapes, e-cigarettes, e-juice or related products\";s:3:\"mcc\";i:5993;s:8:\"keywords\";a:7:{i:0;s:9:\"cigarette\";i:1;s:1:\"e\";i:2;s:6:\"ejuice\";i:3;s:10:\"electronic\";i:4;s:7:\"eliquid\";i:5;s:4:\"vape\";i:6;s:37:\"regulated and age-restricted products\";}}i:4;a:5:{s:2:\"id\";s:60:\"regulated_and_age_restricted_products__weapons_and_munitions\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:20:\"Weapons or munitions\";s:3:\"mcc\";i:5941;s:8:\"keywords\";a:38:{i:0;s:10:\"ammunition\";i:1;s:7:\"antique\";i:2;s:7:\"archery\";i:3;s:6:\"barrel\";i:4;s:6:\"bullet\";i:5;s:4:\"bump\";i:6;s:6:\"casing\";i:7;s:7:\"ejector\";i:8;s:7:\"fencing\";i:9;s:7:\"firearm\";i:10;s:6:\"firing\";i:11;s:5:\"flick\";i:12;s:5:\"frame\";i:13;s:7:\"gravity\";i:14;s:7:\"grenade\";i:15;s:3:\"gun\";i:16;s:9:\"gunpowder\";i:17;s:7:\"handgun\";i:18;s:6:\"katana\";i:19;s:6:\"knives\";i:20;s:4:\"mace\";i:21;s:7:\"machete\";i:22;s:8:\"munition\";i:23;s:6:\"pepper\";i:24;s:6:\"pistol\";i:25;s:8:\"receiver\";i:26;s:6:\"reload\";i:27;s:7:\"replica\";i:28;s:5:\"rifle\";i:29;s:8:\"silencer\";i:30;s:5:\"spray\";i:31;s:5:\"stock\";i:32;s:4:\"stun\";i:33;s:10:\"suppressor\";i:34;s:5:\"sword\";i:35;s:5:\"taser\";i:36;s:6:\"weapon\";i:37;s:37:\"regulated and age-restricted products\";}}i:5;a:5:{s:2:\"id\";s:69:\"regulated_and_age_restricted_products__supplements_and_nutraceuticals\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:29:\"Supplements or nutraceuticals\";s:3:\"mcc\";i:5912;s:8:\"keywords\";a:12:{i:0;s:4:\"cure\";i:1;s:10:\"healthcare\";i:2;s:7:\"medical\";i:3;s:7:\"natural\";i:4;s:5:\"needs\";i:5;s:13:\"nutraceutical\";i:6;s:12:\"prescription\";i:7;s:7:\"prevent\";i:8;s:8:\"strength\";i:9;s:10:\"supplement\";i:10;s:5:\"treat\";i:11;s:37:\"regulated and age-restricted products\";}}i:6;a:5:{s:2:\"id\";s:61:\"regulated_and_age_restricted_products__marijuana_dispensaries\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:22:\"Marijuana dispensaries\";s:3:\"mcc\";i:5912;s:8:\"keywords\";a:19:{i:0;s:4:\"cake\";i:1;s:8:\"cannabis\";i:2;s:3:\"cbd\";i:3;s:10:\"dispensary\";i:4;s:6:\"edible\";i:5;s:5:\"ganja\";i:6;s:7:\"hashish\";i:7;s:4:\"hemp\";i:8;s:4:\"kush\";i:9;s:9:\"marijuana\";i:10;s:3:\"oil\";i:11;s:6:\"retail\";i:12;s:5:\"space\";i:13;s:6:\"strain\";i:14;s:8:\"terpenes\";i:15;s:3:\"thc\";i:16;s:9:\"tinctures\";i:17;s:4:\"weed\";i:18;s:37:\"regulated and age-restricted products\";}}i:7;a:5:{s:2:\"id\";s:65:\"regulated_and_age_restricted_products__marijuana_related_products\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:26:\"Marijuana-related products\";s:3:\"mcc\";i:5912;s:8:\"keywords\";a:19:{i:0;s:4:\"cake\";i:1;s:8:\"cannabis\";i:2;s:3:\"cbd\";i:3;s:10:\"dispensary\";i:4;s:6:\"edible\";i:5;s:5:\"ganja\";i:6;s:7:\"hashish\";i:7;s:4:\"hemp\";i:8;s:4:\"kush\";i:9;s:9:\"marijuana\";i:10;s:3:\"oil\";i:11;s:6:\"retail\";i:12;s:5:\"space\";i:13;s:6:\"strain\";i:14;s:8:\"terpenes\";i:15;s:3:\"thc\";i:16;s:9:\"tinctures\";i:17;s:4:\"weed\";i:18;s:37:\"regulated and age-restricted products\";}}i:8;a:5:{s:2:\"id\";s:68:\"regulated_and_age_restricted_products__tobacco_marijuana_accessories\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:37:\"Accessories for tobacco and marijuana\";s:3:\"mcc\";i:5993;s:8:\"keywords\";a:20:{i:0;s:10:\"attachment\";i:1;s:6:\"banger\";i:2;s:4:\"bong\";i:3;s:4:\"bowl\";i:4;s:4:\"carb\";i:5;s:8:\"cleaning\";i:6;s:7:\"digital\";i:7;s:10:\"extraction\";i:8;s:7:\"grinder\";i:9;s:7:\"lighter\";i:10;s:7:\"machine\";i:11;s:4:\"nail\";i:12;s:7:\"novelty\";i:13;s:4:\"pipe\";i:14;s:7:\"rolling\";i:15;s:5:\"scale\";i:16;s:4:\"tool\";i:17;s:5:\"torch\";i:18;s:4:\"tray\";i:19;s:37:\"regulated and age-restricted products\";}}i:9;a:5:{s:2:\"id\";s:46:\"regulated_and_age_restricted_products__alcohol\";s:4:\"type\";s:3:\"mcc\";s:5:\"title\";s:7:\"Alcohol\";s:3:\"mcc\";i:5921;s:8:\"keywords\";a:8:{i:0;s:7:\"alcohol\";i:1;s:4:\"beer\";i:2;s:8:\"cocktail\";i:3;s:5:\"drink\";i:4;s:4:\"food\";i:5;s:5:\"mixed\";i:6;s:4:\"wine\";i:7;s:37:\"regulated and age-restricted products\";}}}}}s:15:\"industry_to_mcc\";a:6:{s:24:\"clothing_and_accessories\";s:28:\"retail__clothing_and_apparel\";s:17:\"health_and_beauty\";s:23:\"retail__beauty_products\";s:14:\"food_and_drink\";s:37:\"food_and_drink__other_food_and_dining\";s:25:\"home_furniture_and_garden\";s:38:\"retail__home_furnishings_and_furniture\";s:22:\"education_and_learning\";s:37:\"education__other_educational_services\";s:25:\"electronics_and_computers\";s:37:\"digital_products__other_digital_goods\";}}s:7:\"fetched\";i:1715121165;s:7:\"errored\";b:0;}','no'),
(5623451,'wcpay_tracking_info_cache','a:3:{s:4:\"data\";a:1:{s:16:\"hosting_provider\";s:11:\"host-europe\";}s:7:\"fetched\";i:1715121166;s:7:\"errored\";b:0;}','no'),
(5623457,'wcpay_menu_badge_hidden','yes','yes'),
(5623465,'wcpay_active_dispute_cache','a:3:{s:4:\"data\";a:0:{}s:7:\"fetched\";i:1730179249;s:7:\"errored\";b:0;}','off'),
(5623466,'wcpay_multi_currency_cached_currencies','a:3:{s:4:\"data\";a:2:{s:10:\"currencies\";a:166:{s:3:\"AED\";d:4.769801;s:3:\"AFN\";d:86.446851;s:3:\"ALL\";d:118.227529;s:3:\"AMD\";d:502.712408;s:3:\"ANG\";d:2.341149;s:3:\"AOA\";d:1183.490298;s:3:\"ARS\";d:1282.385127;s:3:\"AUD\";d:1.978852;s:3:\"AWG\";d:2.340748;s:3:\"AZN\";d:2.20764;s:3:\"BAM\";d:2.348222;s:3:\"BBD\";d:2.597224;s:3:\"BDT\";d:155.231437;s:3:\"BGN\";d:2.350367;s:3:\"BHD\";d:0.489439;s:3:\"BIF\";d:3776.993602;s:3:\"BMD\";d:1.298612;s:3:\"BND\";d:1.717051;s:3:\"BOB\";d:8.976023;s:3:\"BRL\";d:7.414814;s:3:\"BSD\";d:1.298612;s:3:\"BTC\";d:1.8E-5;s:3:\"BTN\";d:109.215864;s:3:\"BWP\";d:17.448976;s:3:\"BYN\";d:4.251284;s:3:\"BZD\";d:2.618487;s:3:\"CAD\";d:1.803687;s:3:\"CDF\";d:3691.89427;s:3:\"CHF\";d:1.127208;s:3:\"CLF\";d:0.044493;s:3:\"CLP\";d:1227.837458;s:3:\"CNH\";d:9.29384;s:3:\"CNY\";d:9.267024;s:3:\"COP\";d:5638.202404;s:3:\"CRC\";d:667.441807;s:3:\"CUC\";d:1.298612;s:3:\"CUP\";d:33.439254;s:3:\"CVE\";d:132.391008;s:3:\"CZK\";d:30.509196;s:3:\"DJF\";d:231.328235;s:3:\"DKK\";d:8.968737;s:3:\"DOP\";d:78.306445;s:3:\"DZD\";d:173.199964;s:3:\"EGP\";d:63.226606;s:3:\"ERN\";d:19.479177;s:3:\"ETB\";d:156.352861;s:3:\"EUR\";d:1.202504;s:3:\"FJD\";d:2.956225;s:3:\"FKP\";i:1;s:3:\"GBP\";i:1;s:3:\"GEL\";d:3.532224;s:3:\"GGP\";i:1;s:3:\"GHS\";d:21.044908;s:3:\"GIP\";i:1;s:3:\"GMD\";d:90.902826;s:3:\"GNF\";d:11203.240157;s:3:\"GTQ\";d:10.047045;s:3:\"GYD\";d:271.657966;s:3:\"HKD\";d:10.089727;s:3:\"HNL\";d:32.764253;s:3:\"HRK\";d:9.059941;s:3:\"HTG\";d:171.200758;s:3:\"HUF\";d:486.828702;s:3:\"IDR\";d:20479.224791;s:3:\"ILS\";d:4.851921;s:3:\"IMP\";i:1;s:3:\"INR\";d:109.173647;s:3:\"IQD\";d:1701.80495;s:3:\"IRR\";d:54661.817226;s:3:\"ISK\";d:178.818845;s:3:\"JEP\";i:1;s:3:\"JMD\";d:205.527394;s:3:\"JOD\";d:0.920586;s:3:\"JPY\";d:199.560706;s:3:\"KES\";d:167.572867;s:3:\"KGS\";d:111.420893;s:3:\"KHR\";d:5280.460928;s:3:\"KMF\";d:591.192675;s:3:\"KPW\";d:1168.750621;s:3:\"KRW\";d:1801.101745;s:3:\"KWD\";d:0.398249;s:3:\"KYD\";d:1.082507;s:3:\"KZT\";d:637.413411;s:3:\"LAK\";d:28500.108258;s:3:\"LBP\";d:116320.440732;s:3:\"LKR\";d:381.436372;s:3:\"LRD\";d:249.410019;s:3:\"LSL\";d:22.991922;s:3:\"LYD\";d:6.257763;s:3:\"MAD\";d:12.816167;s:3:\"MDL\";d:23.278988;s:3:\"MGA\";d:5993.598448;s:3:\"MKD\";d:73.982556;s:3:\"MMK\";d:2724.487558;s:3:\"MNT\";d:4412.682899;s:3:\"MOP\";d:10.397995;s:3:\"MUR\";d:60.021835;s:3:\"MVR\";d:19.933691;s:3:\"MWK\";d:2252.051468;s:3:\"MXN\";d:25.989443;s:3:\"MYR\";d:5.679154;s:3:\"MZN\";d:82.981285;s:3:\"NAD\";d:23.067262;s:3:\"NGN\";d:2134.294467;s:3:\"NIO\";d:47.809909;s:3:\"NOK\";d:14.246317;s:3:\"NPR\";d:174.745129;s:3:\"NZD\";d:2.175711;s:3:\"OMR\";d:0.499949;s:3:\"PAB\";d:1.298612;s:3:\"PEN\";d:4.895939;s:3:\"PGK\";d:5.200018;s:3:\"PHP\";d:75.754841;s:3:\"PKR\";d:361.294799;s:3:\"PLN\";d:5.22825;s:3:\"PYG\";d:10396.513772;s:3:\"QAR\";d:4.736371;s:3:\"RON\";d:5.982055;s:3:\"RSD\";d:140.779908;s:3:\"RUB\";d:126.273109;s:3:\"RWF\";d:1773.721566;s:3:\"SAR\";d:4.876702;s:3:\"SBD\";d:10.821953;s:3:\"SCR\";d:17.687134;s:3:\"SDG\";d:781.114998;s:3:\"SEK\";d:13.849659;s:3:\"SGD\";d:1.721071;s:3:\"SHP\";i:1;s:3:\"SLL\";d:27231.240157;s:3:\"SOS\";d:742.363106;s:3:\"SRD\";d:44.287208;s:3:\"SSP\";d:169.157173;s:3:\"STD\";d:28935.408423;s:3:\"SVC\";d:11.36656;s:3:\"SYP\";d:3262.801108;s:3:\"SZL\";d:23.078802;s:3:\"THB\";d:43.824902;s:3:\"TJS\";d:13.834858;s:3:\"TMT\";d:4.558128;s:3:\"TND\";d:4.037548;s:3:\"TOP\";d:3.090501;s:3:\"TRY\";d:44.507324;s:3:\"TTD\";d:8.809255;s:3:\"TWD\";d:41.680895;s:3:\"TZS\";d:3538.717157;s:3:\"UAH\";d:53.754936;s:3:\"UGX\";d:4760.565475;s:3:\"USD\";d:1.298612;s:3:\"UYU\";d:54.049145;s:3:\"UZS\";d:16620.40749;s:3:\"VND\";d:32867.93555;s:3:\"VUV\";d:154.17379;s:3:\"WST\";d:3.636113;s:3:\"XAF\";d:788.790867;s:3:\"XAG\";d:0.038038;s:3:\"XAU\";d:0.000472;s:3:\"XCD\";d:3.509563;s:3:\"XDR\";d:0.976489;s:3:\"XOF\";d:788.790867;s:3:\"XPD\";d:0.001044;s:3:\"XPF\";d:143.496888;s:3:\"XPT\";d:0.001237;s:3:\"YER\";d:325.139993;s:3:\"ZAR\";d:23.007263;s:3:\"ZMW\";d:34.586985;s:3:\"ZWL\";d:418.153;}s:7:\"updated\";i:1730210758;}s:7:\"fetched\";i:1730210758;s:7:\"errored\";b:0;}','off'),
(5623471,'wcpay_account_data','a:3:{s:4:\"data\";a:46:{s:10:\"account_id\";s:21:\"acct_1PDwaNC4KoWWGXx7\";s:5:\"email\";s:21:\"ivankulongo@gmail.com\";s:20:\"live_publishable_key\";s:107:\"pk_live_51ETDmyFuiXB5oUVxaIafkGPnwuNcBxr1pXVhvLJ4BrWuiqfG6SldjatOGLQhuqXnDmgqwRA7tDoSFlbY4wFji7KR0079TvtxNs\";s:20:\"test_publishable_key\";s:107:\"pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR\";s:7:\"is_live\";b:1;s:13:\"is_test_drive\";b:0;s:7:\"created\";s:19:\"2024-05-07 22:34:15\";s:24:\"has_pending_requirements\";b:0;s:23:\"has_future_requirements\";b:0;s:24:\"has_overdue_requirements\";b:0;s:17:\"details_submitted\";b:1;s:16:\"current_deadline\";N;s:6:\"status\";s:8:\"complete\";s:12:\"capabilities\";a:22:{s:26:\"afterpay_clearpay_payments\";s:6:\"active\";s:13:\"card_payments\";s:6:\"active\";s:9:\"transfers\";s:6:\"active\";s:19:\"bacs_debit_payments\";s:11:\"unrequested\";s:19:\"bancontact_payments\";s:11:\"unrequested\";s:22:\"bank_transfer_payments\";s:11:\"unrequested\";s:25:\"cartes_bancaires_payments\";s:11:\"unrequested\";s:12:\"eps_payments\";s:11:\"unrequested\";s:25:\"gb_bank_transfer_payments\";s:11:\"unrequested\";s:16:\"giropay_payments\";s:11:\"unrequested\";s:14:\"ideal_payments\";s:11:\"unrequested\";s:6:\"klarna\";s:11:\"unrequested\";s:15:\"klarna_payments\";s:11:\"unrequested\";s:13:\"link_payments\";s:11:\"unrequested\";s:19:\"multibanco_payments\";s:11:\"unrequested\";s:12:\"p24_payments\";s:11:\"unrequested\";s:20:\"revolut_pay_payments\";s:11:\"unrequested\";s:19:\"sepa_debit_payments\";s:11:\"unrequested\";s:15:\"sofort_payments\";s:11:\"unrequested\";s:14:\"twint_payments\";s:11:\"unrequested\";s:28:\"us_bank_account_ach_payments\";s:11:\"unrequested\";s:25:\"us_bank_transfer_payments\";s:11:\"unrequested\";}s:23:\"capability_requirements\";a:22:{s:26:\"afterpay_clearpay_payments\";a:0:{}s:19:\"bacs_debit_payments\";a:1:{i:0;s:30:\"business_profile.support_email\";}s:19:\"bancontact_payments\";a:0:{}s:22:\"bank_transfer_payments\";a:0:{}s:13:\"card_payments\";a:0:{}s:25:\"cartes_bancaires_payments\";a:0:{}s:12:\"eps_payments\";a:0:{}s:25:\"gb_bank_transfer_payments\";a:0:{}s:16:\"giropay_payments\";a:0:{}s:14:\"ideal_payments\";a:0:{}s:6:\"klarna\";a:0:{}s:15:\"klarna_payments\";a:0:{}s:13:\"link_payments\";a:0:{}s:19:\"multibanco_payments\";a:0:{}s:12:\"p24_payments\";a:0:{}s:20:\"revolut_pay_payments\";a:0:{}s:19:\"sepa_debit_payments\";a:0:{}s:15:\"sofort_payments\";a:0:{}s:9:\"transfers\";a:0:{}s:14:\"twint_payments\";a:0:{}s:28:\"us_bank_account_ach_payments\";a:0:{}s:25:\"us_bank_transfer_payments\";a:0:{}}s:16:\"payments_enabled\";b:1;s:8:\"deposits\";a:9:{s:6:\"status\";s:7:\"enabled\";s:12:\"restrictions\";s:21:\"deposits_unrestricted\";s:8:\"interval\";s:5:\"daily\";s:13:\"weekly_anchor\";s:0:\"\";s:14:\"monthly_anchor\";N;s:10:\"delay_days\";i:3;s:24:\"completed_waiting_period\";b:0;s:30:\"minimum_manual_deposit_amounts\";a:19:{s:3:\"aud\";i:500;s:3:\"bgn\";i:100;s:3:\"cad\";i:500;s:3:\"chf\";i:500;s:3:\"czk\";i:3000;s:3:\"dkk\";i:5000;s:3:\"eur\";i:500;s:3:\"gbp\";i:500;s:3:\"hkd\";i:5000;s:3:\"huf\";i:36000;s:3:\"nok\";i:5000;s:3:\"nzd\";i:500;s:3:\"jpy\";i:50;s:3:\"sek\";i:5000;s:3:\"sgd\";i:500;s:3:\"usd\";i:500;s:3:\"ron\";i:500;s:3:\"pln\";i:500;s:3:\"aed\";i:200;}s:33:\"minimum_scheduled_deposit_amounts\";a:19:{s:3:\"aed\";i:200;s:3:\"aud\";i:0;s:3:\"bgn\";i:100;s:3:\"cad\";i:0;s:3:\"chf\";i:500;s:3:\"czk\";i:3000;s:3:\"dkk\";i:2000;s:3:\"eur\";i:100;s:3:\"gbp\";i:100;s:3:\"hkd\";i:0;s:3:\"huf\";i:36000;s:3:\"jpy\";i:1;s:3:\"nok\";i:2000;s:3:\"nzd\";i:0;s:3:\"pln\";i:500;s:3:\"ron\";i:500;s:3:\"sek\";i:2000;s:3:\"sgd\";i:100;s:3:\"usd\";i:0;}}s:29:\"lifetime_total_payment_volume\";i:0;s:12:\"requirements\";a:1:{s:6:\"errors\";a:0:{}}s:20:\"statement_descriptor\";s:21:\"CHOICERESOURCES.CO.UK\";s:26:\"statement_descriptor_kanji\";s:0:\"\";s:25:\"statement_descriptor_kana\";s:0:\"\";s:20:\"latest_tos_agreement\";a:3:{s:4:\"date\";s:19:\"2024-05-07 22:34:15\";s:6:\"source\";s:6:\"signup\";s:18:\"is_current_version\";b:1;}s:4:\"fees\";a:10:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.015;s:10:\"fixed_rate\";i:25;s:8:\"currency\";s:3:\"gbp\";}s:8:\"discount\";a:0:{}s:4:\"card\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.015;s:10:\"fixed_rate\";i:25;s:8:\"currency\";s:3:\"gbp\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.02;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"eur\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.02;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:8:\"discount\";a:0:{}}s:12:\"card_present\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.014;s:10:\"fixed_rate\";i:20;s:8:\"currency\";s:3:\"gbp\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";d:0.02;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";d:0.02;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:8:\"discount\";a:0:{}}s:10:\"bancontact\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.014;s:10:\"fixed_rate\";i:20;s:8:\"currency\";s:3:\"gbp\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:8:\"discount\";a:0:{}}s:3:\"eps\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.016;s:10:\"fixed_rate\";i:20;s:8:\"currency\";s:3:\"gbp\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:8:\"discount\";a:0:{}}s:5:\"ideal\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:25;s:8:\"currency\";s:3:\"gbp\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:8:\"discount\";a:0:{}}s:3:\"p24\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.022;s:10:\"fixed_rate\";i:20;s:8:\"currency\";s:3:\"gbp\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:8:\"discount\";a:0:{}}s:17:\"afterpay_clearpay\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.06;s:10:\"fixed_rate\";i:30;s:8:\"currency\";s:3:\"gbp\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:8:\"discount\";a:0:{}}s:6:\"klarna\";a:4:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.0499;s:10:\"fixed_rate\";i:35;s:8:\"currency\";s:3:\"gbp\";}s:10:\"additional\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:2:\"fx\";a:3:{s:15:\"percentage_rate\";i:0;s:10:\"fixed_rate\";i:0;s:8:\"currency\";s:3:\"gbp\";}s:8:\"discount\";a:0:{}}}s:7:\"capital\";a:3:{s:15:\"has_active_loan\";b:0;s:18:\"has_previous_loans\";b:0;s:5:\"loans\";a:0:{}}s:14:\"fraud_services\";a:2:{s:6:\"stripe\";a:0:{}s:4:\"sift\";a:2:{s:10:\"beacon_key\";s:10:\"affbdadb36\";s:18:\"sandbox_beacon_key\";s:10:\"6ad0ad748b\";}}s:16:\"store_currencies\";a:2:{s:7:\"default\";s:3:\"gbp\";s:9:\"supported\";a:1:{i:0;s:3:\"gbp\";}}s:19:\"customer_currencies\";a:1:{s:9:\"supported\";a:134:{i:0;s:3:\"usd\";i:1;s:3:\"aed\";i:2;s:3:\"afn\";i:3;s:3:\"all\";i:4;s:3:\"amd\";i:5;s:3:\"ang\";i:6;s:3:\"aoa\";i:7;s:3:\"ars\";i:8;s:3:\"aud\";i:9;s:3:\"awg\";i:10;s:3:\"azn\";i:11;s:3:\"bam\";i:12;s:3:\"bbd\";i:13;s:3:\"bdt\";i:14;s:3:\"bgn\";i:15;s:3:\"bif\";i:16;s:3:\"bmd\";i:17;s:3:\"bnd\";i:18;s:3:\"bob\";i:19;s:3:\"brl\";i:20;s:3:\"bsd\";i:21;s:3:\"bwp\";i:22;s:3:\"byn\";i:23;s:3:\"bzd\";i:24;s:3:\"cad\";i:25;s:3:\"cdf\";i:26;s:3:\"chf\";i:27;s:3:\"clp\";i:28;s:3:\"cny\";i:29;s:3:\"cop\";i:30;s:3:\"crc\";i:31;s:3:\"cve\";i:32;s:3:\"czk\";i:33;s:3:\"djf\";i:34;s:3:\"dkk\";i:35;s:3:\"dop\";i:36;s:3:\"dzd\";i:37;s:3:\"egp\";i:38;s:3:\"etb\";i:39;s:3:\"eur\";i:40;s:3:\"fjd\";i:41;s:3:\"fkp\";i:42;s:3:\"gbp\";i:43;s:3:\"gel\";i:44;s:3:\"gip\";i:45;s:3:\"gmd\";i:46;s:3:\"gnf\";i:47;s:3:\"gtq\";i:48;s:3:\"gyd\";i:49;s:3:\"hkd\";i:50;s:3:\"hnl\";i:51;s:3:\"htg\";i:52;s:3:\"huf\";i:53;s:3:\"idr\";i:54;s:3:\"ils\";i:55;s:3:\"inr\";i:56;s:3:\"isk\";i:57;s:3:\"jmd\";i:58;s:3:\"jpy\";i:59;s:3:\"kes\";i:60;s:3:\"kgs\";i:61;s:3:\"khr\";i:62;s:3:\"kmf\";i:63;s:3:\"krw\";i:64;s:3:\"kyd\";i:65;s:3:\"kzt\";i:66;s:3:\"lak\";i:67;s:3:\"lbp\";i:68;s:3:\"lkr\";i:69;s:3:\"lrd\";i:70;s:3:\"lsl\";i:71;s:3:\"mad\";i:72;s:3:\"mdl\";i:73;s:3:\"mga\";i:74;s:3:\"mkd\";i:75;s:3:\"mmk\";i:76;s:3:\"mnt\";i:77;s:3:\"mop\";i:78;s:3:\"mur\";i:79;s:3:\"mvr\";i:80;s:3:\"mwk\";i:81;s:3:\"mxn\";i:82;s:3:\"myr\";i:83;s:3:\"mzn\";i:84;s:3:\"nad\";i:85;s:3:\"ngn\";i:86;s:3:\"nio\";i:87;s:3:\"nok\";i:88;s:3:\"npr\";i:89;s:3:\"nzd\";i:90;s:3:\"pab\";i:91;s:3:\"pen\";i:92;s:3:\"pgk\";i:93;s:3:\"php\";i:94;s:3:\"pkr\";i:95;s:3:\"pln\";i:96;s:3:\"pyg\";i:97;s:3:\"qar\";i:98;s:3:\"ron\";i:99;s:3:\"rsd\";i:100;s:3:\"rub\";i:101;s:3:\"rwf\";i:102;s:3:\"sar\";i:103;s:3:\"sbd\";i:104;s:3:\"scr\";i:105;s:3:\"sek\";i:106;s:3:\"sgd\";i:107;s:3:\"shp\";i:108;s:3:\"sle\";i:109;s:3:\"sos\";i:110;s:3:\"srd\";i:111;s:3:\"std\";i:112;s:3:\"szl\";i:113;s:3:\"thb\";i:114;s:3:\"tjs\";i:115;s:3:\"top\";i:116;s:3:\"try\";i:117;s:3:\"ttd\";i:118;s:3:\"twd\";i:119;s:3:\"tzs\";i:120;s:3:\"uah\";i:121;s:3:\"ugx\";i:122;s:3:\"uyu\";i:123;s:3:\"uzs\";i:124;s:3:\"vnd\";i:125;s:3:\"vuv\";i:126;s:3:\"wst\";i:127;s:3:\"xaf\";i:128;s:3:\"xcd\";i:129;s:3:\"xof\";i:130;s:3:\"xpf\";i:131;s:3:\"yer\";i:132;s:3:\"zar\";i:133;s:3:\"zmw\";}}s:7:\"country\";s:2:\"GB\";s:25:\"instant_deposits_eligible\";b:0;s:21:\"card_present_eligible\";b:1;s:26:\"has_card_readers_available\";b:0;s:26:\"platform_checkout_eligible\";b:0;s:33:\"platform_direct_checkout_eligible\";b:0;s:37:\"platform_global_theme_support_enabled\";b:0;s:16:\"business_profile\";a:5:{s:4:\"name\";s:21:\"ChoiceResources.co.uk\";s:3:\"url\";s:30:\"https://choiceresources.co.uk/\";s:15:\"support_address\";a:0:{}s:13:\"support_email\";N;s:13:\"support_phone\";N;}s:8:\"branding\";a:4:{s:4:\"icon\";N;s:4:\"logo\";N;s:13:\"primary_color\";N;s:15:\"secondary_color\";N;}s:6:\"locale\";s:5:\"en_US\";s:22:\"has_more_failed_events\";b:0;s:22:\"has_submitted_vat_data\";b:0;s:20:\"is_documents_enabled\";b:1;s:32:\"card_testing_protection_eligible\";b:0;s:22:\"progressive_onboarding\";a:5:{s:10:\"is_enabled\";b:0;s:11:\"is_complete\";b:0;s:3:\"tpv\";N;s:22:\"first_transaction_date\";N;s:17:\"kyc_deadline_date\";N;}s:25:\"fraud_mitigation_settings\";a:2:{s:17:\"avs_check_enabled\";b:0;s:17:\"cvc_check_enabled\";b:1;}s:39:\"is_deferred_intent_creation_upe_enabled\";b:1;s:22:\"pre_check_save_my_info\";b:0;}s:7:\"fetched\";i:1730204498;s:7:\"errored\";b:0;}','off'),
(5623472,'_wcpay_onboarding_stripe_connected','a:1:{s:26:\"is_existing_stripe_account\";b:0;}','yes'),
(5623474,'wcpay_dispute_status_counts_cache','a:3:{s:4:\"data\";a:0:{}s:7:\"fetched\";i:1730123297;s:7:\"errored\";b:0;}','off'),
(5623476,'wcpay_frt_discover_banner_settings','{\"dontShowAgain\":false}','yes'),
(5623480,'current_protection_level','basic','yes'),
(5623487,'wcpay_multi_currency_enabled_currencies','a:8:{i:0;s:3:\"AUD\";i:1;s:3:\"CAD\";i:2;s:3:\"EUR\";i:3;s:3:\"GBP\";i:4;s:3:\"INR\";i:5;s:3:\"JPY\";i:6;s:3:\"UGX\";i:7;s:3:\"USD\";}','yes'),
(5623490,'wcpay_multi_currency_setup_completed','yes','yes'),
(5623491,'wcpay_multi_currency_enable_auto_currency','yes','yes'),
(5623492,'wcpay_multi_currency_enable_storefront_switcher','no','yes'),
(5623525,'woocommerce_amazon_payments_new_install','2.5.1','yes'),
(5623535,'woocommerce_amazon_payments_advanced_temp_private_keys','a:2:{i:0;s:1704:\"-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDFQOz04ePUKQa0\n+ahiPzPeFMfTu6GZp2GzOU7M8kgFf5fkzyRh/kMkK5EMXYYD+wO8Hj0rLq4MF/D4\nY02IUlOCofJRUXM5bG4PXV2Z55b0b2Kr6DDU0ii6XE5liE8zJ0rMXf3CWjfbb+sJ\n9Nt1mQsavadORClh42lIGLpl3KXtnuNeJyX703vZvuvxmkSIraATxQmkybz4h/R7\nNZ0OWln/KN13/79z01LXMGYDsXXkSO4ctBbE2bO3Q8sRpyOZpwR4uuQcb/IzHtuS\n5vI45j0Ntt4n5NmBYuwhvoFsNBOYKBvaGZkquRrwIWDiDYWCTK4DwNN5Ej1QN2Dk\nlIrceLbBAgMBAAECggEADdttyhZEZxcqvXP8fEpsXmGfWCSKSb0Ug/62pncu0BQS\nm6RhrfCqztOwsOmxDH6J2KFXMr1oxLi52PlA7R67dyXhXA0YxyPy52lrtfArDqj0\niZcaNxk8ezsY1tEonzNXcdv4g7rKycOnA2AMOsqxmQNRyZHIRnQvZT03ewhxL6wm\nQgeT/iW+071uMPjEG8wp1pOBdwG/vzd8p/nOwPRYqjTcqORqzVK84Iok5WMwulSY\n5VvvtXA35nSo5LEMnJ9pHu3X4/q/huA7m1N19/kB+3gGsA9m20+A5prz61M3NcL5\n9OwAtoKzdjZODFlqyIF4dpheYeLz3f9h6BsZXgjysQKBgQDiJeFcI9NA9MLMxDV9\na3zm1Bz2JZ4ah5MR5tUqm8TYx/4x7lEt+SzdCfsBy9eX6h4VvGVmG+XltKlcE65T\nn0+p3wUY4ekL1sZQrmPqdG+28qyYrt6iogWgbFtsZQlyrXN4q+9KeCVX4MKtjXCZ\nSQ/tPy1Bo5bnoQiF4BpUcqVvOwKBgQDfSqGIlIMtsHsDdtlDaa+hviLY3KDqrClh\n1L18v14IhkL58+/AwbzNQEBusp6WRmHTJuDB7pKI6alfIB2pL0ZaeGfKrrQT3ZUf\ntoYSeZDh78emN/Z7q6ICo5oZy2KJSVU8pwzbkbE7x+BaqWIH6yfKxd1bcG5WTHjs\n1tOKpU3KMwKBgQCQJ/Vv9qZDUcKbJLe0K0CDI9MSVQhjgOiPEMXxUzo3tcSjr3aw\nB5ZBkIsgqf/UJrjmwiEg5ce2lWMf/quxQmxVrIRjSB52HYJtC71FRtOvmyHKci4Z\nHY7YpDni7sUHBOoGkhMHNW8YhX2ThAWysJAme48tuEoJfO0h6ajfC/XI4QKBgQCR\nML/0RU0+ykBSslb3hKMVMsMJ6/weW6/U0zYbBXwpYtPuH3XICrGvbJX45OBFqqI1\nYFRJBc32hKkDF6jxt7GxZhVnL04clLpAkrh/DtjscLOLG1yEcce4m5S6LQt3ZV2t\nQJoVs5hg3Mi/auA5cei/6wTSTjsQlk0TA2UuA+qfDQKBgFFpgrm088UhzMyaG4ba\nkWdVT4oZj8A4ZTymyNjUVGySBWZUlBEzTnm5Li28raWaTccgcIf/iSWa5FbCGNfp\nhhJEgPyQUBCrzUYPh5crxbRH42pB9gm2zebMN4NcZaMlQE8iKi1eDBP3cHjk+zd9\nINHM3yLBmAw5B1BqkezazvzY\n-----END PRIVATE KEY-----\n\";i:1;s:1708:\"-----BEGIN PRIVATE KEY-----\nMIIEwAIBADANBgkqhkiG9w0BAQEFAASCBKowggSmAgEAAoIBAQC9MRTrwSXTgC3r\nQCtniWl0+n/YyhZXVUkZWranaZhQlJNsVc1utn4YI+eU2ZGKNnsjBxHvwfd0i+iR\nq0d5HXYbWrU/gZn6mVOi92jBHreJ1wSbwXusJUp0F9CsF6CqGwDz3ipffjPJoWJC\nIfb1XZtySfpCiRC6DaseOB5EDPIwUGStmbrJIs1oaOvLRV+hOEYxEuvhPCnFAX0f\nT+UnC5WplNH6kpMwn5P0FmgbzLMkhOK8+mvXtYPT6zyXEisTEtPww86UbGtcH0wE\nmKqbqmn2MOPlxcQRbm91DA1iU+05DhYs0wILoaYHkAj7/6f+SbBzJVGWOqXul/WA\nm76lE2j/AgMBAAECggEBAJI8ewBT1oop/NRnUGWCWGpcKjAG3Mf6mzsm3CKBQ4Od\npGpL1DPsiYDdV+a9WXrs67dCgsHBOyXx8v2N1/wtIpq4PXruEXgbxgMkm+sSdCnu\ncph2MML6PBeKRPiQdtalctINetE/OoZy4QFfQYWdKkdoGTIOwkgdwpPkKrjNDPL8\nC7X6vIxW3kDk34bXRMZt7/TK5wmoC1VU7YOciS8N8VG8hv80L4CUScZuRGU5heFb\npgGvI5CTPVyn+fIV2aKVWDoO2UxNWs9A7Sqkzmk/nThO+hqb2g0HfxCAMy505SLI\nXJ8UuScPXD2Lf4vBN2A5W7by/aiJMSWrsRHA4gjwJyECgYEA736auhrSe5tsgtnS\n16SfnARWertsCJM0dsToEGa++lTR4/XBbgcu5Em6KJw94OrSF9Bymt97EL8+ex7w\nX2r7vx7azM0MIubcO9QXY/UrgCYDwkWG17V1sGoleGd70xwFwBz2un2DcAvc8I1Q\ny+B16j8a8b9+iPedYtO/65uTqvECgYEAyjr8bDNpyq3LZzDldPtN2CTEbXIWJbSb\nWUepW2VswsqL30dhy7RNzz3jxrhLhug9698ocY3ceSKvzhkPS7UdBnsarADczZY/\nhL9uUIo8ZUH8wZmBKEzxzqSeoWX1s/Yu3N1IR1qmTDG5TkwfabDWcqkmJAwLw7Qr\ny9lvy3KP8u8CgYEAmo2UYmduz8/0TdkuJHWbfv6ZpGiRBlOg9siJjhQQSNI2BSuS\nYWQHUdF2bkCt+hjv7ehaHTH9ZEhWlPPZYWpT/fl2b9Yfb+KV25I6agpMwU1G/bcK\nlugGhAtsFPCLSyh5WYoXezAGg2dUdHRt4LQAxGNnCv1uNgu9qIpH/08OE7ECgYEA\nx04c6lI9SBfCZ//DlGf7zzJlOGwAscZueC3tFfs+ljdiZHoIQud+6+lV68pD/UAz\njpwPUuJ50BTEaP0/muBzK6j1n2D2O9OA5EZ55PxoC29eODseFGbIxVxuTiibX3IX\nu2qGSnRngp5av3S8XMCAiN51jX8ltQmDRFMWH87XWZcCgYEAtsOvkGpUHhV55kAt\nfkV/ZYPHh9FhFyiGBTBL8e2rZqVRrwATKCx0XAd/Ib/9qDCaOKnFDHjIC/5raRF7\nR+TzatHShyPyhFLOVjcrUuj94C07uTOby9sRMT4XzLW4uF1Vfbd9hL8wcdTfBkdb\n2hKAbb0FnEj3pjo4wmnov7CteEM=\n-----END PRIVATE KEY-----\n\";}','yes'),
(5623536,'amazon_payments_advanced_anniversary_date','1715121941','yes'),
(5623537,'amazon_payments_advanced_hidden_until_date','1717800341','yes'),
(5623540,'woocommerce_amazon_payments_advanced_settings','a:35:{s:14:\"important_note\";s:0:\"\";s:14:\"payment_region\";s:2:\"gb\";s:12:\"register_now\";s:0:\"\";s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:10:\"Amazon Pay\";s:11:\"description\";s:39:\"Complete your payment using Amazon Pay!\";s:15:\"account_details\";s:0:\"\";s:13:\"manual_notice\";s:0:\"\";s:22:\"manual_container_start\";s:0:\"\";s:9:\"keys_json\";s:0:\"\";s:11:\"private_key\";s:0:\"\";s:20:\"manual_container_end\";s:0:\"\";s:23:\"default_container_start\";s:0:\"\";s:11:\"merchant_id\";s:0:\"\";s:8:\"store_id\";s:0:\"\";s:13:\"public_key_id\";s:0:\"\";s:21:\"default_container_end\";s:0:\"\";s:7:\"sandbox\";s:2:\"no\";s:21:\"subscriptions_enabled\";s:3:\"yes\";s:22:\"advanced_configuration\";s:0:\"\";s:15:\"payment_capture\";s:0:\"\";s:18:\"authorization_mode\";s:4:\"sync\";s:15:\"display_options\";s:0:\"\";s:15:\"button_language\";s:0:\"\";s:12:\"button_color\";s:4:\"Gold\";s:29:\"hide_standard_checkout_button\";s:2:\"no\";s:12:\"misc_options\";s:0:\"\";s:5:\"debug\";s:3:\"yes\";s:16:\"hide_button_mode\";s:2:\"no\";s:22:\"enable_classic_gateway\";s:3:\"yes\";s:16:\"using_woo_blocks\";s:2:\"no\";s:16:\"mini_cart_button\";s:2:\"no\";s:14:\"product_button\";s:2:\"no\";s:27:\"alexa_notifications_support\";s:2:\"no\";s:31:\"amazon_keys_setup_and_validated\";i:0;}','yes'),
(5623561,'_wcpay_feature_customer_multi_currency','1','yes'),
(5623562,'_wcpay_feature_client_secret_encryption','0','yes'),
(5623563,'_wcpay_feature_subscriptions','0','yes'),
(5623566,'_wcpay_feature_stripe_billing','0','yes'),
(5626038,'wcpay_pm_cus_Q4HklBX2wGyAXe_card','a:3:{s:4:\"data\";a:0:{}s:7:\"fetched\";i:1721219750;s:7:\"errored\";b:0;}','off'),
(5631102,'woopay_incompatible_extensions','a:13:{i:0;s:16:\"class-wcdonation\";i:1;s:31:\"woocommerce-table-rate-shipping\";i:2;s:33:\"woocommerce-memberships-for-teams\";i:3;s:28:\"woocommerce-checkout-add-ons\";i:4;s:33:\"woocommerce-checkout-field-editor\";i:5;s:25:\"woocommerce-eu-vat-number\";i:6;s:26:\"woocommerce-order-delivery\";i:7;s:32:\"woocommerce-pdf-product-vouchers\";i:8;s:38:\"woocommerce-shipping-local-pickup-plus\";i:9;s:39:\"woocommerce-shipping-multiple-addresses\";i:10;s:25:\"woocommerce-smart-coupons\";i:11;s:33:\"woocommerce-subscriptions-gifting\";i:12;s:39:\"advanced-product-fields-for-woocommerce\";}','yes'),
(5631103,'woopay_adapted_extensions','a:2:{i:0;s:30:\"woocommerce-points-and-rewards\";i:1;s:22:\"woocommerce-gift-cards\";}','yes'),
(5631105,'woocommerce_woocommerce_payments_woopay_available_countries','[\"US\"]','yes'),
(5637993,'_elementor_global_css','a:7:{s:4:\"time\";i:1715285753;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),
(5637994,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:35:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:8:\"nav-menu\";a:2:{s:7:\"content\";s:128:\"<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css\">\";s:7:\"version\";s:6:\"3.21.2\";}s:11:\"woocommerce\";a:2:{s:7:\"content\";s:131:\"<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-woocommerce.min.css\">\";s:7:\"version\";s:6:\"3.21.2\";}s:17:\"animated-headline\";a:2:{s:7:\"content\";s:137:\"<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">\";s:7:\"version\";s:6:\"3.21.2\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:9:\"shortcode\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:8:\"icon-box\";a:2:{s:7:\"content\";s:124:\"<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">\";s:7:\"version\";s:6:\"3.21.4\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:4:\"icon\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:7:\"divider\";a:2:{s:7:\"content\";s:4311:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:5:\"forms\";a:2:{s:7:\"content\";s:6246:\"<style>/*! elementor-pro - v3.21.0 - 30-04-2024 */\n.elementor-button.elementor-hidden,.elementor-hidden{display:none}.e-form__step{width:100%}.e-form__step:not(.elementor-hidden){display:flex;flex-wrap:wrap}.e-form__buttons{flex-wrap:wrap}.e-form__buttons,.e-form__buttons__wrapper{display:flex}.e-form__indicators{display:flex;justify-content:space-between;align-items:center;flex-wrap:nowrap;font-size:13px;margin-bottom:var(--e-form-steps-indicators-spacing)}.e-form__indicators__indicator{display:flex;flex-direction:column;align-items:center;justify-content:center;flex-basis:0;padding:0 var(--e-form-steps-divider-gap)}.e-form__indicators__indicator__progress{width:100%;position:relative;background-color:var(--e-form-steps-indicator-progress-background-color);border-radius:var(--e-form-steps-indicator-progress-border-radius);overflow:hidden}.e-form__indicators__indicator__progress__meter{width:var(--e-form-steps-indicator-progress-meter-width,0);height:var(--e-form-steps-indicator-progress-height);line-height:var(--e-form-steps-indicator-progress-height);padding-right:15px;border-radius:var(--e-form-steps-indicator-progress-border-radius);background-color:var(--e-form-steps-indicator-progress-color);color:var(--e-form-steps-indicator-progress-meter-color);text-align:right;transition:width .1s linear}.e-form__indicators__indicator:first-child{padding-left:0}.e-form__indicators__indicator:last-child{padding-right:0}.e-form__indicators__indicator--state-inactive{color:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-inactive [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-inactive-secondary-color,#fff)}.e-form__indicators__indicator--state-inactive object,.e-form__indicators__indicator--state-inactive svg{fill:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-active{color:var(--e-form-steps-indicator-active-primary-color,#39b54a);border-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active object,.e-form__indicators__indicator--state-active svg{fill:var(--e-form-steps-indicator-active-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed{color:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator--state-completed [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator__label{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator--shape-none{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a);background-color:initial}.e-form__indicators__indicator--state-completed object,.e-form__indicators__indicator--state-completed svg{fill:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator__icon{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);font-size:var(--e-form-steps-indicator-icon-size);border-width:1px;border-style:solid;display:flex;justify-content:center;align-items:center;overflow:hidden;margin-bottom:10px}.e-form__indicators__indicator__icon img,.e-form__indicators__indicator__icon object,.e-form__indicators__indicator__icon svg{width:var(--e-form-steps-indicator-icon-size);height:auto}.e-form__indicators__indicator__icon .e-font-icon-svg{height:1em}.e-form__indicators__indicator__number{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);border-width:1px;border-style:solid;display:flex;justify-content:center;align-items:center;margin-bottom:10px}.e-form__indicators__indicator--shape-circle{border-radius:50%}.e-form__indicators__indicator--shape-square{border-radius:0}.e-form__indicators__indicator--shape-rounded{border-radius:5px}.e-form__indicators__indicator--shape-none{border:0}.e-form__indicators__indicator__label{text-align:center}.e-form__indicators__indicator__separator{width:100%;height:var(--e-form-steps-divider-width);background-color:#babfc5}.e-form__indicators--type-icon,.e-form__indicators--type-icon_text,.e-form__indicators--type-number,.e-form__indicators--type-number_text{align-items:flex-start}.e-form__indicators--type-icon .e-form__indicators__indicator__separator,.e-form__indicators--type-icon_text .e-form__indicators__indicator__separator,.e-form__indicators--type-number .e-form__indicators__indicator__separator,.e-form__indicators--type-number_text .e-form__indicators__indicator__separator{margin-top:calc(var(--e-form-steps-indicator-padding, 30px) / 2 - var(--e-form-steps-divider-width, 1px) / 2)}.elementor-field-type-hidden{display:none}.elementor-field-type-html{display:inline-block}.elementor-field-type-tel input{direction:inherit}.elementor-login .elementor-lost-password,.elementor-login .elementor-remember-me{font-size:.85em}.elementor-field-type-recaptcha_v3 .elementor-field-label{display:none}.elementor-field-type-recaptcha_v3 .grecaptcha-badge{z-index:1}.elementor-button .elementor-form-spinner{order:3}.elementor-form .elementor-button>span{display:flex;justify-content:center;align-items:center}.elementor-form .elementor-button .elementor-button-text{white-space:normal;flex-grow:0}.elementor-form .elementor-button svg{height:auto}.elementor-form .elementor-button .e-font-icon-svg{height:1em}.elementor-select-wrapper .select-caret-down-wrapper{position:absolute;top:50%;transform:translateY(-50%);inset-inline-end:10px;pointer-events:none;font-size:11px}.elementor-select-wrapper .select-caret-down-wrapper svg{display:unset;width:1em;aspect-ratio:unset;fill:currentColor}.elementor-select-wrapper .select-caret-down-wrapper i{font-size:19px;line-height:2}.elementor-select-wrapper.remove-before:before{content:\"\"!important}</style>\";s:7:\"version\";s:6:\"3.21.2\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:1379:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:5:\"video\";a:2:{s:7:\"content\";s:1883:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-video .elementor-widget-container{overflow:hidden;transform:translateZ(0)}.elementor-widget-video .elementor-wrapper{aspect-ratio:var(--video-aspect-ratio)}.elementor-widget-video .elementor-wrapper iframe,.elementor-widget-video .elementor-wrapper video{height:100%;width:100%;display:flex;border:none;background-color:#000}@supports not (aspect-ratio:1/1){.elementor-widget-video .elementor-wrapper{position:relative;overflow:hidden;height:0;padding-bottom:calc(100% / var(--video-aspect-ratio))}.elementor-widget-video .elementor-wrapper iframe,.elementor-widget-video .elementor-wrapper video{position:absolute;top:0;right:0;bottom:0;left:0}}.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background-size:cover;background-position:50%}.elementor-widget-video .elementor-custom-embed-image-overlay{cursor:pointer;text-align:center}.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i{opacity:1}.elementor-widget-video .elementor-custom-embed-image-overlay img{display:block;width:100%;aspect-ratio:var(--video-aspect-ratio);-o-object-fit:cover;object-fit:cover;-o-object-position:center center;object-position:center center}@supports not (aspect-ratio:1/1){.elementor-widget-video .elementor-custom-embed-image-overlay{position:relative;overflow:hidden;height:0;padding-bottom:calc(100% / var(--video-aspect-ratio))}.elementor-widget-video .elementor-custom-embed-image-overlay img{position:absolute;top:0;right:0;bottom:0;left:0}}.elementor-widget-video .e-hosted-video .elementor-video{-o-object-fit:cover;object-fit:cover}.e-con-inner>.elementor-widget-video,.e-con>.elementor-widget-video{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:25:\"eael-woo-product-carousel\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:6:\"rating\";a:2:{s:7:\"content\";s:1337:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-rating{--e-rating-gap:0px;--e-rating-icon-font-size:16px;--e-rating-icon-color:#ccd6df;--e-rating-icon-marked-color:#f0ad4e;--e-rating-icon-marked-width:100%;--e-rating-justify-content:flex-start}.elementor-widget-rating .e-rating{display:flex;justify-content:var(--e-rating-justify-content)}.elementor-widget-rating .e-rating-wrapper{display:flex;justify-content:inherit;flex-direction:row;flex-wrap:wrap;width:-moz-fit-content;width:fit-content;margin-block-end:calc(0px - var(--e-rating-gap));margin-inline-end:calc(0px - var(--e-rating-gap))}.elementor-widget-rating .e-rating .e-icon{position:relative;margin-block-end:var(--e-rating-gap);margin-inline-end:var(--e-rating-gap)}.elementor-widget-rating .e-rating .e-icon-wrapper.e-icon-marked{--e-rating-icon-color:var(--e-rating-icon-marked-color);width:var(--e-rating-icon-marked-width);position:absolute;z-index:1;height:100%;left:0;top:0;overflow:hidden}.elementor-widget-rating .e-rating .e-icon-wrapper :is(i,svg){display:flex;flex-shrink:0}.elementor-widget-rating .e-rating .e-icon-wrapper i{font-size:var(--e-rating-icon-font-size);color:var(--e-rating-icon-color)}.elementor-widget-rating .e-rating .e-icon-wrapper svg{width:auto;height:var(--e-rating-icon-font-size);fill:var(--e-rating-icon-color)}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:8:\"carousel\";a:2:{s:7:\"content\";s:128:\"<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-carousel.min.css\">\";s:7:\"version\";s:6:\"3.21.2\";}s:11:\"menu-anchor\";a:2:{s:7:\"content\";s:121:\"<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>\";s:7:\"version\";s:6:\"3.21.4\";}s:4:\"html\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:14:\"theme-elements\";a:2:{s:7:\"content\";s:134:\"<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-theme-elements.min.css\">\";s:7:\"version\";s:6:\"3.21.2\";}s:24:\"eael-woo-product-gallery\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:29:\"wl-single-product-description\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:14:\"call-to-action\";a:2:{s:7:\"content\";s:134:\"<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">\";s:7:\"version\";s:6:\"3.21.2\";}s:16:\"theme-post-title\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.2\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:125:\"<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:6:\"3.21.4\";}s:25:\"theme-post-featured-image\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.2\";}s:13:\"checkout-form\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:27:\"wp-widget-forminator_widget\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:23:\"eael-filterable-gallery\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:6:\"slides\";a:2:{s:7:\"content\";s:2401:\"<style>/*! elementor-pro - v3.21.0 - 30-04-2024 */\n.elementor-slides .swiper-slide-bg{background-size:cover;background-position:50%;background-repeat:no-repeat;min-width:100%;min-height:100%}.elementor-slides .swiper-slide-inner{background-repeat:no-repeat;background-position:50%;position:absolute;top:0;left:0;bottom:0;right:0;padding:50px;margin:auto}.elementor-slides .swiper-slide-inner,.elementor-slides .swiper-slide-inner:hover{color:#fff;display:flex}.elementor-slides .swiper-slide-inner .elementor-background-overlay{position:absolute;z-index:0;top:0;bottom:0;left:0;right:0}.elementor-slides .swiper-slide-inner .elementor-slide-content{position:relative;z-index:1;width:100%}.elementor-slides .swiper-slide-inner .elementor-slide-heading{font-size:35px;font-weight:700;line-height:1}.elementor-slides .swiper-slide-inner .elementor-slide-description{font-size:17px;line-height:1.4}.elementor-slides .swiper-slide-inner .elementor-slide-description:not(:last-child),.elementor-slides .swiper-slide-inner .elementor-slide-heading:not(:last-child){margin-bottom:30px}.elementor-slides .swiper-slide-inner .elementor-slide-button{border:2px solid #fff;color:#fff;background:transparent;display:inline-block}.elementor-slides .swiper-slide-inner .elementor-slide-button,.elementor-slides .swiper-slide-inner .elementor-slide-button:hover{background:transparent;color:inherit;text-decoration:none}.elementor--v-position-top .swiper-slide-inner{align-items:flex-start}.elementor--v-position-bottom .swiper-slide-inner{align-items:flex-end}.elementor--v-position-middle .swiper-slide-inner{align-items:center}.elementor--h-position-left .swiper-slide-inner{justify-content:flex-start}.elementor--h-position-right .swiper-slide-inner{justify-content:flex-end}.elementor--h-position-center .swiper-slide-inner{justify-content:center}body.rtl .elementor-widget-slides .elementor-swiper-button-next{left:10px;right:auto}body.rtl .elementor-widget-slides .elementor-swiper-button-prev{right:10px;left:auto}.elementor-slides-wrapper div:not(.swiper-slide)>.swiper-slide-inner{display:none}@media (max-width:767px){.elementor-slides .swiper-slide-inner{padding:30px}.elementor-slides .swiper-slide-inner .elementor-slide-heading{font-size:23px;line-height:1;margin-bottom:15px}.elementor-slides .swiper-slide-inner .elementor-slide-description{font-size:13px;line-height:1.4;margin-bottom:15px}}</style>\";s:7:\"version\";s:6:\"3.21.2\";}s:14:\"eael-countdown\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:12:\"loop-builder\";a:2:{s:7:\"content\";s:132:\"<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-loop-builder.min.css\">\";s:7:\"version\";s:6:\"3.21.2\";}s:18:\"wl-product-related\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}s:24:\"eael-woo-product-compare\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.4\";}}}}','yes'),
(5651108,'jetpack_sync_health_status','a:2:{s:6:\"status\";s:7:\"in_sync\";s:9:\"timestamp\";d:1717217203.057827;}','yes'),
(5667805,'jp_sync_retry_after_sync','','no'),
(5667806,'jp_sync_error_log_sync','a:1:{s:15:\"1720278934.6337\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:19:\"http_request_failed\";a:1:{i:0;s:108:\"cURL error 28: Failed to connect to jetpack.wordpress.com port 443 after 7501 ms: Couldn\'t connect to server\";}}s:10:\"error_data\";a:1:{s:19:\"http_request_failed\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:19:\"http_request_failed\";a:1:{i:0;s:108:\"cURL error 28: Failed to connect to jetpack.wordpress.com port 443 after 7501 ms: Couldn\'t connect to server\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}}s:18:\"\0*\0additional_data\";a:1:{s:19:\"http_request_failed\";a:1:{i:0;i:-10520;}}}}','yes'),
(5685543,'jetpack_site_icon_url','https://choiceresources.co.uk/wp-content/uploads/2024/07/choice-Logo-Newest-1.png','auto'),
(5685544,'site_logo','35898','auto'),
(5715918,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:7;s:3:\"all\";i:7;s:9:\"moderated\";s:1:\"1\";s:8:\"approved\";s:1:\"6\";s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','on'),
(5719592,'_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.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.6.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";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.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1730171705;s:15:\"version_checked\";s:5:\"6.6.2\";s:12:\"translations\";a:0:{}}','off'),
(5736696,'eael_show_reset_password_on_form_submit_451','1','off'),
(5742667,'product_cat_children','a:1:{i:401;a:4:{i:0;i:407;i:1;i:409;i:2;i:429;i:3;i:430;}}','auto'),
(5742680,'_transient_timeout_wc_term_counts','1730841351','off'),
(5742681,'_transient_wc_term_counts','a:140:{i:431;s:1:\"1\";i:401;s:1:\"3\";i:409;s:1:\"2\";i:429;s:1:\"1\";i:25;s:1:\"4\";i:430;s:0:\"\";i:407;s:1:\"0\";i:159;s:1:\"0\";i:86;s:1:\"0\";i:283;s:1:\"0\";i:133;s:1:\"0\";i:132;s:1:\"0\";i:111;s:1:\"0\";i:82;s:1:\"0\";i:128;s:1:\"0\";i:90;s:1:\"0\";i:162;s:1:\"0\";i:23;s:1:\"0\";i:275;s:1:\"0\";i:396;s:1:\"0\";i:334;s:1:\"0\";i:290;s:1:\"0\";i:299;s:1:\"0\";i:19;s:1:\"0\";i:106;s:1:\"0\";i:20;s:1:\"0\";i:77;s:1:\"0\";i:129;s:1:\"0\";i:278;s:1:\"0\";i:68;s:1:\"0\";i:197;s:1:\"0\";i:307;s:1:\"0\";i:289;s:1:\"0\";i:319;s:1:\"0\";i:271;s:1:\"0\";i:130;s:1:\"0\";i:84;s:1:\"0\";i:302;s:1:\"0\";i:235;s:1:\"0\";i:234;s:1:\"0\";i:93;s:1:\"0\";i:295;s:1:\"0\";i:294;s:1:\"0\";i:393;s:1:\"0\";i:92;s:1:\"0\";i:101;s:1:\"0\";i:115;s:1:\"0\";i:79;s:1:\"0\";i:64;s:1:\"0\";i:66;s:1:\"0\";i:105;s:1:\"0\";i:114;s:1:\"0\";i:131;s:1:\"0\";i:276;s:1:\"0\";i:288;s:1:\"0\";i:81;s:1:\"0\";i:285;s:1:\"0\";i:127;s:1:\"0\";i:291;s:1:\"0\";i:163;s:1:\"0\";i:312;s:1:\"0\";i:73;s:1:\"0\";i:320;s:1:\"0\";i:102;s:1:\"0\";i:83;s:1:\"0\";i:270;s:1:\"0\";i:268;s:1:\"0\";i:286;s:1:\"0\";i:308;s:1:\"0\";i:124;s:1:\"0\";i:274;s:1:\"0\";i:293;s:1:\"0\";i:266;s:1:\"0\";i:297;s:1:\"0\";i:305;s:1:\"0\";i:303;s:1:\"0\";i:199;s:1:\"0\";i:126;s:1:\"0\";i:272;s:1:\"0\";i:69;s:1:\"0\";i:67;s:1:\"0\";i:74;s:1:\"0\";i:76;s:1:\"0\";i:292;s:1:\"0\";i:165;s:1:\"0\";i:118;s:1:\"0\";i:18;s:1:\"0\";i:301;s:1:\"0\";i:75;s:1:\"0\";i:392;s:1:\"0\";i:300;s:1:\"0\";i:134;s:1:\"0\";i:395;s:1:\"0\";i:85;s:1:\"0\";i:333;s:1:\"0\";i:298;s:1:\"0\";i:394;s:1:\"0\";i:71;s:1:\"0\";i:116;s:1:\"0\";i:267;s:1:\"0\";i:321;s:1:\"0\";i:112;s:1:\"0\";i:164;s:1:\"0\";i:21;s:1:\"0\";i:72;s:1:\"0\";i:400;s:1:\"0\";i:279;s:1:\"0\";i:280;s:1:\"0\";i:313;s:1:\"0\";i:309;s:1:\"0\";i:120;s:1:\"0\";i:123;s:1:\"0\";i:100;s:1:\"0\";i:80;s:1:\"0\";i:22;s:1:\"0\";i:322;s:1:\"0\";i:70;s:1:\"0\";i:65;s:1:\"0\";i:63;s:1:\"0\";i:310;s:1:\"0\";i:113;s:1:\"0\";i:103;s:1:\"0\";i:284;s:1:\"0\";i:125;s:1:\"0\";i:233;s:1:\"0\";i:230;s:1:\"0\";i:121;s:1:\"0\";i:198;s:1:\"0\";i:122;s:1:\"0\";i:78;s:1:\"0\";i:311;s:1:\"0\";i:91;s:1:\"0\";i:119;s:1:\"0\";i:332;s:1:\"0\";i:318;s:1:\"0\";i:287;s:1:\"0\";i:335;s:1:\"0\";i:265;s:1:\"0\";i:264;s:1:\"0\";i:117;s:1:\"0\";}','off'),
(5749461,'_transient_timeout_wc_shipping_method_count_legacy','1731357452','off'),
(5749462,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1668634147\";s:5:\"value\";i:1;}','off'),
(5767212,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1730250472','off'),
(5767213,'_transient_woocommerce_admin_remote_free_extensions_specs','a:1:{s:5:\"en_US\";a:5:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:14:\"Get the basics\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:154:\"Accept credit cards and other popular payment methods with <a href=\"https://woocommerce.com/products/woocommerce-payments\" target=\"_blank\">WooPayments</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:119:\"Print shipping labels with <a href=\"https://woocommerce.com/products/shipping\" target=\"_blank\">WooCommerce Shipping</a>\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";a:0:{}s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:111:\"Get automated sales tax with <a href=\"https://woocommerce.com/products/tax\" target=\"_blank\">WooCommerce Tax</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:110:\"Enhance speed and security with <a href=\"https://woocommerce.com/products/jetpack\" target=\"_blank\">Jetpack</a>\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Level up your email marketing with <a href=\"https://woocommerce.com/products/mailpoet\" target=\"_blank\">MailPoet</a>\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";s:2:\"24\";s:7:\"default\";b:0;s:9:\"operation\";s:2:\"<=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":8:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:126:\"Drive sales with <a href=\"https://woocommerce.com/products/google-listings-and-ads\" target=\"_blank\">Google for WooCommerce</a>\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";}i:2;O:8:\"stdClass\":7:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:76:\"Get your products in front of Pinners searching for ideas and things to buy.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:141:\"List products and create ads on Facebook and Instagram with <a href=\"https://woocommerce.com/products/facebook/\">Facebook for WooCommerce</a>\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:24:\"facebook-for-woocommerce\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:22:\"Reach out to customers\";s:7:\"plugins\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:111:\"Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.svg\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:78:\"Send targeted campaigns, recover abandoned carts and much more with Mailchimp.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:29:\"mailchimp-for-woocommerce:alt\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:138:\"Grow and retain customers with intelligent, impactful email and SMS marketing automation and a consolidated view of customer interactions.\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:134:\"Reach more shoppers and drive sales for your store. Integrate with Google to list your products for free and launch paid ad campaigns.\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/tiktok.svg\";s:11:\"description\";s:118:\"Grow your online sales by promoting your products on TikTok to over one billion monthly active users around the world.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MY\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PH\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VN\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TH\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"KR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IL\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UA\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TR\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SA\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:159:\"Get your products in front of Pinterest users searching for ideas and things to buy. Get started with Pinterest and make your entire product catalog browsable.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:55:\"List products and create ads on Facebook and Instagram.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:28:\"facebook-for-woocommerce:alt\";}}}s:17:\"obw/core-profiler\";O:8:\"stdClass\":3:{s:3:\"key\";s:17:\"obw/core-profiler\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:9:{i:0;O:8:\"stdClass\":10:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:89:\"Securely accept payments and manage payment activity straight from your store\'s dashboard\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";s:5:\"label\";s:25:\"Get paid with WooPayments\";s:9:\"image_url\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:53:\"https://woocommerce.com/products/woocommerce-payments\";s:16:\"install_priority\";i:5;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:76:\"Print USPS and DHL labels directly from your dashboard and save on shipping.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";s:5:\"label\";s:47:\"Print shipping labels with WooCommerce Shipping\";s:9:\"image_url\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:44:\"https://woocommerce.com/woocommerce-shipping\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:84:\"Save time on content creation â€” unlock high-quality blog posts and pages using AI.\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";s:5:\"label\";s:48:\"Boost content creation with Jetpack AI Assistant\";s:9:\"image_url\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:40:\"https://woocommerce.com/products/jetpack\";s:16:\"install_priority\";i:8;}i:3;O:8:\"stdClass\":10:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:56:\"Get your products in front of a highly engaged audience.\";s:9:\"image_url\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-pinterest.svg\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";s:5:\"label\";s:37:\"Showcase your products with Pinterest\";s:15:\"learn_more_link\";s:58:\"https://woocommerce.com/products/pinterest-for-woocommerce\";s:16:\"install_priority\";i:2;}i:4;O:8:\"stdClass\":10:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:78:\"Send targeted campaigns, recover abandoned carts and much more with Mailchimp.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";s:2:\"25\";s:7:\"default\";b:0;s:9:\"operation\";s:2:\">=\";}}s:3:\"key\";s:25:\"mailchimp-for-woocommerce\";s:5:\"label\";s:35:\"Reach your customers with Mailchimp\";s:15:\"learn_more_link\";s:58:\"https://woocommerce.com/products/mailchimp-for-woocommerce\";s:16:\"install_priority\";i:7;}i:5;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:71:\"Send purchase follow-up emails, newsletters, and promotional campaigns.\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";s:2:\"24\";s:7:\"default\";b:0;s:9:\"operation\";s:2:\"<=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";s:5:\"label\";s:34:\"Reach your customers with MailPoet\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:41:\"https://woocommerce.com/products/mailpoet\";s:16:\"install_priority\";i:7;}i:6;O:8:\"stdClass\":11:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:83:\"Reach millions of active shoppers across Google with free product listings and ads.\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";s:5:\"label\";s:39:\"Drive sales with Google for WooCommerce\";s:15:\"learn_more_link\";s:56:\"https://woocommerce.com/products/google-listings-and-ads\";s:16:\"install_priority\";i:6;}i:7;O:8:\"stdClass\":9:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:94:\"Automatically calculate how much sales tax should be collected â€“ by city, country, or state.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";s:5:\"label\";s:44:\"Get automated tax rates with WooCommerce Tax\";s:9:\"image_url\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:36:\"https://woocommerce.com/products/tax\";s:16:\"install_priority\";i:4;}i:8;O:8:\"stdClass\":10:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-tiktok.svg\";s:11:\"description\";s:64:\"Create advertising campaigns and reach one billion global users.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MY\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PH\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VN\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TH\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"KR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IL\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UA\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TR\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SA\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";s:5:\"label\";s:31:\"Create ad campaigns with TikTok\";s:15:\"learn_more_link\";s:55:\"https://woocommerce.com/products/tiktok-for-woocommerce\";s:16:\"install_priority\";i:1;}}}}}','off'),
(5767270,'_transient_timeout_woocommerce_admin_payment_gateway_suggestions_specs','1730253757','off'),
(5767271,'_transient_woocommerce_admin_payment_gateway_suggestions_specs','a:1:{s:5:\"en_US\";a:23:{s:6:\"affirm\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"affirm\";s:5:\"title\";s:6:\"Affirm\";s:7:\"content\";s:169:\"Affirmâ€™s tailored Buy Now Pay Later programs remove price as a barrier, turning browsers into buyers, increasing average order value, and expanding your customer base.\";s:5:\"image\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:7:\"plugins\";a:0:{}s:13:\"external_link\";s:59:\"https://woocommerce.com/products/woocommerce-gateway-affirm\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"US\";i:1;s:2:\"CA\";}s:23:\"recommendation_priority\";i:8;}s:8:\"afterpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"afterpay\";s:5:\"title\";s:8:\"Afterpay\";s:7:\"content\";s:125:\"Afterpay allows customers to receive products immediately and pay for purchases over four installments, always interest-free.\";s:5:\"image\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:3:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"AU\";}s:23:\"recommendation_priority\";i:8;}s:14:\"airwallex_main\";O:8:\"stdClass\":11:{s:2:\"id\";s:14:\"airwallex_main\";s:5:\"title\";s:18:\"Airwallex Payments\";s:7:\"content\";s:115:\"Boost international sales and save on FX fees. Accept 60+ local payment methods including Apple Pay and Google Pay.\";s:5:\"image\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/airwallex.png\";s:12:\"square_image\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex-square.png\";s:7:\"plugins\";a:1:{i:0;s:33:\"airwallex-online-payments-gateway\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:17:{i:0;s:2:\"GB\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"EE\";i:4;s:2:\"FR\";i:5;s:2:\"DE\";i:6;s:2:\"GR\";i:7;s:2:\"IE\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";i:11;s:2:\"PT\";i:12;s:2:\"AU\";i:13;s:2:\"NZ\";i:14;s:2:\"HK\";i:15;s:2:\"SG\";i:16;s:2:\"CN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:3;}s:24:\"amazon_payments_advanced\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"amazon_payments_advanced\";s:5:\"title\";s:10:\"Amazon Pay\";s:7:\"content\";s:94:\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally.\";s:5:\"image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-amazon-payments-advanced\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:18:{i:0;s:2:\"US\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"CY\";i:4;s:2:\"DK\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"DE\";i:8;s:2:\"GB\";i:9;s:2:\"HU\";i:10;s:2:\"IE\";i:11;s:2:\"IT\";i:12;s:2:\"LU\";i:13;s:2:\"NL\";i:14;s:2:\"PT\";i:15;s:2:\"SL\";i:16;s:2:\"SE\";i:17;s:2:\"JP\";}s:23:\"recommendation_priority\";i:7;}s:4:\"bacs\";O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"bacs\";s:5:\"title\";s:20:\"Direct bank transfer\";s:7:\"content\";s:32:\"Take payments via bank transfer.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/bacs.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/bacs.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:8;}s:3:\"cod\";O:8:\"stdClass\":8:{s:2:\"id\";s:3:\"cod\";s:5:\"title\";s:16:\"Cash on delivery\";s:7:\"content\";s:36:\"Take payments in cash upon delivery.\";s:5:\"image\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/cod.svg\";s:11:\"image_72x72\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/cod.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:8;}s:4:\"eway\";O:8:\"stdClass\":11:{s:2:\"id\";s:4:\"eway\";s:5:\"title\";s:4:\"Eway\";s:7:\"content\";s:171:\"The Eway extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway.png\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/eway.png\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway-square.png\";s:7:\"plugins\";a:1:{i:0;s:24:\"woocommerce-gateway-eway\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:8;}s:3:\"kco\";O:8:\"stdClass\":10:{s:2:\"id\";s:3:\"kco\";s:5:\"title\";s:15:\"Klarna Checkout\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-checkout-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"NO\";i:1;s:2:\"SE\";i:2;s:2:\"FI\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:8;}s:15:\"klarna_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:15:\"klarna_payments\";s:5:\"title\";s:15:\"Klarna Payments\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:19:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:19:{i:0;s:2:\"MX\";i:1;s:2:\"US\";i:2;s:2:\"CA\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CH\";i:6;s:2:\"DK\";i:7;s:2:\"ES\";i:8;s:2:\"FI\";i:9;s:2:\"FR\";i:10;s:2:\"DE\";i:11;s:2:\"GB\";i:12;s:2:\"IT\";i:13;s:2:\"NL\";i:14;s:2:\"NO\";i:15;s:2:\"PL\";i:16;s:2:\"SE\";i:17;s:2:\"NZ\";i:18;s:2:\"AU\";}s:23:\"recommendation_priority\";i:6;}s:30:\"mollie_wc_gateway_banktransfer\";O:8:\"stdClass\":11:{s:2:\"id\";s:30:\"mollie_wc_gateway_banktransfer\";s:5:\"title\";s:6:\"Mollie\";s:7:\"content\";s:128:\"Effortless payments by Mollie: Offer global and local payment methods, get onboarded in minutes, and supported in your language.\";s:5:\"image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie.svg\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mollie.png\";s:12:\"square_image\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie-square.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"mollie-payments-for-woocommerce\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:11:{i:0;s:2:\"AT\";i:1;s:2:\"BE\";i:2;s:2:\"CH\";i:3;s:2:\"ES\";i:4;s:2:\"FI\";i:5;s:2:\"FR\";i:6;s:2:\"DE\";i:7;s:2:\"GB\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:4;}s:7:\"payfast\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payfast\";s:5:\"title\";s:7:\"Payfast\";s:7:\"content\";s:299:\"The Payfast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africaâ€™s most popular payment gateways. No setup fees or monthly subscription costs. Selecting this extension will configure your store to use South African rands as the selected currency.\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/payfast.png\";s:11:\"image_72x72\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payfast.png\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-payfast-gateway\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"ZA\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:8;}s:17:\"payoneer-checkout\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"payoneer-checkout\";s:5:\"title\";s:17:\"Payoneer Checkout\";s:7:\"content\";s:202:\"Payoneer Checkout is the next generation of payment processing platforms, giving merchants around the world the solutions and direction they need to succeed in todayâ€™s hyper-competitive global market.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payoneer.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payoneer.png\";s:7:\"plugins\";a:1:{i:0;s:17:\"payoneer-checkout\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"HK\";i:1;s:2:\"CN\";}s:23:\"recommendation_priority\";i:8;}s:8:\"paystack\";O:8:\"stdClass\":11:{s:2:\"id\";s:8:\"paystack\";s:5:\"title\";s:8:\"Paystack\";s:7:\"content\";s:127:\"Paystack helps African merchants accept one-time and recurring payments online with a modern, safe, and secure payment gateway.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack.png\";s:12:\"square_image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack-square.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paystack.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-paystack\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GH\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NG\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"ZA\";i:1;s:2:\"GH\";i:2;s:2:\"NG\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:8;}s:7:\"payubiz\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payubiz\";s:5:\"title\";s:20:\"PayU for WooCommerce\";s:7:\"content\";s:169:\"Enable PayUâ€™s exclusive plugin for WooCommerce to start accepting payments in 100+ payment methods available in India including credit cards, debit cards, UPI, & more!\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payu.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payu.png\";s:7:\"plugins\";a:1:{i:0;s:10:\"payu-india\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:8;}s:12:\"ppcp-gateway\";O:8:\"stdClass\":11:{s:2:\"id\";s:12:\"ppcp-gateway\";s:5:\"title\";s:15:\"PayPal Payments\";s:7:\"content\";s:78:\"Safe and secure payments using credit cards or your customer\'s PayPal account.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/paypal.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paypal.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paypal.svg\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:49:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:48:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";}s:19:\"category_additional\";a:49:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";i:48;s:2:\"IN\";}s:23:\"recommendation_priority\";i:2;}s:8:\"razorpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"razorpay\";s:5:\"title\";s:8:\"Razorpay\";s:7:\"content\";s:133:\"The official Razorpay extension for WooCommerce allows you to accept credit cards, debit cards, netbanking, wallet, and UPI payments.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/razorpay.svg\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/razorpay.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-razorpay\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:8;}s:18:\"square_credit_card\";O:8:\"stdClass\":10:{s:2:\"id\";s:18:\"square_credit_card\";s:5:\"title\";s:6:\"Square\";s:7:\"content\";s:169:\"Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell online and in store and track sales and inventory in one place.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/square-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/square.png\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}i:1;a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:12:\"brick-mortar\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:18:\"brick-mortar-other\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:21:\"no_im_selling_offline\";s:7:\"default\";s:0:\"\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:34:\"im_selling_both_online_and_offline\";s:7:\"default\";s:0:\"\";}}}}}}}}}s:14:\"category_other\";a:8:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"IE\";i:3;s:2:\"ES\";i:4;s:2:\"FR\";i:5;s:2:\"GB\";i:6;s:2:\"AU\";i:7;s:2:\"JP\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:5;}s:6:\"stripe\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"stripe\";s:5:\"title\";s:6:\"Stripe\";s:7:\"content\";s:112:\"Accept debit and credit cards in 135+ currencies, methods such as Alipay, and one-touch checkout with Apple Pay.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/stripe.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/stripe.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/stripe.svg\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AT\";i:5;s:2:\"BE\";i:6;s:2:\"BG\";i:7;s:2:\"CH\";i:8;s:2:\"CY\";i:9;s:2:\"CZ\";i:10;s:2:\"DK\";i:11;s:2:\"EE\";i:12;s:2:\"ES\";i:13;s:2:\"FI\";i:14;s:2:\"FR\";i:15;s:2:\"DE\";i:16;s:2:\"GB\";i:17;s:2:\"GR\";i:18;s:2:\"HU\";i:19;s:2:\"IE\";i:20;s:2:\"IT\";i:21;s:2:\"LV\";i:22;s:2:\"LT\";i:23;s:2:\"LU\";i:24;s:2:\"MT\";i:25;s:2:\"NL\";i:26;s:2:\"NO\";i:27;s:2:\"PL\";i:28;s:2:\"PT\";i:29;s:2:\"RO\";i:30;s:2:\"SK\";i:31;s:2:\"SL\";i:32;s:2:\"SE\";i:33;s:2:\"AU\";i:34;s:2:\"NZ\";i:35;s:2:\"HK\";i:36;s:2:\"JP\";i:37;s:2:\"SG\";i:38;s:2:\"ID\";i:39;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:1;}s:23:\"woo-mercado-pago-custom\";O:8:\"stdClass\":11:{s:2:\"id\";s:23:\"woo-mercado-pago-custom\";s:5:\"title\";s:12:\"Mercado Pago\";s:7:\"content\";s:198:\"Set up your payment methods and accept credit and debit cards, cash, bank transfers and money from your Mercado Pago account. Offer safe and secure payments with Latin Americaâ€™s leading processor.\";s:5:\"image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mercadopago.png\";s:11:\"image_72x72\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mercadopago.png\";s:7:\"plugins\";a:1:{i:0;s:23:\"woocommerce-mercadopago\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}}}}s:16:\"is_local_partner\";b:1;s:14:\"category_other\";a:8:{i:0;s:2:\"AR\";i:1;s:2:\"CL\";i:2;s:2:\"CO\";i:3;s:2:\"EC\";i:4;s:2:\"PE\";i:5;s:2:\"UY\";i:6;s:2:\"MX\";i:7;s:2:\"BR\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:8;}s:20:\"woocommerce_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your storeâ€™s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:1:\"<\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:17:\"woocommerce-admin\";}}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:1:\"<\";}}}}s:23:\"recommendation_priority\";i:0;}s:47:\"woocommerce_payments:without-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"woocommerce_payments:without-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your storeâ€™s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:37:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:8;}s:44:\"woocommerce_payments:with-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"woocommerce_payments:with-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:212:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies â€“ with no setup costs or monthly fees â€“ and you can now accept in-person payments with the Woo mobile app.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:8;}s:8:\"zipmoney\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"zipmoney\";s:5:\"title\";s:27:\"Zip Co - Buy Now, Pay Later\";s:7:\"content\";s:84:\"Give your customers the power to pay later, interest free and watch your sales grow.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/zipmoney.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/zipmoney.png\";s:7:\"plugins\";a:1:{i:0;s:29:\"zipmoney-payments-woocommerce\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:8;}}}','off'),
(5767354,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1730258106','off'),
(5767355,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),
(5768619,'_transient_timeout_elementor_rollback_versions_3.21.4','1730316475','off'),
(5768620,'_transient_elementor_rollback_versions_3.21.4','a:30:{i:0;s:6:\"3.21.3\";i:1;s:6:\"3.21.2\";i:2;s:6:\"3.21.1\";i:3;s:6:\"3.21.0\";i:4;s:6:\"3.20.4\";i:5;s:6:\"3.20.3\";i:6;s:6:\"3.20.2\";i:7;s:6:\"3.20.1\";i:8;s:6:\"3.20.0\";i:9;s:6:\"3.19.4\";i:10;s:6:\"3.19.3\";i:11;s:6:\"3.19.2\";i:12;s:6:\"3.19.1\";i:13;s:6:\"3.19.0\";i:14;s:6:\"3.18.3\";i:15;s:6:\"3.18.2\";i:16;s:6:\"3.18.1\";i:17;s:6:\"3.18.0\";i:18;s:6:\"3.17.3\";i:19;s:6:\"3.17.2\";i:20;s:6:\"3.17.1\";i:21;s:6:\"3.17.0\";i:22;s:6:\"3.16.6\";i:23;s:6:\"3.16.5\";i:24;s:6:\"3.16.4\";i:25;s:6:\"3.16.3\";i:26;s:6:\"3.16.2\";i:27;s:6:\"3.16.1\";i:28;s:6:\"3.16.0\";i:29;s:6:\"3.15.3\";}','off'),
(5776311,'_transient_timeout_geoip_91.203.4.26','1730172679','off'),
(5776312,'_transient_geoip_91.203.4.26','UA','off'),
(5776314,'_transient_timeout_geoip_41.111.178.66','1730172683','off'),
(5776315,'_transient_geoip_41.111.178.66','DZ','off'),
(5776317,'_transient_timeout_geoip_198.54.114.54','1730172697','off'),
(5776318,'_transient_geoip_198.54.114.54','US','off'),
(5776320,'_transient_timeout_geoip_8.217.15.154','1730172697','off'),
(5776321,'_transient_geoip_8.217.15.154','HK','off'),
(5776360,'_transient_timeout_geoip_13.85.15.194','1730174865','off'),
(5776361,'_transient_geoip_13.85.15.194','US','off'),
(5776364,'_transient_timeout_geoip_202.151.168.13','1730174890','off'),
(5776365,'_transient_geoip_202.151.168.13','VN','off'),
(5776405,'_transient_timeout_geoip_185.88.177.165','1730177081','off'),
(5776406,'_transient_geoip_185.88.177.165','IR','off'),
(5776410,'_transient_timeout_geoip_185.107.112.164','1730177110','off'),
(5776411,'_transient_geoip_185.107.112.164','DK','off'),
(5776453,'_transient_timeout_geoip_46.226.10.69','1730179142','off'),
(5776454,'_transient_geoip_46.226.10.69','NO','off'),
(5776501,'_transient_timeout_geoip_198.54.114.55','1730181743','off'),
(5776502,'_transient_geoip_198.54.114.55','US','off'),
(5776503,'_transient_timeout_geoip_94.182.155.10','1730181743','off'),
(5776504,'_transient_geoip_94.182.155.10','IR','off'),
(5776506,'_transient_timeout_geoip_208.74.151.235','1730181746','off'),
(5776507,'_transient_geoip_208.74.151.235','US','off'),
(5776510,'_transient_timeout_geoip_35.197.133.228','1730181764','off'),
(5776511,'_transient_geoip_35.197.133.228','SG','off'),
(5776513,'_transient_timeout_geoip_106.15.226.21','1730181776','off'),
(5776514,'_transient_geoip_106.15.226.21','CN','off'),
(5776517,'_transient_timeout_geoip_136.144.154.94','1730181793','off'),
(5776518,'_transient_geoip_136.144.154.94','NL','off'),
(5776557,'_transient_timeout_geoip_40.84.226.176','1730183742','off'),
(5776558,'_transient_geoip_40.84.226.176','US','off'),
(5776739,'_transient_timeout_geoip_35.223.243.25','1730193121','off'),
(5776740,'_transient_geoip_35.223.243.25','US','off'),
(5776760,'_transient_timeout_geoip_47.106.117.95','1730194141','off'),
(5776761,'_transient_geoip_47.106.117.95','CN','off'),
(5776867,'_transient_timeout_geoip_62.146.225.69','1730199646','off'),
(5776868,'_transient_geoip_62.146.225.69','US','off'),
(5776889,'_transient_timeout_geoip_192.0.115.196','1730200512','off'),
(5776890,'_transient_geoip_192.0.115.196','US','off'),
(5776902,'_transient_timeout_jetpack_connected_user_data_1','1730200528','off'),
(5776903,'_transient_jetpack_connected_user_data_1','a:11:{s:2:\"ID\";i:195011282;s:5:\"login\";s:19:\"ivankulongogmailcom\";s:5:\"email\";s:21:\"ivankulongo@gmail.com\";s:12:\"display_name\";s:19:\"ivankulongogmailcom\";s:14:\"text_direction\";s:3:\"ltr\";s:10:\"site_count\";i:4;s:15:\"jetpack_connect\";s:0:\"\";s:12:\"color_scheme\";s:12:\"classic-dark\";s:17:\"sidebar_collapsed\";b:0;s:11:\"user_locale\";s:2:\"en\";s:13:\"user_currency\";s:3:\"GBP\";}','off'),
(5777031,'_transient_timeout_geoip_117.54.215.10','1730206793','off'),
(5777032,'_transient_geoip_117.54.215.10','ID','off'),
(5777036,'_transient_timeout_geoip_40.233.72.72','1730206810','off'),
(5777037,'_transient_geoip_40.233.72.72','CA','off'),
(5777074,'_transient_timeout_geoip_200.58.127.245','1730208751','off'),
(5777075,'_transient_geoip_200.58.127.245','AR','off'),
(5777077,'_transient_timeout_geoip_46.226.148.153','1730208757','off'),
(5777078,'_transient_geoip_46.226.148.153','ES','off'),
(5777098,'_transient_timeout_geoip_109.159.104.107','1730209558','off'),
(5777099,'_transient_geoip_109.159.104.107','GB','off'),
(5777110,'_site_transient_timeout_fs_garbage_collection','1730209692','off'),
(5777111,'_site_transient_fs_garbage_collection','1','off'),
(5777113,'_site_transient_timeout_elementor_ai_usage','1730209698','off'),
(5777114,'_site_transient_elementor_ai_usage','O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{i:400;a:1:{i:0;s:20:\"invalid_connect_data\";}}s:10:\"error_data\";a:1:{i:400;O:8:\"stdClass\":4:{s:7:\"message\";s:20:\"invalid_connect_data\";s:5:\"error\";s:11:\"Bad Request\";s:10:\"statusCode\";i:400;s:9:\"errorCode\";s:6:\"#71426\";}}s:18:\"\0*\0additional_data\";a:0:{}}','off'),
(5777127,'_transient_timeout_wc_related_35934','1730209759','off'),
(5777128,'_transient_wc_related_35934','a:1:{s:53:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=35934\";a:3:{i:0;s:5:\"32821\";i:1;s:5:\"32825\";i:2;s:5:\"32827\";}}','off'),
(5777131,'_transient_timeout_wc_related_36041','1730245930','off'),
(5777132,'_transient_wc_related_36041','a:1:{s:53:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=36041\";a:0:{}}','off'),
(5777139,'_transient_timeout_wc_related_35831','1730209835','off'),
(5777140,'_transient_wc_related_35831','a:1:{s:53:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=35831\";a:1:{i:0;s:5:\"32823\";}}','off'),
(5777143,'_transient_timeout_geoip_69.171.230.7','1730209853','off'),
(5777144,'_transient_geoip_69.171.230.7','US','off'),
(5777146,'_transient_timeout_geoip_69.171.249.115','1730209857','off'),
(5777147,'_transient_geoip_69.171.249.115','US','off'),
(5777245,'_transient_timeout_geoip_82.165.85.100','1730214094','off'),
(5777246,'_transient_geoip_82.165.85.100','DE','off'),
(5777252,'_transient_timeout_geoip_5.161.86.62','1730214399','off'),
(5777253,'_transient_geoip_5.161.86.62','US','off'),
(5777338,'_transient_timeout_geoip_62.146.226.40','1730218004','off'),
(5777339,'_transient_geoip_62.146.226.40','US','off'),
(5777375,'_transient_timeout_wc_related_35853','1730219625','off'),
(5777376,'_transient_wc_related_35853','a:1:{s:53:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=35853\";a:0:{}}','off'),
(5777418,'_transient_timeout__woocommerce_helper_updates','1730177218','off'),
(5777419,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"38fd2fc697812690c758927c3699b14e\";s:7:\"updated\";i:1730134018;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','off'),
(5777420,'_site_transient_timeout_wp_plugin_dependencies_plugin_timeout_woocommerce','1730177219','off'),
(5777421,'_site_transient_wp_plugin_dependencies_plugin_timeout_woocommerce','1','off'),
(5777422,'_transient_timeout_sv_wc_plugin_wc_versions','1730738820','off'),
(5777423,'_transient_sv_wc_plugin_wc_versions','a:263:{i:0;s:5:\"9.3.3\";i:1;s:5:\"9.3.2\";i:2;s:5:\"9.3.1\";i:3;s:5:\"9.3.0\";i:4;s:5:\"9.2.3\";i:5;s:5:\"9.2.2\";i:6;s:5:\"9.2.1\";i:7;s:5:\"9.2.0\";i:8;s:5:\"9.1.4\";i:9;s:5:\"9.1.3\";i:10;s:5:\"9.1.2\";i:11;s:5:\"9.1.1\";i:12;s:5:\"9.1.0\";i:13;s:5:\"9.0.2\";i:14;s:5:\"9.0.1\";i:15;s:5:\"9.0.0\";i:16;s:5:\"8.9.3\";i:17;s:5:\"8.9.2\";i:18;s:5:\"8.9.1\";i:19;s:5:\"8.9.0\";i:20;s:5:\"8.8.5\";i:21;s:5:\"8.8.4\";i:22;s:5:\"8.8.3\";i:23;s:5:\"8.8.2\";i:24;s:5:\"8.8.1\";i:25;s:5:\"8.8.0\";i:26;s:5:\"8.7.1\";i:27;s:5:\"8.7.0\";i:28;s:5:\"8.6.2\";i:29;s:5:\"8.6.1\";i:30;s:5:\"8.6.0\";i:31;s:5:\"8.5.3\";i:32;s:5:\"8.5.2\";i:33;s:5:\"8.5.1\";i:34;s:5:\"8.5.0\";i:35;s:5:\"8.4.1\";i:36;s:5:\"8.4.0\";i:37;s:5:\"8.3.2\";i:38;s:5:\"8.3.1\";i:39;s:5:\"8.3.0\";i:40;s:5:\"8.2.3\";i:41;s:5:\"8.2.2\";i:42;s:5:\"8.2.1\";i:43;s:5:\"8.2.0\";i:44;s:5:\"8.1.2\";i:45;s:5:\"8.1.1\";i:46;s:5:\"8.1.0\";i:47;s:5:\"8.0.4\";i:48;s:5:\"8.0.3\";i:49;s:5:\"8.0.2\";i:50;s:5:\"8.0.1\";i:51;s:5:\"8.0.0\";i:52;s:5:\"7.9.1\";i:53;s:5:\"7.9.0\";i:54;s:5:\"7.8.3\";i:55;s:5:\"7.8.2\";i:56;s:5:\"7.8.1\";i:57;s:5:\"7.8.0\";i:58;s:5:\"7.7.2\";i:59;s:5:\"7.7.1\";i:60;s:5:\"7.7.0\";i:61;s:5:\"7.6.1\";i:62;s:5:\"7.6.0\";i:63;s:5:\"7.5.1\";i:64;s:5:\"7.5.0\";i:65;s:5:\"7.4.1\";i:66;s:5:\"7.4.0\";i:67;s:5:\"7.3.0\";i:68;s:5:\"7.2.3\";i:69;s:5:\"7.2.2\";i:70;s:5:\"7.2.1\";i:71;s:5:\"7.2.0\";i:72;s:5:\"7.1.1\";i:73;s:5:\"7.1.0\";i:74;s:5:\"7.0.1\";i:75;s:5:\"7.0.0\";i:76;s:5:\"6.9.4\";i:77;s:5:\"6.9.3\";i:78;s:5:\"6.9.2\";i:79;s:5:\"6.9.1\";i:80;s:5:\"6.9.0\";i:81;s:5:\"6.8.2\";i:82;s:5:\"6.8.1\";i:83;s:5:\"6.8.0\";i:84;s:5:\"6.7.0\";i:85;s:5:\"6.6.1\";i:86;s:5:\"6.6.0\";i:87;s:5:\"6.5.1\";i:88;s:5:\"6.5.0\";i:89;s:5:\"6.4.1\";i:90;s:5:\"6.4.0\";i:91;s:5:\"6.3.1\";i:92;s:5:\"6.3.0\";i:93;s:5:\"6.2.2\";i:94;s:5:\"6.2.1\";i:95;s:5:\"6.2.0\";i:96;s:5:\"6.1.2\";i:97;s:5:\"6.1.1\";i:98;s:5:\"6.1.0\";i:99;s:5:\"6.0.1\";i:100;s:5:\"6.0.0\";i:101;s:5:\"5.9.1\";i:102;s:5:\"5.9.0\";i:103;s:5:\"5.8.1\";i:104;s:5:\"5.8.0\";i:105;s:5:\"5.7.2\";i:106;s:5:\"5.7.1\";i:107;s:5:\"5.7.0\";i:108;s:5:\"5.6.2\";i:109;s:5:\"5.6.1\";i:110;s:5:\"5.6.0\";i:111;s:5:\"5.5.4\";i:112;s:5:\"5.5.3\";i:113;s:5:\"5.5.2\";i:114;s:5:\"5.5.1\";i:115;s:5:\"5.5.0\";i:116;s:5:\"5.4.4\";i:117;s:5:\"5.4.3\";i:118;s:5:\"5.4.2\";i:119;s:5:\"5.4.1\";i:120;s:5:\"5.4.0\";i:121;s:5:\"5.3.3\";i:122;s:5:\"5.3.2\";i:123;s:5:\"5.3.1\";i:124;s:5:\"5.3.0\";i:125;s:5:\"5.2.5\";i:126;s:5:\"5.2.4\";i:127;s:5:\"5.2.3\";i:128;s:5:\"5.2.2\";i:129;s:5:\"5.2.1\";i:130;s:5:\"5.2.0\";i:131;s:5:\"5.1.3\";i:132;s:5:\"5.1.2\";i:133;s:5:\"5.1.1\";i:134;s:5:\"5.1.0\";i:135;s:5:\"5.0.3\";i:136;s:5:\"5.0.2\";i:137;s:5:\"5.0.1\";i:138;s:5:\"5.0.0\";i:139;s:5:\"4.9.5\";i:140;s:5:\"4.9.4\";i:141;s:5:\"4.9.3\";i:142;s:5:\"4.9.2\";i:143;s:5:\"4.9.1\";i:144;s:5:\"4.9.0\";i:145;s:5:\"4.8.3\";i:146;s:5:\"4.8.2\";i:147;s:5:\"4.8.1\";i:148;s:5:\"4.8.0\";i:149;s:5:\"4.7.4\";i:150;s:5:\"4.7.3\";i:151;s:5:\"4.7.2\";i:152;s:5:\"4.7.1\";i:153;s:5:\"4.7.0\";i:154;s:5:\"4.6.5\";i:155;s:5:\"4.6.4\";i:156;s:5:\"4.6.3\";i:157;s:5:\"4.6.2\";i:158;s:5:\"4.6.1\";i:159;s:5:\"4.6.0\";i:160;s:5:\"4.5.5\";i:161;s:5:\"4.5.4\";i:162;s:5:\"4.5.3\";i:163;s:5:\"4.5.2\";i:164;s:5:\"4.5.1\";i:165;s:5:\"4.5.0\";i:166;s:5:\"4.4.4\";i:167;s:5:\"4.4.3\";i:168;s:5:\"4.4.2\";i:169;s:5:\"4.4.1\";i:170;s:5:\"4.4.0\";i:171;s:5:\"4.3.6\";i:172;s:5:\"4.3.5\";i:173;s:5:\"4.3.4\";i:174;s:5:\"4.3.3\";i:175;s:5:\"4.3.2\";i:176;s:5:\"4.3.1\";i:177;s:5:\"4.3.0\";i:178;s:5:\"4.2.5\";i:179;s:5:\"4.2.4\";i:180;s:5:\"4.2.3\";i:181;s:5:\"4.2.2\";i:182;s:5:\"4.2.1\";i:183;s:5:\"4.2.0\";i:184;s:5:\"4.1.4\";i:185;s:5:\"4.1.3\";i:186;s:5:\"4.1.2\";i:187;s:5:\"4.1.1\";i:188;s:5:\"4.1.0\";i:189;s:5:\"4.0.4\";i:190;s:5:\"4.0.3\";i:191;s:5:\"4.0.2\";i:192;s:5:\"4.0.1\";i:193;s:5:\"4.0.0\";i:194;s:5:\"3.9.5\";i:195;s:5:\"3.9.4\";i:196;s:5:\"3.9.3\";i:197;s:5:\"3.9.2\";i:198;s:5:\"3.9.1\";i:199;s:5:\"3.9.0\";i:200;s:5:\"3.8.3\";i:201;s:5:\"3.8.2\";i:202;s:5:\"3.8.1\";i:203;s:5:\"3.8.0\";i:204;s:5:\"3.7.3\";i:205;s:5:\"3.7.2\";i:206;s:5:\"3.7.1\";i:207;s:5:\"3.7.0\";i:208;s:5:\"3.6.7\";i:209;s:5:\"3.6.6\";i:210;s:5:\"3.6.5\";i:211;s:5:\"3.6.4\";i:212;s:5:\"3.6.3\";i:213;s:5:\"3.6.2\";i:214;s:5:\"3.6.1\";i:215;s:5:\"3.6.0\";i:216;s:5:\"3.5.9\";i:217;s:5:\"3.5.8\";i:218;s:5:\"3.5.7\";i:219;s:5:\"3.5.6\";i:220;s:5:\"3.5.5\";i:221;s:5:\"3.5.4\";i:222;s:5:\"3.5.3\";i:223;s:5:\"3.5.2\";i:224;s:6:\"3.5.10\";i:225;s:5:\"3.5.1\";i:226;s:5:\"3.5.0\";i:227;s:5:\"3.4.8\";i:228;s:5:\"3.4.7\";i:229;s:5:\"3.4.6\";i:230;s:5:\"3.4.5\";i:231;s:5:\"3.4.4\";i:232;s:5:\"3.4.3\";i:233;s:5:\"3.4.2\";i:234;s:5:\"3.4.1\";i:235;s:5:\"3.4.0\";i:236;s:5:\"3.3.6\";i:237;s:5:\"3.3.5\";i:238;s:5:\"3.3.4\";i:239;s:5:\"3.3.3\";i:240;s:5:\"3.3.2\";i:241;s:5:\"3.3.1\";i:242;s:5:\"3.3.0\";i:243;s:5:\"3.2.6\";i:244;s:5:\"3.2.5\";i:245;s:5:\"3.2.4\";i:246;s:5:\"3.2.3\";i:247;s:5:\"3.2.2\";i:248;s:5:\"3.2.1\";i:249;s:5:\"3.2.0\";i:250;s:5:\"3.1.2\";i:251;s:5:\"3.1.1\";i:252;s:5:\"3.1.0\";i:253;s:5:\"3.0.9\";i:254;s:5:\"3.0.8\";i:255;s:5:\"3.0.7\";i:256;s:5:\"3.0.6\";i:257;s:5:\"3.0.5\";i:258;s:5:\"3.0.4\";i:259;s:5:\"3.0.3\";i:260;s:5:\"3.0.2\";i:261;s:5:\"3.0.1\";i:262;s:5:\"3.0.0\";}','off'),
(5777426,'_transient_timeout_wc_upgrade_notice_9.3.3','1730220420','off'),
(5777427,'_transient_wc_upgrade_notice_9.3.3','','off'),
(5777428,'_transient_timeout_wc_tracks_blog_details','1730220420','off'),
(5777429,'_transient_wc_tracks_blog_details','a:6:{s:3:\"url\";s:29:\"https://choiceresources.co.uk\";s:9:\"blog_lang\";s:5:\"en_US\";s:7:\"blog_id\";i:188541933;s:8:\"store_id\";s:36:\"d2a4640c-1a2d-46d7-90c2-572539b39a85\";s:14:\"products_count\";s:1:\"9\";s:10:\"wc_version\";s:5:\"8.5.2\";}','off'),
(5777430,'_transient_timeout_orders-all-statuses','1730738820','off'),
(5777431,'_transient_orders-all-statuses','a:2:{s:7:\"version\";s:10:\"1720567178\";s:5:\"value\";a:5:{i:0;s:13:\"wc-processing\";i:1;s:12:\"wc-completed\";i:2;s:12:\"wc-cancelled\";i:3;s:9:\"wc-failed\";i:4;s:10:\"wc-on-hold\";}}','off'),
(5777432,'_transient_timeout_woocommerce_admin_payment_method_promotion_specs','1730738821','off'),
(5777433,'_transient_woocommerce_admin_payment_method_promotion_specs','a:1:{s:5:\"en_US\";a:2:{s:27:\"woocommerce_payments:woopay\";O:8:\"stdClass\":8:{s:2:\"id\";s:27:\"woocommerce_payments:woopay\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:393:\"Payments made simple â€” including WooPay, a new express checkout feature.<br/><br/>By using WooPayments you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> (including WooPay <a href=\"https://wordpress.com/tos/#more-woopay-specifically\" target=\"_blank\">merchant terms</a>) and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy Policy</a>.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"8.1.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:9:\"sub_title\";s:865:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}s:20:\"woocommerce_payments\";O:8:\"stdClass\":8:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:369:\"Payments made simple, with no monthly fees â€“ designed exclusively for WooCommerce stores. Accept credit cards, debit cards, and other popular payment methods.<br/><br/>By clicking â€œInstallâ€, you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy policy</a>.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}}s:9:\"sub_title\";s:865:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}}}','off'),
(5777475,'_transient_timeout_geoip_192.0.86.100','1730221295','off'),
(5777476,'_transient_geoip_192.0.86.100','US','off'),
(5777484,'_site_transient_timeout_browser_9fae7894890fe21cd77090af114aa2cd','1730739753','off'),
(5777485,'_site_transient_browser_9fae7894890fe21cd77090af114aa2cd','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"130.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),
(5777488,'_transient_timeout_woolentor_info_api_data','1730307755','off'),
(5777489,'_transient_woolentor_info_api_data','a:0:{}','off'),
(5777495,'_transient_timeout_as-post-store-dependencies-met','1730221370','off'),
(5777496,'_transient_as-post-store-dependencies-met','yes','off'),
(5777515,'elementor_pro_remote_info_api_data_3.21.2','a:2:{s:7:\"timeout\";i:1730178253;s:5:\"value\";s:230142:\"{\"stable_version\":\"3.25.0\",\"last_updated\":\"2024-10-28 11:05:47\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:214928:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.25.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.6.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzMwMTM0MDE4LCJleHAiOjE3MzAyMjA0MTh9.9oYZQxG50s7pmzvmJCZv2MrptN3S-OFgOpaBmPYftLA\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzMwMTM0MDE4LCJleHAiOjE3MzAyMjA0MTh9.9oYZQxG50s7pmzvmJCZv2MrptN3S-OFgOpaBmPYftLA\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.6.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJpYXQiOjE3MzAxMzQwMTgsImV4cCI6MTczMDIyMDQxOH0.YaZw0qxtpUVR_c9ZeElU087pJAarf6SCfszUkS0Req4\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJpYXQiOjE3MzAxMzQwMTgsImV4cCI6MTczMDIyMDQxOH0.YaZw0qxtpUVR_c9ZeElU087pJAarf6SCfszUkS0Req4\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}','off'),
(5777551,'_transient_timeout_geoip_165.140.71.7','1730221601','off'),
(5777552,'_transient_geoip_165.140.71.7','US','off'),
(5777571,'_site_transient_timeout_browser_7675d59b5e84e0a878ee6f0a97f9056f','1730740223','off'),
(5777572,'_site_transient_browser_7675d59b5e84e0a878ee6f0a97f9056f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"130.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),
(5777617,'googlesitekit_db_version','1.129.0','auto'),
(5777618,'googlesitekit_has_connected_admins','1','auto'),
(5777627,'googlesitekit_active_modules','a:3:{i:0;s:18:\"pagespeed-insights\";i:1;s:11:\"analytics-4\";i:2;s:7:\"adsense\";}','auto'),
(5777653,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1730226670','off'),
(5777654,'_transient_jetpack_plugin_api_action_links_refresh','1730140270','off'),
(5777663,'action_scheduler_migration_status','complete','auto'),
(5777664,'_transient_timeout_geoip_66.102.8.33','1730222608','off'),
(5777665,'_transient_geoip_66.102.8.33','US','off'),
(5777668,'googlesitekit_credentials','0qtM8UyBUKTjBoqbKS8h13JwUTBnajFRczZPR0UzdjkySUFERXpjMUI3VmsxNEY3SnpENmxRdGFJRkxpOURwdExYSTVIT3piM1RkKzhSYlhHSFh2aUNxUDRIdWdzZ3NUZXZHbHB3d3R6aDJ2a0hNZDJKT2VFaFkveHUzaS9KTjRMZmFvRVoyWGJqNG1KQk5BMlRJc0YzS3J5MlF4YWs1L3gyaDdYWWRkL0NwNTQ5cWhweDZpNm9VcXQrQUE1T1lOanlyTXJpc3lhSmtEcGFuSXRjMWZTUlhsNUM0eHh4c0t5TlFJeTNFQUl3NXAwZktXckdLNWp2R25ZY3JkRE1DVGNsMTZsbGJhTzFkQTkrK3Z5Sy9zenZCanpiK2hnbXUvekpwR3lvNy9CaXA4bmpNVEJxQVZCcXp1QjFKcm5UQThIME9ES1VvTm5nPT0=','auto'),
(5777670,'_transient_googlesitekit_verification_meta_tags','a:1:{i:0;s:43:\"k35KsIgBtkY-K4nXKCe_Yo46-dre725RPYnsMONubEU\";}','on'),
(5777672,'googlesitekit_connected_proxy_url','https://choiceresources.co.uk/','auto'),
(5777673,'googlesitekit_search-console_settings','a:2:{s:10:\"propertyID\";s:30:\"https://choiceresources.co.uk/\";s:7:\"ownerID\";i:1;}','auto'),
(5777674,'googlesitekit_owner_id','1','auto'),
(5777685,'googlesitekit_conversion_tracking','a:1:{s:7:\"enabled\";b:1;}','auto'),
(5777689,'googlesitekit_analytics-4_settings','a:24:{s:7:\"ownerID\";i:1;s:9:\"accountID\";s:9:\"334695996\";s:15:\"adsConversionID\";s:0:\"\";s:10:\"propertyID\";s:9:\"465006574\";s:15:\"webDataStreamID\";s:10:\"9878500696\";s:13:\"measurementID\";s:12:\"G-R8F9RPK2V6\";s:16:\"trackingDisabled\";a:1:{i:0;s:13:\"loggedinUsers\";}s:10:\"useSnippet\";b:1;s:11:\"googleTagID\";s:11:\"GT-KVFLRXBH\";s:18:\"googleTagAccountID\";s:10:\"6255667557\";s:20:\"googleTagContainerID\";s:9:\"198792913\";s:32:\"googleTagContainerDestinationIDs\";a:1:{i:0;s:12:\"G-R8F9RPK2V6\";}s:23:\"googleTagLastSyncedAtMs\";i:1730136451354;s:25:\"availableCustomDimensions\";a:0:{}s:18:\"propertyCreateTime\";i:1730136438000;s:13:\"adSenseLinked\";b:0;s:25:\"adSenseLinkedLastSyncedAt\";i:0;s:27:\"adsConversionIDMigratedAtMs\";i:0;s:9:\"adsLinked\";b:0;s:21:\"adsLinkedLastSyncedAt\";i:0;s:18:\"availableAudiences\";N;s:30:\"availableAudiencesLastSyncedAt\";i:0;s:36:\"audienceSegmentationSetupCompletedBy\";N;s:14:\"detectedEvents\";a:0:{}}','auto'),
(5777692,'_transient_googlesitekit_search-console_data_available','1','on'),
(5777762,'_transient_timeout_geoip_66.249.88.2','1730224600','off'),
(5777763,'_transient_timeout_geoip_66.249.88.5','1730224600','off'),
(5777764,'_transient_geoip_66.249.88.2','US','off'),
(5777765,'_transient_geoip_66.249.88.5','US','off'),
(5777768,'_transient_timeout_geoip_66.249.88.1','1730224606','off'),
(5777769,'_transient_geoip_66.249.88.1','US','off'),
(5777778,'_transient_timeout_geoip_209.85.238.174','1730224828','off'),
(5777779,'_transient_geoip_209.85.238.174','US','off'),
(5777868,'_transient_timeout_geoip_31.220.97.173','1730228997','off'),
(5777869,'_transient_geoip_31.220.97.173','US','off'),
(5777903,'_transient_timeout_geoip_31.94.60.245','1730231072','off'),
(5777904,'_transient_geoip_31.94.60.245','GB','off'),
(5777934,'_transient_timeout_geoip_31.220.97.163','1730232612','off'),
(5777935,'_transient_geoip_31.220.97.163','US','off'),
(5777943,'_transient_timeout_geoip_45.141.156.59','1730232953','off'),
(5777944,'_transient_geoip_45.141.156.59','UA','off'),
(5777983,'_transient_timeout_geoip_47.237.5.250','1730234868','off'),
(5777984,'_transient_geoip_47.237.5.250','SG','off'),
(5777986,'_transient_timeout_geoip_13.85.16.224','1730234881','off'),
(5777987,'_transient_geoip_13.85.16.224','US','off'),
(5777989,'_transient_timeout_geoip_191.98.133.194','1730234889','off'),
(5777990,'_transient_geoip_191.98.133.194','PE','off'),
(5777993,'_transient_timeout_geoip_20.15.153.186','1730234917','off'),
(5777994,'_transient_geoip_20.15.153.186','US','off'),
(5778027,'_site_transient_timeout_community-events-0e98695f52497f50dfec1a08de07b03a','1730192276','off'),
(5778028,'_site_transient_community-events-0e98695f52497f50dfec1a08de07b03a','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"31.94.60.0\";}s:6:\"events\";a:5:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:75:\"WordUp Brighton November | \'Humanity\' Amnesty\'s Open Source WordPress Theme\";s:3:\"url\";s:55:\"https://www.meetup.com/wordup-brighton/events/304149918\";s:6:\"meetup\";s:34:\"WordUp Brighton (WordPress Meetup)\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/wordup-brighton/\";s:4:\"date\";s:19:\"2024-11-05 18:00:00\";s:8:\"end_date\";s:19:\"2024-11-05 20:00:00\";s:20:\"start_unix_timestamp\";i:1730829600;s:18:\"end_unix_timestamp\";i:1730836800;s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Brighton, United Kingdom\";s:7:\"country\";s:2:\"gb\";s:8:\"latitude\";d:50.82085;s:9:\"longitude\";d:-0.141028;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:80:\"Performance Site Health Query Monitor:Mon 11 Nov 7pm UK, Zoom WordPressCambridge\";s:3:\"url\";s:59:\"https://www.meetup.com/wordpress-cambridge/events/304206009\";s:6:\"meetup\";s:26:\"WordPress Cambridge Meetup\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wordpress-cambridge/\";s:4:\"date\";s:19:\"2024-11-11 19:00:00\";s:8:\"end_date\";s:19:\"2024-11-11 21:00:00\";s:20:\"start_unix_timestamp\";i:1731351600;s:18:\"end_unix_timestamp\";i:1731358800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:52.21;s:9:\"longitude\";d:0.13;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:45:\"Wordpress Tunbridge Wells Meetup at The House\";s:3:\"url\";s:78:\"https://www.meetup.com/tunbridge-wells-wordpress-meetup-group/events/302135204\";s:6:\"meetup\";s:38:\"Tunbridge Wells WordPress Meetup Group\";s:10:\"meetup_url\";s:62:\"https://www.meetup.com/tunbridge-wells-wordpress-meetup-group/\";s:4:\"date\";s:19:\"2024-11-12 19:00:00\";s:8:\"end_date\";s:19:\"2024-11-12 21:00:00\";s:20:\"start_unix_timestamp\";i:1731438000;s:18:\"end_unix_timestamp\";i:1731445200;s:8:\"location\";a:4:{s:8:\"location\";s:31:\"Tunbridge Wells, United Kingdom\";s:7:\"country\";s:2:\"gb\";s:8:\"latitude\";d:51.133114;s:9:\"longitude\";d:0.265242;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:60:\"Online WordPress Portsmouth Meetup - Security Best Practices\";s:3:\"url\";s:67:\"https://www.meetup.com/portsmouth-wordpress-meetup/events/304234068\";s:6:\"meetup\";s:27:\"Portsmouth WordPress Meetup\";s:10:\"meetup_url\";s:51:\"https://www.meetup.com/Portsmouth-WordPress-Meetup/\";s:4:\"date\";s:19:\"2024-11-20 19:00:00\";s:8:\"end_date\";s:19:\"2024-11-20 20:30:00\";s:20:\"start_unix_timestamp\";i:1732129200;s:18:\"end_unix_timestamp\";i:1732134600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:50.81;s:9:\"longitude\";d:-1.09;}}i:4;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Netherlands\";s:3:\"url\";s:38:\"https://netherlands.wordcamp.org/2024/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2024-11-29 08:40:00\";s:8:\"end_date\";s:19:\"2024-11-30 00:00:00\";s:20:\"start_unix_timestamp\";i:1732866000;s:18:\"end_unix_timestamp\";i:1732921200;s:8:\"location\";a:4:{s:8:\"location\";s:35:\"Den Haag, Zuid-Holland, Netherlands\";s:7:\"country\";s:2:\"NL\";s:8:\"latitude\";d:52.0990637;s:9:\"longitude\";d:4.2975123;}}}}','off'),
(5778044,'_transient_timeout_geoip_162.243.62.14','1730235799','off'),
(5778045,'_transient_geoip_162.243.62.14','US','off'),
(5778063,'_transient_timeout_geoip_99.192.222.14','1730236285','off'),
(5778064,'_transient_geoip_99.192.222.14','US','off'),
(5778119,'_transient_timeout_geoip_142.171.135.45','1730238313','off'),
(5778120,'_transient_geoip_142.171.135.45','US','off'),
(5778139,'_transient_timeout_geoip_34.78.99.188','1730239294','off'),
(5778140,'_transient_geoip_34.78.99.188','BE','off'),
(5778150,'_transient_timeout_geoip_31.220.103.146','1730239821','off'),
(5778151,'_transient_geoip_31.220.103.146','US','off'),
(5778158,'woopay_enabled_adapted_extensions','a:0:{}','auto'),
(5778325,'_transient_timeout_geoip_167.99.143.118','1730249183','off'),
(5778326,'_transient_geoip_167.99.143.118','DE','off'),
(5778339,'_transient_timeout_geoip_34.48.188.253','1730249863','off'),
(5778340,'_transient_geoip_34.48.188.253','US','off'),
(5778407,'_transient_timeout_geoip_31.220.98.151','1730250608','off'),
(5778408,'_transient_geoip_31.220.98.151','US','off'),
(5778468,'_transient_timeout_wcs_do_subscriptions_exist','1730772146','off'),
(5778469,'_transient_wcs_do_subscriptions_exist','1','off'),
(5778531,'_transient_timeout_geoip_104.28.238.119','1730257147','off'),
(5778532,'_transient_geoip_104.28.238.119','JP','off'),
(5778556,'_transient_timeout__woocommerce_helper_subscriptions','1730172605','off'),
(5778557,'_transient__woocommerce_helper_subscriptions','a:0:{}','off'),
(5778558,'_site_transient_timeout_theme_roots','1730173505','off'),
(5778559,'_site_transient_theme_roots','a:4:{s:15:\"hello-elementor\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','off'),
(5778560,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1730171706;s:7:\"checked\";a:4:{s:15:\"hello-elementor\";s:5:\"2.8.1\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:4:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.1.1.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.2.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.5.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:\"1.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.8.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','off'),
(5778561,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1730171706;s:8:\"response\";a:20:{s:23:\"cartflows/cartflows.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/cartflows\";s:4:\"slug\";s:9:\"cartflows\";s:6:\"plugin\";s:23:\"cartflows/cartflows.php\";s:11:\"new_version\";s:6:\"2.0.12\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/cartflows/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/cartflows.2.0.12.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/cartflows/assets/icon.svg?rev=2960367\";s:3:\"svg\";s:54:\"https://ps.w.org/cartflows/assets/icon.svg?rev=2960367\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/cartflows/assets/banner-1544x500.gif?rev=2960367\";s:2:\"1x\";s:64:\"https://ps.w.org/cartflows/assets/banner-772x250.gif?rev=2960367\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:35:\"cookie-law-info/cookie-law-info.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/cookie-law-info\";s:4:\"slug\";s:15:\"cookie-law-info\";s:6:\"plugin\";s:35:\"cookie-law-info/cookie-law-info.php\";s:11:\"new_version\";s:5:\"3.2.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/cookie-law-info/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/cookie-law-info.3.2.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:60:\"https://ps.w.org/cookie-law-info/assets/icon.svg?rev=3007243\";s:3:\"svg\";s:60:\"https://ps.w.org/cookie-law-info/assets/icon.svg?rev=3007243\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/cookie-law-info/assets/banner-1544x500.gif?rev=3072815\";s:2:\"1x\";s:70:\"https://ps.w.org/cookie-law-info/assets/banner-772x250.gif?rev=3072815\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.0.0\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:157:\"<p>[Add] - Implemented exit intent popup.\n[Tweak] - Declared compliance with WP Consent API.\n[Enhancement] - UI/UX improvements.\n[Fix] - Minor bug fixes.</p>\";}s:39:\"copy-delete-posts/copy-delete-posts.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:31:\"w.org/plugins/copy-delete-posts\";s:4:\"slug\";s:17:\"copy-delete-posts\";s:6:\"plugin\";s:39:\"copy-delete-posts/copy-delete-posts.php\";s:11:\"new_version\";s:5:\"1.4.9\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/copy-delete-posts/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/copy-delete-posts.1.4.9.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/copy-delete-posts/assets/icon-128x128.png?rev=2997966\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/copy-delete-posts/assets/banner-772x250.jpg?rev=2267040\";}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\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:180:\"<p>What&#039;s new in 1.4.9?\n* Removed optimization logs for users to prevent performance optimizations of the plugin in future\n* [PRO] Improved cross-site duplication of posts</p>\";}s:87:\"woo-product-country-base-restrictions/woocommerce-product-country-base-restrictions.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:51:\"w.org/plugins/woo-product-country-base-restrictions\";s:4:\"slug\";s:37:\"woo-product-country-base-restrictions\";s:6:\"plugin\";s:87:\"woo-product-country-base-restrictions/woocommerce-product-country-base-restrictions.php\";s:11:\"new_version\";s:5:\"3.6.6\";s:3:\"url\";s:68:\"https://wordpress.org/plugins/woo-product-country-base-restrictions/\";s:7:\"package\";s:86:\"https://downloads.wordpress.org/plugin/woo-product-country-base-restrictions.3.6.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:90:\"https://ps.w.org/woo-product-country-base-restrictions/assets/icon-256x256.png?rev=2808588\";s:2:\"1x\";s:90:\"https://ps.w.org/woo-product-country-base-restrictions/assets/icon-128x128.png?rev=2808583\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:92:\"https://ps.w.org/woo-product-country-base-restrictions/assets/banner-772x250.jpg?rev=2808567\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.25.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:5:\"6.0.8\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.png?rev=3133688\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.png?rev=3133688\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.png?rev=3159454\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.png?rev=3159454\";}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:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:27:\"fluent-smtp/fluent-smtp.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/fluent-smtp\";s:4:\"slug\";s:11:\"fluent-smtp\";s:6:\"plugin\";s:27:\"fluent-smtp/fluent-smtp.php\";s:11:\"new_version\";s:6:\"2.2.81\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/fluent-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/fluent-smtp.2.2.81.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/fluent-smtp/assets/icon.svg?rev=2458343\";s:3:\"svg\";s:56:\"https://ps.w.org/fluent-smtp/assets/icon.svg?rev=2458343\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/fluent-smtp/assets/banner-1544x500.png?rev=2606439\";s:2:\"1x\";s:66:\"https://ps.w.org/fluent-smtp/assets/banner-772x250.png?rev=2606439\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.1\";s:16:\"requires_plugins\";a:0:{}}s:25:\"forminator/forminator.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:24:\"w.org/plugins/forminator\";s:4:\"slug\";s:10:\"forminator\";s:6:\"plugin\";s:25:\"forminator/forminator.php\";s:11:\"new_version\";s:6:\"1.36.3\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/forminator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/forminator.1.36.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/forminator/assets/icon-256x256.png?rev=2746202\";s:2:\"1x\";s:63:\"https://ps.w.org/forminator/assets/icon-128x128.png?rev=2746202\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/forminator/assets/banner-1544x500.png?rev=2626060\";s:2:\"1x\";s:65:\"https://ps.w.org/forminator/assets/banner-772x250.png?rev=2626060\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.4\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:31:\"creame-whatsapp-me/joinchat.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:32:\"w.org/plugins/creame-whatsapp-me\";s:4:\"slug\";s:18:\"creame-whatsapp-me\";s:6:\"plugin\";s:31:\"creame-whatsapp-me/joinchat.php\";s:11:\"new_version\";s:5:\"5.1.8\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/creame-whatsapp-me/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/creame-whatsapp-me.5.1.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/creame-whatsapp-me/assets/icon-256x256.gif?rev=2699533\";s:2:\"1x\";s:71:\"https://ps.w.org/creame-whatsapp-me/assets/icon-128x128.gif?rev=2699533\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/creame-whatsapp-me/assets/banner-1544x500.png?rev=2936349\";s:2:\"1x\";s:73:\"https://ps.w.org/creame-whatsapp-me/assets/banner-772x250.png?rev=2936349\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.9.6\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:42:\"peters-login-redirect/wplogin_redirect.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/peters-login-redirect\";s:4:\"slug\";s:21:\"peters-login-redirect\";s:6:\"plugin\";s:42:\"peters-login-redirect/wplogin_redirect.php\";s:11:\"new_version\";s:7:\"3.0.8.6\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/peters-login-redirect/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/peters-login-redirect.3.0.8.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/peters-login-redirect/assets/icon-256x256.png?rev=2597671\";s:2:\"1x\";s:74:\"https://ps.w.org/peters-login-redirect/assets/icon-128x128.png?rev=2597671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/peters-login-redirect/assets/banner-1544x500.png?rev=2947073\";s:2:\"1x\";s:76:\"https://ps.w.org/peters-login-redirect/assets/banner-772x250.png?rev=2947073\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:47:\"woolentor-addons/woolentor_addons_elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:30:\"w.org/plugins/woolentor-addons\";s:4:\"slug\";s:16:\"woolentor-addons\";s:6:\"plugin\";s:47:\"woolentor-addons/woolentor_addons_elementor.php\";s:11:\"new_version\";s:5:\"3.0.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/woolentor-addons/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/woolentor-addons.3.0.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/woolentor-addons/assets/icon-256x256.png?rev=3011160\";s:2:\"1x\";s:69:\"https://ps.w.org/woolentor-addons/assets/icon-128x128.png?rev=3011160\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/woolentor-addons/assets/banner-1544x500.jpg?rev=3011160\";s:2:\"1x\";s:71:\"https://ps.w.org/woolentor-addons/assets/banner-772x250.jpg?rev=3011160\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:31:\"sg-cachepress/sg-cachepress.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/sg-cachepress\";s:4:\"slug\";s:13:\"sg-cachepress\";s:6:\"plugin\";s:31:\"sg-cachepress/sg-cachepress.php\";s:11:\"new_version\";s:5:\"7.6.8\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/sg-cachepress/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/sg-cachepress.7.6.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/sg-cachepress/assets/icon-256x256.gif?rev=2971889\";s:2:\"1x\";s:66:\"https://ps.w.org/sg-cachepress/assets/icon-128x128.gif?rev=2971889\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/sg-cachepress/assets/banner-1544x500.png?rev=2971889\";s:2:\"1x\";s:68:\"https://ps.w.org/sg-cachepress/assets/banner-772x250.png?rev=2971889\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:46:\"w.org/plugins/unlimited-elements-for-elementor\";s:4:\"slug\";s:32:\"unlimited-elements-for-elementor\";s:6:\"plugin\";s:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";s:11:\"new_version\";s:7:\"1.5.125\";s:3:\"url\";s:63:\"https://wordpress.org/plugins/unlimited-elements-for-elementor/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/unlimited-elements-for-elementor.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/unlimited-elements-for-elementor/assets/icon-256x256.gif?rev=3008076\";s:2:\"1x\";s:85:\"https://ps.w.org/unlimited-elements-for-elementor/assets/icon-128x128.gif?rev=3008076\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/unlimited-elements-for-elementor/assets/banner-1544x500.jpg?rev=3008076\";s:2:\"1x\";s:87:\"https://ps.w.org/unlimited-elements-for-elementor/assets/banner-772x250.jpg?rev=3008076\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:6:\"1.24.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/updraftplus.1.24.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.2\";s:6:\"tested\";s:3:\"6.7\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:42:\"visibility-logic-elementor/conditional.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:40:\"w.org/plugins/visibility-logic-elementor\";s:4:\"slug\";s:26:\"visibility-logic-elementor\";s:6:\"plugin\";s:42:\"visibility-logic-elementor/conditional.php\";s:11:\"new_version\";s:5:\"2.3.6\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/visibility-logic-elementor/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/visibility-logic-elementor.2.3.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/visibility-logic-elementor/assets/icon-256x256.png?rev=2534122\";s:2:\"1x\";s:79:\"https://ps.w.org/visibility-logic-elementor/assets/icon-128x128.png?rev=2534122\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/visibility-logic-elementor/assets/banner-772x250.png?rev=2534122\";}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:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.3.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3000842\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3000842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:93:\"woocommerce-gateway-amazon-payments-advanced/woocommerce-gateway-amazon-payments-advanced.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:58:\"w.org/plugins/woocommerce-gateway-amazon-payments-advanced\";s:4:\"slug\";s:44:\"woocommerce-gateway-amazon-payments-advanced\";s:6:\"plugin\";s:93:\"woocommerce-gateway-amazon-payments-advanced/woocommerce-gateway-amazon-payments-advanced.php\";s:11:\"new_version\";s:5:\"2.5.3\";s:3:\"url\";s:75:\"https://wordpress.org/plugins/woocommerce-gateway-amazon-payments-advanced/\";s:7:\"package\";s:93:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-amazon-payments-advanced.2.5.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:97:\"https://ps.w.org/woocommerce-gateway-amazon-payments-advanced/assets/icon-256x256.png?rev=2600453\";s:2:\"1x\";s:97:\"https://ps.w.org/woocommerce-gateway-amazon-payments-advanced/assets/icon-128x128.png?rev=2600453\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:100:\"https://ps.w.org/woocommerce-gateway-amazon-payments-advanced/assets/banner-1544x500.png?rev=2600453\";s:2:\"1x\";s:99:\"https://ps.w.org/woocommerce-gateway-amazon-payments-advanced/assets/banner-772x250.png?rev=2600453\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:43:\"w.org/plugins/woo-cart-abandonment-recovery\";s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:6:\"plugin\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:11:\"new_version\";s:5:\"1.3.0\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/woo-cart-abandonment-recovery/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/woo-cart-abandonment-recovery.1.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/icon-256x256.png?rev=2957062\";s:2:\"1x\";s:82:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/icon-128x128.png?rev=2957062\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/banner-1544x500.png?rev=2957062\";s:2:\"1x\";s:84:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/banner-772x250.png?rev=2957062\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.4\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:45:\"woocommerce-payments/woocommerce-payments.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:34:\"w.org/plugins/woocommerce-payments\";s:4:\"slug\";s:20:\"woocommerce-payments\";s:6:\"plugin\";s:45:\"woocommerce-payments/woocommerce-payments.php\";s:11:\"new_version\";s:5:\"8.4.0\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/woocommerce-payments/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/woocommerce-payments.8.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/woocommerce-payments/assets/icon-256x256.png?rev=2940394\";s:2:\"1x\";s:73:\"https://ps.w.org/woocommerce-payments/assets/icon-128x128.png?rev=2940394\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/woocommerce-payments/assets/banner-1544x500.png?rev=2954456\";s:2:\"1x\";s:75:\"https://ps.w.org/woocommerce-payments/assets/banner-772x250.png?rev=2954456\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"7.3\";s:16:\"requires_plugins\";a:1:{i:0;s:11:\"woocommerce\";}}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.25.0\";s:12:\"last_updated\";s:19:\"2024-10-28 11:05:47\";s:11:\"new_version\";s:6:\"3.25.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.6.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:381:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzMwMTM0MDE4LCJleHAiOjE3MzAyMjA0MTh9.9oYZQxG50s7pmzvmJCZv2MrptN3S-OFgOpaBmPYftLA/package_download\";s:13:\"download_link\";s:381:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzMwMTM0MDE4LCJleHAiOjE3MzAyMjA0MTh9.9oYZQxG50s7pmzvmJCZv2MrptN3S-OFgOpaBmPYftLA/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.6.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:358:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJpYXQiOjE3MzAxMzQwMTgsImV4cCI6MTczMDIyMDQxOH0.YaZw0qxtpUVR_c9ZeElU087pJAarf6SCfszUkS0Req4/previous_download\";s:13:\"download_link\";s:358:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtWUI4NWt4aFBJNm40RDlVbWZOMUYxNjE2ODc3ODIzaWpZWmhMRTRETEZrIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9jaG9pY2VyZXNvdXJjZXMuY28udWsiLCJpYXQiOjE3MzAxMzQwMTgsImV4cCI6MTczMDIyMDQxOH0.YaZw0qxtpUVR_c9ZeElU087pJAarf6SCfszUkS0Req4/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:25:\"convertful/convertful.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/convertful\";s:4:\"slug\";s:10:\"convertful\";s:6:\"plugin\";s:25:\"convertful/convertful.php\";s:11:\"new_version\";s:3:\"2.7\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/convertful/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/convertful.2.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/convertful/assets/icon-256x256.png?rev=1711005\";s:2:\"1x\";s:63:\"https://ps.w.org/convertful/assets/icon-128x128.png?rev=1711005\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/convertful/assets/banner-1544x500.png?rev=1679931\";s:2:\"1x\";s:65:\"https://ps.w.org/convertful/assets/banner-772x250.png?rev=1679931\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/erident-custom-login-and-dashboard\";s:4:\"slug\";s:34:\"erident-custom-login-and-dashboard\";s:6:\"plugin\";s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/erident-custom-login-and-dashboard/\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/plugin/erident-custom-login-and-dashboard.4.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/erident-custom-login-and-dashboard/assets/icon-256x256.png?rev=1015861\";s:2:\"1x\";s:87:\"https://ps.w.org/erident-custom-login-and-dashboard/assets/icon-256x256.png?rev=1015861\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:90:\"https://ps.w.org/erident-custom-login-and-dashboard/assets/banner-1544x500.png?rev=2716327\";s:2:\"1x\";s:89:\"https://ps.w.org/erident-custom-login-and-dashboard/assets/banner-772x250.png?rev=2716327\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.0\";}s:35:\"google-site-kit/google-site-kit.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/google-site-kit\";s:4:\"slug\";s:15:\"google-site-kit\";s:6:\"plugin\";s:35:\"google-site-kit/google-site-kit.php\";s:11:\"new_version\";s:7:\"1.138.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/google-site-kit/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/google-site-kit.1.138.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=3141863\";s:2:\"1x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=3141863\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=3141863\";s:2:\"1x\";s:70:\"https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=3141863\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:22:\"wp-mautic/wpmautic.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/wp-mautic\";s:4:\"slug\";s:9:\"wp-mautic\";s:6:\"plugin\";s:22:\"wp-mautic/wpmautic.php\";s:11:\"new_version\";s:5:\"2.4.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wp-mautic/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-mautic.2.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/wp-mautic/assets/icon.svg?rev=1809849\";s:3:\"svg\";s:54:\"https://ps.w.org/wp-mautic/assets/icon.svg?rev=1809849\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mautic/assets/banner-1544x500.jpg?rev=1668561\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-mautic/assets/banner-772x250.png?rev=1668561\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}s:7:\"checked\";a:26:{s:23:\"cartflows/cartflows.php\";s:5:\"2.0.3\";s:25:\"convertful/convertful.php\";s:3:\"2.7\";s:35:\"cookie-law-info/cookie-law-info.php\";s:5:\"3.1.8\";s:39:\"copy-delete-posts/copy-delete-posts.php\";s:5:\"1.4.6\";s:87:\"woo-product-country-base-restrictions/woocommerce-product-country-base-restrictions.php\";s:3:\"3.6\";s:23:\"elementor/elementor.php\";s:6:\"3.21.4\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.25.0\";s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";s:3:\"4.3\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:5:\"5.9.9\";s:27:\"fluent-smtp/fluent-smtp.php\";s:6:\"2.2.71\";s:25:\"forminator/forminator.php\";s:6:\"1.29.0\";s:31:\"creame-whatsapp-me/joinchat.php\";s:6:\"5.0.17\";s:42:\"peters-login-redirect/wplogin_redirect.php\";s:7:\"3.0.8.5\";s:47:\"woolentor-addons/woolentor_addons_elementor.php\";s:5:\"2.8.0\";s:35:\"google-site-kit/google-site-kit.php\";s:7:\"1.138.0\";s:31:\"sg-cachepress/sg-cachepress.php\";s:5:\"7.4.6\";s:55:\"unlimited-elements-for-elementor/unlimited_elements.php\";s:6:\"1.5.95\";s:27:\"updraftplus/updraftplus.php\";s:6:\"1.24.3\";s:42:\"visibility-logic-elementor/conditional.php\";s:7:\"2.3.5.1\";s:27:\"woocommerce/woocommerce.php\";s:5:\"8.5.2\";s:93:\"woocommerce-gateway-amazon-payments-advanced/woocommerce-gateway-amazon-payments-advanced.php\";s:5:\"2.5.1\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:6:\"1.2.26\";s:51:\"woocommerce-memberships/woocommerce-memberships.php\";s:6:\"1.21.8\";s:55:\"woocommerce-subscriptions/woocommerce-subscriptions.php\";s:6:\"3.0.15\";s:45:\"woocommerce-payments/woocommerce-payments.php\";s:5:\"7.5.3\";s:22:\"wp-mautic/wpmautic.php\";s:5:\"2.4.2\";}}','off'),
(5778569,'_transient_timeout_jetpack_sync_constants_await','1730175308','off'),
(5778570,'_transient_jetpack_sync_constants_await','1730171708.5188','off'),
(5778591,'_transient_timeout_geoip_86.48.17.172','1730259255','off'),
(5778592,'_transient_geoip_86.48.17.172','US','off'),
(5778594,'_transient_timeout_geoip_191.96.53.216','1730259256','off'),
(5778595,'_transient_geoip_191.96.53.216','NL','off'),
(5778625,'_transient_timeout_geoip_98.81.248.137','1730260863','off'),
(5778626,'_transient_geoip_98.81.248.137','US','off'),
(5778707,'_transient_timeout_geoip_31.220.97.154','1730265005','off'),
(5778708,'_transient_geoip_31.220.97.154','US','off'),
(5778715,'_transient_timeout_geoip_116.118.51.5','1730265320','off'),
(5778716,'_transient_geoip_116.118.51.5','VN','off'),
(5778806,'_transient_timeout_geoip_45.159.223.66','1730270113','off'),
(5778807,'_transient_geoip_45.159.223.66','DE','off'),
(5778899,'_transient_timeout_geoip_31.220.103.143','1730275597','off'),
(5778900,'_transient_geoip_31.220.103.143','US','off'),
(5779007,'_transient_timeout_geoip_31.220.97.151','1730283006','off'),
(5779008,'_transient_geoip_31.220.97.151','US','off'),
(5779071,'_transient_timeout_woolentor_template_info','1730286386','off'),
(5779072,'_transient_woolentor_template_info','{\"templates\":[{\"id\":4227,\"post_type\":\"woolentor-template\",\"title\":\"Email New Order\",\"human_date\":\"June 21, 2022\",\"type\":\"email_new_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-new-order\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-order-page-template.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4261,\"post_type\":\"woolentor-template\",\"title\":\"Email New Order Page Two\",\"human_date\":\"June 21, 2022\",\"type\":\"email_new_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-new-order-page-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-order-page-template-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4334,\"post_type\":\"woolentor-template\",\"title\":\"Email New Order Page Three\",\"human_date\":\"June 22, 2022\",\"type\":\"email_new_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-new-order-page-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-order-page-template-three.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4409,\"post_type\":\"woolentor-template\",\"title\":\"Email New Order Page Four\",\"human_date\":\"June 23, 2022\",\"type\":\"email_new_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-new-order-page-four\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-new-order-template-four.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4445,\"post_type\":\"woolentor-template\",\"title\":\"Email Cancelled Order\",\"human_date\":\"June 23, 2022\",\"type\":\"email_cancelled_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-cancelled-order\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-cancelled-order.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4491,\"post_type\":\"woolentor-template\",\"title\":\"Email Cancelled Order Two\",\"human_date\":\"June 23, 2022\",\"type\":\"email_cancelled_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-cancelled-order-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-cancelled-order-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4544,\"post_type\":\"woolentor-template\",\"title\":\"Email Cancelled Order Three\",\"human_date\":\"June 23, 2022\",\"type\":\"email_cancelled_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-cancelled-order-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-cancelled-order-three.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4594,\"post_type\":\"woolentor-template\",\"title\":\"Email Failed Order\",\"human_date\":\"June 25, 2022\",\"type\":\"email_failed_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-failed-order\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-failed-order.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4618,\"post_type\":\"woolentor-template\",\"title\":\"Email Failed Order Two\",\"human_date\":\"June 25, 2022\",\"type\":\"email_failed_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-failed-order-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-failed-order-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4671,\"post_type\":\"woolentor-template\",\"title\":\"Email Failed Order Three\",\"human_date\":\"June 25, 2022\",\"type\":\"email_failed_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-failed-order-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-failed-Order-three.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4688,\"post_type\":\"woolentor-template\",\"title\":\"Email Order On Hold\",\"human_date\":\"June 25, 2022\",\"type\":\"email_customer_on_hold_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-order-on-hold\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-order-on-hold.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4728,\"post_type\":\"woolentor-template\",\"title\":\"Email Order On Hold Two\",\"human_date\":\"June 25, 2022\",\"type\":\"email_customer_on_hold_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-order-on-hold-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-order-on-hold-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4739,\"post_type\":\"woolentor-template\",\"title\":\"Email Order On Hold Three\",\"human_date\":\"June 25, 2022\",\"type\":\"email_customer_on_hold_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-order-on-hold-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-order-on-hold-three.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4766,\"post_type\":\"woolentor-template\",\"title\":\"Email Processing Order\",\"human_date\":\"June 25, 2022\",\"type\":\"email_customer_processing_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-processing-order\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-processing-order-library.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4782,\"post_type\":\"woolentor-template\",\"title\":\"Email Processing Order Two\",\"human_date\":\"June 26, 2022\",\"type\":\"email_customer_processing_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-processing-order-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-processing-order-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4808,\"post_type\":\"woolentor-template\",\"title\":\"Email Processing Order Three\",\"human_date\":\"June 26, 2022\",\"type\":\"email_customer_processing_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-processing-order-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-processing-order-three.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4854,\"post_type\":\"woolentor-template\",\"title\":\"Email Completed Order\",\"human_date\":\"June 27, 2022\",\"type\":\"email_customer_completed_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-completed-order\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-completed-order.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4874,\"post_type\":\"woolentor-template\",\"title\":\"Email Completed Order Two\",\"human_date\":\"June 27, 2022\",\"type\":\"email_customer_completed_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-completed-order-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-completed-order-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4893,\"post_type\":\"woolentor-template\",\"title\":\"Email Completed Order Three\",\"human_date\":\"June 27, 2022\",\"type\":\"email_customer_completed_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-completed-order-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-completed-order-three.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4909,\"post_type\":\"woolentor-template\",\"title\":\"Email Refunded Order\",\"human_date\":\"June 28, 2022\",\"type\":\"email_customer_refunded_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-refunded-order\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-refunded-order.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4953,\"post_type\":\"woolentor-template\",\"title\":\"Email Refunded Order Two\",\"human_date\":\"June 28, 2022\",\"type\":\"email_customer_refunded_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-refunded-order-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-refunded-order-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4963,\"post_type\":\"woolentor-template\",\"title\":\"Email Refunded Order Three\",\"human_date\":\"June 28, 2022\",\"type\":\"email_customer_refunded_order\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-refunded-order-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-refunded-order-three-1.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5041,\"post_type\":\"woolentor-template\",\"title\":\"Email Customer Invoice \\/ Order Details\",\"human_date\":\"June 28, 2022\",\"type\":\"email_customer_invoice\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-customer-invoice-order-details\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-customer-invoice-order-details.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5065,\"post_type\":\"woolentor-template\",\"title\":\"Email Customer Invoice \\/ Order Details Two\",\"human_date\":\"June 28, 2022\",\"type\":\"email_customer_invoice\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-customer-invoice-order-details-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-customer-invoice-order-details-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5080,\"post_type\":\"woolentor-template\",\"title\":\"Email Customer Invoice \\/ Order Details Three\",\"human_date\":\"June 28, 2022\",\"type\":\"email_customer_invoice\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-customer-invoice-order-details-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-customer-invoice-order-details-three.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5121,\"post_type\":\"woolentor-template\",\"title\":\"Email Customer Note\",\"human_date\":\"June 29, 2022\",\"type\":\"email_customer_note\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-customer-note\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-customer-note.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5146,\"post_type\":\"woolentor-template\",\"title\":\"Email Customer Note Two\",\"human_date\":\"June 29, 2022\",\"type\":\"email_customer_note\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-customer-note-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-customer-note-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5179,\"post_type\":\"woolentor-template\",\"title\":\"Email Customer Note Three\",\"human_date\":\"June 29, 2022\",\"type\":\"email_customer_note\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-customer-note-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-customer-note-three-.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5195,\"post_type\":\"woolentor-template\",\"title\":\"Email Reset Password\",\"human_date\":\"June 30, 2022\",\"type\":\"email_customer_reset_password\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-reset-password\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-reset-password.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5205,\"post_type\":\"woolentor-template\",\"title\":\"Email Reset Password Two\",\"human_date\":\"June 30, 2022\",\"type\":\"email_customer_reset_password\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-reset-password-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-reset-password-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5219,\"post_type\":\"woolentor-template\",\"title\":\"Email New Account\",\"human_date\":\"June 30, 2022\",\"type\":\"email_customer_new_account\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-new-account\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-new-account.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5225,\"post_type\":\"woolentor-template\",\"title\":\"Email New Account Two\",\"human_date\":\"June 30, 2022\",\"type\":\"email_customer_new_account\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/email-new-account-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/06\\/email-new-account-two.png\",\"shareId\":\"Email Customizer\",\"tags\":[\"Email\",\"Email Customizer\",\"Email Templates\",\"WooCommerce Email\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5926,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - List Style Six\",\"human_date\":\"August 30, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-list-style-six\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-list-style-six.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\",\"cart page List style\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":7300,\"post_type\":\"woolentor-template\",\"title\":\"Popup Template\",\"human_date\":\"August 24, 2023\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/popup-template\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2023\\/08\\/Elementor-Popup-Template-One.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":7306,\"post_type\":\"woolentor-template\",\"title\":\"Popup Special Offer\",\"human_date\":\"August 26, 2023\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/popup-special-offer\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2023\\/08\\/elementor-popup-template-two.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":7358,\"post_type\":\"woolentor-template\",\"title\":\"Popup Privacy Policy\",\"human_date\":\"August 26, 2023\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/popup-privacy-policy\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2023\\/08\\/elementor-popup-template-three.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":7471,\"post_type\":\"woolentor-template\",\"title\":\"Popup Social Share\",\"human_date\":\"August 26, 2023\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/popup-social-share\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2023\\/08\\/elementor-popup-template-four.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":7593,\"post_type\":\"woolentor-template\",\"title\":\"Popup Discount Code\",\"human_date\":\"August 26, 2023\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/popup-discount-code\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2023\\/08\\/elementor-popup-template-five.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":181,\"post_type\":\"woolentor-template\",\"title\":\"Offer for Elementor\",\"human_date\":\"March 12, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/offer-for-elementor\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/summer-offer.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":202,\"post_type\":\"woolentor-template\",\"title\":\"Video Popup ( Free )\",\"human_date\":\"March 14, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/video-popup\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/video-popup.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":205,\"post_type\":\"woolentor-template\",\"title\":\"Welcome Popup for Elementor\",\"human_date\":\"March 14, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/welcome-popup-for-elementor\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/welcome-popup.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":232,\"post_type\":\"woolentor-template\",\"title\":\"WooCommerce Product ( Pro )\",\"human_date\":\"March 18, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/woocommerce-product\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/woocommerce-product.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":316,\"post_type\":\"woolentor-template\",\"title\":\"FAQ Popup Style One\",\"human_date\":\"April 22, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/faq-popup-style-one\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/faq-popup-style-one.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":327,\"post_type\":\"woolentor-template\",\"title\":\"WooCommerce product with Info ( Free )\",\"human_date\":\"April 23, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/woocommerce-product-with-info\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/woocommerce-product-with-info-1.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":349,\"post_type\":\"woolentor-template\",\"title\":\"WooCommerce New Collection ( Free )\",\"human_date\":\"April 23, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/woocommerce-new-collection-free\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/woocommerce-new-collection-free.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":371,\"post_type\":\"woolentor-template\",\"title\":\"FAQ Popup Style Two\",\"human_date\":\"April 23, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/faq-popup-style-two\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/faq-popup-style-two-1.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":389,\"post_type\":\"woolentor-template\",\"title\":\"Directions Popup\",\"human_date\":\"April 24, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/directions-popup\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/directions-popup-1.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":432,\"post_type\":\"woolentor-template\",\"title\":\"Review popup\",\"human_date\":\"April 25, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/review-popup\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/review-popup-elementor.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":477,\"post_type\":\"woolentor-template\",\"title\":\"Recommended Products ( Pro )\",\"human_date\":\"April 28, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/recommended-products\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/recommended-products-elementor.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":490,\"post_type\":\"woolentor-template\",\"title\":\"Google Maps Popup\",\"human_date\":\"April 28, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/google-maps-popup\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/04\\/google-maps-popup-1.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":8093,\"post_type\":\"elementor_library\",\"title\":\"Summer  Offer Popup for Elementor\",\"human_date\":\"April 30, 2024\",\"type\":\"page\",\"url\":\"#\",\"isPro\":0,\"thumbnail\":false,\"shareId\":\"No Category\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":8439,\"post_type\":\"woolentor-template\",\"title\":\"Online Delivery\",\"human_date\":\"May 20, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/online-delivery\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/05\\/online-delivery-1.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":8456,\"post_type\":\"woolentor-template\",\"title\":\"Grand Opening Popup\",\"human_date\":\"May 20, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/grand-opening-popup\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/05\\/grand-opening-popup-1.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":8490,\"post_type\":\"woolentor-template\",\"title\":\"Summer Offer Popup\",\"human_date\":\"June 12, 2024\",\"type\":\"popup\",\"url\":\"https:\\/\\/library.shoplentor.com\\/woolentor-template\\/summer-offer-popup\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/06\\/summer-offer.png\",\"shareId\":\"Popup Builder\",\"tags\":[],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":8709,\"post_type\":\"elementor_library\",\"title\":\"Amazon Single Product Page One\",\"human_date\":\"September 3, 2024\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/champion-womens-sweatshirt-reverse-weave-oversized-fleece-crewneck-sweatshirt-for-women\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/09\\/Amazon-Single-Product-Page-Pro.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":8815,\"post_type\":\"elementor_library\",\"title\":\"Amazon Single Product Page Two\",\"human_date\":\"September 8, 2024\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/felixking-ergonomic-office-chair-headrest-desk-chair-with-adjustable-lumbar-support-home-office-swivel-task-chair-with-high-back-and-armrest-adjustable-height-gaming\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/09\\/Amazon-Single-Product-Page-Free.png\",\"shareId\":\"Product Details\",\"tags\":[\"details\",\"product details\",\"single product\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5916,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - List Style Five\",\"human_date\":\"August 30, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-list-style-five\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-list-style-five.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\",\"cart page List style\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5900,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - List Style Four\",\"human_date\":\"August 30, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-list-style-four\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-list-style-four.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\",\"cart page List style\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5772,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - List Style Three\",\"human_date\":\"August 28, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-list-style-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-list-style-three.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\",\"cart page List style\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5753,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - List Style Two\",\"human_date\":\"August 28, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-list-style-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-list-style-two.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\",\"cart page List style\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5682,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - List Style One\",\"human_date\":\"August 27, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-list-style-one\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-list-style-one.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\",\"cart page List style\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5884,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - Table Style Ten\",\"human_date\":\"August 30, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-table-style-ten\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-table-style-ten-new.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5870,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - Table Style Nine\",\"human_date\":\"August 29, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-table-style-nine\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-table-style-nine.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5860,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - Table Style Eight\",\"human_date\":\"August 29, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-table-style-eight\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-table-style-eight.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5822,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - Table Style Seven\",\"human_date\":\"August 29, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-table-style-seven\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-table-style-seven.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5800,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - Table Style Six\",\"human_date\":\"August 28, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-table-style-six\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-table-style-six.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5679,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - Table Style Five\",\"human_date\":\"August 27, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-table-style-five\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-table-style-five.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5666,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - Table Style Four\",\"human_date\":\"August 27, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-table-style-four\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-table-style-four.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5655,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - Table Style Three\",\"human_date\":\"August 27, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-table-style-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-table-style-three.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5634,\"post_type\":\"elementor_library\",\"title\":\"Cart Page - Table Style Two\",\"human_date\":\"August 25, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page-table-style-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/08\\/cart-page-two.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5516,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Twenty Five\",\"human_date\":\"July 28, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/relaxed-fit-cotton-shirt\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/07\\/shop-single-twenty-fivee.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5478,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Twenty Four\",\"human_date\":\"July 27, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/commodo-augue-nisi\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/07\\/shop-single-twenty-fourr.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5412,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Twenty Three\",\"human_date\":\"July 25, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/high-waist-trousers\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/07\\/shop-single-twenty-threee.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5367,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Twenty Two\",\"human_date\":\"July 25, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/square-serving-platter\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/07\\/shop-single-twenty-twoo.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":5294,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Twenty One\",\"human_date\":\"July 24, 2022\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/phantom-remote-control-ver\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/07\\/shop-single-twenty-onee.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2300,\"post_type\":\"elementor_library\",\"title\":\"Home Page One\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-one\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-One.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2317,\"post_type\":\"elementor_library\",\"title\":\"Home Page Two\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-two\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Two.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2333,\"post_type\":\"elementor_library\",\"title\":\"Home Page Three\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-three\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Three.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2348,\"post_type\":\"elementor_library\",\"title\":\"Home Page Four\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-four\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Four.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2362,\"post_type\":\"elementor_library\",\"title\":\"Home Page Five\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-five\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Five.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2378,\"post_type\":\"elementor_library\",\"title\":\"Home Page Six\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-six\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Six.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2392,\"post_type\":\"elementor_library\",\"title\":\"Home Page Seven\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-seven\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Seven.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2404,\"post_type\":\"elementor_library\",\"title\":\"Home Page Eight\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-eight\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Eight.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2413,\"post_type\":\"elementor_library\",\"title\":\"Home Page Nine\",\"human_date\":\"October 31, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-nine\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Nine.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2424,\"post_type\":\"elementor_library\",\"title\":\"Home Page Ten\",\"human_date\":\"October 31, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-ten\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Ten.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2443,\"post_type\":\"elementor_library\",\"title\":\"Home Page Eleven\",\"human_date\":\"October 31, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-eleven\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Eleven.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2474,\"post_type\":\"elementor_library\",\"title\":\"Home Page Twelve\",\"human_date\":\"October 31, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-twelve\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Twelve.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2496,\"post_type\":\"elementor_library\",\"title\":\"Home Page Thirteen\",\"human_date\":\"October 31, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-thirteen\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Thirteen.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2509,\"post_type\":\"elementor_library\",\"title\":\"Home Page Fourteen\",\"human_date\":\"October 31, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-fourteen\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Fourteen.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2527,\"post_type\":\"elementor_library\",\"title\":\"Home Page Fifteen\",\"human_date\":\"October 31, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-fifteen\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Fifteen.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2548,\"post_type\":\"elementor_library\",\"title\":\"Home Page Sixteen\",\"human_date\":\"October 31, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-sixteen\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Home-Sixteen.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2582,\"post_type\":\"elementor_library\",\"title\":\"Home Page Seventeen\",\"human_date\":\"November 1, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-seventeen\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-Seventeen.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2611,\"post_type\":\"elementor_library\",\"title\":\"Home Page Eighteen\",\"human_date\":\"November 1, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-eighteen\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-Eighteen.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2624,\"post_type\":\"elementor_library\",\"title\":\"Home Page Nineteen\",\"human_date\":\"November 1, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-nineteen\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-Nineteen.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2640,\"post_type\":\"elementor_library\",\"title\":\"Home Page Twenty\",\"human_date\":\"November 1, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-twenty\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-Twenty.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2664,\"post_type\":\"elementor_library\",\"title\":\"Home Page Twenty One\",\"human_date\":\"November 1, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-twenty-one\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-TwentyOne.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2691,\"post_type\":\"elementor_library\",\"title\":\"Home Page Twenty Two\",\"human_date\":\"November 1, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-twenty-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-TwentyTwo.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2724,\"post_type\":\"elementor_library\",\"title\":\"Home Page Twenty Three\",\"human_date\":\"November 1, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-twenty-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-TwentyThree.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2758,\"post_type\":\"elementor_library\",\"title\":\"Home Page Twenty Four\",\"human_date\":\"November 1, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-twenty-four\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-TwentyFour.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2823,\"post_type\":\"elementor_library\",\"title\":\"Home Page Twenty Five\",\"human_date\":\"November 2, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-twenty-five\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-TwentyFive.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2827,\"post_type\":\"elementor_library\",\"title\":\"Home Page Twenty Six\",\"human_date\":\"November 2, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-twenty-six\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-TwentySix.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2851,\"post_type\":\"elementor_library\",\"title\":\"Home Page Twenty Seven\",\"human_date\":\"November 2, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/home-page-twenty-seven\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Home-TwentySeven.png\",\"shareId\":\"Home\",\"tags\":[\"home\",\"home page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":13,\"post_type\":\"elementor_library\",\"title\":\"Shop Page Style One\",\"human_date\":\"October 25, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/shop\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Shop-Page-Style-One.png\",\"shareId\":\"Shop\",\"tags\":[\"shop\",\"woocommerce\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2114,\"post_type\":\"elementor_library\",\"title\":\"Shop Page Style Two\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/shop-page-style-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Shop-Page-Style-Two.png\",\"shareId\":\"Shop\",\"tags\":[\"shop\",\"shop page\",\"woocommerce\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2120,\"post_type\":\"elementor_library\",\"title\":\"Shop Page Style Three\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/shop-page-style-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Shop-Page-Style-Three.png\",\"shareId\":\"Shop\",\"tags\":[\"shop\",\"shop page\",\"woocommerce\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2125,\"post_type\":\"elementor_library\",\"title\":\"Shop Page Style Four\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/shop-page-style-four\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Shop-Page-Style-Four.png\",\"shareId\":\"Shop\",\"tags\":[\"shop\",\"shop page\",\"woocommerce\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2129,\"post_type\":\"elementor_library\",\"title\":\"Shop Page Style Five\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/shop-page-style-five\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Shop-Page-Style-Five.png\",\"shareId\":\"Shop\",\"tags\":[\"shop\",\"shop page\",\"woocommerce\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2134,\"post_type\":\"elementor_library\",\"title\":\"Shop Page Style Six\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/shop-page-style-six\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Shop-Page-Style-Six.png\",\"shareId\":\"Shop\",\"tags\":[\"shop\",\"shop page\",\"woocommerce\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2145,\"post_type\":\"elementor_library\",\"title\":\"Shop Page Style Seven\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/shop-page-style-seven\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Shop-Page-Style-Seven.png\",\"shareId\":\"Shop\",\"tags\":[\"shop\",\"shop page\",\"woocommerce\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2148,\"post_type\":\"elementor_library\",\"title\":\"Shop Page Style Eight\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/shop-page-style-eight\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Shop-Page-Style-Eight.png\",\"shareId\":\"Shop\",\"tags\":[\"shop\",\"shop page\",\"woocommerce\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2153,\"post_type\":\"elementor_library\",\"title\":\"Shop Page Style Nine\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/shop-page-style-nine\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Shop-Page-Style-Nine.png\",\"shareId\":\"Shop\",\"tags\":[\"shop\",\"shop page\",\"woocommerce\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2157,\"post_type\":\"elementor_library\",\"title\":\"Shop Page Style Ten\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/shop-page-style-ten\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Shop-Page-Style-Ten.png\",\"shareId\":\"Shop\",\"tags\":[\"shop\",\"shop page\",\"woocommerce\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":1970,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page One\",\"human_date\":\"October 25, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-1\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-One.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2086,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Two\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-2\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Two.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2071,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Three\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/patient-ninja\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Three.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2011,\"post_type\":\"elementor_library\",\"title\":\"Video in product gallery\",\"human_date\":\"October 27, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/video-in-product-gallery\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Video-in-product-gallery.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2097,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Four\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-4\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Four.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2083,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Five\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-5\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Five.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2064,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Six\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-6\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Six.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2050,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Seven\",\"human_date\":\"October 27, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-7\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Seven.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2092,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Eight\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-8\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Eight.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2056,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Nine\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-9\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Nine.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2037,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Ten\",\"human_date\":\"October 27, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-10\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Ten.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2032,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Eleven\",\"human_date\":\"October 27, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-11\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Eleven.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2027,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Twelve\",\"human_date\":\"October 27, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-12\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Twelve.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2017,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Thirteen\",\"human_date\":\"October 27, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-13\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Thirteen.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2022,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Fourteen\",\"human_date\":\"October 27, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-14\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-fourteen.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2076,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Fifteen\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/product-layout-15\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Fifteen.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":1990,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Sixteen\",\"human_date\":\"October 25, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/qr-code\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Sixteen.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":1999,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Seventeen\",\"human_date\":\"October 27, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/suggest-price\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Seventeen.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2006,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Eighteen\",\"human_date\":\"October 27, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/call-for-price\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Eighteen.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":1942,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Nineteen\",\"human_date\":\"October 25, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/image-zoom\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Nineteen.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2060,\"post_type\":\"elementor_library\",\"title\":\"Single Product Page Twenty\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/product\\/stock-progress-bar\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Single-Product-Page-Twenty.png\",\"shareId\":\"Product Details\",\"tags\":[\"product details\",\"single\",\"single product\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":3302,\"post_type\":\"elementor_library\",\"title\":\"Sales Notification Style One\",\"human_date\":\"November 10, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/sales-notification-style-one\\/\",\"isPro\":0,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/11\\/Sales-Notification-Style-One.png\",\"shareId\":\"Sales Notification\",\"tags\":[\"notification\",\"sale notification\"],\"tmpType\":\"free\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2268,\"post_type\":\"elementor_library\",\"title\":\"Sales Notification Style Two\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/sales-notification-style-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Sales-Notification-Style-Two.png\",\"shareId\":\"Sales Notification\",\"tags\":[\"notification\",\"sales notification\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2273,\"post_type\":\"elementor_library\",\"title\":\"Sales Notification Style Three\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/sales-notification-style-three\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Sales-Notification-Style-Three.png\",\"shareId\":\"Sales Notification\",\"tags\":[\"notification\",\"sales notification\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2278,\"post_type\":\"elementor_library\",\"title\":\"Sales Notification Style Four\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/sales-notification-style-four\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Sales-Notification-Style-Four.png\",\"shareId\":\"Sales Notification\",\"tags\":[\"notification\",\"sales notification\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":3451,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page Two\",\"human_date\":\"May 14, 2022\",\"type\":\"page\",\"url\":\"#\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/05\\/checkout-page-two.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":3498,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page Three\",\"human_date\":\"May 14, 2022\",\"type\":\"page\",\"url\":\"#\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/05\\/checkout-page-three.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":3678,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page Four\",\"human_date\":\"May 22, 2022\",\"type\":\"page\",\"url\":\"#\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/05\\/checkout-page-five.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4007,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page Five\",\"human_date\":\"May 28, 2022\",\"type\":\"page\",\"url\":\"#\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/05\\/checkout-page-nine.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":3857,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page Six\",\"human_date\":\"May 25, 2022\",\"type\":\"page\",\"url\":\"#\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/05\\/checkout-page-seven.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4072,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page Seven\",\"human_date\":\"May 29, 2022\",\"type\":\"page\",\"url\":\"#\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/05\\/checkout-page-sevenn.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":3930,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page Eight - Multi Step\",\"human_date\":\"May 25, 2022\",\"type\":\"page\",\"url\":\"#\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/05\\/checkout-page-eight.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":3812,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page Nine - Multi Step\",\"human_date\":\"May 24, 2022\",\"type\":\"page\",\"url\":\"#\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/05\\/checkout-page-ninee.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":4041,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page Ten - Multi Step\",\"human_date\":\"May 29, 2022\",\"type\":\"page\",\"url\":\"#\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/05\\/checkout-page-ten.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":3565,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page Eleven - Multi Step\",\"human_date\":\"May 17, 2022\",\"type\":\"page\",\"url\":\"#\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2022\\/05\\/checkout-page-four.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2254,\"post_type\":\"elementor_library\",\"title\":\"Checkout Page One\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/checkout-page\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Checkout-Page.png\",\"shareId\":\"Checkout Page\",\"tags\":[\"checkout\",\"checkout page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2249,\"post_type\":\"elementor_library\",\"title\":\"Cart Page\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/cart-page\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Cart-Page.png\",\"shareId\":\"Cart\",\"tags\":[\"cart\",\"cart page\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2221,\"post_type\":\"elementor_library\",\"title\":\"My Account Page Style One\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/my-account\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/My-Account-Page-Style-One.png\",\"shareId\":\"My Account\",\"tags\":[\"account\",\"my account\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2229,\"post_type\":\"elementor_library\",\"title\":\"My Account Page Style Two\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/my-account\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/My-Account-Page-Style-Two.png\",\"shareId\":\"My Account\",\"tags\":[\"account\",\"my account\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2233,\"post_type\":\"elementor_library\",\"title\":\"My Account Page Style Three\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/my-account\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/My-Account-Page-Style-Three.png\",\"shareId\":\"My Account\",\"tags\":[\"account\",\"my account\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2239,\"post_type\":\"elementor_library\",\"title\":\"My Account Page Style Four\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/my-account\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/My-Account-Page-Style-Four.png\",\"shareId\":\"My Account\",\"tags\":[\"account\",\"my account\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2167,\"post_type\":\"elementor_library\",\"title\":\"Brand Carousel\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/brand-carousel\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Brand-Carousel.png\",\"shareId\":\"Others\",\"tags\":[\"brand\",\"others\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2183,\"post_type\":\"elementor_library\",\"title\":\"Brand Grid Style One\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/brand-grid-style-one\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Brand-Grid-Style-One.png\",\"shareId\":\"Others\",\"tags\":[\"brand\",\"others\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2189,\"post_type\":\"elementor_library\",\"title\":\"Brand Grid Style Two\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/brand-grid-style-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Brand-Grid-Style-Two.png\",\"shareId\":\"Others\",\"tags\":[\"brand\",\"others\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2213,\"post_type\":\"elementor_library\",\"title\":\"Category Vertical Style One\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/category-vertical-style-one\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Category-Vertical-Style-One.png\",\"shareId\":\"Others\",\"tags\":[\"brand\",\"others\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2218,\"post_type\":\"elementor_library\",\"title\":\"Category Vertical Style Two\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/category-vertical-style-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Category-Vertical-Style-Two.png\",\"shareId\":\"Others\",\"tags\":[\"brand\",\"others\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2193,\"post_type\":\"elementor_library\",\"title\":\"Category Horizontal Style One\",\"human_date\":\"October 28, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/category-horizontal-style-one\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Category-Horizontal-Style-One.png\",\"shareId\":\"Others\",\"tags\":[\"brand\",\"others\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"},{\"id\":2206,\"post_type\":\"elementor_library\",\"title\":\"Category Horizontal Style Two\",\"human_date\":\"October 29, 2020\",\"type\":\"page\",\"url\":\"https:\\/\\/library.shoplentor.com\\/category-horizontal-style-two\\/\",\"isPro\":1,\"thumbnail\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2020\\/10\\/Category-Horizontal-Style-Two.png\",\"shareId\":\"Others\",\"tags\":[\"brand\",\"others\"],\"tmpType\":\"pro\",\"builder\":[\"elementor\"],\"demoType\":\"templates\",\"freePlugins\":[\"woolentor-addons\\/\\/woolentor_addons_elementor.php\\/\\/WooLentor\"],\"proPlugins\":[],\"requiredtheme\":\"\"}],\"notices\":{\"0\":{\"title\":\"ShopLentor - WooCommerce Page Builder.\",\"description\":\"Upgrade to Premium! Unlock All Exclusive Features. <a href=\'https:\\/\\/woolentor.com\\/pricing\\/?utm_source=free-plugin&utm_medium=wl-dashboard&utm_campaign=upgrade-premium\' target=\'_blank\'>Upgrade Now<\\/a>\",\"bannerimage\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/02\\/upgrade-to-premium-notice.png\",\"bannerlink\":\"https:\\/\\/woolentor.com\\/pricing\\/?utm_source=admin&utm_medium=topbanner&utm_campaign=upgrade-premium\",\"status\":\"1\"},\"1\":{\"title\":\"ShopLentor - WooCommerce Page Builder.\",\"description\":\"The clock is ticking! This is your last chance to unlock ShopLentor\\u2019s premium features at current prices. Upgrade today and save big! <a href=\'https:\\/\\/woolentor.com\\/pricing\\/?utm_source=free-plugin&utm_medium=wl-dashboard&utm_campaign=upgrade-premium\' target=\'_blank\'>Upgrade Now<\\/a>\",\"bannerimage\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/02\\/upgrade-to-premium-notice.png\",\"bannerlink\":\"https:\\/\\/woolentor.com\\/pricing\\/?utm_source=admin&utm_medium=topbanner&utm_campaign=upgrade-premium\",\"status\":\"0\"},\"2\":{\"title\":\"ShopLentor - WooCommerce Page Builder.\",\"description\":\"Check out the exclusive New Year deals on ShopLentor \\ud83e\\udd73 Enjoy a flat 30% OFF all plans and 72% off bundle plan! Use the Coupon: <strong>WELCOME2024<\\/strong> \\ud83c\\udf89 <a href=\'https:\\/\\/woolentor.com\\/pricing\\/?utm_source=free-plugin&utm_medium=wl-dashboard&utm_campaign=upgrade-premium\' target=\'_blank\'>Upgrade Now<\\/a>\",\"bannerimage\":\"https:\\/\\/library.shoplentor.com\\/wp-content\\/uploads\\/2024\\/02\\/upgrade-to-premium-notice.png\",\"bannerlink\":\"https:\\/\\/woolentor.com\\/pricing\\/?utm_source=free-plugin&utm_medium=wl-dashboard&utm_campaign=upgrade-premium\",\"status\":\"0\"},\"3\":{\"title\":\"WooLentor - WooCommerce Page Builder Elementor Addon.\",\"description\":\"Don\'t Miss Out on the ShopLentor Black Friday Deals \\ud83d\\udecd\\ufe0f! Get Up to 80% OFF! \\ud83d\\udd25 <a href=\'https:\\/\\/woolentor.com\\/pricing\\/?utm_source=free-plugin&utm_medium=wl-dashboard&utm_campaign=bfcm\' target=\'_blank\'>Grab the deal now<\\/a>\",\"bannerimage\":\"https:\\/\\/woolentor.com\\/library\\/wp-content\\/uploads\\/2022\\/11\\/black-friday-1650x70-1.jpg\",\"bannerlink\":\"https:\\/\\/woolentor.com\\/pricing\\/?utm_source=free-plugin&utm_medium=wl-dashboard&utm_campaign=bfcm\",\"status\":\"0\"},\"sidebar\":{\"title\":\"WooLentor - WooCommerce Page Builder Elementor Addon.\",\"description\":\"WooLentor is now on AppSumo! 27 WooCommerce plugins only at $138 <a href=\'https:\\/\\/clickhasthemes.com\\/go\\/woolentor-appsumo-s\' target=\'_blank\'>Grab the deal now<\\/a>\",\"image\":\"https:\\/\\/woolentor.com\\/library\\/wp-content\\/uploads\\/2022\\/05\\/sidebarprobanner.png\",\"link\":\"https:\\/\\/clickhasthemes.com\\/go\\/woolentor-appsumo-s\",\"status\":\"0\"},\"4\":{\"title\":\"WooLentor Black Friday &amp; Cyber Monday Sale\",\"description\":\"On the eve of this Christmas \\ud83c\\udf84 & New Year \\ud83c\\udf89 holidays, get a whopping 70% OFF WooLentor! <a href=\'https:\\/\\/woolentor.com\\/?utm_source=admin&utm_medium=notice&utm_campaign=free\' target=\'_blank\'>Get the deal now<\\/a>\",\"bannerimage\":\"https:\\/\\/woolentor.com\\/library\\/wp-content\\/uploads\\/2021\\/12\\/promobannerhol.jpg\",\"bannerlink\":\"https:\\/\\/woolentor.com\\/?utm_source=admin&utm_medium=notice&utm_campaign=free\",\"status\":\"0\"},\"5\":{\"title\":\"End of the year Deal from HasThemes\",\"description\":\"<strong>New year Deal:<\\/strong> Grab the 40% discount on our unlimited lifetime licenses. What\'s Hot: Elementor Guru and WP Bundle. <a href=\'https:\\/\\/hasthemes.com\\/plugins\\/woolentor-pro-woocommerce-page-builder\\/\' target=\'_blank\'>Get the deals now <\\/a>\",\"bannerimage\":\"https:\\/\\/api.hasthemes.com\\/api\\/woolentor\\/layout-img\\/cm19.jpg\",\"bannerlink\":\"https:\\/\\/hasthemes.com\\/get-40-off-on-themes-and-plugins\\/\",\"status\":\"0\"}}}','off'),
(5779095,'_transient_timeout_wcpay_currency_format','1730287607','off'),
(5779096,'_transient_wcpay_currency_format','a:150:{s:3:\"EUR\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"de_AT\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"de_BE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"de_LU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"el_CY\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"en_IE\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_MT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"es_EA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"es_IC\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_BE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_BL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_GF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_GP\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_LU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_MC\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_MF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_MQ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_PM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_RE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_YT\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"it_SM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"it_VA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"nl_BE\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"pt_PT\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sq_XK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:10:\"sr_Latn_ME\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:10:\"sr_Latn_XK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sv_AX\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sv_FI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"tr_CY\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:6:\"ast_ES\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ca_ES\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"de_DE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"el_GR\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"es_ES\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"et_EE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"eu_ES\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fi_FI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_FR\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fy_NL\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ga_IE\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"gl_ES\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"it_IT\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"lb_LU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"lt_LT\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"lv_LV\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"mt_MT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"nl_NL\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sk_SK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sl_SI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"AED\";a:2:{s:5:\"ar_AE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"AFN\";a:4:{s:5:\"fa_AF\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"ps_AF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"uz_AF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"XCD\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_AI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_DM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_GD\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_KN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_LC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_MS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_VC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"ALL\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"sq_AL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"AMD\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"hy_AM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"AOA\";a:2:{s:5:\"pt_AO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"ARS\";a:2:{s:5:\"es_AR\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"USD\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_DG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_FM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_GU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_IO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_MH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_MP\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_PR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_PW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_TC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_UM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_VG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_VI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_ZW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"es_EC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"es_PA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"es_PR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"es_SV\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"es_US\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"fr_HT\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"nl_BQ\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"pt_TL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"qu_EC\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_US\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"haw_US\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"nd_ZW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"sn_ZW\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"AUD\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_CC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_CX\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_KI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_NF\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_NR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_TV\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"AWG\";a:2:{s:5:\"nl_AW\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"AZN\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"az_AZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BAM\";a:4:{s:5:\"hr_BA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:10:\"sr_Latn_BA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"bs_BA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BBD\";a:2:{s:5:\"en_BB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"BDT\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"bn_BD\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"XOF\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_BJ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_CI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_ML\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_NE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_SN\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_TG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"pt_GW\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:6:\"dyo_SN\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"wo_SN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"BGN\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"bg_BG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BHD\";a:2:{s:5:\"ar_BH\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"BIF\";a:4:{s:5:\"en_BI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"fr_BI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"rn_BI\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"BMD\";a:2:{s:5:\"en_BM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"BND\";a:2:{s:5:\"ms_BN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BOB\";a:3:{s:5:\"es_BO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"qu_BO\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BRL\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"pt_BR\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BSD\";a:2:{s:5:\"en_BS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"BTN\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"dz_BT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"BWP\";a:2:{s:5:\"en_BW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"BYN\";a:3:{s:5:\"ru_BY\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"be_BY\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BZD\";a:2:{s:5:\"en_BZ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"CAD\";a:3:{s:5:\"en_CA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"fr_CA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"CDF\";a:4:{s:5:\"fr_CD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sw_CD\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ln_CD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"XAF\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"en_CM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"es_GQ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_CF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_CG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_CM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_GA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_GQ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_TD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"pt_GQ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"sg_CF\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"CHF\";a:8:{s:5:\"de_CH\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"de_LI\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"fr_CH\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:6:\"gsw_LI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"it_CH\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"gsw_CH\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"rm_CH\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"NZD\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_NU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_NZ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_PN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_TK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"mi_NZ\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"CLP\";a:2:{s:5:\"es_CL\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"CNY\";a:4:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"bo_CN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ug_CN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"zh_CN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"COP\";a:2:{s:5:\"es_CO\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"CRC\";a:2:{s:5:\"es_CR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"CUC\";a:2:{s:5:\"es_CU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"CVE\";a:2:{s:5:\"pt_CV\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"ANG\";a:4:{s:5:\"en_SX\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"nl_CW\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"nl_SX\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"CZK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"cs_CZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"DJF\";a:3:{s:5:\"ar_DJ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_DJ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"DKK\";a:4:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"da_DK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fo_FO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"kl_GL\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"DOP\";a:2:{s:5:\"es_DO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"DZD\";a:3:{s:5:\"ar_DZ\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_DZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"EGP\";a:2:{s:5:\"ar_EG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"MAD\";a:5:{s:5:\"ar_EH\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ar_MA\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_MA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"tzm_MA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"ERN\";a:4:{s:5:\"ar_ER\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"en_ER\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ti_ER\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"ETB\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"am_ET\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"FJD\";a:2:{s:5:\"en_FJ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"FKP\";a:2:{s:5:\"en_FK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GBP\";a:9:{s:5:\"en_GB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_GG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_IM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_JE\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ga_GB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"cy_GB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"gd_GB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"gv_IM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GEL\";a:3:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ka_GE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"os_GE\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"GHS\";a:4:{s:5:\"en_GH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ak_GH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ee_GH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GIP\";a:2:{s:5:\"en_GI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GMD\";a:2:{s:5:\"en_GM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GNF\";a:2:{s:5:\"fr_GN\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"GTQ\";a:2:{s:5:\"es_GT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GYD\";a:2:{s:5:\"en_GY\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"HKD\";a:3:{s:5:\"en_HK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:10:\"zh_Hant_HK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"HNL\";a:2:{s:5:\"es_HN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"HUF\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"hu_HU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"IDR\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"id_ID\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"ILS\";a:4:{s:5:\"ar_IL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ar_PS\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"he_IL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"INR\";a:19:{s:5:\"bn_IN\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ne_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ur_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"as_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"dz_BT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"gu_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"hi_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"kn_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"kok_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"mai_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ml_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"mr_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"or_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"sa_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"sd_PK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ta_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"te_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"IQD\";a:3:{s:5:\"ar_IQ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:6:\"ckb_IQ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"IRR\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fa_IR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"ISK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"is_IS\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"JMD\";a:2:{s:5:\"en_JM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"JOD\";a:3:{s:5:\"ar_JO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:5:\"ar_PS\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"JPY\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"ja_JP\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"KES\";a:3:{s:5:\"en_KE\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"sw_KE\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"KGS\";a:3:{s:5:\"ru_KG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ky_KG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"KHR\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"km_KH\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"KMF\";a:3:{s:5:\"ar_KM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_KM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"KPW\";a:2:{s:5:\"ko_KP\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"KRW\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"ko_KR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"KWD\";a:2:{s:5:\"ar_KW\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"KYD\";a:2:{s:5:\"en_KY\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"KZT\";a:3:{s:5:\"ru_KZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"kk_KZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"LAK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"lo_LA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"LBP\";a:2:{s:5:\"ar_LB\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"LKR\";a:3:{s:5:\"ta_LK\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"si_LK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"LRD\";a:2:{s:5:\"en_LR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"LSL\";a:2:{s:5:\"en_LS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"LYD\";a:2:{s:5:\"ar_LY\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"MDL\";a:2:{s:5:\"ro_MD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"MGA\";a:4:{s:5:\"en_MG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"fr_MG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"mg_MG\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"MKD\";a:3:{s:5:\"sq_MK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"mk_MK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"MMK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"my_MM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"MNT\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"mn_MN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"MOP\";a:3:{s:5:\"pt_MO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:10:\"zh_Hant_MO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"MRU\";a:2:{s:5:\"ar_MR\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"MUR\";a:3:{s:5:\"en_MU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"fr_MU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"MWK\";a:2:{s:5:\"en_MW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"MXN\";a:2:{s:5:\"es_MX\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"MYR\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ms_MY\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"MZN\";a:2:{s:5:\"pt_MZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"NAD\";a:2:{s:5:\"en_NA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"XPF\";a:4:{s:5:\"fr_NC\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_PF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_WF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"NGN\";a:3:{s:5:\"en_NG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"yo_NG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"NIO\";a:2:{s:5:\"es_NI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"NOK\";a:5:{s:5:\"nb_SJ\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"nb_NO\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"nn_NO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"se_NO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"NPR\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ne_NP\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"OMR\";a:2:{s:5:\"ar_OM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"PEN\";a:3:{s:5:\"es_PE\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"qu_PE\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"PGK\";a:2:{s:5:\"en_PG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"PHP\";a:4:{s:5:\"en_PH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"ceb_PH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"fil_PH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"PKR\";a:3:{s:5:\"en_PK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"ur_PK\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"PLN\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"pl_PL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"PYG\";a:2:{s:5:\"es_PY\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"QAR\";a:2:{s:5:\"ar_QA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"RON\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ro_RO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"RSD\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"sr_RS\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"RUB\";a:5:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ce_RU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ru_RU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:6:\"sah_RU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"tt_RU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"RWF\";a:4:{s:5:\"en_RW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"fr_RW\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"rw_RW\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"SAR\";a:2:{s:5:\"ar_SA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"SBD\";a:2:{s:5:\"en_SB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"SCR\";a:3:{s:5:\"en_SC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"fr_SC\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"SDG\";a:3:{s:5:\"ar_SD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"en_SD\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"SEK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sv_SE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"SGD\";a:4:{s:5:\"en_SG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ms_SG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ta_SG\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"SHP\";a:2:{s:5:\"en_SH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"SLL\";a:2:{s:5:\"en_SL\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"SOS\";a:3:{s:5:\"ar_SO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"so_SO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"SRD\";a:2:{s:5:\"nl_SR\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"SSP\";a:2:{s:5:\"en_SS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"STN\";a:2:{s:5:\"pt_ST\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"SYP\";a:3:{s:5:\"ar_SY\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_SY\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"SZL\";a:2:{s:5:\"en_SZ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"THB\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"th_TH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"TJS\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"tg_TJ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"TMT\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"tk_TM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"TND\";a:3:{s:5:\"ar_TN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:5:\"fr_TN\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"TOP\";a:3:{s:5:\"en_TO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"to_TO\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"TRY\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"tr_TR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"TTD\";a:2:{s:5:\"en_TT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"TWD\";a:2:{s:7:\"zh_Hant\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"TZS\";a:3:{s:5:\"en_TZ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"sw_TZ\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"UAH\";a:3:{s:5:\"ru_UA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"uk_UA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"UGX\";a:3:{s:5:\"en_UG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"sw_UG\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"UYU\";a:2:{s:5:\"es_UY\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"UZS\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"uz_AF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"VES\";a:2:{s:5:\"es_VE\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"VND\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"vi_VN\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"VUV\";a:3:{s:5:\"en_VU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"fr_VU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"WST\";a:2:{s:5:\"en_WS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"YER\";a:2:{s:5:\"ar_YE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"ZAR\";a:7:{s:5:\"en_LS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_NA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_ZA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"af_ZA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"xh_ZA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"zu_ZA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"ZMW\";a:2:{s:5:\"en_ZM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}}','off'),
(5779097,'_transient_timeout_wcpay_locale_info','1730287607','off');
INSERT INTO `wphu_options` VALUES
(5779098,'_transient_wcpay_locale_info','a:248:{s:2:\"AD\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ca_AD\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AE\";a:14:{s:13:\"currency_code\";s:3:\"AED\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_AE\";s:4:\"name\";s:27:\"United Arab Emirates dirham\";s:8:\"singular\";s:10:\"UAE dirham\";s:6:\"plural\";s:11:\"UAE dirhams\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_AE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AF\";a:14:{s:13:\"currency_code\";s:3:\"AFN\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"fa_AF\";s:4:\"name\";s:14:\"Afghan afghani\";s:8:\"singular\";s:14:\"Afghan Afghani\";s:6:\"plural\";s:15:\"Afghan Afghanis\";s:12:\"short_symbol\";s:2:\"Ø‹\";s:7:\"locales\";a:4:{s:5:\"fa_AF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ps_AF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"uz_AF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AG\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_AG\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"AI\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_AI\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"AL\";a:14:{s:13:\"currency_code\";s:3:\"ALL\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sq_AL\";s:4:\"name\";s:12:\"Albanian lek\";s:8:\"singular\";s:12:\"Albanian lek\";s:6:\"plural\";s:14:\"Albanian lekÃ«\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_AL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AM\";a:14:{s:13:\"currency_code\";s:3:\"AMD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"hy_AM\";s:4:\"name\";s:13:\"Armenian dram\";s:8:\"singular\";s:13:\"Armenian dram\";s:6:\"plural\";s:14:\"Armenian drams\";s:12:\"short_symbol\";s:2:\"Ö\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"hy_AM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AO\";a:14:{s:13:\"currency_code\";s:3:\"AOA\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_AO\";s:4:\"name\";s:14:\"Angolan kwanza\";s:8:\"singular\";s:14:\"Angolan kwanza\";s:6:\"plural\";s:15:\"Angolan kwanzas\";s:12:\"short_symbol\";s:2:\"Kz\";s:7:\"locales\";a:2:{s:5:\"pt_AO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AR\";a:14:{s:13:\"currency_code\";s:3:\"ARS\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_AR\";s:4:\"name\";s:14:\"Argentine peso\";s:8:\"singular\";s:14:\"Argentine peso\";s:6:\"plural\";s:15:\"Argentine pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_AR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"AS\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_AS\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"AT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"de_AT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AU\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_AU\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"AW\";a:14:{s:13:\"currency_code\";s:3:\"AWG\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_AW\";s:4:\"name\";s:13:\"Aruban florin\";s:8:\"singular\";s:13:\"Aruban florin\";s:6:\"plural\";s:13:\"Aruban florin\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"nl_AW\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"AX\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sv_AX\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AZ\";a:14:{s:13:\"currency_code\";s:3:\"AZN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"az_AZ\";s:4:\"name\";s:17:\"Azerbaijani manat\";s:8:\"singular\";s:17:\"Azerbaijani manat\";s:6:\"plural\";s:18:\"Azerbaijani manats\";s:12:\"short_symbol\";s:3:\"â‚¼\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"az_AZ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BA\";a:14:{s:13:\"currency_code\";s:3:\"BAM\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"bs_BA\";s:4:\"name\";s:39:\"Bosnia and Herzegovina convertible mark\";s:8:\"singular\";s:35:\"Bosnia-Herzegovina convertible mark\";s:6:\"plural\";s:36:\"Bosnia-Herzegovina convertible marks\";s:12:\"short_symbol\";s:2:\"KM\";s:7:\"locales\";a:4:{s:5:\"hr_BA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_BA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"bs_BA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BB\";a:14:{s:13:\"currency_code\";s:3:\"BBD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_BB\";s:4:\"name\";s:16:\"Barbadian dollar\";s:8:\"singular\";s:16:\"Barbadian dollar\";s:6:\"plural\";s:17:\"Barbadian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_BB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BD\";a:14:{s:13:\"currency_code\";s:3:\"BDT\";s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"bn_BD\";s:4:\"name\";s:16:\"Bangladeshi taka\";s:8:\"singular\";s:16:\"Bangladeshi taka\";s:6:\"plural\";s:17:\"Bangladeshi takas\";s:12:\"short_symbol\";s:3:\"à§³\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}s:5:\"bn_BD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}}}s:2:\"BE\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_BE\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BF\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_BF\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"BG\";a:14:{s:13:\"currency_code\";s:3:\"BGN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"bg_BG\";s:4:\"name\";s:13:\"Bulgarian lev\";s:8:\"singular\";s:13:\"Bulgarian lev\";s:6:\"plural\";s:14:\"Bulgarian leva\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"bg_BG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BH\";a:14:{s:13:\"currency_code\";s:3:\"BHD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_BH\";s:4:\"name\";s:14:\"Bahraini dinar\";s:8:\"singular\";s:14:\"Bahraini dinar\";s:6:\"plural\";s:15:\"Bahraini dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_BH\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BI\";a:14:{s:13:\"currency_code\";s:3:\"BIF\";s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"rn_BI\";s:4:\"name\";s:15:\"Burundian franc\";s:8:\"singular\";s:15:\"Burundian franc\";s:6:\"plural\";s:16:\"Burundian francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"en_BI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_BI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"rn_BI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}}}s:2:\"BJ\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_BJ\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"BL\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_BL\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BM\";a:14:{s:13:\"currency_code\";s:3:\"BMD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_BM\";s:4:\"name\";s:16:\"Bermudian dollar\";s:8:\"singular\";s:15:\"Bermudan dollar\";s:6:\"plural\";s:16:\"Bermudan dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_BM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BN\";a:14:{s:13:\"currency_code\";s:3:\"BND\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ms_BN\";s:4:\"name\";s:13:\"Brunei dollar\";s:8:\"singular\";s:13:\"Brunei dollar\";s:6:\"plural\";s:14:\"Brunei dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"ms_BN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"BO\";a:14:{s:13:\"currency_code\";s:3:\"BOB\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_BO\";s:4:\"name\";s:18:\"Bolivian boliviano\";s:8:\"singular\";s:18:\"Bolivian boliviano\";s:6:\"plural\";s:19:\"Bolivian bolivianos\";s:12:\"short_symbol\";s:2:\"Bs\";s:7:\"locales\";a:3:{s:5:\"es_BO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"qu_BO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BQ\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_BQ\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"BR\";a:14:{s:13:\"currency_code\";s:3:\"BRL\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_BR\";s:4:\"name\";s:14:\"Brazilian real\";s:8:\"singular\";s:14:\"Brazilian real\";s:6:\"plural\";s:15:\"Brazilian reals\";s:12:\"short_symbol\";s:2:\"R$\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_BR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"BS\";a:14:{s:13:\"currency_code\";s:3:\"BSD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_BS\";s:4:\"name\";s:15:\"Bahamian dollar\";s:8:\"singular\";s:15:\"Bahamian dollar\";s:6:\"plural\";s:16:\"Bahamian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_BS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BT\";a:14:{s:13:\"currency_code\";s:3:\"BTN\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"dz_BT\";s:4:\"name\";s:18:\"Bhutanese ngultrum\";s:8:\"singular\";s:18:\"Bhutanese ngultrum\";s:6:\"plural\";s:19:\"Bhutanese ngultrums\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"dz_BT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BW\";a:14:{s:13:\"currency_code\";s:3:\"BWP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_BW\";s:4:\"name\";s:13:\"Botswana pula\";s:8:\"singular\";s:14:\"Botswanan pula\";s:6:\"plural\";s:15:\"Botswanan pulas\";s:12:\"short_symbol\";s:1:\"P\";s:7:\"locales\";a:2:{s:5:\"en_BW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BY\";a:14:{s:13:\"currency_code\";s:3:\"BYN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"be_BY\";s:4:\"name\";s:16:\"Belarusian ruble\";s:8:\"singular\";s:16:\"Belarusian ruble\";s:6:\"plural\";s:17:\"Belarusian rubles\";s:12:\"short_symbol\";s:3:\"Ñ€.\";s:7:\"locales\";a:3:{s:5:\"ru_BY\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"be_BY\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BZ\";a:14:{s:13:\"currency_code\";s:3:\"BZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_BZ\";s:4:\"name\";s:13:\"Belize dollar\";s:8:\"singular\";s:13:\"Belize dollar\";s:6:\"plural\";s:14:\"Belize dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_BZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CA\";a:14:{s:13:\"currency_code\";s:3:\"CAD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_CA\";s:4:\"name\";s:15:\"Canadian dollar\";s:8:\"singular\";s:15:\"Canadian dollar\";s:6:\"plural\";s:16:\"Canadian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:3:{s:5:\"en_CA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CC\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_CC\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CD\";a:14:{s:13:\"currency_code\";s:3:\"CDF\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sw_CD\";s:4:\"name\";s:15:\"Congolese franc\";s:8:\"singular\";s:15:\"Congolese franc\";s:6:\"plural\";s:16:\"Congolese francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"fr_CD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sw_CD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ln_CD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"CF\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_CF\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CG\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_CG\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CH\";a:14:{s:13:\"currency_code\";s:3:\"CHF\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"de_CH\";s:4:\"name\";s:11:\"Swiss franc\";s:8:\"singular\";s:11:\"Swiss franc\";s:6:\"plural\";s:12:\"Swiss francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:8:{s:5:\"de_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_LI\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_CH\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"gsw_LI\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:6:\"gsw_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"rm_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"CI\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_CI\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"CK\";a:14:{s:13:\"currency_code\";s:3:\"NZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_CK\";s:4:\"name\";s:18:\"New Zealand dollar\";s:8:\"singular\";s:18:\"New Zealand dollar\";s:6:\"plural\";s:19:\"New Zealand dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mi_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"CL\";a:14:{s:13:\"currency_code\";s:3:\"CLP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_CL\";s:4:\"name\";s:12:\"Chilean peso\";s:8:\"singular\";s:12:\"Chilean peso\";s:6:\"plural\";s:13:\"Chilean pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_CL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CM\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_CM\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CN\";a:14:{s:13:\"currency_code\";s:3:\"CNY\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"zh_CN\";s:4:\"name\";s:12:\"Chinese yuan\";s:8:\"singular\";s:12:\"Chinese yuan\";s:6:\"plural\";s:12:\"Chinese yuan\";s:12:\"short_symbol\";s:2:\"Â¥\";s:7:\"locales\";a:4:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"bo_CN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ug_CN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"zh_CN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CO\";a:14:{s:13:\"currency_code\";s:3:\"COP\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_CO\";s:4:\"name\";s:14:\"Colombian peso\";s:8:\"singular\";s:14:\"Colombian peso\";s:6:\"plural\";s:15:\"Colombian pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_CO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"CR\";a:14:{s:13:\"currency_code\";s:3:\"CRC\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_CR\";s:4:\"name\";s:18:\"Costa Rican colÃ³n\";s:8:\"singular\";s:18:\"Costa Rican colÃ³n\";s:6:\"plural\";s:19:\"Costa Rican colÃ³ns\";s:12:\"short_symbol\";s:3:\"â‚¡\";s:7:\"locales\";a:2:{s:5:\"es_CR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CU\";a:14:{s:13:\"currency_code\";s:3:\"CUC\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_CU\";s:4:\"name\";s:22:\"Cuban convertible peso\";s:8:\"singular\";s:22:\"Cuban convertible peso\";s:6:\"plural\";s:23:\"Cuban convertible pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_CU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CV\";a:14:{s:13:\"currency_code\";s:3:\"CVE\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_CV\";s:4:\"name\";s:19:\"Cape Verdean escudo\";s:8:\"singular\";s:19:\"Cape Verdean escudo\";s:6:\"plural\";s:20:\"Cape Verdean escudos\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"pt_CV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"CW\";a:14:{s:13:\"currency_code\";s:3:\"ANG\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_CW\";s:4:\"name\";s:29:\"Netherlands Antillean guilder\";s:8:\"singular\";s:29:\"Netherlands Antillean guilder\";s:6:\"plural\";s:30:\"Netherlands Antillean guilders\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"en_SX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_CW\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nl_SX\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"CX\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_CX\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CY\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"el_CY\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"CZ\";a:14:{s:13:\"currency_code\";s:3:\"CZK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"cs_CZ\";s:4:\"name\";s:12:\"Czech koruna\";s:8:\"singular\";s:12:\"Czech koruna\";s:6:\"plural\";s:13:\"Czech korunas\";s:12:\"short_symbol\";s:3:\"KÄ\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"cs_CZ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"DE\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"de_DE\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"DG\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_DG\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"DJ\";a:14:{s:13:\"currency_code\";s:3:\"DJF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_DJ\";s:4:\"name\";s:16:\"Djiboutian franc\";s:8:\"singular\";s:16:\"Djiboutian franc\";s:6:\"plural\";s:17:\"Djiboutian francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_DJ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_DJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"DK\";a:14:{s:13:\"currency_code\";s:3:\"DKK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"da_DK\";s:4:\"name\";s:12:\"Danish krone\";s:8:\"singular\";s:12:\"Danish krone\";s:6:\"plural\";s:13:\"Danish kroner\";s:12:\"short_symbol\";s:3:\"kr.\";s:7:\"locales\";a:4:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"da_DK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fo_FO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"kl_GL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"DM\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_DM\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"DO\";a:14:{s:13:\"currency_code\";s:3:\"DOP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_DO\";s:4:\"name\";s:14:\"Dominican peso\";s:8:\"singular\";s:14:\"Dominican peso\";s:6:\"plural\";s:15:\"Dominican pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_DO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"DZ\";a:14:{s:13:\"currency_code\";s:3:\"DZD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_DZ\";s:4:\"name\";s:14:\"Algerian dinar\";s:8:\"singular\";s:14:\"Algerian dinar\";s:6:\"plural\";s:15:\"Algerian dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_DZ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_DZ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"EA\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_EA\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"EC\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_EC\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"EE\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"et_EE\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"EG\";a:14:{s:13:\"currency_code\";s:3:\"EGP\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_EG\";s:4:\"name\";s:14:\"Egyptian pound\";s:8:\"singular\";s:14:\"Egyptian pound\";s:6:\"plural\";s:15:\"Egyptian pounds\";s:12:\"short_symbol\";s:3:\"EÂ£\";s:7:\"locales\";a:2:{s:5:\"ar_EG\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"EH\";a:14:{s:13:\"currency_code\";s:3:\"MAD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_EH\";s:4:\"name\";s:15:\"Moroccan dirham\";s:8:\"singular\";s:15:\"Moroccan dirham\";s:6:\"plural\";s:16:\"Moroccan dirhams\";s:12:\"short_symbol\";N;s:7:\"locales\";a:5:{s:5:\"ar_EH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ar_MA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_MA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:6:\"tzm_MA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ER\";a:14:{s:13:\"currency_code\";s:3:\"ERN\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ti_ER\";s:4:\"name\";s:14:\"Eritrean nakfa\";s:8:\"singular\";s:14:\"Eritrean nakfa\";s:6:\"plural\";s:15:\"Eritrean nakfas\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"ar_ER\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_ER\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ti_ER\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"ES\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_ES\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ET\";a:14:{s:13:\"currency_code\";s:3:\"ETB\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"am_ET\";s:4:\"name\";s:14:\"Ethiopian birr\";s:8:\"singular\";s:14:\"Ethiopian birr\";s:6:\"plural\";s:15:\"Ethiopian birrs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"am_ET\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"FI\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fi_FI\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"FJ\";a:14:{s:13:\"currency_code\";s:3:\"FJD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_FJ\";s:4:\"name\";s:13:\"Fijian dollar\";s:8:\"singular\";s:13:\"Fijian dollar\";s:6:\"plural\";s:14:\"Fijian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_FJ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"FK\";a:14:{s:13:\"currency_code\";s:3:\"FKP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_FK\";s:4:\"name\";s:22:\"Falkland Islands pound\";s:8:\"singular\";s:22:\"Falkland Islands pound\";s:6:\"plural\";s:23:\"Falkland Islands pounds\";s:12:\"short_symbol\";s:2:\"Â£\";s:7:\"locales\";a:2:{s:5:\"en_FK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"FM\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_FM\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"FO\";a:14:{s:13:\"currency_code\";s:3:\"DKK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fo_FO\";s:4:\"name\";s:12:\"Danish krone\";s:8:\"singular\";s:12:\"Danish krone\";s:6:\"plural\";s:13:\"Danish kroner\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:4:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"da_DK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fo_FO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"kl_GL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"FR\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_FR\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"GA\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_GA\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GB\";a:14:{s:13:\"currency_code\";s:3:\"GBP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"oz\";s:14:\"dimension_unit\";s:4:\"foot\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GB\";s:4:\"name\";s:14:\"Pound sterling\";s:8:\"singular\";s:13:\"British pound\";s:6:\"plural\";s:14:\"British pounds\";s:12:\"short_symbol\";s:2:\"Â£\";s:7:\"locales\";a:9:{s:5:\"en_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_JE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ga_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"cy_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gd_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gv_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GD\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GD\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GE\";a:14:{s:13:\"currency_code\";s:3:\"GEL\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ka_GE\";s:4:\"name\";s:13:\"Georgian lari\";s:8:\"singular\";s:13:\"Georgian lari\";s:6:\"plural\";s:14:\"Georgian laris\";s:12:\"short_symbol\";s:3:\"â‚¾\";s:7:\"locales\";a:3:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ka_GE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"os_GE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"GF\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_GF\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"GG\";a:14:{s:13:\"currency_code\";s:3:\"GBP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GG\";s:4:\"name\";s:14:\"Pound sterling\";s:8:\"singular\";s:13:\"British pound\";s:6:\"plural\";s:14:\"British pounds\";s:12:\"short_symbol\";s:2:\"Â£\";s:7:\"locales\";a:9:{s:5:\"en_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_JE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ga_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"cy_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gd_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gv_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GH\";a:14:{s:13:\"currency_code\";s:3:\"GHS\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ak_GH\";s:4:\"name\";s:10:\"Ghana cedi\";s:8:\"singular\";s:13:\"Ghanaian cedi\";s:6:\"plural\";s:14:\"Ghanaian cedis\";s:12:\"short_symbol\";s:5:\"GHâ‚µ\";s:7:\"locales\";a:4:{s:5:\"en_GH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ak_GH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ee_GH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GI\";a:14:{s:13:\"currency_code\";s:3:\"GIP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GI\";s:4:\"name\";s:15:\"Gibraltar pound\";s:8:\"singular\";s:15:\"Gibraltar pound\";s:6:\"plural\";s:16:\"Gibraltar pounds\";s:12:\"short_symbol\";s:2:\"Â£\";s:7:\"locales\";a:2:{s:5:\"en_GI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GL\";a:14:{s:13:\"currency_code\";s:3:\"DKK\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"kl_GL\";s:4:\"name\";s:12:\"Danish krone\";s:8:\"singular\";s:12:\"Danish krone\";s:6:\"plural\";s:13:\"Danish kroner\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:4:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"da_DK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fo_FO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"kl_GL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GM\";a:14:{s:13:\"currency_code\";s:3:\"GMD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GM\";s:4:\"name\";s:14:\"Gambian dalasi\";s:8:\"singular\";s:14:\"Gambian dalasi\";s:6:\"plural\";s:15:\"Gambian dalasis\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_GM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GN\";a:14:{s:13:\"currency_code\";s:3:\"GNF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_GN\";s:4:\"name\";s:13:\"Guinean franc\";s:8:\"singular\";s:13:\"Guinean franc\";s:6:\"plural\";s:14:\"Guinean francs\";s:12:\"short_symbol\";s:2:\"FG\";s:7:\"locales\";a:2:{s:5:\"fr_GN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"GP\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_GP\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"GQ\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_GQ\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GR\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"el_GR\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"GT\";a:14:{s:13:\"currency_code\";s:3:\"GTQ\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_GT\";s:4:\"name\";s:18:\"Guatemalan quetzal\";s:8:\"singular\";s:18:\"Guatemalan quetzal\";s:6:\"plural\";s:19:\"Guatemalan quetzals\";s:12:\"short_symbol\";s:1:\"Q\";s:7:\"locales\";a:2:{s:5:\"es_GT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GU\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GU\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"GW\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_GW\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"GY\";a:14:{s:13:\"currency_code\";s:3:\"GYD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GY\";s:4:\"name\";s:15:\"Guyanese dollar\";s:8:\"singular\";s:16:\"Guyanaese dollar\";s:6:\"plural\";s:17:\"Guyanaese dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_GY\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"HK\";a:14:{s:13:\"currency_code\";s:3:\"HKD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:10:\"zh_Hant_HK\";s:4:\"name\";s:16:\"Hong Kong dollar\";s:8:\"singular\";s:16:\"Hong Kong dollar\";s:6:\"plural\";s:17:\"Hong Kong dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:3:{s:5:\"en_HK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:10:\"zh_Hant_HK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"HN\";a:14:{s:13:\"currency_code\";s:3:\"HNL\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_HN\";s:4:\"name\";s:16:\"Honduran lempira\";s:8:\"singular\";s:16:\"Honduran lempira\";s:6:\"plural\";s:17:\"Honduran lempiras\";s:12:\"short_symbol\";s:1:\"L\";s:7:\"locales\";a:2:{s:5:\"es_HN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"HR\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"hr_HR\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"HT\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_HT\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"HU\";a:14:{s:13:\"currency_code\";s:3:\"HUF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"hu_HU\";s:4:\"name\";s:16:\"Hungarian forint\";s:8:\"singular\";s:16:\"Hungarian forint\";s:6:\"plural\";s:17:\"Hungarian forints\";s:12:\"short_symbol\";s:2:\"Ft\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"hu_HU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"IC\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_IC\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ID\";a:14:{s:13:\"currency_code\";s:3:\"IDR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"id_ID\";s:4:\"name\";s:17:\"Indonesian rupiah\";s:8:\"singular\";s:17:\"Indonesian rupiah\";s:6:\"plural\";s:18:\"Indonesian rupiahs\";s:12:\"short_symbol\";s:2:\"Rp\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"id_ID\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"IE\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_IE\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"IL\";a:14:{s:13:\"currency_code\";s:3:\"ILS\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"he_IL\";s:4:\"name\";s:18:\"Israeli new shekel\";s:8:\"singular\";s:18:\"Israeli new shekel\";s:6:\"plural\";s:19:\"Israeli new shekels\";s:12:\"short_symbol\";s:3:\"â‚ª\";s:7:\"locales\";a:4:{s:5:\"ar_IL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ar_PS\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"he_IL\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"IM\";a:14:{s:13:\"currency_code\";s:3:\"GBP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_IM\";s:4:\"name\";s:14:\"Pound sterling\";s:8:\"singular\";s:13:\"British pound\";s:6:\"plural\";s:14:\"British pounds\";s:12:\"short_symbol\";s:2:\"Â£\";s:7:\"locales\";a:9:{s:5:\"en_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_JE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ga_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"cy_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gd_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gv_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"IN\";a:14:{s:13:\"currency_code\";s:3:\"INR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"hi_IN\";s:4:\"name\";s:12:\"Indian rupee\";s:8:\"singular\";s:12:\"Indian rupee\";s:6:\"plural\";s:13:\"Indian rupees\";s:12:\"short_symbol\";s:3:\"â‚¹\";s:7:\"locales\";a:19:{s:5:\"bn_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}s:5:\"en_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ne_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ur_IN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"as_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"dz_BT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gu_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"hi_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"kn_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"kok_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:6:\"mai_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ml_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mr_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"or_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sa_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sd_PK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ta_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"te_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"IO\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_IO\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"IQ\";a:14:{s:13:\"currency_code\";s:3:\"IQD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_IQ\";s:4:\"name\";s:11:\"Iraqi dinar\";s:8:\"singular\";s:11:\"Iraqi dinar\";s:6:\"plural\";s:12:\"Iraqi dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_IQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ckb_IQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"IR\";a:14:{s:13:\"currency_code\";s:3:\"IRR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"fa_IR\";s:4:\"name\";s:12:\"Iranian rial\";s:8:\"singular\";s:12:\"Iranian rial\";s:6:\"plural\";s:13:\"Iranian rials\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fa_IR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"IS\";a:14:{s:13:\"currency_code\";s:3:\"ISK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"is_IS\";s:4:\"name\";s:16:\"Icelandic krÃ³na\";s:8:\"singular\";s:16:\"Icelandic krÃ³na\";s:6:\"plural\";s:17:\"Icelandic krÃ³nur\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"is_IS\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"IT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"it_IT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"JE\";a:14:{s:13:\"currency_code\";s:3:\"GBP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_JE\";s:4:\"name\";s:14:\"Pound sterling\";s:8:\"singular\";s:13:\"British pound\";s:6:\"plural\";s:14:\"British pounds\";s:12:\"short_symbol\";s:2:\"Â£\";s:7:\"locales\";a:9:{s:5:\"en_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_JE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ga_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"cy_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gd_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gv_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"JM\";a:14:{s:13:\"currency_code\";s:3:\"JMD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_JM\";s:4:\"name\";s:15:\"Jamaican dollar\";s:8:\"singular\";s:15:\"Jamaican dollar\";s:6:\"plural\";s:16:\"Jamaican dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_JM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"JO\";a:14:{s:13:\"currency_code\";s:3:\"JOD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_JO\";s:4:\"name\";s:15:\"Jordanian dinar\";s:8:\"singular\";s:15:\"Jordanian dinar\";s:6:\"plural\";s:16:\"Jordanian dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_JO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ar_PS\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"JP\";a:14:{s:13:\"currency_code\";s:3:\"JPY\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ja_JP\";s:4:\"name\";s:12:\"Japanese yen\";s:8:\"singular\";s:12:\"Japanese yen\";s:6:\"plural\";s:12:\"Japanese yen\";s:12:\"short_symbol\";s:2:\"Â¥\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ja_JP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KE\";a:14:{s:13:\"currency_code\";s:3:\"KES\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sw_KE\";s:4:\"name\";s:15:\"Kenyan shilling\";s:8:\"singular\";s:15:\"Kenyan shilling\";s:6:\"plural\";s:16:\"Kenyan shillings\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"en_KE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sw_KE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KG\";a:14:{s:13:\"currency_code\";s:3:\"KGS\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ky_KG\";s:4:\"name\";s:15:\"Kyrgyzstani som\";s:8:\"singular\";s:14:\"Kyrgystani som\";s:6:\"plural\";s:15:\"Kyrgystani soms\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ru_KG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ky_KG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"KH\";a:14:{s:13:\"currency_code\";s:3:\"KHR\";s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"km_KH\";s:4:\"name\";s:14:\"Cambodian riel\";s:8:\"singular\";s:14:\"Cambodian riel\";s:6:\"plural\";s:15:\"Cambodian riels\";s:12:\"short_symbol\";s:3:\"áŸ›\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}s:5:\"km_KH\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}}}s:2:\"KI\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_KI\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KM\";a:14:{s:13:\"currency_code\";s:3:\"KMF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_KM\";s:4:\"name\";s:14:\"Comorian franc\";s:8:\"singular\";s:14:\"Comorian franc\";s:6:\"plural\";s:15:\"Comorian francs\";s:12:\"short_symbol\";s:2:\"CF\";s:7:\"locales\";a:3:{s:5:\"ar_KM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_KM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"KN\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_KN\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KP\";a:14:{s:13:\"currency_code\";s:3:\"KPW\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ko_KP\";s:4:\"name\";s:16:\"North Korean won\";s:8:\"singular\";s:16:\"North Korean won\";s:6:\"plural\";s:16:\"North Korean won\";s:12:\"short_symbol\";s:3:\"â‚©\";s:7:\"locales\";a:2:{s:5:\"ko_KP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KR\";a:14:{s:13:\"currency_code\";s:3:\"KRW\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ko_KR\";s:4:\"name\";s:16:\"South Korean won\";s:8:\"singular\";s:16:\"South Korean won\";s:6:\"plural\";s:16:\"South Korean won\";s:12:\"short_symbol\";s:3:\"â‚©\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ko_KR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KW\";a:14:{s:13:\"currency_code\";s:3:\"KWD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_KW\";s:4:\"name\";s:13:\"Kuwaiti dinar\";s:8:\"singular\";s:13:\"Kuwaiti dinar\";s:6:\"plural\";s:14:\"Kuwaiti dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_KW\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"KY\";a:14:{s:13:\"currency_code\";s:3:\"KYD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_KY\";s:4:\"name\";s:21:\"Cayman Islands dollar\";s:8:\"singular\";s:21:\"Cayman Islands dollar\";s:6:\"plural\";s:22:\"Cayman Islands dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_KY\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KZ\";a:14:{s:13:\"currency_code\";s:3:\"KZT\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ru_KZ\";s:4:\"name\";s:17:\"Kazakhstani tenge\";s:8:\"singular\";s:17:\"Kazakhstani tenge\";s:6:\"plural\";s:18:\"Kazakhstani tenges\";s:12:\"short_symbol\";s:3:\"â‚¸\";s:7:\"locales\";a:3:{s:5:\"ru_KZ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"kk_KZ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LA\";a:14:{s:13:\"currency_code\";s:3:\"LAK\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"lo_LA\";s:4:\"name\";s:7:\"Lao kip\";s:8:\"singular\";s:11:\"Laotian kip\";s:6:\"plural\";s:12:\"Laotian kips\";s:12:\"short_symbol\";s:3:\"â‚­\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"lo_LA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"LB\";a:14:{s:13:\"currency_code\";s:3:\"LBP\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_LB\";s:4:\"name\";s:14:\"Lebanese pound\";s:8:\"singular\";s:14:\"Lebanese pound\";s:6:\"plural\";s:15:\"Lebanese pounds\";s:12:\"short_symbol\";s:3:\"LÂ£\";s:7:\"locales\";a:2:{s:5:\"ar_LB\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LC\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_LC\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"LI\";a:14:{s:13:\"currency_code\";s:3:\"CHF\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"de_LI\";s:4:\"name\";s:11:\"Swiss franc\";s:8:\"singular\";s:11:\"Swiss franc\";s:6:\"plural\";s:12:\"Swiss francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:8:{s:5:\"de_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_LI\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_CH\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"gsw_LI\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:6:\"gsw_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"rm_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LK\";a:14:{s:13:\"currency_code\";s:3:\"LKR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"si_LK\";s:4:\"name\";s:16:\"Sri Lankan rupee\";s:8:\"singular\";s:16:\"Sri Lankan rupee\";s:6:\"plural\";s:17:\"Sri Lankan rupees\";s:12:\"short_symbol\";s:2:\"Rs\";s:7:\"locales\";a:3:{s:5:\"ta_LK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"si_LK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"LR\";a:14:{s:13:\"currency_code\";s:3:\"LRD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_LR\";s:4:\"name\";s:15:\"Liberian dollar\";s:8:\"singular\";s:15:\"Liberian dollar\";s:6:\"plural\";s:16:\"Liberian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_LR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"LS\";a:14:{s:13:\"currency_code\";s:3:\"LSL\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_LS\";s:4:\"name\";s:12:\"Lesotho loti\";s:8:\"singular\";s:12:\"Lesotho loti\";s:6:\"plural\";s:13:\"Lesotho lotis\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_LS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"LT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"lt_LT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LU\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_LU\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LV\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"lv_LV\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LY\";a:14:{s:13:\"currency_code\";s:3:\"LYD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_LY\";s:4:\"name\";s:12:\"Libyan dinar\";s:8:\"singular\";s:12:\"Libyan dinar\";s:6:\"plural\";s:13:\"Libyan dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_LY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MA\";a:14:{s:13:\"currency_code\";s:3:\"MAD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_MA\";s:4:\"name\";s:15:\"Moroccan dirham\";s:8:\"singular\";s:15:\"Moroccan dirham\";s:6:\"plural\";s:16:\"Moroccan dirhams\";s:12:\"short_symbol\";N;s:7:\"locales\";a:5:{s:5:\"ar_EH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ar_MA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_MA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:6:\"tzm_MA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MC\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_MC\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MD\";a:14:{s:13:\"currency_code\";s:3:\"MDL\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ro_MD\";s:4:\"name\";s:12:\"Moldovan leu\";s:8:\"singular\";s:12:\"Moldovan leu\";s:6:\"plural\";s:12:\"Moldovan lei\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ro_MD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ME\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:10:\"sr_Latn_ME\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MF\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_MF\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MG\";a:14:{s:13:\"currency_code\";s:3:\"MGA\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"mg_MG\";s:4:\"name\";s:15:\"Malagasy ariary\";s:8:\"singular\";s:15:\"Malagasy ariary\";s:6:\"plural\";s:17:\"Malagasy ariaries\";s:12:\"short_symbol\";s:2:\"Ar\";s:7:\"locales\";a:4:{s:5:\"en_MG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_MG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mg_MG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MH\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_MH\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MK\";a:14:{s:13:\"currency_code\";s:3:\"MKD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"mk_MK\";s:4:\"name\";s:16:\"Macedonian denar\";s:8:\"singular\";s:16:\"Macedonian denar\";s:6:\"plural\";s:17:\"Macedonian denari\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"sq_MK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mk_MK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ML\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_ML\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MM\";a:14:{s:13:\"currency_code\";s:3:\"MMK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"my_MM\";s:4:\"name\";s:12:\"Burmese kyat\";s:8:\"singular\";s:12:\"Myanmar kyat\";s:6:\"plural\";s:13:\"Myanmar kyats\";s:12:\"short_symbol\";s:1:\"K\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"my_MM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MN\";a:14:{s:13:\"currency_code\";s:3:\"MNT\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"mn_MN\";s:4:\"name\";s:18:\"Mongolian tÃ¶grÃ¶g\";s:8:\"singular\";s:16:\"Mongolian tugrik\";s:6:\"plural\";s:17:\"Mongolian tugriks\";s:12:\"short_symbol\";s:3:\"â‚®\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"mn_MN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MO\";a:14:{s:13:\"currency_code\";s:3:\"MOP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:10:\"zh_Hant_MO\";s:4:\"name\";s:15:\"Macanese pataca\";s:8:\"singular\";s:15:\"Macanese pataca\";s:6:\"plural\";s:16:\"Macanese patacas\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"pt_MO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"zh_Hant_MO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MP\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_MP\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MQ\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_MQ\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MR\";a:14:{s:13:\"currency_code\";s:3:\"MRU\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_MR\";s:4:\"name\";s:19:\"Mauritanian ouguiya\";s:8:\"singular\";s:19:\"Mauritanian ouguiya\";s:6:\"plural\";s:20:\"Mauritanian ouguiyas\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_MR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MS\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_MS\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"MT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"mt_MT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MU\";a:14:{s:13:\"currency_code\";s:3:\"MUR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_MU\";s:4:\"name\";s:15:\"Mauritian rupee\";s:8:\"singular\";s:15:\"Mauritian rupee\";s:6:\"plural\";s:16:\"Mauritian rupees\";s:12:\"short_symbol\";s:2:\"Rs\";s:7:\"locales\";a:3:{s:5:\"en_MU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_MU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"MV\";a:14:{s:13:\"currency_code\";s:3:\"MVR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:0:\"\";s:4:\"name\";s:17:\"Maldivian rufiyaa\";s:8:\"singular\";s:17:\"Maldivian rufiyaa\";s:6:\"plural\";s:18:\"Maldivian rufiyaas\";s:12:\"short_symbol\";N;s:7:\"locales\";a:1:{s:7:\"default\";a:0:{}}}s:2:\"MW\";a:14:{s:13:\"currency_code\";s:3:\"MWK\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_MW\";s:4:\"name\";s:15:\"Malawian kwacha\";s:8:\"singular\";s:15:\"Malawian kwacha\";s:6:\"plural\";s:16:\"Malawian kwachas\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_MW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"MX\";a:14:{s:13:\"currency_code\";s:3:\"MXN\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_MX\";s:4:\"name\";s:12:\"Mexican peso\";s:8:\"singular\";s:12:\"Mexican peso\";s:6:\"plural\";s:13:\"Mexican pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_MX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"MY\";a:14:{s:13:\"currency_code\";s:3:\"MYR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ms_MY\";s:4:\"name\";s:17:\"Malaysian ringgit\";s:8:\"singular\";s:17:\"Malaysian ringgit\";s:6:\"plural\";s:18:\"Malaysian ringgits\";s:12:\"short_symbol\";s:2:\"RM\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ms_MY\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"MZ\";a:14:{s:13:\"currency_code\";s:3:\"MZN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_MZ\";s:4:\"name\";s:18:\"Mozambican metical\";s:8:\"singular\";s:18:\"Mozambican metical\";s:6:\"plural\";s:19:\"Mozambican meticals\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"pt_MZ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"NA\";a:14:{s:13:\"currency_code\";s:3:\"NAD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NA\";s:4:\"name\";s:15:\"Namibian dollar\";s:8:\"singular\";s:15:\"Namibian dollar\";s:6:\"plural\";s:16:\"Namibian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_NA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"NC\";a:14:{s:13:\"currency_code\";s:3:\"XPF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_NC\";s:4:\"name\";s:9:\"CFP franc\";s:8:\"singular\";s:9:\"CFP franc\";s:6:\"plural\";s:10:\"CFP francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"fr_NC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_WF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"NE\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_NE\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"NF\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NF\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"NG\";a:14:{s:13:\"currency_code\";s:3:\"NGN\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NG\";s:4:\"name\";s:14:\"Nigerian naira\";s:8:\"singular\";s:14:\"Nigerian naira\";s:6:\"plural\";s:15:\"Nigerian nairas\";s:12:\"short_symbol\";s:3:\"â‚¦\";s:7:\"locales\";a:3:{s:5:\"en_NG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"yo_NG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"NI\";a:14:{s:13:\"currency_code\";s:3:\"NIO\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_NI\";s:4:\"name\";s:19:\"Nicaraguan cÃ³rdoba\";s:8:\"singular\";s:19:\"Nicaraguan cÃ³rdoba\";s:6:\"plural\";s:20:\"Nicaraguan cÃ³rdobas\";s:12:\"short_symbol\";s:2:\"C$\";s:7:\"locales\";a:2:{s:5:\"es_NI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"NL\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_NL\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"NO\";a:14:{s:13:\"currency_code\";s:3:\"NOK\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nb_NO\";s:4:\"name\";s:15:\"Norwegian krone\";s:8:\"singular\";s:15:\"Norwegian krone\";s:6:\"plural\";s:16:\"Norwegian kroner\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:5:{s:5:\"nb_SJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nb_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nn_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"se_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"NP\";a:14:{s:13:\"currency_code\";s:3:\"NPR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ne_NP\";s:4:\"name\";s:14:\"Nepalese rupee\";s:8:\"singular\";s:14:\"Nepalese rupee\";s:6:\"plural\";s:15:\"Nepalese rupees\";s:12:\"short_symbol\";s:2:\"Rs\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ne_NP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"NR\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NR\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"NU\";a:14:{s:13:\"currency_code\";s:3:\"NZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NU\";s:4:\"name\";s:18:\"New Zealand dollar\";s:8:\"singular\";s:18:\"New Zealand dollar\";s:6:\"plural\";s:19:\"New Zealand dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mi_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"NZ\";a:14:{s:13:\"currency_code\";s:3:\"NZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NZ\";s:4:\"name\";s:18:\"New Zealand dollar\";s:8:\"singular\";s:18:\"New Zealand dollar\";s:6:\"plural\";s:19:\"New Zealand dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mi_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"OM\";a:14:{s:13:\"currency_code\";s:3:\"OMR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_OM\";s:4:\"name\";s:10:\"Omani rial\";s:8:\"singular\";s:10:\"Omani rial\";s:6:\"plural\";s:11:\"Omani rials\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_OM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PA\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_PA\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PE\";a:14:{s:13:\"currency_code\";s:3:\"PEN\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_PE\";s:4:\"name\";s:3:\"Sol\";s:8:\"singular\";s:12:\"Peruvian sol\";s:6:\"plural\";s:14:\"Peruvian soles\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"es_PE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"qu_PE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PF\";a:14:{s:13:\"currency_code\";s:3:\"XPF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_PF\";s:4:\"name\";s:9:\"CFP franc\";s:8:\"singular\";s:9:\"CFP franc\";s:6:\"plural\";s:10:\"CFP francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"fr_NC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_WF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PG\";a:14:{s:13:\"currency_code\";s:3:\"PGK\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_PG\";s:4:\"name\";s:22:\"Papua New Guinean kina\";s:8:\"singular\";s:22:\"Papua New Guinean kina\";s:6:\"plural\";s:22:\"Papua New Guinean kina\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_PG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"PH\";a:14:{s:13:\"currency_code\";s:3:\"PHP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_PH\";s:4:\"name\";s:15:\"Philippine peso\";s:8:\"singular\";s:15:\"Philippine piso\";s:6:\"plural\";s:16:\"Philippine pisos\";s:12:\"short_symbol\";s:3:\"â‚±\";s:7:\"locales\";a:4:{s:5:\"en_PH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"ceb_PH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"fil_PH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"PK\";a:14:{s:13:\"currency_code\";s:3:\"PKR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ur_PK\";s:4:\"name\";s:15:\"Pakistani rupee\";s:8:\"singular\";s:15:\"Pakistani rupee\";s:6:\"plural\";s:16:\"Pakistani rupees\";s:12:\"short_symbol\";s:2:\"Rs\";s:7:\"locales\";a:3:{s:5:\"en_PK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ur_PK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PL\";a:14:{s:13:\"currency_code\";s:3:\"PLN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pl_PL\";s:4:\"name\";s:13:\"Polish zÅ‚oty\";s:8:\"singular\";s:12:\"Polish zloty\";s:6:\"plural\";s:13:\"Polish zlotys\";s:12:\"short_symbol\";s:3:\"zÅ‚\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pl_PL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PM\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_PM\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PN\";a:14:{s:13:\"currency_code\";s:3:\"NZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_PN\";s:4:\"name\";s:18:\"New Zealand dollar\";s:8:\"singular\";s:18:\"New Zealand dollar\";s:6:\"plural\";s:19:\"New Zealand dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mi_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PR\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_PR\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PS\";a:14:{s:13:\"currency_code\";s:3:\"JOD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_PS\";s:4:\"name\";s:15:\"Jordanian dinar\";s:8:\"singular\";s:15:\"Jordanian dinar\";s:6:\"plural\";s:16:\"Jordanian dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_JO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ar_PS\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_PT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PW\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_PW\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PY\";a:14:{s:13:\"currency_code\";s:3:\"PYG\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_PY\";s:4:\"name\";s:19:\"Paraguayan guaranÃ­\";s:8:\"singular\";s:18:\"Paraguayan guarani\";s:6:\"plural\";s:19:\"Paraguayan guaranis\";s:12:\"short_symbol\";s:3:\"â‚²\";s:7:\"locales\";a:2:{s:5:\"es_PY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"QA\";a:14:{s:13:\"currency_code\";s:3:\"QAR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_QA\";s:4:\"name\";s:12:\"Qatari riyal\";s:8:\"singular\";s:11:\"Qatari rial\";s:6:\"plural\";s:12:\"Qatari rials\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_QA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"RE\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_RE\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"RO\";a:14:{s:13:\"currency_code\";s:3:\"RON\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ro_RO\";s:4:\"name\";s:12:\"Romanian leu\";s:8:\"singular\";s:12:\"Romanian leu\";s:6:\"plural\";s:12:\"Romanian lei\";s:12:\"short_symbol\";s:3:\"lei\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ro_RO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"RS\";a:14:{s:13:\"currency_code\";s:3:\"RSD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sr_RS\";s:4:\"name\";s:13:\"Serbian dinar\";s:8:\"singular\";s:13:\"Serbian dinar\";s:6:\"plural\";s:14:\"Serbian dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sr_RS\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"RU\";a:14:{s:13:\"currency_code\";s:3:\"RUB\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ru_RU\";s:4:\"name\";s:13:\"Russian ruble\";s:8:\"singular\";s:13:\"Russian ruble\";s:6:\"plural\";s:14:\"Russian rubles\";s:12:\"short_symbol\";s:3:\"â‚½\";s:7:\"locales\";a:5:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ce_RU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ru_RU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"sah_RU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tt_RU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"RW\";a:14:{s:13:\"currency_code\";s:3:\"RWF\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"rw_RW\";s:4:\"name\";s:13:\"Rwandan franc\";s:8:\"singular\";s:13:\"Rwandan franc\";s:6:\"plural\";s:14:\"Rwandan francs\";s:12:\"short_symbol\";s:2:\"RF\";s:7:\"locales\";a:4:{s:5:\"en_RW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_RW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"rw_RW\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"SA\";a:14:{s:13:\"currency_code\";s:3:\"SAR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_SA\";s:4:\"name\";s:11:\"Saudi riyal\";s:8:\"singular\";s:11:\"Saudi riyal\";s:6:\"plural\";s:12:\"Saudi riyals\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_SA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SB\";a:14:{s:13:\"currency_code\";s:3:\"SBD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SB\";s:4:\"name\";s:22:\"Solomon Islands dollar\";s:8:\"singular\";s:22:\"Solomon Islands dollar\";s:6:\"plural\";s:23:\"Solomon Islands dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_SB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SC\";a:14:{s:13:\"currency_code\";s:3:\"SCR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_SC\";s:4:\"name\";s:17:\"Seychellois rupee\";s:8:\"singular\";s:17:\"Seychellois rupee\";s:6:\"plural\";s:18:\"Seychellois rupees\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"en_SC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_SC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SD\";a:14:{s:13:\"currency_code\";s:3:\"SDG\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_SD\";s:4:\"name\";s:14:\"Sudanese pound\";s:8:\"singular\";s:14:\"Sudanese pound\";s:6:\"plural\";s:15:\"Sudanese pounds\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_SD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_SD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SE\";a:14:{s:13:\"currency_code\";s:3:\"SEK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sv_SE\";s:4:\"name\";s:13:\"Swedish krona\";s:8:\"singular\";s:13:\"Swedish krona\";s:6:\"plural\";s:14:\"Swedish kronor\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_SE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SG\";a:14:{s:13:\"currency_code\";s:3:\"SGD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SG\";s:4:\"name\";s:16:\"Singapore dollar\";s:8:\"singular\";s:16:\"Singapore dollar\";s:6:\"plural\";s:17:\"Singapore dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:4:{s:5:\"en_SG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ms_SG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ta_SG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SH\";a:14:{s:13:\"currency_code\";s:3:\"SHP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SH\";s:4:\"name\";s:18:\"Saint Helena pound\";s:8:\"singular\";s:16:\"St. Helena pound\";s:6:\"plural\";s:17:\"St. Helena pounds\";s:12:\"short_symbol\";s:2:\"Â£\";s:7:\"locales\";a:2:{s:5:\"en_SH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SI\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sl_SI\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SJ\";a:14:{s:13:\"currency_code\";s:3:\"NOK\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nb_SJ\";s:4:\"name\";s:15:\"Norwegian krone\";s:8:\"singular\";s:15:\"Norwegian krone\";s:6:\"plural\";s:16:\"Norwegian kroner\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:5:{s:5:\"nb_SJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nb_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nn_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"se_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SK\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sk_SK\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SL\";a:14:{s:13:\"currency_code\";s:3:\"SLL\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SL\";s:4:\"name\";s:20:\"Sierra Leonean leone\";s:8:\"singular\";s:20:\"Sierra Leonean leone\";s:6:\"plural\";s:21:\"Sierra Leonean leones\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_SL\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SM\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"it_SM\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SN\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"wo_SN\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"SO\";a:14:{s:13:\"currency_code\";s:3:\"SOS\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"so_SO\";s:4:\"name\";s:15:\"Somali shilling\";s:8:\"singular\";s:15:\"Somali shilling\";s:6:\"plural\";s:16:\"Somali shillings\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_SO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"so_SO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SR\";a:14:{s:13:\"currency_code\";s:3:\"SRD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_SR\";s:4:\"name\";s:17:\"Surinamese dollar\";s:8:\"singular\";s:17:\"Surinamese dollar\";s:6:\"plural\";s:18:\"Surinamese dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"nl_SR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"SS\";a:14:{s:13:\"currency_code\";s:3:\"SSP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SS\";s:4:\"name\";s:20:\"South Sudanese pound\";s:8:\"singular\";s:20:\"South Sudanese pound\";s:6:\"plural\";s:21:\"South Sudanese pounds\";s:12:\"short_symbol\";s:2:\"Â£\";s:7:\"locales\";a:2:{s:5:\"en_SS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"ST\";a:14:{s:13:\"currency_code\";s:3:\"STN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_ST\";s:4:\"name\";s:30:\"SÃ£o TomÃ© and PrÃ­ncipe dobra\";s:8:\"singular\";s:28:\"SÃ£o TomÃ© & PrÃ­ncipe dobra\";s:6:\"plural\";s:29:\"SÃ£o TomÃ© & PrÃ­ncipe dobras\";s:12:\"short_symbol\";s:2:\"Db\";s:7:\"locales\";a:2:{s:5:\"pt_ST\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SV\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_SV\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"SX\";a:14:{s:13:\"currency_code\";s:3:\"ANG\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SX\";s:4:\"name\";s:29:\"Netherlands Antillean guilder\";s:8:\"singular\";s:29:\"Netherlands Antillean guilder\";s:6:\"plural\";s:30:\"Netherlands Antillean guilders\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"en_SX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_CW\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nl_SX\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"SY\";a:14:{s:13:\"currency_code\";s:3:\"SYP\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_SY\";s:4:\"name\";s:12:\"Syrian pound\";s:8:\"singular\";s:12:\"Syrian pound\";s:6:\"plural\";s:13:\"Syrian pounds\";s:12:\"short_symbol\";s:2:\"Â£\";s:7:\"locales\";a:3:{s:5:\"ar_SY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SY\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SZ\";a:14:{s:13:\"currency_code\";s:3:\"SZL\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SZ\";s:4:\"name\";s:15:\"Swazi lilangeni\";s:8:\"singular\";s:15:\"Swazi lilangeni\";s:6:\"plural\";s:16:\"Swazi emalangeni\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_SZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TC\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_TC\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TD\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_TD\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TG\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_TG\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TH\";a:14:{s:13:\"currency_code\";s:3:\"THB\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"th_TH\";s:4:\"name\";s:9:\"Thai baht\";s:8:\"singular\";s:9:\"Thai baht\";s:6:\"plural\";s:9:\"Thai baht\";s:12:\"short_symbol\";s:3:\"à¸¿\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"th_TH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TJ\";a:14:{s:13:\"currency_code\";s:3:\"TJS\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"tg_TJ\";s:4:\"name\";s:18:\"Tajikistani somoni\";s:8:\"singular\";s:18:\"Tajikistani somoni\";s:6:\"plural\";s:19:\"Tajikistani somonis\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tg_TJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"TK\";a:14:{s:13:\"currency_code\";s:3:\"NZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_TK\";s:4:\"name\";s:18:\"New Zealand dollar\";s:8:\"singular\";s:18:\"New Zealand dollar\";s:6:\"plural\";s:19:\"New Zealand dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mi_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TL\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_TL\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TM\";a:14:{s:13:\"currency_code\";s:3:\"TMT\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"tk_TM\";s:4:\"name\";s:18:\"Turkmenistan manat\";s:8:\"singular\";s:19:\"Turkmenistani manat\";s:6:\"plural\";s:19:\"Turkmenistani manat\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tk_TM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"TN\";a:14:{s:13:\"currency_code\";s:3:\"TND\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_TN\";s:4:\"name\";s:14:\"Tunisian dinar\";s:8:\"singular\";s:14:\"Tunisian dinar\";s:6:\"plural\";s:15:\"Tunisian dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_TN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_TN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TO\";a:14:{s:13:\"currency_code\";s:3:\"TOP\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"to_TO\";s:4:\"name\";s:15:\"Tongan paÊ»anga\";s:8:\"singular\";s:15:\"Tongan paÊ»anga\";s:6:\"plural\";s:15:\"Tongan paÊ»anga\";s:12:\"short_symbol\";s:2:\"T$\";s:7:\"locales\";a:3:{s:5:\"en_TO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"to_TO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TR\";a:14:{s:13:\"currency_code\";s:3:\"TRY\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"tr_TR\";s:4:\"name\";s:12:\"Turkish lira\";s:8:\"singular\";s:12:\"Turkish lira\";s:6:\"plural\";s:12:\"Turkish Lira\";s:12:\"short_symbol\";s:3:\"â‚º\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"tr_TR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TT\";a:14:{s:13:\"currency_code\";s:3:\"TTD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_TT\";s:4:\"name\";s:26:\"Trinidad and Tobago dollar\";s:8:\"singular\";s:24:\"Trinidad & Tobago dollar\";s:6:\"plural\";s:25:\"Trinidad & Tobago dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_TT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TV\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_TV\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TW\";a:14:{s:13:\"currency_code\";s:3:\"TWD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:7:\"zh_Hant\";s:4:\"name\";s:17:\"New Taiwan dollar\";s:8:\"singular\";s:17:\"New Taiwan dollar\";s:6:\"plural\";s:18:\"New Taiwan dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:7:\"zh_Hant\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TZ\";a:14:{s:13:\"currency_code\";s:3:\"TZS\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sw_TZ\";s:4:\"name\";s:18:\"Tanzanian shilling\";s:8:\"singular\";s:18:\"Tanzanian shilling\";s:6:\"plural\";s:19:\"Tanzanian shillings\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"en_TZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sw_TZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"UA\";a:14:{s:13:\"currency_code\";s:3:\"UAH\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"uk_UA\";s:4:\"name\";s:17:\"Ukrainian hryvnia\";s:8:\"singular\";s:17:\"Ukrainian hryvnia\";s:6:\"plural\";s:18:\"Ukrainian hryvnias\";s:12:\"short_symbol\";s:3:\"â‚´\";s:7:\"locales\";a:3:{s:5:\"ru_UA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"uk_UA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"UG\";a:14:{s:13:\"currency_code\";s:3:\"UGX\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sw_UG\";s:4:\"name\";s:16:\"Ugandan shilling\";s:8:\"singular\";s:16:\"Ugandan shilling\";s:6:\"plural\";s:17:\"Ugandan shillings\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"en_UG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sw_UG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"UM\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_UM\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"US\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"oz\";s:14:\"dimension_unit\";s:4:\"foot\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_US\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"UY\";a:14:{s:13:\"currency_code\";s:3:\"UYU\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_UY\";s:4:\"name\";s:14:\"Uruguayan peso\";s:8:\"singular\";s:14:\"Uruguayan peso\";s:6:\"plural\";s:15:\"Uruguayan pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_UY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"UZ\";a:14:{s:13:\"currency_code\";s:3:\"UZS\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"uz_AF\";s:4:\"name\";s:15:\"Uzbekistani som\";s:8:\"singular\";s:15:\"Uzbekistani som\";s:6:\"plural\";s:15:\"Uzbekistani som\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"uz_AF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"VA\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"it_VA\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"VC\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_VC\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"VE\";a:14:{s:13:\"currency_code\";s:3:\"VES\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_VE\";s:4:\"name\";s:8:\"BolÃ­var\";s:8:\"singular\";s:19:\"Venezuelan bolÃ­var\";s:6:\"plural\";s:20:\"Venezuelan bolÃ­vars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"es_VE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"VG\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_VG\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"VI\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_VI\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"VN\";a:14:{s:13:\"currency_code\";s:3:\"VND\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"vi_VN\";s:4:\"name\";s:18:\"Vietnamese Ä‘á»“ng\";s:8:\"singular\";s:15:\"Vietnamese dong\";s:6:\"plural\";s:15:\"Vietnamese dong\";s:12:\"short_symbol\";s:3:\"â‚«\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"vi_VN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"VU\";a:14:{s:13:\"currency_code\";s:3:\"VUV\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_VU\";s:4:\"name\";s:12:\"Vanuatu vatu\";s:8:\"singular\";s:12:\"Vanuatu vatu\";s:6:\"plural\";s:13:\"Vanuatu vatus\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"en_VU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_VU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"WF\";a:14:{s:13:\"currency_code\";s:3:\"XPF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_WF\";s:4:\"name\";s:9:\"CFP franc\";s:8:\"singular\";s:9:\"CFP franc\";s:6:\"plural\";s:10:\"CFP francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"fr_NC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_WF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"WS\";a:14:{s:13:\"currency_code\";s:3:\"WST\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_WS\";s:4:\"name\";s:13:\"Samoan tÄlÄ\";s:8:\"singular\";s:11:\"Samoan tala\";s:6:\"plural\";s:11:\"Samoan tala\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_WS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"XK\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sq_XK\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"YE\";a:14:{s:13:\"currency_code\";s:3:\"YER\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_YE\";s:4:\"name\";s:11:\"Yemeni rial\";s:8:\"singular\";s:11:\"Yemeni rial\";s:6:\"plural\";s:12:\"Yemeni rials\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_YE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"YT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_YT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"â‚¬\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ZA\";a:14:{s:13:\"currency_code\";s:3:\"ZAR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_ZA\";s:4:\"name\";s:18:\"South African rand\";s:8:\"singular\";s:18:\"South African rand\";s:6:\"plural\";s:18:\"South African rand\";s:12:\"short_symbol\";s:1:\"R\";s:7:\"locales\";a:7:{s:5:\"en_LS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"af_ZA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"xh_ZA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"zu_ZA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"ZM\";a:14:{s:13:\"currency_code\";s:3:\"ZMW\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_ZM\";s:4:\"name\";s:14:\"Zambian kwacha\";s:8:\"singular\";s:14:\"Zambian kwacha\";s:6:\"plural\";s:15:\"Zambian kwachas\";s:12:\"short_symbol\";s:2:\"ZK\";s:7:\"locales\";a:2:{s:5:\"en_ZM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"ZW\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sn_ZW\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}}','off'),
(5779134,'_transient_timeout_geoip_23.82.104.96','1730289554','off'),
(5779135,'_transient_geoip_23.82.104.96','US','off'),
(5779152,'_transient_timeout_geoip_5.161.124.144','1730290219','off'),
(5779153,'_transient_geoip_5.161.124.144','US','off'),
(5779173,'_transient_timeout_action_scheduler_last_pastdue_actions_check','1730226127','off'),
(5779174,'_transient_action_scheduler_last_pastdue_actions_check','1730204527','off'),
(5779175,'_transient_timeout_elementor_remote_info_api_data_3.21.4','1730247728','off'),
(5779176,'_transient_elementor_remote_info_api_data_3.21.4','a:4:{s:9:\"timestamp\";s:10:\"1730201157\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:82:{i:0;a:4:{s:4:\"name\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-2\";s:5:\"title\";s:7:\"Classic\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-3\";s:5:\"title\";s:8:\"Showcase\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:6;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-4\";s:5:\"title\";s:5:\"Links\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:8;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:9;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-5\";s:5:\"title\";s:8:\"Services\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:10;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:11;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-6\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:12;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-7\";s:5:\"title\";s:13:\"Business Card\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:14;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:10:\"off-canvas\";s:5:\"title\";s:10:\"Off-Canvas\";s:4:\"icon\";s:16:\"eicon-off-canvas\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:25;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:27;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:33;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:34;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:35;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:36;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:37;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:38;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:39;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:40;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:41;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:43;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:51;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:75;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:76;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:77;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:78;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:79;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:80;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:81;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','off'),
(5779178,'_site_transient_timeout_community-events-81691815408f44b918cf72988c472a30','1730247732','off'),
(5779179,'_site_transient_community-events-81691815408f44b918cf72988c472a30','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"109.159.104.0\";}s:6:\"events\";a:3:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:75:\"WordUp Brighton November | \'Humanity\' Amnesty\'s Open Source WordPress Theme\";s:3:\"url\";s:55:\"https://www.meetup.com/wordup-brighton/events/304149918\";s:6:\"meetup\";s:34:\"WordUp Brighton (WordPress Meetup)\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/wordup-brighton/\";s:4:\"date\";s:19:\"2024-11-05 18:00:00\";s:8:\"end_date\";s:19:\"2024-11-05 20:00:00\";s:20:\"start_unix_timestamp\";i:1730829600;s:18:\"end_unix_timestamp\";i:1730836800;s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Brighton, United Kingdom\";s:7:\"country\";s:2:\"gb\";s:8:\"latitude\";d:50.82085;s:9:\"longitude\";d:-0.141028;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:45:\"Wordpress Tunbridge Wells Meetup at The House\";s:3:\"url\";s:78:\"https://www.meetup.com/tunbridge-wells-wordpress-meetup-group/events/302135204\";s:6:\"meetup\";s:38:\"Tunbridge Wells WordPress Meetup Group\";s:10:\"meetup_url\";s:62:\"https://www.meetup.com/tunbridge-wells-wordpress-meetup-group/\";s:4:\"date\";s:19:\"2024-11-12 19:00:00\";s:8:\"end_date\";s:19:\"2024-11-12 21:00:00\";s:20:\"start_unix_timestamp\";i:1731438000;s:18:\"end_unix_timestamp\";i:1731445200;s:8:\"location\";a:4:{s:8:\"location\";s:31:\"Tunbridge Wells, United Kingdom\";s:7:\"country\";s:2:\"gb\";s:8:\"latitude\";d:51.133114;s:9:\"longitude\";d:0.265242;}}i:2;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Netherlands\";s:3:\"url\";s:38:\"https://netherlands.wordcamp.org/2024/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2024-11-29 08:40:00\";s:8:\"end_date\";s:19:\"2024-11-30 00:00:00\";s:20:\"start_unix_timestamp\";i:1732866000;s:18:\"end_unix_timestamp\";i:1732921200;s:8:\"location\";a:4:{s:8:\"location\";s:35:\"Den Haag, Zuid-Holland, Netherlands\";s:7:\"country\";s:2:\"NL\";s:8:\"latitude\";d:52.0990637;s:9:\"longitude\";d:4.2975123;}}}}','off'),
(5779180,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1730247732','off'),
(5779181,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Oct 2024 08:12:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.8-alpha-59318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress Community Creates 1,000 Block Themes in 1,000 Days\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2024/10/wordpress-community-creates-1000-block-themes-in-1000-days/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2024 17:01:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"block editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:6:\"Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18029\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"In nearly 1,000 days, the WordPress community has created 1,000 Block themesâ€”coming together to use the full potential of the Site Editor and unleash new creative possibilities for everyone. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4143:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"536\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news.webp?resize=1024%2C536&#038;ssl=1\" alt=\"Layout of numerous colorful images of block themes laid out in a grid.\" class=\"wp-image-18033\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news-scaled.webp?resize=1024%2C536&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news-scaled.webp?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news-scaled.webp?resize=768%2C402&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news-scaled.webp?resize=1536%2C804&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news-scaled.webp?resize=2048%2C1072&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"is-style-default has-large-font-size\">In nearly 1,000 days, the WordPress community has created <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">1,000 Block themes</a>â€”coming together to use the full potential of the Site Editor and unleash new creative possibilities for everyone. </p>\n\n\n\n<p class=\"is-style-default\">First introduced in WordPress 5.9, Block themes have steadily evolved, improving flexibility and functionality for themers, users, and agencies alike. Now, design tools allow customizing almost every detail. With style variations, users can change the overall look of their site in a few clicks. You can even use <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/\">curation options</a> to customize the editing process itself. But weâ€™re not done! We canâ€™t wait to keep pushing Block themes even further. Thank you to every early adopter who, by embracing early features with passion, helped shape the Block themes we love today with feedback and testing.</p>\n\n\n\n<p>If you havenâ€™t yet explored Block themes, check out some of the resources below to get inspired:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use one of the <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">1,000 Block themes available</a> and see what you can create. For an easy way to explore, try <a href=\"https://wordpress.org/playground\">WordPress Playground</a> to quickly get started with a temporary site.&nbsp;</li>\n\n\n\n<li>Read the <a href=\"https://developer.wordpress.org/themes/\">Theme handbook</a> to understand types of themes, how themes work, and how to get started building.&nbsp;</li>\n\n\n\n<li>Use the <a href=\"https://learn.wordpress.org/lesson/create-block-theme-plugin/\">Create Block Theme plugin</a> to streamline Block theme creation with a <a href=\"https://learn.wordpress.org/tutorial/streamline-your-block-theme-development-with-create-block-theme/\">dedicated tutorial</a> on Learn WordPress that will help you get started.&nbsp;&nbsp;</li>\n\n\n\n<li>Get inspired by <a href=\"https://github.com/WordPress/community-themes\">watching and joining community members building themes together</a>. This is a great way for folks new to Block themes to learn, hands-on.&nbsp;</li>\n</ul>\n\n\n\n<p>Letâ€™s celebrate and share our contributions! Please comment on the <a href=\"https://make.wordpress.org/themes/2024/10/23/celebrating-1000-block-themes-in-the-themes-repository/\">Theme Teamâ€™s post dedicated to highlighting this milestone</a> to share your favorite Block theme and thank those who have contributed along the way.&nbsp;</p>\n\n\n\n<p><em>Thank you to <a href=\'https://profiles.wordpress.org/kristastevens/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kristastevens</a> for editorial help, <a href=\'https://profiles.wordpress.org/beafialho/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>beafialho</a> for the featured image, and <a href=\'https://profiles.wordpress.org/kafleg/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kafleg</a> for reviewing.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.7 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2024 16:42:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18023\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"The first release candidate (RC1) for WordPress 6.7 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, itâ€™s recommended that you evaluate RC1 on a test server and site. Reaching this phase [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10920:\"\n<p>The first release candidate (RC1) for WordPress 6.7 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, itâ€™s recommended that you evaluate RC1 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.7 RC1 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-RC1.zip\">RC1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.7-RC1</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=5087acab42d5354c8766303d13b78c8a77ac331b%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 RC1 WordPress Playground instance</a> (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table><figcaption class=\"wp-element-caption\">You can test the RC1 version in four ways.</figcaption></figure>\n\n\n\n<p>The current target for the WordPress 6.7 release is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s in WordPress 6.7 RC1?</h2>\n\n\n\n<p>Get a recap of WordPress 6.7â€™s highlighted features in the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since Beta 3, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.5?since=2024-10-15&amp;until=2024-10-22\">GitHub commits for 6.7</a> since October 15</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F15%2F2024..10%2F22%2F2024&amp;milestone=6.7&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 15</li>\n</ul>\n\n\n\n<p>Want to look deeper into the details and technical notes for this release? These recent posts cover some of the latest updates:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/new-block-type-registration-apis-to-improve-performance-in-wordpress-6-7/\">New block type registration APIs to improve performance in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/08/15/automatic-conversion-of-heic-images-to-jpeg-in-wordpress-6-7/\">Automatic conversion of HEIC images to JPEG in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/18/auto-sizes-for-lazy-loaded-images-in-wordpress-6-7/\">Auto Sizes for Lazy Loaded Images in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/20/new-plugin-template-registration-api-in-wordpress-6-7/\">New Plugin Template Registration API in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/developer-notes-for-zoom-out-in-wordpress-6-7/\">Developer Notes for Zoom Out in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/block-bindings-improvements-to-the-editor-experience-in-6-7/\">Block Bindings: Improvements to the Editor Experience in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/i18n-improvements-6-7/\">Internationalization improvements in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/updates-to-the-html-api-in-6-7/\">Updates to the HTML API in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/20/miscellaneous-block-editor-changes-in-wordpress-6-7/\">Miscellaneous Block Editor Changes in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/tag/dev-notes+6-7/\">All 6.7-related developer notes</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the worldâ€™s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to ensuring WordPress is performant and stable. Itâ€™s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7. For those new to testing, follow <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>From now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the projectâ€™s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.&nbsp;</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC1, youâ€™ll want to conclude your testing and update the <em>â€œTested up toâ€</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">pluginâ€™s readme file</a> to 6.7.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? Â¿EspaÃ±ol? FranÃ§ais? Ð ÑƒÑÑÐºÐ¸Ð¹? æ—¥æœ¬? à¤¹à¤¿à¤¨à¥à¤¦à¥€? à¦¬à¦¾à¦‚à¦²à¦¾? You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>. This release milestone (RC1) also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.7 release cycle.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>I See An R.C.<br>You See A Chance For Testing<br>Six Seven For The Win!</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post:</em> <em><a href=\'https://profiles.wordpress.org/atachibana/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>atachibana</a>, <a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Expanding Our Code of Conduct to Protect Private Conversations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2024/10/protect-private-conversations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Oct 2024 00:51:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17994\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"At the heart of our community is our shared pledge to create a space that is harassment-free, welcoming, and inclusive for all. Our Community Code of Conduct already outlines a clear set of expectations, while also providing examples of unacceptable actions. Today, we are reinforcing our values by adding another element to our list of [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2937:\"\n<p>At the heart of our community is our shared pledge to create a space that is harassment-free, welcoming, and inclusive for all. Our <a href=\"https://make.wordpress.org/handbook/community-code-of-conduct/\">Community Code of Conduct</a> already outlines a clear set of expectations, while also providing examples of unacceptable actions. Today, we are reinforcing our values by adding another element to our list of unacceptable behaviors: Publishing private messages without consent.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Why This Addition Matters</h2>\n\n\n\n<p>The relationships we build within our community often involve private discussions. These conversations may involve sensitive matters, personal experiences, or simply casual exchanges. Regardless of the content, every individual should feel confident that their private communications will remain private unless they grant explicit permission to share them.</p>\n\n\n\n<p>Sharing private messages without consent is a breach of trust that can also lead to unintended harm, including emotional distress or misrepresentation. When members of our community feel they cannot trust others in their personal conversations, it undermines the collaborative spirit that is crucial to our collective success.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How This Change Protects the Community</h2>\n\n\n\n<p>By explicitly addressing the publication of private messages without consent, we are reinforcing an existing unacceptable behavior in our Community Code of Conduct: Other conduct which could reasonably be considered inappropriate in a professional setting. Sharing private communications without permission is a clear violation of professional integrity.</p>\n\n\n\n<p>This new addition ensures that private messages receive the same level of protection as personal information and that sensitive communications shared in confidence will not be disclosed without prior consent. An important exception to this is when sharing private messages is necessary for reporting incidents or concerns to the <a href=\"https://make.wordpress.org/community/handbook/irt/\">Incident Response Team</a>, as part of our commitment to maintaining a safe and respectful environment.</p>\n\n\n\n<p>Ultimately, this change encourages honest, constructive engagement across all levels of participation.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Moving Forward Together</h2>\n\n\n\n<p>The strength of our community lies in the trust we place in one another. By clarifying and reinforcing our expectations, we are taking another step toward maintaining an inclusive, respectful, and safe environment for everyone.This new addition will take effect immediately, and violations will be handled in accordance with our existing <a href=\"https://make.wordpress.org/handbook/community-code-of-conduct/#enforcement\">enforcement guidelines</a>. Together, we can ensure our community remains a place of collaboration, trust, and mutual respect.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17994\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress Thanks Salesforce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/thank-you-salesforce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Oct 2024 20:17:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18012\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:326:\"In the midst of our legal battles with Silver Lake and WP Engine, I wanted to take a moment to highlight something positive. Because of my friendships with the co-founders of Slack, Stewart Butterfield and Cal Henderson, WordPress.org has had a free version of the Pro version of Slack since they started in 2009. We [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2645:\"\n<p>In the midst of our legal battles with Silver Lake and WP Engine, I wanted to take a moment to highlight something positive.</p>\n\n\n\n<p>Because of my friendships with the co-founders of Slack, <a href=\"https://x.com/stewart\">Stewart Butterfield</a> and <a href=\"https://x.com/iamcal\">Cal Henderson</a>, WordPress.org has had a free version of the Pro version of Slack since they started in 2009. We switched from IRC to Slack, and it was like superpowers were unlocked for our team.</p>\n\n\n\n<p>Over the past 10 years, <a href=\"https://slack.com/\">Slack</a> has been our secret weapon of productivity compared to many other open source projects. Its amazing collaboration features have allowed us to scale WordPress from running just a few blogs to now powering around 43% of all websites in the world, almost 10 times the runner-up in the market.</p>\n\n\n\n<p>As we have scaled from very small to very large, Slack has scaled right alongside us, seemingly effortlessly. WordPress.org currently has 49,286 users on its <a href=\"https://slack.com/pricing\">Slack Business+ instance</a>, which would cost at least $8.8M/yr if we were paying. (And we may need to go to their enterprise grid, to support e-discovery in the lawsuit attacks from WP Engine, which would cost even more.) </p>\n\n\n\n<p>This incredible generosity was continued by the enlightened leadership of Marc Benioff at Salesforce when they bought Slack in 2020. However, it has not been widely known or recognized on our <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future page</a>, which only highlights self-reported contributor hours and doesn&#8217;t mention Salesforce at all.</p>\n\n\n\n<p>This is a grave error, and we are correcting it today. Going forward:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>I would like every business in the world to see the amazing collaboration and productivity gains Slack has enabled for our community of tens of thousands of volunteers worldwide and <a href=\"https://slack.com/\">consider adopting it for their own business</a>.</li>\n\n\n\n<li>Salesforce will have a complimentary top sponsor slot at our flagship WordCamp events in the <a href=\"https://us.wordcamp.org/\">United States</a>, <a href=\"https://europe.wordcamp.org/\">Europe</a>, and <a href=\"https://asia.wordcamp.org/\">Asia</a>, which attract thousands of people each.</li>\n\n\n\n<li>We will update our <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future program</a> to reflect contributions such as Salesforce&#8217;s going forward.</li>\n</ul>\n\n\n\n<p>We just want to repeat: Thank you. We hope to deepen our partnership with Salesforce in the future.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"18012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WP Engine Promotions &amp; Coupons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/wp-engine-promotions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Oct 2024 15:19:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17996\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:354:\"Given the egregious legal attacks by WP Engine against WordPress co-founder Matt Mullenweg, a number of their customers have been looking for alternative hosting, and in return a number of hosts have created specials and promotions for WP Engine customers looking to migrate to a host that has great relations with WordPress.org. Here they are, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2258:\"\n<p>Given the egregious legal attacks by WP Engine against WordPress co-founder Matt Mullenweg, a number of their customers have been looking for alternative hosting, and in return a number of hosts have created specials and promotions for WP Engine customers looking to migrate to a host that has great relations with WordPress.org. Here they are, in alphabetical order.</p>\n\n\n\n<p>We&#8217;ll update this post if any new offers come online, get in touch and we&#8217;ll link it.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.bluehost.com/migrate-wordpress-website?channelid=P61C46097236S625N0B2A151D0E0000V107\">Bluehost will cover migration costs, and credit back your existing contract</a>. They offer 24/7 phone support, you can call them at 844-699-3907. Their wp.cloud-powered Cloud hosting starts at $29.99/mo.</li>\n\n\n\n<li><a href=\"https://www.dreamhost.com/switch-to-dreamhost/\">DreamHost is offering free migrations</a>, with plans starting at $16.95/mo.</li>\n\n\n\n<li><a href=\"https://hostinger.com/migrate\">Hostinger offers free migration for an unlimited number of websites with a 24/7 dedicated customer success team</a>. Their relevant cloud plans start at $7.99/mo. </li>\n\n\n\n<li><a href=\"https://www.nexcess.net/wp-engine-vs-nexcess/\">Nexcess has plans starting at $21/mo</a>.</li>\n\n\n\n<li><a href=\"https://pressable.com/wpe-contract-buyout/\">Pressable will credit back your current WP Engine contract and match their pricing</a>, so if you&#8217;re in the middle of a long contract with WP Engine, you don&#8217;t need to wait until your renewal time.</li>\n\n\n\n<li><a href=\"https://siteground.com/free-wp-migration\">SiteGround has a special with 83% off and unlimited automated WP migrations</a>, their plans start at $2.99/mo.</li>\n\n\n\n<li><a href=\"https://wordpress.com/migrate-from-wp-engine/\">WordPress.com will give you a free year of any plan they offer</a>, and donate 5% of your purchase price to the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>. Their relevant plans start at $25/mo.</li>\n\n\n\n<li>For large-scale enterprise customers, <a href=\"https://wpvip.com/wordpress-vip-vs-wp-engine/\">WordPress VIP will cover the cost of migration</a>. Their plans generally start at $2k/mo.</li>\n</ul>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17996\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.7 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2024 00:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17984\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:334:\"WordPress 6.7 Beta 3 is now ready for testing! This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 3 on a test server and site. You can test WordPress 6.7 Beta [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8351:\"\n<p id=\"block-3cf2f536-f167-464f-a4ba-07f45105e476\">WordPress 6.7 Beta 3 is now ready for testing!</p>\n\n\n\n<p id=\"block-b65e3bf0-0494-4039-a701-f21e505600ad\"><strong>This beta version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 3 on a test server and site.</p>\n\n\n\n<p id=\"block-e904322b-c488-4166-8312-0b769067b943\">You can test WordPress 6.7 Beta 3 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-beta3.zip\">Beta 3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.7-beta3</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=11b364fbffbab28d9127be91ee2d48f6645a6509%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 Beta 3 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup.&nbsp;</td></tr></tbody></table></figure>\n\n\n\n<p id=\"block-93b754f0-e211-47b7-ac89-349d85c2f02f\">The current target date for the final release of WordPress 6.7 is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<p id=\"block-7b5d791d-225a-4623-83ee-19a586c7094b\"><strong>Catch up on what&#8217;s new in WordPress 6.7</strong>: Read the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-2/\">Beta 2</a> announcements for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-f1abd396-a019-4c9a-bcb8-9ac381a61ca1\">How to test this release</h2>\n\n\n\n<p id=\"block-92dfcab6-d2a8-4753-84ce-8ef7b6dd1e90\">Your help testing the WordPress 6.7 Beta 3 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7.</p>\n\n\n\n<p id=\"block-6519fad7-59ea-45f1-9b8f-ca14c09c865d\">If you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p id=\"block-4bd66b13-6784-4a4f-bb7a-b4dab8e5fc12\">Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-67b6a6c7-a95e-4b27-8946-a66d15105cb7\">Vulnerability bounty doubles during Beta/RC</h2>\n\n\n\n<p id=\"block-16175da3-84c9-45d0-b735-08a9d4453a14\">Between Beta 1, released on October 1, 2024, and the final Release Candidate (RC) scheduled for November 5, 2024, the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the projectâ€™s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-14306771-b240-4e15-948f-7504757bbb61\">Beta 3 updates and highlights</h2>\n\n\n\n<p id=\"block-93917d31-4478-45b5-b71c-1c8a1f49cc65\">WordPress 6.7 Beta 3 contains more than 26 Editor updates and fixes since the Beta 2 release, including 18 tickets for WordPress core.</p>\n\n\n\n<p id=\"block-ffdc1220-c2f5-4c23-982b-60c366c629d1\">Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 3 using these links:</p>\n\n\n\n<ul id=\"block-3fcf78c7-bebc-42e1-96f6-8b605ea23aae\" class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-09&amp;until=2024-10-14\">GitHub commits for 6.7</a> since October 9, 2024</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F09%2F2024..10%2F14%2F2024&amp;milestone=6.7&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 9, 2024</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-c414b25e-802f-4f29-a31c-9e13394a4947\">A Beta 3 haiku</h2>\n\n\n\n<p id=\"block-a0f155a2-19b3-4645-a516-c7ae56541e5f\">Code in motion hums,<br>New features bloom, bugs retreat,<br>6.7 calls.</p>\n\n\n\n<p id=\"block-014ab749-322b-44bd-bf4f-bf5817d90bfd\"><em>Props to <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a> and </em><a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a><em> for proofreading and review, and haiku from&nbsp;<a href=\"https://wordpress.slack.com/team/U030RHV73\" target=\"_blank\" rel=\"noreferrer noopener\">@colorful-tones</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17984\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Secure Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/secure-custom-fields/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Oct 2024 18:26:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17956\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:335:\"On behalf of the WordPress security team, I am announcing that we are invoking point 18 of the plugin directory guidelines and are forking Advanced Custom Fields (ACF) into a new plugin, Secure Custom Fields. SCF has been updated to remove commercial upsells and fix a security problem. On October 3rd, the ACF team announced [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2841:\"\n<p>On behalf of the <a href=\"https://wordpress.org/about/security/\">WordPress security team</a>,  I am announcing that we are invoking <a href=\"https://github.com/wordpress/wporg-plugin-guidelines/blob/trunk/guideline-18.md\">point 18 of the plugin directory guidelines</a> and are forking Advanced Custom Fields (ACF) into a new plugin, Secure Custom Fields. SCF has been updated to remove commercial upsells and fix a security problem.</p>\n\n\n\n<p>On October 3<sup>rd</sup>, the ACF team announced ACF plugin updates will come directly from their website. Sites that followed the ACF team&#8217;s instructions on â€œHow to update ACFâ€ will continue to get updates directly from WP Engine.Â On October 1<sup>st</sup>, 2024, WP Engine also deployed its own solution for updates and installations for plugins and themes across their customersâ€™ sites in place ofÂ <a href=\"https://wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress.org</a>â€™s update service.</p>\n\n\n\n<p>Sites that continue to use&nbsp;<a target=\"_blank\" href=\"https://wordpress.org/\" rel=\"noreferrer noopener\">WordPress.org</a>â€™s update service and have not chosen to switch to ACF updates from WP Engine can click to update to switch to Secure Custom Fields. Where sites have chosen to have plugin auto-updates from&nbsp;<a target=\"_blank\" href=\"https://wordpress.org/\" rel=\"noreferrer noopener\">WordPress.org</a>&nbsp;enabled, this update process will auto-switch them from Advanced Custom Fields to Secure Custom Fields.</p>\n\n\n\n<p>This update is as minimal as possible to fix the security issue. Going forward, Secure Custom Fields is now a non-commercial plugin, and if any developers want to get involved in maintaining and improving it, please get in touch.</p>\n\n\n\n<p>Similar situations have happened before, but not at this scale. This is a rare and unusual situation brought on by WP Engine&#8217;s legal attacks, we do not anticipate this happening for other plugins.</p>\n\n\n\n<p>WP Engine has <a href=\"https://www.advancedcustomfields.com/blog/installing-and-upgrading-to-the-latest-version-of-acf/\">posted instructions for how to use their version of Advanced Custom Fields that uses their own update server</a>, so you have that option, though the WordPress Security Team does not recommend it until they fix the security issues. You can uninstall Advanced Custom Fields and <a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">activate Secure Custom Fields from the plugin directory</a> and be just fine.</p>\n\n\n\n<p>There is separate, but not directly related news that <a href=\"https://www.wpgraphql.com/2024/10/07/wpgraphql-becomes-a-canonical-plugin-my-move-to-automattic\">Jason Bahl has left WP Engine to work for Automattic and will be making WPGraphQL a canonical community plugin</a>. We expect others will follow as well.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17956\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Forking is Beautiful\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2024/10/spoon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Oct 2024 21:00:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17953\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"The right to fork the software is at the heart of open source. WordPress itself started as a fork of the b2/cafelog project. WordPress was one of several forks from b2, which included b2++ (which eventually became WordPress Multisite) and some like b2evolution which still continue today. The last decent fork attempt for WordPress was [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1778:\"\n<p>The right to fork the software is at the heart of open source. WordPress itself started as a fork of the <a href=\"https://cafelog.com/\">b2/cafelog project</a>. WordPress was one of several forks from b2, which included b2++ (which eventually became WordPress Multisite) and some like <a href=\"https://b2evolution.net/\">b2evolution which still continue today</a>.</p>\n\n\n\n<p>The last decent fork attempt for WordPress was <a href=\"https://www.classicpress.net/\">ClassicPress</a> in 2018, over disagreements about <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a> being integrated into core.</p>\n\n\n\n<p>We&#8217;re very proud to announce that <a href=\"https://x.com/vinnysgreen\">Vinny Green</a>, a former WordPress community member, has started his fork, <a href=\"https://freewp.com/the-wait-is-over-freewp-is-here-to-shake-up-the-wordpress-ecosystem/\">FreeWP</a>. We strongly encourage anyone who disagrees with the direction WordPress is headed in to join up with Vinny and create an amazing fork of WordPress. Viva FreeWP!</p>\n\n\n\n<p>If there are other forks of WordPress we should highlight, let us know.</p>\n\n\n\n<p>Updates with other fork efforts:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://aspirepress.org/about-us/\">AspirePress</a> &#8220;AspirePress exits [sic] to be a community of individuals focused on helping WordPress become the platform we all aspire for it to be.&#8221;</li>\n\n\n\n<li><a href=\"https://openpress.ai/\">OpenPress</a> is not a fork, but their name implies they want people to consider it as an alternative to WordPress. They are building on Laravel, using the CC-0 license, and claim to be optimized for AI. <a href=\"https://github.com/OpenPress-ai/wp-openpress-exporter\">Their plugin to export from WordPress is here</a>.</li>\n</ul>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17953\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Please Welcome Mary Hubbard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/news/2024/10/proud-mary/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2024 19:26:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17900\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"We&#8217;re proud to announce that Mary Hubbard (@4thhubbard) has resigned as the Head of TikTok Americas, Governance and Experience, and will be starting as the next Executive Director of WordPress.org on October 21st! Mary previously worked at Automattic from 2020 to 2023, and was the Chief Product Officer for WordPress.com, so she has deep knowledge [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1512:\"\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-image alignfull size-full wp-duotone-unset-1\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1626\" height=\"1002\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=1626%2C1002&#038;ssl=1\" alt=\"\" class=\"wp-image-17920\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?w=1626&amp;ssl=1 1626w, https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=1024%2C631&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=768%2C473&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/10/maryhubbard.png?resize=1536%2C947&amp;ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>We&#8217;re proud to announce that <a href=\"https://maryhubbard.blog/\">Mary Hubbard</a> (<a href=\"https://profiles.wordpress.org/4thhubbard/\">@4thhubbard</a>) has resigned as the Head of TikTok Americas, Governance and Experience, and will be starting as the next Executive Director of WordPress.org on October 21<sup>st</sup>!</p>\n\n\n\n<p>Mary previously worked at Automattic from 2020 to 2023, and was the Chief Product Officer for WordPress.com, so she has deep knowledge of WordPress and expertise across business, product, marketplaces, program management, and governance.</p>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17900\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.7 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2024 00:44:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17887\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:334:\"WordPress 6.7 Beta 2 is now ready for testing! This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 2 on a test server and site. You can test WordPress 6.7 Beta [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8283:\"\n<p id=\"block-3cf2f536-f167-464f-a4ba-07f45105e476\">WordPress 6.7 Beta 2 is now ready for testing!</p>\n\n\n\n<p id=\"block-b65e3bf0-0494-4039-a701-f21e505600ad\"><strong>This beta version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 2 on a test server and site.</p>\n\n\n\n<p id=\"block-e904322b-c488-4166-8312-0b769067b943\">You can test WordPress 6.7 Beta 2 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-beta2.zip\">Beta 2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.7-beta2</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=a49bf5596f7258375345826dc136bfc589372e37%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 Beta 2 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup.&nbsp;</td></tr></tbody></table></figure>\n\n\n\n<p id=\"block-93b754f0-e211-47b7-ac89-349d85c2f02f\">The current target date for the final release of WordPress 6.7 is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<p id=\"block-7b5d791d-225a-4623-83ee-19a586c7094b\"><strong>Catch up on what&#8217;s new in WordPress 6.7</strong>: <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Read the Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-f1abd396-a019-4c9a-bcb8-9ac381a61ca1\">How to test this release</h2>\n\n\n\n<p id=\"block-92dfcab6-d2a8-4753-84ce-8ef7b6dd1e90\">Your help testing the WordPress 6.7 Beta 2 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7.</p>\n\n\n\n<p id=\"block-6519fad7-59ea-45f1-9b8f-ca14c09c865d\">If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p id=\"block-4bd66b13-6784-4a4f-bb7a-b4dab8e5fc12\">Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-67b6a6c7-a95e-4b27-8946-a66d15105cb7\">Vulnerability bounty doubles during Beta/RC</h2>\n\n\n\n<p id=\"block-16175da3-84c9-45d0-b735-08a9d4453a14\">Between Beta 1, released on October 1, 2024, and the final Release Candidate (RC) scheduled for November 5, 2024, the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the projectâ€™s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-14306771-b240-4e15-948f-7504757bbb61\">Beta 2 updates and highlights</h2>\n\n\n\n<p id=\"block-93917d31-4478-45b5-b71c-1c8a1f49cc65\">WordPress 6.7 Beta 2 contains more than 18 Editor updates and fixes since the Beta 1 release, including <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=02%2F14%2F2024..02%2F19%2F2024&amp;milestone=6.5&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">28 tickets for WordPress core</a>.</p>\n\n\n\n<p id=\"block-ffdc1220-c2f5-4c23-982b-60c366c629d1\">Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 1 using these links:</p>\n\n\n\n<ul id=\"block-3fcf78c7-bebc-42e1-96f6-8b605ea23aae\" class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-02&amp;until=2024-10-07\">GitHub commits for 6.7</a> since October 2, 2024</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F02%2F2024..10%2F07%2F2024&amp;milestone=6.7&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 2, 2024</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-c414b25e-802f-4f29-a31c-9e13394a4947\">A Beta 2 haiku</h2>\n\n\n\n<p id=\"block-a0f155a2-19b3-4645-a516-c7ae56541e5f\">Beta 2 arrives,<br>Octoberâ€™s code settles in,<br>Change rustles like leaves.</p>\n\n\n\n<p id=\"block-014ab749-322b-44bd-bf4f-bf5817d90bfd\"><em>Props to <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a></em> for proofreading and review.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"17887\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 29 Oct 2024 12:22:12 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"â›„\";s:13:\"last-modified\";s:29:\"Mon, 28 Oct 2024 08:12:30 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20220607221029\";}','off'),
(5779182,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1730247732','off'),
(5779183,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1730204532','off'),
(5779184,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1730247733','off');
INSERT INTO `wphu_options` VALUES
(5779185,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Matt: Kindness and Techcrunch Disrupt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=129406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2024/10/kindness-techcrunch/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1290:\"<p>Back in June I recorded an episode with <a href=\"https://kindness.org/why-kindness/\">Jaclyn Lindsey on the Why Kindness podcast</a>, for their awesome non-profit <a href=\"https://kindness.org/\">kindness.org</a>. You can listen to it through Pocket Casts here:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div>    <div></div>    </div>\n</div>\n\n\n\n<p>This is <em>kind</em> of funny because I&#8217;m obviously in the midst of the big battle with Silver Lake and WP Engine. I am a huge proponent of kindness, but sometimes you have to stand up for what&#8217;s right if someone is taking advantage of you.</p>\n\n\n\n<p>I&#8217;m continuing to do some select press, and will be <a href=\"https://techcrunch.com/2024/10/24/wordpress-co-founder-matt-mullenweg-is-joining-techcrunch-disrupt-2024/\">appearing in a conversation with Techcrunch&#8217;s Editor-in-Chief, Connie Loizos, at 10:30AM on Wednesday in San Francisco at their Disrupt conference</a>. It&#8217;s an amazing conference! Over 10k people from all over the world, just started today. I&#8217;m glad they were able to work me into the schedule, I think it will be a timely conversation. We may even have an announcement to make. <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png\" alt=\"ðŸ™‚\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Oct 2024 04:06:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: WP Engine Files Injunction, Hearing Set for November 26, 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=178456\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/wp-engine-files-injunction-hearing-set-for-november-26-2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5462:\"<p>WP Engine filed a motion on October 18, 2024 for a preliminary <a href=\"https://storage.courtlistener.com/recap/gov.uscourts.cand.437474/gov.uscourts.cand.437474.17.0.pdf\">injunction</a> in a Northern California court, seeking restored access to WordPress.org and a reversion to conditions as of September 20, 2024. The hearing is set for November 26, 2024.</p>\n\n\n\n<p>The Injunction filed claims that Matt and Automattic have â€œengaged in a self-proclaimed â€œnuclearâ€ war aimed at destroying WPEâ€™s business because WPE dared to stand up and speak out against Defendantsâ€™ extortionate demand for tens of millions of dollars annually for a purported â€œlicenseâ€ WPE does not even need.â€Â </p>\n\n\n\n<p>It went on to say that Matt and Automatticâ€™s action included â€œblocking WPEâ€™s access to business resources including those used to service its customers, blocking WPEâ€™s customers from accessing important security updates, making a litany of false and disparaging statements, and even expropriating one of WPEâ€™s most popular software products as its own. Facing this onslaught of retaliatory actions, WPE had no choice but to file suit to protect its business, its employees, its customers, and the entire community in which it operates.â€</p>\n\n\n\n<p>The injunction also mentions that WP Engine has suffered losses as&nbsp; â€œthe data show a 14% increase in cancellation requests, 333 fewer new contracts than expected from the â€œsales-assistedâ€ channel, and a 29% drop in new customers from the â€œself-serviceâ€ channel.â€</p>\n\n\n\n<p>In <a href=\"https://storage.courtlistener.com/recap/gov.uscourts.cand.437474/gov.uscourts.cand.437474.33.0.pdf\">response</a>, Automattic and Mullenweg stated, â€œThis case is not about Plaintiffâ€™s access to WordPressâ€¦ this case instead is about WordPress.org â€“ a website owned and run by Defendant Matt Mullenweg individually, for the benefit of the community he loves. WordPress.org is not WordPress. WordPress.org is not Automattic or the WordPress Foundation, and is not controlled by either. To the contrary, as Plaintiff itself acknowledges, WordPress.org is Mr. Mullenwegâ€™s responsibility.â€</p>\n\n\n\n<p>It continues, â€œMr. Mullenweg has no contracts, agreements, or obligation to provide WP Engine access to the network and resources of WordPress.org. WP Engine points to no terms, conditions, or permissions that entitle them to such access. Nevertheless, WP Engine, a private equity-backed company, made the unilateral decision, at its own risk, to build a multi-billion dollar business around Mr. Mullenwegâ€™s website. In doing so, WP Engine gambled for the sake of profit that Mr.Mullenweg would continue to maintain open access to his website for free. That was their choice.â€</p>\n\n\n\n<p>On his blog, Matt <a href=\"https://ma.tt/2024/10/first-amendment/\">published</a> this about WP Engine, â€œThey say this is about community or some nonsense, but if you look at the core, what theyâ€™re trying to do is ask a judge to curtail my First Amendment rights.â€ he also said, â€œI will refrain from personally commenting on the WP Engine case until a judge rules on the injunction. I will continue to exercise my First Amendment rights to promote othersâ€™ speech.â€</p>\n\n\n\n<p>This has drawn much concern from the WordPress community. Jeff Chandler (WP Tavern founder) <a href=\"https://x.com/jeffr0/status/1849189230594908579\">tweeted</a>,Â  â€œThe words in this document can not be over emphasized enough to current and future WordPress builders. These statements generate shock waves to the core of what has been built and maintained over the last 21 years. Honestly, I donâ€™t see Matt doing these things to any other plugin or business in the future. But the fact that he has done it at all means itâ€™s a risk that has to be accounted for.â€</p>\n\n\n\n<p>AspirePress published <a href=\"https://aspirepress.org/if-wordpress-org-is-not-for-the-community-then-we-will-be/\">If WordPress.org is not for the community, then we will be</a> while web developer Brian Coords <a href=\"https://x.com/briancoords/status/1849094116531126751\">tweeted</a>, â€œWordPress/.org is not WordPress&#8221; is a good reminder that only the code is open source. When you build something online, you should treat all platforms and distribution channels as someone else&#8217;s sandbox and plan accordingly.â€&nbsp;</p>\n\n\n\n<p>Andrew Palmer (entrepreneur and co-founder of Bertha AI) shared another point of view in his <a href=\"https://x.com/arniepalmer/status/1849370561782129073\">tweet</a>, â€œDo you really want someone else running WordPress? If so, be careful what you wish for. Have a look at the open source projects that are no longer Open Source and let me know.Â <a href=\"https://en.wikipedia.org/wiki/List_of_formerly_open-source_or_free_softwareâ€\">https://en.wikipedia.org/wiki/List_of_formerly_open-source_or_free_softwareâ€</a>. </p>\n\n\n\n<p>Katie Keith (CEO of BARN2 Plugins) <a href=\"https://x.com/KatieKeithBarn2/status/1847271162977358077\">tweeted</a> about the injunction, â€œI hope it brings some stability to the WordPress ecosystem, as people won&#8217;t be constantly wondering what will happen next <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f91e.png\" alt=\"ðŸ¤ž\" class=\"wp-smiley\" />.â€</p>\n\n\n\n<p>The dispute has now attracted broader media attention, with coverage from outlets including <a href=\"https://www.bbc.com/news/articles/cm2y7eyp3zpo\">BBC News</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Oct 2024 03:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Gutenberg Times: Gutenberg Changelog #110 â€“ Gutenberg 19.5, WordPress 6.7, Create Block Theme Plugin and a Thousand Block Themes at the Repository\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=30629\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-110-gutenberg-19-5-wordpress-6-7-create-block-theme-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54725:\"<p>In this episode, Birgit Pauli-Haack and Joni Halabi discuss Gutenberg 19.5, WordPress 6.7, Create Block Theme Plugin and a Thousand Block Themes at the Repository</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-110-gutenberg-19-5-wordpress-6-7-create-block-theme-plugin/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-110-gutenberg-19-5-wordpress-6-7-create-block-theme-plugin/#transcript\">Transcript</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special guest: Joni Halabi</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/news/2023/02/static-vs-dynamic-blocks-whats-the-difference/\">Static vs. dynamic blocks: Whatâ€™s the difference?</a></li>\n\n\n\n<li>Book: <a href=\"https://jhalabi.com/book/\">Sweet Little You by Joni Halabi</a></li>\n\n\n\n<li>LinkedIn <a href=\"https://www.linkedin.com/in/jonihalabi/\">@jonihalabi</a></li>\n\n\n\n<li>WordPress <a href=\"https://profiles.wordpress.org/thatdevgirl/\">@thatdevgirl</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-97-wordpress-6-5/\">Gutenberg Changelog #97 â€“ WordPress 6.5, Gutenberg 17.8 and 17.9</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-91-wordpress-6-4-gutenberg-16-8-and-whats-discussed/\">Gutenberg Changelog #91 â€“ WordPress 6.4, Gutenberg 16.8 and whatâ€™s in the works</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Announcements</h2>\n\n\n\n<p><a href=\"https://developer.wordpress.org/news/snippets/conditionally-unregister-patterns/\">Snippet: Conditionally unregister patterns</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">1000 Block Themes</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/themes/tags/full-site-editing/\">1,000 Block Themes in the WordPress theme directory! </a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2024/10/23/celebrating-1000-block-themes-in-the-themes-repository/\">Celebrate 1,000 Block Themes in the themes repository!</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2024/10/wordpress-community-creates-1000-block-themes-in-1000-days/\">WordPress Community Creates 1,000 Block Themes in 1,000 Days</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/wordpress-themes-repository-now-houses-1000-block-themes\">WordPress Themes Repository Now Houses 1000 Block Themes</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/author/anlino/\">Themes by Anders Noren</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s released</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin 2.6</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/06/25/recap-hallway-hangout-theme-building-with-playground-create-block-theme-plugin-and-github/\">Recap Hallway Hangout: Theme Building with Playground, Create-block-theme plugin, and GitHub</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-1/\">WordPress 6.7 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/23/wordpress-6-7-field-guide/\">WordPress 6.7 Field Guide</a></li>\n\n\n\n<li><strong>November 5th, at 18:00 UTC:</strong> Live stream <a href=\"https://www.youtube.com/watch?v=K6N098ElnYU\">WordPress 6.7 Highlights and Q &amp; A</a> with Jamie Marsland, Nick Diego and Rich Tabor.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/24/whats-new-in-gutenberg-19-5-23-october/\">Whatâ€™s new in Gutenberg 19.5? (23 October)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s in the works</h2>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/6-7-source-of-truth/\">WordPress 6.7 Source of Truth</a></p>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello, and welcome to our 110th episode of the Gutenberg Changelog podcast. In today&#8217;s episode we will talk about Gutenberg 19.5, WordPress 6.7, Create Block Theme plugin, and thousand block themes at the repository. Yay! I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and full-time core contributor for the WordPress Open Source project sponsored by Automattic.</p>\n\n\n\n<p>Today&#8217;s special guest has been on the show before and I&#8217;m thrilled to have her again, it&#8217;s the wonderfully smart Joni Halabi from Georgetown University in D.C. She was a guest on episodes 97 and 91. And she&#8217;s also the author of the article Static vs. Dynamic Blocks: What&#8217;s the difference? on the WordPress Developer blog. Welcome back, Joni. How are you today?</p>\n\n\n\n<p><em>Joni Halabi:</em> Oh, thank you so much for having me. I&#8217;m doing great.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Awesome. Awesome. So for our new listeners, maybe you can briefly introduce yourself and your connection to WordPress. And I know you changed responsibilities at Georgetown, so what are you working on now?</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, so hi everybody. My name is Joni Halabi. I have been working at Georgetown University for the past eight and a half years. I started at Georgetown as a senior web developer with our web services group. And most of my responsibility was developing custom blocks and other post editor customizations in WordPress for our now over 500 sites that we support, which is super exciting.</p>\n\n\n\n<p>I recently, as of about three and a half weeks ago, just switched roles and I am now the senior web manager for the office of the president. So I&#8217;ve gone from development to content. My primary role right now is to basically update the content for our president&#8217;s website and make sure that it has all of the information people need in terms of our university initiatives and other things that are important to our office.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Awesome.</p>\n\n\n\n<p><em>Joni Halabi: </em>I&#8217;m so happy to be here. Thank you for having me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, no, absolutely. Always great to have you on the show, Joni. So 500 websites, that&#8217;s one number that I&#8217;m in awe of. Then going from custom block development to using as a content creator is probably a total different challenge because you can look back on so and so, &#8220;Oh, did we do this right?&#8221; kind of thing, yeah? And so bug reports.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, I think my old team is not going to be very happy with me because it is such a different perspective. As the developer, I never really got that 1,000 foot view of our websites in terms of how a content editor really sees these blocks. And to be on the other side of that and to be using these blocks and thinking about, &#8220;Okay, this is the story that I want to tell. How can I use these blocks,&#8221; it is such a different perspective. It&#8217;s an exciting perspective, but I already have ideas for new blocks that I want to exist.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Ok.</p>\n\n\n\n<p><em>Joni Halabi:</em> Sorry, services.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. So I&#8217;m not drilling down into that, but there&#8217;s certainly something to unpack for the next time you&#8217;re on the show. But it&#8217;s so great that you actually can change the perspective and kind of feel, &#8220;All right, now I get a 360 view on the whole WordPress content creation experience and block development.&#8221; So the next hurdle would be to tap your toes into block themes and kind of see how that works for your organization, for the web team, yeah?</p>\n\n\n\n<p><em>Joni Halabi: </em>I would love to. I did some experimentation with block themes while I was there, and I could speak for the next 40 minutes about this, but the high level overview was I did an experiment where I created a block theme but connected it to our external patterns for different blocks in different parts of our pages because we were using KSS node for that to create a pattern library. And I&#8217;ve actually given a couple of talks on this topic. I did one at WP Campus last year. They&#8217;re all linked to you for my website, but yeah, it was a fascinating experiment. It&#8217;s complicated and not complicated. Like I said, I could talk for 40 minutes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. We&#8217;ll share the links in the show notes for our listeners to have a different perspective on things, so that&#8217;s really good. So you did get a 360 view on WordPress with all the experience that you have. Excellent, yeah.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>And for the show, we have a few announcements today for you, dear listeners. One is the developer blog or the contributors at the developer blog, we are starting something new, and that&#8217;s kind of a snippet library. We have one snippet online, that&#8217;s the first one because we need to iterate on the layout as well as on the editorial process for that. But it&#8217;s conditionally unregistered patterns. And Justin Tadlock put that up and he has a few use cases. One of them is, okay, you build your own custom blocks on the theme and use patterns for that, but if that block is not available on your site, you need to unregister the pattern too. So it&#8217;s not going to come in with, &#8220;Oh, this block is not available kind of thing.&#8221; So I think a lot of people who curate the editor experience for the clients can definitely use that as well to unregister some patterns from my block theme or so they haven&#8217;t built themselves. Yeah.</p>\n\n\n\n<p>So if you have ideas about that, you can comment on that either on the Gutenberg Times on the podcast show or on Storify, where our podcast also landed and has a few listeners. So there is a little comment button on your mobile app where you can comment what other ideas you would need for snippets. I know that Nick Diego and Justin and myself and Ryan, we will probably brainstorm the first hundred snippets for that relatively fast.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contributions &#8211; 1,000 Block Themes</h3>\n\n\n\n<p>And then as from the intro, we have the announcement, a thousand block themes are now in the WordPress theme directory, yes. And it&#8217;s really amazing how fast. It took a little while. The first hundred took, I don&#8217;t know, a year, the second hundred another year, but then it kind of sped up until now. And we have three people who actually covered that this week. One is Ganga Kafle, he&#8217;s the co-team rep for the theme team, and he had statistics and that is that the first theme was done by Carolina Nymark early on. And then Automattic has 116 block themes in the repository. That&#8217;s about less than 10. Well, a little bit over 10%. And then there are other theme shops that have 20, 28, 30. Really the first 10 theme producers I think come up with about 400 or so. I haven&#8217;t ended up, maybe it might be 500. And then the rest is divided up by other people from the community. So yeah, bring your blog theme to the repository too.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, this is amazing to me because these only count the block themes that are in their repository. And I&#8217;m sure that there are so many authors and companies and organizations out there that have their own custom theme just for them that is probably a block theme. They&#8217;re just not in the theme repository. And it is so impressive that the adoption of block themes has happened this fast because it feels&#8230; I know it&#8217;s been a few years, but it feels like it&#8217;s only yesterday when block themes were introduced.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. And I think they&#8217;re only kind of viable now with the theme parts and the site editor where you can edit the templates. And then have the query loop has really emerged as a power tool for theme developers.</p>\n\n\n\n<p><em>Joni Halabi:</em> Oh, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And there&#8217;s a lot of designers who don&#8217;t have to touch code to build themes and they use the site editor. So it&#8217;s just really amazing.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, it&#8217;s fabulous. I mean, you can start with the Twenty Twenty Four theme. I did this recently with the site. You can start with the Twenty Twenty Four theme, use that site editor and then copy. If you want to save all of your customizations, you can do everything that you want to in the site editor and then copy the HTML for your new templates, your new template parts, and paste it into a theme. And you have that saved if you need it. And it is so powerful. You don&#8217;t need the code. Somebody like me, I need the code. But somebody who&#8217;s not familiar with HTML or CSS or is intimidated by it, you don&#8217;t need to know it anymore. And it&#8217;s game changing.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Whatâ€™s Released &#8211; Create Block Theme Plugin 2.6</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Absolutely. And the global styles and design tools that come with it, you can really say change the default look of blocks and it&#8217;s going to be saved. So the next thing that I wanted to point out here on this show is, and we talked about it before, but it seems that we talked, Joni, that you haven&#8217;t really used the Create Block Theme plugin yet. And that really helps theme developers to use the site editor to have everything that&#8217;s stored in the database, then exported into the theme files. And that is the most powerful thing that I&#8217;ve seen, that you can create a child theme, you can create or clone an existing theme on the site, or you start with a very bare bone skeleton, but then you can use the site editor to style your blocks, your sections, create patterns, and it all kind of comes together with saving the theme, exporting the theme, and have it outside.</p>\n\n\n\n<p>Because the layer of having core styles then having theme styles, and then the user styles can only all come together in one theme if you want to reuse it. And that&#8217;s kind of the gap that the plugin really closes for that.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, that sounds amazing. I don&#8217;t know if you would know the answer to this, but has there been any talk about bringing that plugin into core because that feels like eventual core functionality?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, there is talk about it. And that plugin is pretty much like the Gutenberg plugin, kind of the beta version of what might come into core. I think it&#8217;s more the explanation while everything in core that touches the theme and the styles and the section styles and variations, those are still in active development. So the plugin is kind of following along in core and even goes a little bit further in core with the patterns, for instance, saving the patterns. But yeah, it would definitely be something that the developers kind of looking at, maybe bringing some of the features into core that are a little bit more mature once the features are kind of set in their ways, because some of that data views and some of the global styles that&#8217;s still so active in development that I think otherwise you couldn&#8217;t test the concepts if you put it in core because then it would be released and then it would be backwards compatible, and you don&#8217;t want to kind of be tied down to backwards compatibility.</p>\n\n\n\n<p><em>Joni Halabi: </em>Yeah, that&#8217;s a lot of work. But I do. That&#8217;s great to hear. And I also do love this pattern of actively developing and testing something in a separate plugin with an eventual goal or a thought of bringing it to core. And it&#8217;s something that I always thought was unique to the Gutenberg plugin, but it&#8217;s nice to see that it&#8217;s also happening with other pieces, like larger pieces of functionality.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah. That happens actually also with improvements for the media library. The performance team has actually published, or Pascal from the performance team has some media experiments on his repo that are in the plugin. They&#8217;re not officially kind of WordPress. The Create Block Theme is on the WordPress organization, separate repo. But yeah, some of the contributors have done that with their own experimentation. So it&#8217;s really good to see.</p>\n\n\n\n<p>Dave Smith has a plugin. He&#8217;s a core contributor, and he just released a plugin for the responsive navigation that&#8217;s not in core yet, but it&#8217;s kind of testing it out outside of the Gutenberg repo to get faster to feedback. And so I will share the links and also in the show notes, so you can explore those too dear listeners. But yeah, use the Create Block theme plugin to create your theme for the repository. You can then, I think there&#8217;s even some instructions on how to get it then into the repository, but that&#8217;s kind of with the SVN version control, it kind of is a different level of complexity, I would think. So having it rather than GitHub.</p>\n\n\n\n<p>We also had a&#8230; And that might be interesting for you too. We had a hallway hangout with the designer of the Twenty Twenty Five theme, and she also works on some of the automatic themes. They have a process that uses Playground, the Create Block plugin and GitHub, to push changes to a theme from the site editor to a pull request on GitHub. And that&#8217;s just amazing. That process really amazed me and how that&#8217;s even possible, but there are magicians behind it, but it works.</p>\n\n\n\n<p><em>Joni Halabi:</em> That sounds amazing. When is that hallway hangout?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It was actually.</p>\n\n\n\n<p><em>Joni Halabi: </em>Oh, was?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah. I will share that in the show notes. And there&#8217;s a little video also with were Beatriz Fialho, who designed Twenty Twenty Four as well as Twenty Twenty Five, shows the process. It has one single little change, and then kind of from playground to GitHub, how that also works. Yeah, it&#8217;s really, really great to see.</p>\n\n\n\n<p><em>Joni Halabi</em>: Oh, I will definitely be checking out that hangout. That sounds amazing. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So yeah, block themes. Yeah, go.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>So when I kept a close watch on the numbers throughout the last three years, and I always looked at some and also on the Gutenberg Times on the weekend edition, I sometimes said, &#8220;Okay, there are six new block themes. Who developed that?&#8221; So I looked at them. Some of them I really tried out. Carolina Nymark was one of the first theme developers. Who really embraced the process was Anders Noren from Norway. These a very successful theme developer, and he had a few quite interesting designs. But what I have noticed is that many, many block themes not only have some interesting style variations. And you can see them in the repository. You can see how the theme changes also has some of them have 30 patterns in there. It&#8217;s just amazing what creativity can do to the block themes now. So you don&#8217;t need to put one block at a time into your canvas. You can kind of take five patterns and your page is done. So it&#8217;s really good.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah. I keep using the word game changer, but I mean, it&#8217;s-</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, it is.</p>\n\n\n\n<p><em>Joni Halabi:</em> &#8230; facilitates so much creativity. I love everything about it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I see many, many themes that are actually focused on certain verticals. So there are restaurant themes, there are for certain shops, there are for digital pieces for recipes. It&#8217;s very focused on the use case. And those make the patterns as well as the imagery that comes with it and the look and feel so much more focused to get a person from zero to hero on their own website. It&#8217;s really a great phenomenon.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, for sure.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> You and I, we can talk more than 40 minutes about block themes.</p>\n\n\n\n<p><em>Joni Halabi:</em> I think we could. But this is not just the block theme show, we promise.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So well, two more things. The Create Block Theme plugin is in a new version, 2.6 came out this week. And it fixes two bugs, important bugs, that fix the image URL localization when you make a child theme so that the images come over from the patterns into the child theme. And the URL is the right one. The other one was that if you had in your blocks, HTML, it would escape. So when you use that pattern, you had all the HTML code in there and not the rendering from the browser, and that was fixed as well. So that was kind of an interesting bug to fix.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, those are always tricky, the encoding, encoding bugs. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, though that&#8217;s the smallest release of this week.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress 6.7</h3>\n\n\n\n<p>We had a bigger release that was the WordPress 6.7 Release Candidate came out. And with it, also the field guide. So if you haven&#8217;t tested 6.7 yet, now is the time you only have three weeks to test it against whatever product you have, your themes, your plugins, your maintenance processes, or just the sites that you have. And with playground, you can actually do a staging site, but there&#8217;s also InstaWP to kind of have a staging site.</p>\n\n\n\n<p>And if you want to know the highlights from WordPress 6.7, there will be a YouTube live stream on November 5th at 18:00 UTC, and it&#8217;s with Jamie Marsland, Nick Diego and Rich Tabor kind of walk you through all the different things. We will talk a little bit later about them, the highlights that I see for 6.7 after we cover the Gutenberg 19.5 release.</p>\n\n\n\n<p><em>Joni Halabi:</em> Sounds good. Yeah, I&#8217;m excited for 6.7. Like you said, it&#8217;s coming November&#8230; Looks like November 12th.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes.</p>\n\n\n\n<p><em>Joni Halabi:</em> And I know especially for my previous team, it&#8217;s so important to start that testing now, especially if you have a lot of custom code on your sites. This is something that has burned our team in the past. Sometimes custom code is not backwards compatible with changes that are happening in core, like our own custom code that we write.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right. It&#8217;s the future compatible.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, we&#8217;ve needed to make a few changes, and it&#8217;s just important to get all that testing in.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Definitely the dev notes will help you. They&#8217;re in the field guide. And there are quite a few changes, not breaking changes, but additional feature in there for developers where APIs are expanded, like the block bindings API and the interactivity API, block books, some performance tweaks as well. So definitely look at the field guide. And the links will be in the show notes. And I also will link all the block editor relevant dev notes individually in the show notes. We have space on our show notes. Anyway, yeah, well, let&#8217;s go into the Gutenberg 19.5 plugin release.</p>\n\n\n\n<p><em>Joni Halabi: </em>Yes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 19.5</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So release-lead Hector Prieto wrote in his release post, &#8220;This release focuses on stabilizing existing features, but also brings some improvements to the general UI and the zooming, editing experience with 116 PRs from 47 contributors.&#8221;</p>\n\n\n\n<p>So yeah, let&#8217;s get going. General interface changes. One is the right design tool. Now you can persist your user preference through the preference option on the plugin, in the plugin editor. So that&#8217;s good.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah. That one I have been waiting for because I often switch between the visual editor and the code editor, and I don&#8217;t always remember that I do that. So if I go into a page and I switch into the code editor and then I have to edit another page, I expect to go into the visual editor. Sometimes I&#8217;m surprised when I am somehow in the code editor because I just forget that, &#8220;Oh yeah, right. The last page I was in, I was in the code editor.&#8221; But I always found it interesting that WordPress made the assumption that because I went into the code editor last, that is something I will continue to do. So I love that this is a setting now.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And I&#8217;m not quite sure it is actually the setting that you&#8217;re thinking about because the editor has now on top of the toolbar, there&#8217;s also a write and design tool. There was previously the select and edit tool where you can switch, especially for those who are traveling with a keyboard instead of the mouse, there was a difference between getting into a block to work in the block or to travel from one block to the next. So that was the select was the traveling from one block to the next. And then the writing part or the editing part was actually the block part where you can use the toolbar or you added content to a particular block.</p>\n\n\n\n<p><em>Joni Halabi:</em> I think I interpreted the Git, the pull request wrong then. Interesting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And there is also a change in how those two modes behave when you are in the zoom out mode.</p>\n\n\n\n<p><em>Joni Halabi:</em> Wow. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> 6.7 brings us the zoom out mode, but not the editing of design switches to it, only for the pattern. So that is the next thing on our list, is that the zoom out mode in 6.7 is just with a toggle button. With a new Gutenberg release, if you have that, it will also automatically zoom out when you use the pattern tab in the inserter when you want to drag and drop a pattern over to your site and you need a little bit better of a bird&#8217;s eye view on your page instead of just having that one kind of block in front of you. It&#8217;s a much better way to add. So you can now kind of drag and drop patterns over and move them up and down without having to deal with all the blocks around it or in it.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, yeah, no, there&#8217;s a great animation of this in the pull request that it&#8217;s nice to be able&#8230; Because when you&#8217;re talking about a pattern, you are talking about more than one block that can stand a good chunk of your page depending on the pattern. So it is nice to be able to see that in context, to see your entire page as it stands. Now if you&#8217;re trying to add another pattern and it just helps you think about, &#8220;Okay, well where can this new pattern go?&#8221; with respect to the entire page.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Exactly.</p>\n\n\n\n<p><em>Joni Halabi:</em> That is definitely one of the important ones. There are a number of changes to that zoom out functionality in this release, but that when you select the pattern tab, but that&#8217;s definitely one of the biggies.</p>\n\n\n\n<p>The next, I guess, really two sets of changes have to do with the component storybook. So there are a couple of changes to note. One, adding type tokens to storybook. And the other one is just stubbing out documentation on existing colors in a theme. And I think these are so fundamental because storybook talks about design in terms of the components in the UI. And I guess it just surprised me that it wasn&#8217;t there before, but color and photography are so basic to any design for anything that it is. I think it&#8217;s a wonderful change that these both are being added into storybook now. You can see basically the colors that exist in the base styles now, and then having the type tokens, you can see all of the register of typography. So you can see semantic tokens, like what are your different heading levels, for example. What does body text look like? And these are just fundamental design elements that I&#8217;m glad they&#8217;re there now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. You have been part of our live Q&amp;A and design systems. Now the WordPress design team is actually building out their design system through that storybook because the admin design now needs also the funds. And not only just the data views, how they&#8217;re in the site editor, but when you go to the next level and have the admin move over to the new design, you need to have standardized colors and standardized funds and all that. And that&#8217;s where the storybook comes in to have a unified system and standard for all the contributors that are either back end or front end or plugin developers to kind of figure out. So none of the developers have to make all the design decisions. Again, it speeds up the plugin development or the core development quite a bit when there is a design system there, yeah.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah. That&#8217;s fabulous.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> For the global styles, contributors improved the navigation logic for the revision screen. That had quite a change in a few of the plugin releases before and how do you get to the revisions of your styles. It&#8217;s a great change to see how you can see the revisions for your styles that are a little compressed and much easier to navigate in the animation. So it talks about the global styles are in the right-hand sidebar, and that&#8217;s also where you find the revisions of your changes. I&#8217;m so happy that we have those revisions because after playing around with a theme or with a site for, I don&#8217;t know, 30 minutes, I don&#8217;t know, I reversed some of my decisions because, &#8220;Oh, that looked nice 20 minutes ago, but now I don&#8217;t like it anymore.&#8221; So reversing that through the revisions panel is really cool. The team is working on, it&#8217;s really cool.</p>\n\n\n\n<p><em>Joni Halabi: </em>Yeah, no, no, no. I love that they&#8217;re working on that because I feel like a lot of our content editors don&#8217;t realize that revisions exist and it is such a powerful tool. So to be able to make improvements to the UI and maybe make it a little more obvious about how to use revisions, I think, will help our editors a lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And it&#8217;s not only&#8230; Well, they still have to work on the content revisions for posts and pages.</p>\n\n\n\n<p><em>Joni Halabi:</em> That&#8217;s it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> They still don&#8217;t know what to do with blocks, but yeah.</p>\n\n\n\n<p><em>Joni Halabi:</em> I mean, that does help you then.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> But that&#8217;s coming.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah. I mean, revisions, being able to work on the UI for revisions at any part of the styles or the&#8230; The styles, I feel like, is step one. So this is a great updates.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: They&#8217;re already there, yeah.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah. So in black bindings, we&#8217;ve now added the ability to register binding sources in the widget screen. So block bindings, for anyone who&#8217;s not familiar with, it&#8217;s when the content of a block is tied to some sort of external data source. So you could have a paragraph that is tied to some RSS feed maybe or anything.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. Or meta fields, a custom field.</p>\n\n\n\n<p><em>Joni Halabi:</em> Right. Or meta field, yeah. So this particular change makes sure that a block, like a paragraph, inside a widget can also be bound to some sort of custom source, like a meta field.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And we haven&#8217;t heard about the widget screens for a long time, so I&#8217;m really happy that there are some people still thinking, &#8220;Okay, there&#8217;s another block editor that has been neglected for a bit.&#8221; But I think the unification efforts between post editor and site editor, they&#8217;re done now. And I think looking at the widget screen is one of the next steps. And having the binding sources there definitely helps because that&#8217;s what you want to put in additional information there.</p>\n\n\n\n<p>The cover block experience, they refactor of the settings panel. It streamlined all the different features for a cover block and has some pull out. Up until now in the plugin, you had all the settings for the cover block in one sidebar. From top to bottom, you had to scroll. But now there is a three-dot menu there where you can switch off some of the features so you don&#8217;t have to scroll to them all of the time. So it&#8217;s similar to the typography settings as well as the dimension settings. Now, it&#8217;s just adopted the same philosophy there that not all the features are shown at the first time or by default.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, this is nice to see because the cover block has gotten complex for a reason. There&#8217;s a lot going on in terms of settings with the cover block, so it&#8217;s nice to see improvements there in that UI.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, absolutely.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Bug Fixes</h3>\n\n\n\n<p>So that kind of covers all the enhancements that we had, but there are a few bug fixes we wanted to talk to you about. The code block now has a left-to-right direction for right-to-left languages. Can you explain that to me?</p>\n\n\n\n<p><em>Joni Halabi:</em> Yes. So it&#8217;s tricky to read, right? So right-to-left languages, so think Hebrew, think Arabic. When you write, the paragraphs and the headings that you write go from your right hand to your left hand. But when you&#8217;re writing code, if you&#8217;re a native speaker, if you&#8217;re writing prose in a right-to-left language, but you&#8217;re writing code, your code is still left-to-right. So this is making sure that, let&#8217;s say that you have a page, let&#8217;s say that you&#8217;re blogging in Arabic and you&#8217;re blogging about this really cool feature that you just wrote and you write your paragraph and it&#8217;s in Arabic and it&#8217;s from right to left, but you want to feature a code snippet. This is to make sure that the code on your page is still displayed left-to-right, because that is still how we write code regardless of what spoken language we are writing or reading or speaking.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That makes so much more sense now. Thank you.</p>\n\n\n\n<p><em>Joni Halabi:</em> It is. I mean, it&#8217;s a lot of letters in that headline, so I understand why.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And for someone who never knows where left and right is, it&#8217;s going to, &#8220;What?&#8221;</p>\n\n\n\n<p><em>Joni Halabi:</em> I still have to do the hand trick where I make my index and my thumb form basically be at right angles of each other. And the one that makes the L is my left hand. And I still do this, so I understand.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, well that&#8217;s when my husband says, &#8220;The other left&#8221; when I go wrong.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, it&#8217;s always fun.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And now&#8230; Go ahead.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, no, so another fix is do not&#8230; I&#8217;m just going to read this title, don&#8217;t render image when the source attribute is empty, which feels very obvious. But this was a bug fix where if you had an image, an image tag, but an empty source, that image tag was still getting rendered. And there&#8217;s no point in rendering an image tag if there&#8217;s no source. So this fixes that bug.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It sounds like a rookie bug, but sometimes they just sneak in.</p>\n\n\n\n<p><em>Joni Halabi: </em>Yep.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, I have done a lot of dumb things like that. And then one is PR is in terms of extensibility, it kind of renames the register block template from W_register_block_templatetoregister_block_template. So the WP prefix is kind of taken away because it seems to be obvious and it follows other register block kind of function. But if you have been testing things with the new register block template for the plugins, you might want to look at your code and kind of remove the prefix kind of thing. I think that was back ordered to 6.7, so it&#8217;s in the 6.7. But if you have done it up until beta 3, I think with WP you can remove it now.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah. And I think you have to, because if I&#8217;m reading that PR correctly, there is no backwards compatibility for the WP prefixed version of this function, which it didn&#8217;t seem like it was supposed to be in anyone&#8217;s code anyway like in a custom developer&#8217;s code. But please double check your code.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, well, it&#8217;s a new feature for 6.7.</p>\n\n\n\n<p><em>Joni Halabi:</em> Oh, okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So it wasn&#8217;t backwards compatible, it just kind of wasn&#8217;t a kind of discussion now through co-op contributors. So this comes as a new function, &#8220;Can we make it uniform with the other register block kind of functions and remove the WP?&#8221; And so there is no backwards compatibility because it hasn&#8217;t been in the future, but it was in WordPress 6.7 alpha up until beta 2 or beta 3, and only for the release candidate, they take the WP out. So if somebody wrote a plugin template already to come out in 6.7, when 6.7 comes out, that&#8217;s the code to check again. Does it make sense?</p>\n\n\n\n<p><em>Joni Halabi:</em> That does make sense. Thank you, yeah. I didn&#8217;t realize that was that new. That&#8217;s awesome.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, it&#8217;s part of the&#8230; So now plugins can register templates for the site editor. So when you have a plugin that does a business directory or something like that, you can now register a template that then a user can modify in the site editor, which was before not possible or was a really hacky way to get it into that. And then you can, as a plugin developer, also document that. So the theme developer can also modify that template or build pattern for the template or something, yeah.</p>\n\n\n\n<p><em>Joni Halabi:</em> Nice.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, that&#8217;s nice. I like it. And I wanted to point out a couple documentation changes. There was in a previous version of the plugin and for 6.7 a method to curate the heading level through level options. And that is now documented in the block editor handbook. So you can say, &#8220;Okay, if your content editor uses the heading block, you don&#8217;t want a heading one, you don&#8217;t want a heading four or five and six. There are only two heading levels that they can use. And that&#8217;s heading two and heading three.&#8221; You can do it now and have also your patterns, follow that through a block attribute. And you can also use it for your custom blocks. It&#8217;s in the site title, post title. And for where you ever use headings, you can change that there as well. And it&#8217;s in from the toolbar, so it&#8217;s documented now.</p>\n\n\n\n<p><em>Joni Halabi:</em> Excellent. Yes, and I love this feature and I love that it&#8217;s now documented just from an accessibility perspective because making sure that your heading levels are in order and makes sense is part of your site accessibility. So for example, having an H1 followed by an H4 doesn&#8217;t make much sense. You want these headings to go in order. So this feature helps us enforce that. And this new addition to the documentation helps people use the feature.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, absolutely. So on the second documentation was just to announce that the components packages now produce the readme file with the documentation through an auto generator. So they&#8217;re at least standardized. And developers can, through their code, also control the documentation, but it doesn&#8217;t have to be an afterthought anymore and it&#8217;s standardized. So that&#8217;s kind of the first step to have some standardized component readmes because there are hit-and-miss to be honest. And this is kind of a part to rectify downtown.</p>\n\n\n\n<p>Joni Halabi: Nice.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And that&#8217;s it, dear listeners. That&#8217;s Gutenberg&#8217;s 19.5 for you.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Whatâ€™s in Active Development or Discussed &#8211; WordPress 6.7</h3>\n\n\n\n<p>So I promise you we&#8217;re going to talk about WordPress 6.7 a bit. So there are a few high level things. There are tons of changes in there, smaller ones and big ones. Anne McCarthy publishes for the last 10 releases, I think, a Source of Truth, which is mostly for writers who want to write about the new release to get in-depth information, to also get assets that they can use in their writing. But that is now published on the Gutenberg Times. So I will link through the show notes to that. So you can also follow up on some of the details there.</p>\n\n\n\n<p>I like to point out, well, we all know Twenty Twenty Five is the new default theme, and I have had a lot of fun with it. It was really good. I prepared a talk for German WordCamp where I was almost using up all my time with the Twenty Twenty Five standard theme, which wasn&#8217;t particularly well organized, but that&#8217;s a different story. But my excitement kind of spilled over that I got on a tangent. And so I really, really like that it has about, I think, 50 patterns for all kind of different things because it wants to be a starter theme for a personal blogger or for a photo blogger or for a magazine style site and has templates for all of them, and also different ways for the different templates. So you can have a query loop template with different ways how the post comes in. I think there are about 10 or so different ways to organize that. Then there are services, price tables, testimonials, not only in one pattern, but maybe two or three patterns of that. So that&#8217;s really cool.</p>\n\n\n\n<p>And what the crown of it is, that there are also four different&#8230; So there were color variations for the full theme. And then there are style variations for the full theme that changes the look and feel, but it also has separate color variations. So you could just leave the style like it is, but only change the color combination. Or you can say, &#8220;Okay, I want it like it is, but I just want to change the font.&#8221; So there are font variations as well.</p>\n\n\n\n<p>And then there are section styles. So when you have a group pricing header or a pricing section or a group block with a call to action, you can actually use four or five different styles. So when you add them to your page, you actually can change the color of each of them, but still be in a full theme variation. But it makes it much livelier to scroll through a page that has several sections that also changed the colors, but it&#8217;s really well done and they have been all tested. So it&#8217;s a really good theme. Kudos to Carolina Nymark and Juan Aldazoro. Oh, I&#8217;m butchering his name. Sorry, hang on.</p>\n\n\n\n<p><em>Joni Halabi:</em> I was just going to say while you&#8217;re looking that up, you talked quite a bit about the colors and a bit about the fonts, I love that these font variations include font combinations. So the font variation has these combinations of a header. They&#8217;re a set of a header and body fonts. And that is one of the most challenging things I have experienced trying to design a site, just trying to find a really good combination of a header font and text font. And this gives you eight different options that I can see that are really solid options. If you&#8217;re a bit shy about design and playing with typography, you can choose one of these eight and there are no bad choices here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah, no, the developers and designers that build out the theme, so the design comes from Beatriz Fialho, but Juan Aldazoro is his name, Juan Aldazoro and Carolina Nymark are the lead developers on the Twenty Twenty Five default theme, and they did a marvelous job also. But there are also about, I don&#8217;t know, 30 to 50 additional contributors that delivered patterns. So it&#8217;s actually a larger group of people who built this theme, and it&#8217;s really fabulous. So try it out and look at that.</p>\n\n\n\n<p>The query loop, so that was part of it that I tried out the new features for the query loop. It is now optimized and streamlined. So you have all kinds of filter settings. You can filter by author, date, or you can say, &#8220;Okay, I want to have a post loop just for a custom post type with custom fields.&#8221; And all of that is now possible for any template you can use. Or you can just use them on the post and say, &#8220;Okay, I want from the same category or the post from there, except this one.&#8221; So you can also include post and offset post. All the features are now available. Some of them were in the toolbar and now then the sidebar complete with all the new ones. That is a really great quality of life kind of change.</p>\n\n\n\n<p><em>Joni Halabi:</em> Oh yeah, for sure.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>We talked about the zoom out for the template handling. The page views and the site editor, that&#8217;s more the data views kind of how in the admin section how you can view the pages. There are some previews. There&#8217;s a list view where you have a three pane window. On the left-hand side, you have the block site editor navigation with the published kind of status. And then in the middle you have all the list, all the pages. And then when you click on them, the third pane is a preview of the page. So you don&#8217;t have to go back and forth when you just want to look at, &#8220;Okay, what&#8217;s in the page here? How does it look?&#8221; So you can also have it right there. So it&#8217;s a really improvement in navigating your pages.</p>\n\n\n\n<p>Yeah, I wish that was available for posts, but the developers are working on it. There&#8217;s an experiment. If you use 19.5 Gutenberg plugin and there&#8217;s an experiment menu item there and you enable the post data views, then you can see how that also works for posts. But it&#8217;s a little harder to make it for posts because there are so many customizations and things to look at. So right now it&#8217;s an experiment, but always welcome for feedback. Do you have any questions about things?</p>\n\n\n\n<p><em>Joni Halabi:</em> No, no. I was just going to say, as somebody who&#8217;s now less on the development side of things and more on the content side of things, I appreciate something that will make editing easier and being able to see those changes easier. Because like you were saying, having to flip between different screens, it&#8217;s not ideal. So seeing improvements, even if it&#8217;s not on posts yet, it&#8217;s coming to posts, that is something I&#8217;m looking forward to.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, they&#8217;re also experimenting with a quick edit part. So yeah, in the current admin you have the quick edit section where you change categories and rename things.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, love it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>So that also is coming to the data view section, so you can have that part as well if you missed it until now.</p>\n\n\n\n<p>A lot of designers are really excited about having background images not only for blocks like the cover block, but now you can also do it for group block. And you can have it site wide. So there is in the global styles, in the first list of typography and layout and styles, and there&#8217;s now one for background image. So you can have your clouds there or your tiles or whatever you need from your site. And sometimes I feel we could go back to GeoCities sites.</p>\n\n\n\n<p><em>Joni Halabi:</em> I was just thinking GeoCities. And in my head I was wondering like, &#8220;Should I bring it up? This is still very retro &#8217;90s.&#8221; Can I just make a shout-out? Please do not put in an animated background. It&#8217;ll make everybody who works in accessibility cry.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. Yeah. I think it only&#8230; It doesn&#8217;t do animated GIFs.</p>\n\n\n\n<p><em>Joni Halabi:</em> Oh, good.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I think it&#8217;s just Gs or JPEGs. Yeah, but you&#8217;re right. Yeah, that would be really cool. Hilarious, yeah. But I&#8217;m thinking that there are some designs that can be quite unique with that. I remember one of my first backgrounds was really bright red and bright blue, and then I had white fonts on it, and you couldn&#8217;t read what you were writing or what I was writing for it, so.</p>\n\n\n\n<p><em>Joni Halabi:</em> Oh, yeah. I remember when we were talking about Web 2.0 in the late &#8217;90s, and I was in an electronic arts curriculum at that point, and we were making web pages with hidden links. So you had to explore the page just by moving your mouse around to see if you happen to stumble upon a link. This will literally make everybody sad now. We know better, but this was experimentation in the late &#8217;90s.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Unless it&#8217;s a game or something like that, but yeah.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yeah, yeah. Exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So yeah, apart from the developer API changes that are there, so these are kind of my highlights for WordPress 6.7. And there are improved blocks. Most blocks now have border support that we are missing for&#8230; Only six or seven blocks at border support. And now almost every block has a border support with 6.7. So again, I will share the Source of Truth post from the Gutenberg Times, and also a link to the November 5th highlight live stream on YouTube for those who want to hear and see things beyond a podcast, which is really hard to demo things, but yeah.</p>\n\n\n\n<p>Well, is there anything else that you want to talk about, about block themes, block editor, WordPress or your life?</p>\n\n\n\n<p><em>Joni Halabi:</em> Oh, I could go on about so many of those things, but I think we&#8217;ve covered the basics. I think we&#8217;ve covered all the important things.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So let me ask you this. If you now do a lot of content, are you going to go back to some block writing or coding in your spare time, kind of rest your brain from the content editing and just do some coding?</p>\n\n\n\n<p><em>Joni Halabi:</em> I might. My challenge is finding spare time. My life is very filled with just research and writing, and then also my child and raising a six-year-old, like I will have spare time in about 12 years.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Okay. We&#8217;ll talk about it. What is that? WordPress 15.6 or something like that?</p>\n\n\n\n<p><em>Joni Halabi:</em> Oh, probably. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, this was lovely. Thank you so much for taking the time to be on the show. And we will hear from you sooner than in 12 years.</p>\n\n\n\n<p><em>Joni Halabi:</em> Yes, I certainly hope so.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; when you come back to show. Yeah. Well, it was great that we had you again and you walked with me through all the announcements and stuff there.</p>\n\n\n\n<p>I will share some links for Joni Halabi if you want to get in contact with her. I mentioned the Static versus Dynamic Blocks article on the developer blog. Joni also wrote a book, Sweet Little You, and that&#8217;s available. And then I&#8217;ll have the LinkedIn link as well as the WordPress profile link for you if you want to get in contact with Joni.</p>\n\n\n\n<p>As always, the show notes will be published on <a href=\"http://gutenbergtimes.com/podcast\">Gutenbergtimes.com/podcast</a>. This is show 110. And if you have questions or suggestions or news you want us to include, send them to <a href=\"mailto:changelog@Gutenbergtimes.com\">changelog@Gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@Gutenbergtimes.com\">changelog@Gutenbergtimes.com</a>. And this is it. Thank you for listening. And if you want to comment on&#8230; What is it? It&#8217;s not Storify, it&#8217;s not Shopify, it&#8217;s Spotify.</p>\n\n\n\n<p><em>Joni Halabi:</em> Spotify.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Spotify. When you listen on the Comcast there, send in a comment. If you listen on Apple, do a review. If you listen on Pocket Casts also, feel free to review our show so more people can join us for the next time. Thanks for listening and goodbye.&nbsp;</p>\n\n\n\n<p>Goodbye, Joni. Thank you.</p>\n\n\n\n<p><em>Joni Halabi</em>: Goodbye. Thank you so much.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Oct 2024 08:17:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"Gutenberg Times: Over 1000 Block Themes, Gutenberg 19.5, Fieldguide WordPress 6.7 â€” Weekend edition #309\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=30554\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://gutenbergtimes.com/over-1000-block-themes-gutenberg-19-5-fieldguide-wordpress-6-7-weekend-edition-309/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18584:\"<p>Howdy, </p>\n\n\n\n<p>How are you today? It&#8217;s getting cold again in Munich. This year, I am hopefully better prepared for the Winter than last year.</p>\n\n\n\n<p>After a few days struggling to figure out the problem, <strong>Gutenberg Nightly</strong> is now available again&nbsp;<a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\" target=\"_blank\" rel=\"noreferrer noopener\">via Playground</a>&nbsp;or from the page <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\" target=\"_blank\" rel=\"noreferrer noopener\">Need a zip from Gutenberg trunk branch?</a>  Huge Thank You to <a href=\"https://x.com/jonsurrell\"><strong>Jon Surrell </strong></a>for fixing the repo and the build process. </p>\n\n\n\n<p>I hope you&#8217;ll have a restful weekend. </p>\n\n\n\n<p>Yours, ðŸ’•<br /><em>Birgit</em></p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/over-1000-block-themes-gutenberg-19-5-fieldguide-wordpress-6-7-weekend-edition-309/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/over-1000-block-themes-gutenberg-19-5-fieldguide-wordpress-6-7-weekend-edition-309/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/over-1000-block-themes-gutenberg-19-5-fieldguide-wordpress-6-7-weekend-edition-309/#1-000-block-themes-in-the-wordpress-theme-directory\">1,000 Block Themes in the WordPress theme directory! </a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/over-1000-block-themes-gutenberg-19-5-fieldguide-wordpress-6-7-weekend-edition-309/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ol>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>ICYMI Here are the block editor related <strong>Dev Notes</strong> from the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-1/\"><strong>WordPress 6.7 RC1 </strong></a>release and the <strong><a href=\"https://make.wordpress.org/core/2024/10/23/wordpress-6-7-field-guide/\">Fieldguide for WordPress 6.7</a></strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/updates-to-block-hooks-in-wordpress-6-7/\">Updates to Block Hooks in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/block-bindings-improvements-to-the-editor-experience-in-6-7/\">Block Bindings: Improvements to the Editor Experience in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/developer-notes-for-zoom-out-in-wordpress-6-7/\">Developer Notes for Zoom Out in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/20/new-plugin-template-registration-api-in-wordpress-6-7/\">New Plugin Template Registration API in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/20/miscellaneous-block-editor-changes-in-wordpress-6-7/\">Miscellaneous Block Editor Changes in WordPress 6.7</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/18/auto-sizes-for-lazy-loaded-images-in-wordpress-6-7/\">Auto Sizes for Lazy Loaded Images in WordPress 6.7</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/18/post-editor-iframing-with-meta-boxes-in-wordpress-6-7/\">Post Editor iframing with meta boxes in WordPress 6.7</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/18/editor-components-updates-in-wordpress-6-7/\">Updates to user-interface components in WordPress 6.7</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/18/extending-the-preview-dropdown-menu-in-wordpress-6-7/\">Extending the Preview Dropdown Menu in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/new-block-type-registration-apis-to-improve-performance-in-wordpress-6-7/\">New block type registration APIs to improve performance in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/roster-of-design-tools-per-block-wordpress-6-6-edition-2/\">Roster of design tools per block (WordPress 6.7 edition)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/updates-to-the-html-api-in-6-7/\">Updates to the HTML API in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/15/subscribe-to-changes-in-the-interactivity-api-state-and-context-on-client-side-navigation-in-6-7/\">Subscribe to changes in the Interactivity API state and context on client-side navigation in 6.7</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/14/updates-to-script-modules-in-6-7/\">Updates to Script Modules in 6.7</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Seizing the moment, <a href=\"https://x.com/webtng\">David McCan</a> published a tutorial on <a href=\"https://www.webtng.com/how-to-use-the-wordpress-beta-tester-plugin/\"><strong>How to Use the WordPress Beta Tester Plugin</strong></a>. It&#8217;s a great tool that allows you to test pre-release edition of the next WordPress version. &#8220;There are a lot of reasons why people want to test a pre-release. Maybe youâ€™re a theme or a plugin developer, and you want to make sure that your theme or plugin is going to work with the next version of WordPress. Or maybe youâ€™ve got some critical sites, and you want to make sure there arenâ€™t going to be any surprises with the next version of WordPress. Or maybe youâ€™re curious about the upcoming changes and features that will be in the next version.&#8221; he wrote. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A reminder: <a href=\"https://x.com/ankitguptaindia\"><strong>Ankit K Gupta</strong></a>, release co-lead for testing, provided detailed instructions on how to <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\"><strong>Help test WordPress 6.7 </strong></a></li>\n\n\n\n<li>ICYMI:<strong> Anne McCarthy </strong>published the<strong> <a href=\"https://gutenbergtimes.com/tag/source-of-truth/\">Source of Truth</a></strong> for WordPress 6.7 last week. </li>\n</ul>\n\n\n\n<p>Save the date! <strong>November 5th, 2024 at 17:00 UTC</strong> with a live stream on <a href=\"https://www.youtube.com/watch?v=K6N098ElnYU\"><strong>WordPress 6.7 Highlights a Q &amp; A</strong></a> with Jamie Marsland, Rich Tabor and Nick Diego </p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Gutenberg 19.5 </strong>was released and Hector Prieto wrote in his release post <a href=\"https://make.wordpress.org/core/2024/10/24/whats-new-in-gutenberg-19-5-23-october/\"><strong>Whatâ€™s new in Gutenberg 19.5? (23 October)</strong></a>, that the release mostly focused on stabilizing existing features but also brings some improvements to the general&nbsp;UI&nbsp;and the zooming editing experience. </p>\n\n\n\n<p>He highlighted: </p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/10/24/whats-new-in-gutenberg-19-5-23-october/#smoother-zoom-in-out-experience\">Smoother Zoom in/out experience</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/24/whats-new-in-gutenberg-19-5-23-october/#other-notable-changes\">Other notable changes</a></li>\n</ol>\n\n\n\n<img width=\"652\" height=\"367\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/gb-19-5-icon-update-768x432-1.png?resize=652%2C367&ssl=1\" alt=\"\" class=\"wp-image-30599\" />\n\n\n\n<p>It was a great pleasure to have <strong>Joni Halabi</strong>, Georgetown University, on the show again and to geek out over the block editor. We discussed, Gutenberg 19.5, Create Block theme plugin and marvel at the fact there are now 1000 Block Themes available in the WordPress repo. The episode 110  arrive at your favorite podcast app over the weekend. If you listen to the podcast on Spotify, you can now leave a comment from your phone. I would love to get connected with more listeners.</p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>ðŸŽ™ï¸ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-110-gutenberg-19-5-wordpress-6-7-create-block-theme-plugin/\">Gutenberg Changelog #110 â€“ Gutenberg 19.5, WordPress 6.7, Create Block Theme Plugin and a Thousand Block Themes at the Repository</a> with Joni Halabi </p>\n\n\n\n<img width=\"652\" height=\"184\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/Screenshot-2024-10-25-at-17.17.35.png?resize=652%2C184&ssl=1\" alt=\"\" class=\"wp-image-30608\" />\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Elliot Richmond</strong> demos a <a href=\"https://www.youtube.com/watch?v=lTMo5yy2M_I\"><strong>Mobile Fix for Complex Layouts in the WordPress Block Editor (No Theme Files Needed)</strong></a>, You&#8217;ll learn how to write custom CSS using the browser inspector and style editor, then paste it into the block editor for a no-code-friendly mobile solution.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://www.linkedin.com/in/noruzzaman/overlay/about-this-profile/\"><strong>Md Noruzzaman</strong></a> just added the <a href=\"https://wordpress.org/plugins/geomap-block/\"><strong>Geomap Block</strong></a> to the plugin repository that allows you to add a basic Google map to your post or pages without handline API keys.</p>\n\n\n\n<a href=\"https://wordpress.org/plugins/geomap-block/\"><img width=\"652\" height=\"409\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/Screenshot-2024-10-24-at-15.37.49.png?resize=652%2C409&ssl=1\" alt=\"\" class=\"wp-image-30583\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Wes Theron</strong> recorded a new video for <em>Learn.WordPress</em> on how to <a href=\"https://wordpress.tv/2024/10/22/creating-a-portfolio-site-with-a-block-theme-and-patterns/\"><strong>create a portfolio site with a block theme and&nbsp;patterns</strong></a> using a up-and-coming <strong><a href=\"https://2025.wordpress.net\">Twenty Twenty-Five</a></strong> WordPress default theme which has an extensive pattern library. This will show you how to leverage these patterns to save time and build your site from a solid foundation.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Over at the CSS Tricks, <strong>Geoff Graham</strong> shared Justin Tadlock&#8217;s article on the Developer blog, and ruminated in <a href=\"https://css-tricks.com/mastering-theme-json-you-might-not-need-css/\"><strong>Mastering theme.json: You might not need&nbsp;CSS</strong></a> about writing CSS in style sheets vs. CSS in JS and WordPress way. &#8220;Regardless of all that, Iâ€™m linking this up because Justin does bang-up work (no surprise, really) explaining and illustrating the ways of CSS-in-WordPress.&#8221; Graham wrote. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-000-block-themes-in-the-wordpress-theme-directory\">1,000 Block Themes in the WordPress theme directory! <a href=\"https://x.com/bph/status/1848663985547030832/photo/1\"></a></h3>\n\n\n\n<p>Theme team rep, <strong><a href=\"https://x.com/TheKafleG\">Ganga Kafle</a></strong>, invites you to <a href=\"https://make.wordpress.org/themes/2024/10/23/celebrating-1000-block-themes-in-the-themes-repository/\"><strong>Celebrate 1,000 Block Themes in the themes repository!</strong></a></p>\n\n\n\n<p><strong>Anne McCarthy</strong> also published on WordPress News: <a href=\"https://wordpress.org/news/2024/10/wordpress-community-creates-1000-block-themes-in-1000-days/\"><strong>WordPress Community Creates 1,000 Block Themes in 1,000 Days</strong></a></p>\n\n\n\n<p><strong>Jyolsna J E </strong>also covered this major milestone for the WPTavern: <a href=\"https://wptavern.com/wordpress-themes-repository-now-houses-1000-block-themes\"><strong>WordPress Themes Repository Now Houses 1000 Block Themes</strong></a></p>\n\n\n\n<img width=\"652\" height=\"341\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/blockthemes-featured-image-news-scaled-1.webp?resize=652%2C341&ssl=1\" alt=\"1,000 Block Themes\" class=\"wp-image-30594\" />\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2024&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly.â€‚The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a>&nbsp;|&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>Have you ever run into a situation where you needed to unregister a block pattern in your theme?&nbsp;<strong>Justin Tadlock</strong> has the right snippet for you. <a href=\"https://developer.wordpress.org/news/snippets/conditionally-unregister-patterns/\"><strong>Snippet: Conditionally unregister patterns</strong></a>. This post also starts a new section on the Developer Blog of short code snippets that any developer could use for a specific use case. For now, we still need to get some kinks out of theme and editorial process, but soon we start publishing more code snippets in CSS, PHP, JavaScript, or JSON </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest video tutorial, <a href=\"https://www.briancoords.com/add-custom-css-and-javascript-to-any-wordpress-block/\"><strong>Add custom CSS and JavaScript to any WordPress block</strong></a>, <strong>Brian Coords</strong>, walks you through the process of modifying any block.json with simple PHP to load your own custom CSS and JavaScript. The post also holds the full transcript of the video for those of us who want to read along. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this week&#8217;s live stream, <strong>Ryan Welcher</strong> showed <strong><a href=\"https://www.youtube.com/watch?v=mQv9EaBbdJ8\">how to turbocharge Your WordPress with Custom Blocks in WordPress 6.7</a></strong>, disseminating the information from the Dev Note <a href=\"https://make.wordpress.org/core/2024/10/17/new-block-type-registration-apis-to-improve-performance-in-wordpress-6-7/\">New block type registration APIs to improve performance in WordPress 6.7</a></p>\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 26 Oct 2024 02:21:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"HeroPress: Building For Their Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=7578\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://heropress.com/building-for-their-future/#utm_source=rss&utm_medium=rss&utm_campaign=building-for-their-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2423:\"<img width=\"800\" height=\"532\" src=\"https://heropress.com/wp-content/uploads/2024/10/kolkata_child.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Child being bathed in an alley in Kolkata\" /><p>HeroPress was inspired by a photo. </p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/daverosen/\">Dave</a> (who bootstrapped the project) gave me one mandate: &#8220;I&#8217;m very open to whatever you make, but whatever it is, in some way I want it to help this child&#8221;. And he sent the following photo.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2024/10/kolkata_child.jpg\" class=\"kb-advanced-image-link\"><img width=\"800\" height=\"532\" src=\"https://heropress.com/wp-content/uploads/2024/10/kolkata_child.jpg\" alt=\"Child being bathed in an alley in Kolkata\" class=\"kb-img wp-image-7579\" /></a>\n\n\n\n<p>Now that&#8217;s a stock photo, you can find it all over the web.  We&#8217;ll never know who that specific kid is, but the point was that there are millions of kids like that in India, and Dave wanted to give a boost to as many of them as we could. Ever since then, HeroPress has been deeply tied to India.</p>\n\n\n\n<p>Recently I was telling this story to Nathan Wrigley on the <a href=\"https://wpbuilds.com/2024/10/24/395-heropress-what-it-is-and-why-its-so-important/\">WPBuilds Podcast</a>. I was talking about my concern for the WordPress community in these days of difficulty. Many many Indians have gotten their start in computing in their early teens, on their own computer, or a borrowed one, or even on just a phone.</p>\n\n\n\n<p>While we were talking I realized, if this kid were about 3-5 years old when the photo was taken, approximately 10 years ago when HeroPress started, it&#8217;s entirely possible he&#8217;s 13-15 years old now, and could very well be learning about WordPress.  And it&#8217;s entirely possible HeroPress has helped him.</p>\n\n\n\n<p>We&#8217;ll never know of course, but can say for a certainty that HeroPress has helped people LIKE him.</p>\n\n\n\n<p>Mission accomplished Dave.</p>\n\n\n\n<p>If you&#8217;d like to help HeroPress continue to help people of all ages, <a href=\"https://heropress.com/contributor-map/\">everywhere in the world</a>, leave a <a href=\"https://heropress.com/donate/\">donation</a>.</p>\n<p>The post <a href=\"https://heropress.com/building-for-their-future/\">Building For Their Future</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Oct 2024 16:39:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Do The Woo Community: Do the Woo Friday Shares, Starting Today\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86303\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://dothewoo.io/blog/do-the-woo-friday-shares-starting-today/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:204:\"Friday shares recap weekly highlights and content from Do the Woo community, featuring diverse resources, news, and events aimed at enhancing engagement and contributions within WordPress and WooCommerce.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Oct 2024 09:23:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Do The Woo Community: Around the Corner, WooSesh 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=86292\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://dothewoo.io/around-the-corner-woosesh-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"BobWP reminds the community to register for the free WooSesh 2024 event on October 29-30, featuring valuable sessions, live chats, and Seshie voting.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Oct 2024 12:56:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: WordPress Themes Repository Now Houses 1000 Block Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=176325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/wordpress-themes-repository-now-houses-1000-block-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3630:\"<p>The WordPress Themes Repository has hit an exciting milestone of <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">1,000 block themes</a>. As of today, the repository has over 12,000 free themes.&nbsp;</p>\n\n\n\n<img width=\"3021\" height=\"1612\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-39.png\" alt=\"\" class=\"wp-image-176334\" />\n\n\n\n<p>Block themes were introduced in WordPress 5.9 allowing users to create and customize all aspects of their site using the block editor. This ushered in a new era of site design, and in July 2022, the Themes Repository celebrated reaching the <a href=\"https://x.com/justintadlock/status/1549025125441441792\">100-block-theme</a> mark. It hit the <a href=\"https://x.com/bph/status/1605806982446850048\">200 mark</a> in December 2022.</p>\n\n\n\n<p>The journey of block themes was not without challenges leading to the <a href=\"https://wptavern.com/what-arent-more-wordpress-theme-authors-creating-block-themes\">community discussing</a> why more theme authors were not embracing block themes. To give block themes greater visibility, a â€œBlock Themesâ€ menu item was added to the filter menu on the directory homepage, helping developers and site owners discover these innovative designs more easily.</p>\n\n\n\n<p>Ganga Kafle, a representative of the WordPress.org Themes Team, has <a href=\"https://make.wordpress.org/themes/2024/10/23/celebrating-1000-block-themes-in-the-themes-repository/\">shared</a> more details about block themes and contributors. The very first block theme to go live was Armando, a theme crafted by Carolina Nymark. Today, Automattic leads the contributions to the block themes category with 116 themes, followed by Creta Themes with 41 themes.&nbsp;</p>\n\n\n\n<img width=\"3222\" height=\"1592\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-37.png\" alt=\"\" class=\"wp-image-176327\" />Top 10  WordPress Theme Contributors\n\n\n\n<p>Ganga Kafle also shared the teamâ€™s vision, â€œThe themes team would like to see more block themes. We expect an influx of innovative designs and functionalities. Whether youâ€™re a developer, designer, or site owner, the potential of block themes offers exciting opportunities for creativity and customization.â€</p>\n\n\n\n<p>Remkus de Vries <a href=\"https://x.com/remkusdevries/status/1848703764896629067\">tweeted</a>, &#8220;It started out real slow, but it seems we&#8217;ve finally got some momentum for the Block Themes. Let&#8217;s see how long it takes for the next 1000!&#8221; while Jeff Chandler <a href=\"https://x.com/jeffr0/status/1848678432147747079\">tweeted</a>, &#8220;Back in 2021, Matt&#8217;s request was for 5,000 block themes, not 1,000 lol. Still a bit shy of that number :D.&#8221;</p>\n\n\n\n<p>Automattic Product Wrangler Anne McCarthy also published <a href=\"https://wordpress.org/news/2024/10/wordpress-community-creates-1000-block-themes-in-1000-days/\">WordPress Community Creates 1,000 Block Themes in 1,000 Days</a> to mark the occassion. </p>\n\n\n\n<p>For developers interested in getting started with block themes, Carolina Nymarkâ€™s<a href=\"https://fullsiteediting.com/lessons/creating-block-based-themes/\"> guide to creating WordPress block themes</a> is an excellent resource. They can also explore the <a href=\"https://developer.wordpress.org/themes/\">WordPress Theme Developer Handbook</a> and <a href=\"https://learn.wordpress.org/tutorial/streamline-your-block-theme-development-with-create-block-theme/\">Learn WordPress</a> for more information and join the <a href=\"https://github.com/WordPress/community-themes\">WordPress Community Themes repository</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2024 19:24:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Gravatar: Upgrade Author Profiles with the Gravatar Block for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.gravatar.com/2024/10/23/upgrade-author-profiles-with-the-gravatar-block-for-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2778:\"<p>Say goodbye to generic author boxes. The Gravatar Enhanced plugin for WordPress just got a major upgrade with a fully customizable Profile block. Now you can showcase your authors in style â€“ and give your SEO a boost while you&#8217;re at it.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Complete Control Over Your Author Profiles</h2>\n\n\n\n<p>The new Gravatar Profile block puts you in the driver&#8217;s seat. Customize:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Width and layout to match your site design </li>\n\n\n\n<li>Background and text colors for perfect branding</li>\n\n\n\n<li>Border styles for that extra pop</li>\n\n\n\n<li>Which profile elements to display (or hide)</li>\n</ul>\n\n\n\n<p>Best part? Your authors can update their profiles directly through Gravatar.com â€“ no WordPress access needed. Perfect for multi-author blogs and company websites.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Boost Your SEO with Enhanced Author Signals</h2>\n\n\n\n<p>Google loves knowing who&#8217;s behind your content. The new Profile block helps establish E-E-A-T signals (Experience, Expertise, Authoritativeness, and Trustworthiness) by:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Linking to author profiles</li>\n\n\n\n<li>Displaying verified social accounts</li>\n\n\n\n<li>Showcasing author credentials and expertise</li>\n</ul>\n\n\n\n<p>These reputation signals can help search engines better understand and rank your content.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Quick Setup Guide</h2>\n\n\n\n<img tabindex=\"0\" width=\"1600\" height=\"1200\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/screenshot-rocks-1.png\" alt=\"Screenshot of the Site Editor showing the Color and Dimensions controls of the Gravatar Profile block.\" class=\"wp-image-2334\" />\n\n\n\n<ol class=\"wp-block-list\">\n<li>Install the <a href=\"https://wordpress.org/plugins/gravatar-enhanced/\">Gravatar Enhanced</a> plugin</li>\n\n\n\n<li>Add the <em>Gravatar Profile</em> block to your single post templates</li>\n\n\n\n<li>Customize the look and feel</li>\n\n\n\n<li>Watch as author profiles automatically update across your site</li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">Why Switch to the New Profile Block?</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Better than the default</strong>: More features, more control, more professional</li>\n\n\n\n<li><strong>Time-saving</strong>: Authors manage their own profiles</li>\n\n\n\n<li><strong>SEO-friendly</strong>: Built-in support for Google&#8217;s E-E-A-T signals</li>\n\n\n\n<li><strong>Always current</strong>: Gravatar profile updates reflect everywhere instantly</li>\n</ul>\n\n\n\n<p>Ready to upgrade your author profiles? Get the <a href=\"https://wordpress.org/plugins/gravatar-enhanced/\">Gravatar Enhanced</a> plugin today and start customizing!</p>\n\n\n\n<p><em>Pro tip: This block can be used on any page or post, too!</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2024 17:50:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WordPress.org blog: WordPress Community Creates 1,000 Block Themes in 1,000 Days\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2024/10/wordpress-community-creates-1000-block-themes-in-1000-days/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3329:\"<img width=\"1024\" height=\"536\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news.webp?resize=1024%2C536&ssl=1\" alt=\"Layout of numerous colorful images of block themes laid out in a grid.\" class=\"wp-image-18033\" />\n\n\n\n<p class=\"is-style-default has-large-font-size\">In nearly 1,000 days, the WordPress community has created <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">1,000 Block themes</a>â€”coming together to use the full potential of the Site Editor and unleash new creative possibilities for everyone. </p>\n\n\n\n<p class=\"is-style-default\">First introduced in WordPress 5.9, Block themes have steadily evolved, improving flexibility and functionality for themers, users, and agencies alike. Now, design tools allow customizing almost every detail. With style variations, users can change the overall look of their site in a few clicks. You can even use <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/\">curation options</a> to customize the editing process itself. But weâ€™re not done! We canâ€™t wait to keep pushing Block themes even further. Thank you to every early adopter who, by embracing early features with passion, helped shape the Block themes we love today with feedback and testing.</p>\n\n\n\n<p>If you havenâ€™t yet explored Block themes, check out some of the resources below to get inspired:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use one of the <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">1,000 Block themes available</a> and see what you can create. For an easy way to explore, try <a href=\"https://wordpress.org/playground\">WordPress Playground</a> to quickly get started with a temporary site.&nbsp;</li>\n\n\n\n<li>Read the <a href=\"https://developer.wordpress.org/themes/\">Theme handbook</a> to understand types of themes, how themes work, and how to get started building.&nbsp;</li>\n\n\n\n<li>Use the <a href=\"https://learn.wordpress.org/lesson/create-block-theme-plugin/\">Create Block Theme plugin</a> to streamline Block theme creation with a <a href=\"https://learn.wordpress.org/tutorial/streamline-your-block-theme-development-with-create-block-theme/\">dedicated tutorial</a> on Learn WordPress that will help you get started.&nbsp;&nbsp;</li>\n\n\n\n<li>Get inspired by <a href=\"https://github.com/WordPress/community-themes\">watching and joining community members building themes together</a>. This is a great way for folks new to Block themes to learn, hands-on.&nbsp;</li>\n</ul>\n\n\n\n<p>Letâ€™s celebrate and share our contributions! Please comment on the <a href=\"https://make.wordpress.org/themes/2024/10/23/celebrating-1000-block-themes-in-the-themes-repository/\">Theme Teamâ€™s post dedicated to highlighting this milestone</a> to share your favorite Block theme and thank those who have contributed along the way.&nbsp;</p>\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/kristastevens/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>kristastevens</a> for editorial help, <a href=\"https://profiles.wordpress.org/beafialho/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>beafialho</a> for the featured image, and <a href=\"https://profiles.wordpress.org/kafleg/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>kafleg</a> for reviewing.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2024 17:01:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: #142 â€“ Miriam Schwab and Oliver Sild on Security Collaboration Between Elementor and Patchstack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=176318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wptavern.com/podcast/142-miriam-schwab-and-oliver-sild-on-security-collaboration-between-elementor-and-patchstack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50099:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast, which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the recent security collaboration between Elementor, and Patchstack.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Miriam Schwab and Oliver Sild.</p>\n\n\n\n<p>Miriam co-founded Strattic, a platform with an aim to revolutionize WordPress security and performance on the web. After Elementor aquired Strattic, Miriam continued leading the unit before becoming a head of WordPress relations.</p>\n\n\n\n<p>Prior to that, Miriam founded and managed a prominent WordPress development agency in Israel. With over 15 years of experience, she&#8217;s a respected member of the WordPress community and a frequent speaker at WordPress events.</p>\n\n\n\n<p>Oliver is the CEO and co-founder of Patchstack, a company dedicated to the mitigation of security vulnerabilities in WordPress and open source environments. Patchstack is now a seven year old enterprise, and they specialize in penetration testing, security process management, and protective services for developers, agencies, and major hosting companies.</p>\n\n\n\n<p>[00:02:07] <strong>Nathan Wrigley:</strong> Oliver&#8217;s background also includes experience running an agency, and his work at Patchstack focuses on collaborating with plugin developers and hosting providers to ensure robust security measures for their clientele.</p>\n\n\n\n<p>Miriam and Oliver joined me at WordCamp US 2024 in Portland, where they did a presentation discussing the processes needed to enhance open source plugin security, and the advantages of leveraging bug bounty partnerships.</p>\n\n\n\n<p>Their collaboration brings to light the importance of integrating security solutions within the WordPress ecosystem, especially for companies with a footprint as large as that of We talk about the global operations of</p>\n\n\n\n<p>Oliver&#8217;s team at Patchstack, who work across all time zones, providing round the clock threat intelligence and vulnerability monitoring.</p>\n\n\n\n<p>We also explore the Patchstack system as a whole and how it categorizes WordPress vulnerabilities based on their exploitation likelihood, and their implementation of virtual patches to protect against high and medium priority vulnerabilities automatically, without code changes.</p>\n\n\n\n<p>We also get into how Miriam&#8217;s team at Elementor collaborates with Patchstack to ensure rapid and professional handling of vulnerabilities, enhancing security for their 17 million installations.</p>\n\n\n\n<p>The partnership between Elementor and Patchstack is a great example of how different companies within the WordPress community are able to work together to provide better outcomes for their users.</p>\n\n\n\n<p>If you&#8217;re curious about the intersection of page builders and security in WordPress, or the value of collaborative partnerships in maintaining the ecosystem, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Miriam Schwab and Oliver Sild</p>\n\n\n\n<p>I am joined on the podcast today by Miriam Schwab and Oliver Sild. Hello.</p>\n\n\n\n<p>[00:04:14] <strong>Miriam Schwab:</strong> Hi.</p>\n\n\n\n<p>[00:04:15] <strong>Oliver Sild:</strong> Hello.</p>\n\n\n\n<p>[00:04:16] <strong>Nathan Wrigley:</strong> We&#8217;re in Portland. We&#8217;re at WordCamp US. It is 2024, and Miriam and Oliver have done a presentation, which I think happened yesterday. How did it go?</p>\n\n\n\n<p>[00:04:26] <strong>Miriam Schwab:</strong> I think quite well. I&#8217;ve been getting good feedback. What about you?</p>\n\n\n\n<p>[00:04:28] <strong>Oliver Sild:</strong> Yeah, I think it was great. I think, after the talk, we had a lot of people coming to us, and to ask about how they can, you know, replicate that on their plugins as well and it was very good.</p>\n\n\n\n<p>[00:04:37] <strong>Miriam Schwab:</strong> I actually ran into someone who was like, that was the best talk I&#8217;ve heard since the start of the conference, just by the way.</p>\n\n\n\n<p>[00:04:41] <strong>Nathan Wrigley:</strong> The title of that presentation was Enhancing Open Source Plugin Security, Establishing Robust Processes and Leveraging Bug Bounty Partnerships. And the podcast today is going to be about a partnership between, well, in Miriam&#8217;s case, Elementor, because that&#8217;s where Miriam&#8217;s working, and in Oliver&#8217;s case, Patchstack, because that&#8217;s where he&#8217;s working.</p>\n\n\n\n<p>Before we get into the nuts and the bolts of it though, can we start with Miriam? Can you just give us your little potted bio, like less than a minute, something like that?</p>\n\n\n\n<p>[00:05:06] <strong>Miriam Schwab:</strong> So, hi, I&#8217;m Miriam Schwab. I&#8217;m head of WordPress relations at Elementor. I act as a type of liaison between Elementor and the broader WordPress community. I joined Elementor about two years ago when they acquired the startup that I co-founded called Strattic, which was static hosting for WordPress. And that&#8217;s where my biggest activity around security started to happen. I basically created Strattic to solve security issues around WordPress. That was my biggest motivating factor for founding it. And then after joining Elementor I became quite involved in our security around our plugin specifically, and the processes behind it, and how we communicate with the community at large. And so that&#8217;s kind of how this all happened.</p>\n\n\n\n<p>Okay, great. Thank you, Miriam. And if you want to hear more from Miriam, I did a podcast episode with her from WordCamp Asia earlier this year. So you can check that out as well. I&#8217;ll put a link in the show notes. And, Oliver?</p>\n\n\n\n<p>[00:05:57] <strong>Oliver Sild:</strong> Yeah. I&#8217;m Oliver, I&#8217;m the CEO and co-founder of Patchstack. Actually, this month we turned seven years old, so already quite a long time. What we do is, we have just one very clear mission, it&#8217;s providing the fastest mitigation to security vulnerabilities in WordPress, and in open source. So we work with plugin developers, we do pen testing for them, manage their security processes. We also provide protection for developers and agencies for websites, to protect them from the vulnerabilities. And we work with probably most of the biggest hosting companies, in terms of helping them identify vulnerabilities in their customer&#8217;s websites, and also protect them from that.</p>\n\n\n\n<p>Yeah, I mean, from my own background, I used to also run an agency, which I think literally everyone has done at one point of the time. I had like a very strong security focus early on, so I did like malware research, and then met my co-founder who did vulnerability research. Fun fact, we met in Reddit. That&#8217;s how we actually met. But yeah, also do a lot of community stuff, so organising capture the flag events in Estonia.</p>\n\n\n\n<p>Right now, in WordCamp US, we also host a WordPress CTF, so everyone can go and join that. I don&#8217;t know when it&#8217;s going live, probably it&#8217;s over then. There&#8217;s a lot going on, and being very active in NGOs. I have co-founded a co-working space in Estonia, which is now a startup center and stuff. So a lot of community, open source and security stuff.</p>\n\n\n\n<p>[00:07:14] <strong>Nathan Wrigley:</strong> Thank you, Oliver, that&#8217;s great.</p>\n\n\n\n<p>So over the last few years, WordPress has been sort of replete with acquisitions, and then it felt like that dropped off the news and partnerships came along. And that became a big thing, and obviously Elementor, Patchstack partnering up. It seems like a curious thing to be partnering on. One is a page builder, that&#8217;s pretty clear, one is security. How did this come about, and what possible benefit is there with a security company partnering with a page builder company?</p>\n\n\n\n<p>[00:07:39] <strong>Miriam Schwab:</strong> So I&#8217;ll just start by explaining a bit about my approach to my position at Elementor, which is that, I want to find the ways that we can work together with other companies in the space, even ones that seemingly compete with us. Because there&#8217;s generally a place for us to collaborate, we have shared and common users. When we work together, things go better for everyone. I just really feel like there&#8217;s a power in two organisations, or companies coming together to achieve goals together. So I do actually quite a lot of that in general.</p>\n\n\n\n<p>With Patchstack it&#8217;s actually a really straightforward win-win here, I think, and definitely a win for Elementor. So Elementor, the plugin, the core and the free have an active install base of over 17 million websites, right? Which is a mind-boggling number. And that means that everything that Elementor does, we have to do quite carefully, right? Because it can impact the users very positively, and then something goes wrong that&#8217;s quite a negative experience.</p>\n\n\n\n<p>And that includes security. We need to make sure that the plugin is as secure as possible for this very broad user base. And we have a lot of very robust internal processes around ensuring that the code is secure before it&#8217;s deployed and released. But anyone who works in software will know that, no matter what you do, you can do everything and be superhuman, things still might end up having a vulnerability that needs to be dealt with after deployment. It&#8217;s just the nature of the game.</p>\n\n\n\n<p>So were working with a bug bounty program called Bugcrowd to bring another very significant layer of security to our plugin post-deployment. I was fortunate to meet Oliver, I think it&#8217;s like almost two years ago, at least a year and a half ago or something. I had been looking at what Patchstack was doing, I was very impressed. Their specific focus on WordPress plugins, and open source, and also the clear passion that they have for open source, and making open source ecosystems more secure. That really, I think resonated with me and with Elementor.</p>\n\n\n\n<p>And so we started to explore whether Patchstack could be a good solution for us to add another layer of security to our plugin, with that angle of expertise in WordPress. And so, you know, we start to explore that and work together, and it&#8217;s been successful from day one. And brings a lot of value, not just to Elementor, by bringing their like additional expertise to the table. But also obviously to our end users who can be confident that there&#8217;s a very thorough, and professional, and responsible process behind bug disclosure, and how we handle it, and release patches very, very quickly. Our turnaround time is quite fast.</p>\n\n\n\n<p>[00:09:58] <strong>Nathan Wrigley:</strong> So can I just unpack that for the audience who in many cases won&#8217;t be particularly technical. So, does the workflow go a bit like this? Elementor creates a new feature, creates an update, has something that they need to push out to the plugin, and that is then created on your side. But then somehow it gets pushed over to Patchstack, and then Patchstack inspect it, check it, make sure that it passes all the tests that maybe they&#8217;re using, and then passes it back to you and says, go, no go. Is it basically something like that?</p>\n\n\n\n<p>[00:10:25] <strong>Miriam Schwab:</strong> It&#8217;s something like that. I&#8217;ll explain a bit, and then I&#8217;ll let Oliver like expand on that. Basically, Patchstack receives a report from one of their security researchers that there&#8217;s an issue with Elementor. Patchstack gets more than one report, okay, in general, but the additional value that they bring to us is that they review the reports to make sure that what we&#8217;re seeing, and then dealing with, are quality reports.</p>\n\n\n\n<p>There&#8217;s a lot of researchers that just, they&#8217;re just looking to report stuff. So they&#8217;ll repeatedly report like ridiculous things that aren&#8217;t really a problem for anyone, just wasting everyone&#8217;s time. So we get high quality reports from Patchstack. We replicate it, you know, we determine the plan of action, and the team creates a patch for it, test it on our end as thoroughly as we can.</p>\n\n\n\n<p>Pretty early on within our work with Patchstack, we added a stage, I asked if they could do it, I think it was something like that, and they&#8217;re like, yeah, of course. And it&#8217;s possible they already did it, but we hadn&#8217;t experienced that before, that we then send it to them for review to make sure that it fully resolves the issue. That&#8217;s very value add because it&#8217;s additional pairs of eyes on it. And once they&#8217;ve confirmed, then that actually goes out to release to our users, and all that. But I&#8217;ll let Oliver just explain more about that.</p>\n\n\n\n<p>[00:11:26] <strong>Nathan Wrigley:</strong> Yeah. So just to confirm, that is one of the things that&#8217;s happening. Once you&#8217;ve packaged it up, it gets handed over to Patchstack. Patchstack inspect it, like I said, go, no go, something along those lines. Okay, over to Oliver for the technical details.</p>\n\n\n\n<p>[00:11:37] <strong>Oliver Sild:</strong> So it&#8217;s important to understand that our logic is that, the only way how we can provide the fastest mitigation for security vulnerabilities in the WordPress ecosystem is when we cover the entire life cycle of a security vulnerability.</p>\n\n\n\n<p>That starts from the point of someone finding it, reporting it to a vendor, patching it, to users getting notified about it, and users getting mitigated, and to the point where they eventually, you know, fix it, right?</p>\n\n\n\n<p>Which includes three different key stakeholders, right? So it&#8217;s plugin developers, website builders, or like website owners who build websites, and hosting companies who also have like a huge responsibility because they are like hosting that code and everything, right?</p>\n\n\n\n<p>So the reason why probably we are one of those only ones that are going to validate the patches is because we need to do it anyways. That&#8217;s the very simple answer.</p>\n\n\n\n<p>Because ultimately we have responsibility in front of our customers who are using Patchstack to protect their websites. And if we don&#8217;t validate the patches that we see, like plugins releasing fixes, then how do we actually know that it&#8217;s patched? Because there&#8217;s so many cases where vulnerabilities are getting patched by the vendors, but then you look into it and they patch the wrong thing, or they just kind of like messed something up. So for the hackers, it&#8217;s very easy to bypass it, and things like that.</p>\n\n\n\n<p>So before we tell our customers that, hey, now you don&#8217;t have a security vulnerability anymore, we must make sure that it&#8217;s the actual case, right? So that&#8217;s really where this comes from because yeah, as I said, we cover the entire life cycle. So our customers, developers and agencies who use Patchstack to get their websites, you know, we call it virtual patching, which is like auto mitigation of vulnerabilities in real time.</p>\n\n\n\n<p>So to get everything mitigated as soon as possible, and then plugins to fix all the vulnerabilities as soon as possible. And then hosting companies to be able to send out notifications. Everything, we need to basically combine all this into a single process. So internally we could say that we are actually doing one thing, but it just kind of like spans out in three different locations.</p>\n\n\n\n<p>[00:13:35] <strong>Nathan Wrigley:</strong> Where do you get your data from? Where do the data points about what&#8217;s going on in the world, for Patchstack, how does that come into you? Have you got like a, I don&#8217;t know, like a red team or something like that, or is it just your paid employees that are constantly going out looking? I genuinely have no idea how that information comes in into your inbox if you like, for want of a better word.</p>\n\n\n\n<p>[00:13:53] <strong>Oliver Sild:</strong> So there&#8217;s three sources really. We have internal security researchers that do a lot of pen testing, they do a lot of research in general.</p>\n\n\n\n<p>Then what we started doing, four years ago already, was we created the first kind of like open bug bounty program for WordPress. So if you, Nathan find the security vulnerability in someone else&#8217;s like Miriam&#8217;s plugin, then we pay you if you report it.</p>\n\n\n\n<p>So we started like incentivising security researchers to start looking for vulnerabilities in the WordPress eco system, because there was so many of them to find. And if you don&#8217;t give incentives for hackers to report them properly, then they are going to do something else with it. So that was something that we started doing, yeah, about four years ago already.</p>\n\n\n\n<p>And we have like 1,600 people in the community, of like ethical hackers all around the world. We have like a leaderboard system, and they get rewarded. Just two weeks ago, one of the researchers got like 16.4k for a single vulnerability, which we paid out from our own money.</p>\n\n\n\n<p>But we do all of that because we want to protect our customers, right? And also it helps to protect the plugins as well, because it gets the plugins, you know, fix the vulnerabilities before, potentially hackers have had time to kind of like do that.</p>\n\n\n\n<p>But there&#8217;s this third one then, which is the MVDP. So we act as a security point of contact for a lot of plugins. So Elementor is one example, but we have 400 other plugins that actually pass every single vulnerability to Patchstack. So we help them validate those issues. We help them to verify that the patches are complete and everything like that. And that&#8217;s also how we basically become like the best security solution for their users, because we are able to protect them very, very fast.</p>\n\n\n\n<p>[00:15:28] <strong>Nathan Wrigley:</strong> So we could be having the same conversation with Miriam with 400 other companies. There are 400 companies with the same kind of relationship. I&#8217;m guessing not many of them with 17 million installs. But actually that&#8217;s a serious point though. The fact that you&#8217;ve got 17 million installs kind of makes this more important than almost any other plugin out there in all honesty. Because if something goes wrong, it&#8217;s going to completely break. You know, it&#8217;s not like a minor function of your website, it probably is the entire website, the front facing website.</p>\n\n\n\n<p>And so I guess you have a pretty big target on your back. You know, if somebody can leverage, or figure out a vulnerability in Elementor, that&#8217;s going to be worth more than, I don&#8217;t know, plugin X over there that has 24 installs on the repo, or something like that. So the security posture from your side has to be really, really serious.</p>\n\n\n\n<p>And so, is it like a bi-directional relationship? Like, if you discover something, and I&#8217;m pointing at Oliver. If Patchstack discover something, you can then send it directly to Elementor, and forewarn them about that problem. They can fix their code. But it works in the other direction as well. You don&#8217;t know you&#8217;ve got a vulnerability, so you pass it to Patchstack, they figured that you have, and it comes back. So it&#8217;s this nice circle of virtue where you&#8217;re both helping each other out.</p>\n\n\n\n<p>[00:16:37] <strong>Miriam Schwab:</strong> There&#8217;s a few different directions that this security relationship works with Patchstack. So one is that they have their community of security researchers, that&#8217;s what they&#8217;re called, who are basically constantly trying to break into everyone&#8217;s stuff. That&#8217;s more or less what they&#8217;re doing.</p>\n\n\n\n<p>Now that could be like, oh no, why are they doing that? That sounds so terrible. But like, they&#8217;re not the only ones doing it, right? They&#8217;re doing it in order to then report it, so that it can be fixed.</p>\n\n\n\n<p>There&#8217;s other people who are just like them out there who are doing the same thing for malicious purposes, and don&#8217;t necessarily plan on reporting it, but plan on exploiting it.</p>\n\n\n\n<p>So we want these security researchers doing what they&#8217;re doing, and then reporting it to Patchstack, and Patchstack reports it to us. And then we start this cycle of mitigating it, and releasing a patch that fully resolves it.</p>\n\n\n\n<p>Because we&#8217;re so big, and we have such a huge code base, so definitely we&#8217;re like a target of interest because let&#8217;s say the ROI for a hacker, or a vulnerability is high for Elementor, so that&#8217;s why we take it seriously in terms of this full circle type of approach to the security before deployments and after deployment, which I described.</p>\n\n\n\n<p>But another way that we work with Patchstack is when we get reports that aren&#8217;t from Patchstack, because that also happens. But we find a lot of value in making sure that Patchstack is in the loop even on those reports. Theoretically, we could get a report from someone else, and I&#8217;ll explain how briefly, but we could get a report from someone else, and then we could just do our own thing. But we want to be as responsible and as transparent as possible around vulnerabilities that exist in Elementor.</p>\n\n\n\n<p>From our perspective, security&#8217;s not something to be embarrassed about because we know we&#8217;re doing everything we can. It&#8217;s something to just accept that it&#8217;s going to be a thing, but the question is not if, but how? So our how, is to be very, very responsible about it and transparent.</p>\n\n\n\n<p>So when we get these reports, we loop Patchstack in, and we tell them that we&#8217;ve got this report so that they can be part of the process, and make sure that the loop is closed in the most secure way possible, including that they look at these reports as well, and our patches as well, to make sure that we&#8217;re fully resolving it.</p>\n\n\n\n<p>[00:18:33] <strong>Nathan Wrigley:</strong> So you&#8217;re sort of patting each other&#8217;s backs in a way. You know, something that you get gets passed to them, that&#8217;s kind of nice free intel for them. It came to you first, but it ends up at Patchstack, so they can then act on that, and send it out to your other 400 customers if it might affect them. That&#8217;s nice.</p>\n\n\n\n<p>[00:18:47] <strong>Miriam Schwab:</strong> I think it helps Patchstack. I can&#8217;t speak for Patchstack, but I think it helps for Patchstack to have the full, the full vision of what&#8217;s going on with every, let&#8217;s say, all plugins that are in their MVD program, which means, by the way, MVDP is managed vulnerability disclosure program. Yes, that&#8217;s important because not everyone will know what that is.</p>\n\n\n\n<p>To have the full visibility into what&#8217;s going on, so when we share that information with Patchstack, it helps Patchstack have more information for everyone, and also for us, Elementor going forward. So there&#8217;s like more context for everyone. And then that comes back to this approach of transparency as well.</p>\n\n\n\n<p>Again, Oliver can speak to this, probably working with a plugin of our scale, while there&#8217;s a lot more at stake here, it brings a lot of learnings into Patchstack because there&#8217;s not that many plugins that are at the scale. I think there&#8217;s maybe five that are over 10 million active installs in the plugin repository. They recently updated the numbers so that it will show that, at least there&#8217;s that. And it&#8217;s a whole other ball game when you&#8217;re at that scale of size, reach, code base, age, right? Elementor is eight years old, so all that, but Oliver can talk to that.</p>\n\n\n\n<p>[00:19:42] <strong>Oliver Sild:</strong> So one of the things is that, if we look at the data from the past years. In 2023, if we look at all the security vulnerabilities being known, or made public in the WordPress ecosystem, over 76% originated from Patchstack. The number and the volume is incredibly high. And even if we talk about historic data, like all the WordPress historically, Patchstack has processed the highest amount of security vulnerabilities that are biggest amount of them, or even majority I would say.</p>\n\n\n\n<p>So that also gives us like some level of experience in terms of how much we&#8217;ve had to already work with security researchers. We understand how they like to report things, what are the issues with the reportings, and things like that, but also like how to build processes internally, so you would be able to even like, cope with that kind of a load, right?</p>\n\n\n\n<p>So I think there&#8217;s this kind of experience we&#8217;ve had there, which has allowed us to actually build a solution that works for Elementor, and they have a very high standards. So I think without the hard work we&#8217;ve done over the past years, it could have not been possible.</p>\n\n\n\n<p>By the way, we provide all of this to Elementor for free, Elementor doesn&#8217;t pay anything for providing MVDP service. And we provide this for free for everyone in the WordPress ecosystem. And we built this entire MVDP program, and the platform, together with European Union because European Union is going to pass a law in Q4 that is making this actually mandatory for all commercial open source software.</p>\n\n\n\n<p>[00:21:03] <strong>Nathan Wrigley:</strong> Why do you do it for free? You could see my face, my eyes open thinking, hang on, wait, why?</p>\n\n\n\n<p>[00:21:08] <strong>Oliver Sild:</strong> So, one of the reasons is because European Union funded building it for free, for us as well, right? So we got 2.7 million euros to build it, and to build all the processes and everything around it. European Union understood that WordPress ecosystem is just so massive in scale, and they chose us to do it because of our track record.</p>\n\n\n\n<p>And now we are very well connected with that, and as they are, you know, preparing to release this new regulation, which by the way, like even US companies need to comply with. So everyone who has European users, every software that has commercial element to it, like accepting donations, having paid support, having premium version, or even if they&#8217;re just not fully free, but like the company that owns the plugin has any commercial activity, they need to comply.</p>\n\n\n\n<p>And the things that they need to comply is have a VDP program, which is literally what we built. You need to start releasing patches separately from functional releases. There is going to be a lot of those kind of changes, like you have to notify users about vulnerabilities. You have to notify users later on, also if the vulnerability is getting mass exploited. There&#8217;s these kind of rules, and our platform basically pre complies you for that entire regulation.</p>\n\n\n\n<p>The reason why we do it also for free is exactly what Miriam told, it&#8217;s like we also get visibility. Because as I mentioned, we cover the entire life cycle of vulnerabilities, so our goal is to provide the fastest mitigation to vulnerabilities. And the way to do that is to know about vulnerabilities. So for our end users and to all Elementor users, for example, who are using Patchstack, they know that the fastest way to get protected is from Patchstack, because we work together with Elementor. We work together with other plugins, and that&#8217;s how they know that they are getting protected by Patchstack as well.</p>\n\n\n\n<p>[00:22:42] <strong>Miriam Schwab:</strong> So both of us have strange business models, Elementor and Patchstack, because if you think about it, Elementor&#8217;s 17 million active installs, the vast majority of them are using our free product, and that&#8217;s our business model. And Patchstack&#8217;s business model is based also on providing a lot of value for free that then ends up being an actual business model. I wonder if these types of business models, that bring a lot of people value for free, could exist outside of open source, and could exist outside of WordPress.</p>\n\n\n\n<p>[00:23:08] <strong>Nathan Wrigley:</strong> Do you both advertise each other&#8217;s presence then? For example, Miriam, do you on your website somewhere say, we have this relationship with Patchstack, I don&#8217;t know, protected by Patchstack or something? And again, in the opposite direction, do you say, yeah, one of our customers, Elementor? I don&#8217;t know if there&#8217;s anything in that.</p>\n\n\n\n<p>[00:23:24] <strong>Miriam Schwab:</strong> We have a page on our site that we make sure is linked to from the footer of every page on our site. It&#8217;s called our Trust Center. It&#8217;s very important for anyone who has some kind of security process, which everyone should, to have an easy way for people to find how to report issues to the company, because otherwise people might find something, not know how to report it. It ends up in some random person&#8217;s inbox, nobody pays attention, and that&#8217;s not good for anyone.</p>\n\n\n\n<p>So we have this trust page that describes all of our security process and everything, and that links to our Bug Bounty page. It&#8217;s a page fully dedicated to just explaining our Bug Bounty program. And it clearly states there that all plugin related issues should be, and need to be reported to Patchstack. And we highly request that people respect that process because it allows Patchstack to make sure that these vulnerabilities are patched quickly, and it allows Elementor to make sure that it&#8217;s patched quickly. Which is better for everyone because we have the processes in place based around our partnership with Patchstack.</p>\n\n\n\n<p>So that&#8217;s clearly visible on our site. And we talk about in different forums, for example, the talk given yesterday, and of course this interview right now. So it&#8217;s something that&#8217;s quite publicly known.</p>\n\n\n\n<p>[00:24:27] <strong>Oliver Sild:</strong> So what we also have is, on Patchstack, we have a vulnerability database, which is completely free to use in public, where everyone can see what are the latest vulnerabilities. We show people like what the priorities there are and so forth. But it also has a directory of VDPs. So we actually have a directory where you see all the plugins that have VDP programs active.</p>\n\n\n\n<p>So that also gives you, as a developer or user, an understanding of like, okay, I want to use a plugin for my website for a specific function, let&#8217;s say a page builder. I want to use something that has proper security practices in place. So that&#8217;s where we have like this directory where you can go and look into which ones actually have a VDP program.</p>\n\n\n\n<p>We also have like a highlighting there for those plugins that are, you know, also contributing more into the community aspect as well. Actually, Elementor is featured there currently.</p>\n\n\n\n<p>So, I think having mature security processes is a big competitive advantage for plugins as well, because developers are going to choose stuff that they feel, security is, in general, very hot topic right now. I just talked yesterday with some quite big hosts in the space, and they said that it used to be that everyone was asking about performance, and now everyone is asking about security.</p>\n\n\n\n<p>And that also means that this kind of interest to security has, you know, reached the developers and everywhere. And when they make those decisions of, what plugs should I use, they are going to eventually choose the ones that they can trust most.</p>\n\n\n\n<p>[00:25:47] <strong>Nathan Wrigley:</strong> Does it muddy the water a bit? In other words, let&#8217;s say that I&#8217;m a customer, and I&#8217;m out there looking for a page builder. I come to Elementor, I&#8217;ve got my site up and running and I&#8217;m thinking, okay, I want some sort of security, I&#8217;ve heard that security&#8217;s a thing on my website. Does it muddy the water? Commercial rivals of Patchstack, for example, is the implication, okay, you must only use Patchstack. Patchstack is our preferred customer, nothing else will work. Do you ever get any intel like that?</p>\n\n\n\n<p>And the other way around? You know, if people have got some sort of security posture, but they&#8217;re looking for a page builder, do you know what I mean? There could be some sort of misunderstanding, like we only work with Elementor, or we only work with Patchstack. Do you ever get any of that kind of intel where it&#8217;s, I don&#8217;t know, muddied the water, confused things?</p>\n\n\n\n<p>[00:26:25] <strong>Miriam Schwab:</strong> The way that is generally accepted that companies and products work when it comes to their security processes, and particularly with regards to their bug bounty programs, is that they will define their bug bounty programs, and it is highly requested that people respect that.</p>\n\n\n\n<p>That isn&#8217;t always the case, and so we have had to put some processes in place where we are capable of accepting reports from other parties or individuals, who for one reason or another prefer to send it directly to us.</p>\n\n\n\n<p>So it doesn&#8217;t mean that you have to only work with Patchstack. We want reports to go wherever they can go that will make sure that we&#8217;ll get them so that we can take care of them. Legitimate reports, right? High quality reports.</p>\n\n\n\n<p>But then at that point we loop Patchstack in anyways. And that&#8217;s one of the great things about our relationship with Patchstack, they&#8217;re not like, oh, they didn&#8217;t send a to us so, you know, good luck to you, take care of it yourself. It comes back to this interest in having full visibility. And we want Patchstack&#8217;s input in making sure that everything is done properly. Both in terms of us patching it fully and resolving the issue.</p>\n\n\n\n<p>But some other things that come up is that sometimes these other reporters send us reports that are not clear. Patchstack sends us reports that are quite clear, replicable, which means that we can recreate them on our end, which helps us figure out how to fix them, right? If you can&#8217;t see the problem, you can&#8217;t fix it, and well documented. Sometimes we get reports from other sources that are quite unclear. So Patchstack can even help us ask the right questions, or sometimes try to figure out what&#8217;s going on there, either we&#8217;ll do it ourselves. Basically the process is either directly to Patchstack, then to us. Or to us, and then to Patchstack, and then to us. And then that loop starts from that direction.</p>\n\n\n\n<p>So we&#8217;re open to working with anyone. We want the reports to come to us. If for some reason people really refuse to work with Patchstack as our bug bouncy program, that&#8217;s okay. Patchstack is still part of our bug bouncy process, but we are capable of handling that as well.</p>\n\n\n\n<p>[00:28:16] <strong>Oliver Sild:</strong> We actually work with other security companies. I don&#8217;t know if you&#8217;re not aware, but like Patchstack is powering vulnerability notification system and V Patching for Solid Security, which was previously known as iThemes Security. We do that for WPMU Defender. We do that for SecuPress. We do that for Shield Security. We do that for WP Guardian, which is a co-product with Patchstack and WebPros.</p>\n\n\n\n<p>So I think what is very common between Patchstack and Elementor is that we actually work with everyone, together. Regardless whether they are like a competitor or not. We work with everyone who is willing to work together with us as well. Everything that we do in Patchstack is about collaboration.</p>\n\n\n\n<p>As I&#8217;m saying, like we work with hosting companies, we work with plugins, we work with developers and agencies. I think that is literally the only way how to succeed in making the ecosystem secure.</p>\n\n\n\n<p>In general, I think that allows us to also just make it actually as secure as it can go. And I think, from going forward from here, with all the regulations and everything also coming in, I think it&#8217;s the only way really.</p>\n\n\n\n<p>[00:29:12] <strong>Nathan Wrigley:</strong> Let&#8217;s take the scenario, Miriam, that you discover, or it is discovered by you, so not by Patchstack, out there in the wild somewhere there&#8217;s a serious problem in the Elementor&#8217;s code base. And it&#8217;s Friday night, and it gets reported to you. I&#8217;m just interested, what is the behind the scenes process that you have got set up between you to make things happen in a timely fashion?</p>\n\n\n\n<p>So I&#8217;m taking the example of, you know, Friday night being the beginning of the weekend, everybody&#8217;s going off for a couple of days, this is a bad time to discover it. I&#8217;d be interesting to know, how does that get handed off, and how does it then come back? What are the backend systems that you&#8217;ve put in place that we&#8217;ll never know about, will never be discoverable to us, but I&#8217;m presuming they now exist since you&#8217;ve partnered up with each other?</p>\n\n\n\n<p>[00:29:51] <strong>Miriam Schwab:</strong> So there&#8217;s two types of reports. I mean, there&#8217;s a lot of types of reports, but I&#8217;m just going to divide them into two categories.</p>\n\n\n\n<p>One report, type of report is this issue is being actively exploited. Meaning bad people know about it and are already trying to hack sites with it. Or this issue is some level of severity and needs to be taken care of, but nobody knows about it yet.</p>\n\n\n\n<p>Okay, so in the case of the first one, it&#8217;s all hands on deck, do or die, let&#8217;s fix this. I can&#8217;t think that this has happened since we started working with Patchstack, so I&#8217;m like theorising here. But, probably we&#8217;ll reach out to them in one of our direct channels. So like we have a shared Slack channel with Patchstack, they&#8217;re very responsive there.</p>\n\n\n\n<p>So it would be like, help, all the sirens. We&#8217;re like now dealing with this. If it&#8217;s actively exploited, we know we&#8217;ll be like, okay, we&#8217;re probably already working on it, right?</p>\n\n\n\n<p>But, FYI, heads up, we&#8217;re going to like be releasing this as soon as possible, please be available so we can send it to you just for review before we do. So that&#8217;s one type.</p>\n\n\n\n<p>The second type is you can breathe more. There&#8217;s different levels of severity. Meaning if between now and some point it&#8217;s discovered, if it&#8217;s a high level of severity, then oh my goodness. If it&#8217;s low level security, then it&#8217;s like it&#8217;s not going to affect all sites, only going to affect some certain types of users, like that kind of stuff. So it&#8217;s like less urgent.</p>\n\n\n\n<p>But that probably means that we can all just continue our weekend. I&#8217;m theorising again, so nobody should take me at it and be like, what? You&#8217;re going to sleep through the weekend with this? No, that&#8217;s not what I mean. Each vulnerability is looked at for vulnerability, and if it&#8217;s super urgent or highly urgent, then it gets the attention immediately, Patchstack will be pulled in. But if not, then there&#8217;s like a pretty clear process around it in terms of internal timelines, and the timelines that Patchstack gives us.</p>\n\n\n\n<p>So the reason that Patchstack gives a timeline is because, if they report something, a plugin, developer, or whatever has a certain amount of time within which they need to patch it. It&#8217;s better for everyone that that exists. There&#8217;s a lot of other things that you want to make a priority, so you could just kind of drag it on. But It will eventually be found.</p>\n\n\n\n<p>If something is not patched within the timeframe, then Patchstack has a whole process, which Oliver can explain. But it does get disclosed, let&#8217;s say, to the plugin review team, and that&#8217;s a serious matter for the plugin then to have to deal with it at that point.</p>\n\n\n\n<p>And then we create our own internal timeline in terms of how fast we have to turn around a patch, also based on the level of severity. So if it&#8217;s highest level of severity, it&#8217;s like really fast, medium, less fast. But our turnaround time, our customers keep raving about it on like bugs, but also security issues, we&#8217;re very fast. We take it seriously in all situations. Whether it happens Friday night at midnight or, you know, Sunday morning, because our work week starts a Sunday, that&#8217;s a different story.</p>\n\n\n\n<p>[00:32:14] <strong>Nathan Wrigley:</strong> Oliver, just before you begin, I have a friend who&#8217;s a medic and he is in trauma surgery. His phone is the conduit to, like the alarms are sounding. Do you have something equivalent to like that? Do you operate a sort of 24/7? I think you said you&#8217;ve got a distributed team. So you&#8217;re able to react right now, no matter what time of the day or night, 365 days of the year. Is that the kind of thing that you do? I was saying about the weekend, do you all take the weekend off? How does it work?</p>\n\n\n\n<p>[00:32:38] <strong>Oliver Sild:</strong> We do cover all time zones. So we have people in Asia, we have people in Europe, we have people in the US. This is important for us to do threat intelligence and, you know, security research in general.</p>\n\n\n\n<p>One thing, also in terms of like a zero days, or like in vulnerabilities in general, one thing that we help the, I would say our developer to sleep over the weekend, is that we are actively monitoring whether this vulnerability is getting exploited or not.</p>\n\n\n\n<p>So immediately when we see any kind of like signals that there is an actual exploitation attempt against this vulnerability, they would be notified immediately.</p>\n\n\n\n<p>We also take care of this kind of like a background threat intelligence monitoring part, where we know about the vulnerability, so we have signals whether this vulnerability type is getting exploited or not.</p>\n\n\n\n<p>[00:33:17] <strong>Nathan Wrigley:</strong> So you could tell whether a zero day is realistically a zero day, okay. In theory it&#8217;s possible, but nobody&#8217;s doing anything about it, so maybe we can step down a little bit.</p>\n\n\n\n<p>[00:33:27] <strong>Oliver Sild:</strong> So there&#8217;s two things we do. One thing is that we have created what we call Patchstack Priority. And this is like a special scoring made for prioritising WordPress vulnerabilities based on the likelihood of them becoming exploited.</p>\n\n\n\n<p>So we have high priority vulnerabilities, which is based on historic data, vulnerability types, and there&#8217;s like a lot of data around that shows that this vulnerability, basically we predict that this vulnerability is going to become exploited.</p>\n\n\n\n<p>And then we have medium priority, which is vulnerabilities that are potentially going to be exploited in targeted attacks. Doesn&#8217;t mean that it&#8217;s mass exploited, but it&#8217;s like, you know, if you have like a e-commerce store, for example, that holds credit card details, there&#8217;s a higher potential that this is going to be used in a targeted attack.</p>\n\n\n\n<p>And then there&#8217;s low priority, which is like, this is not going to get exploited at all.</p>\n\n\n\n<p>Based on that, we also kind of modify our timelines and everything. And also we generate virtual patches based on that, which is the auto mitigation feature that we have for all the high and medium vulnerabilities. We immediately create virtual patches, which are like essentially vulnerability specific protection rules that get automatically deploy to our customer sites without changing any code or anything. It&#8217;s very, like a precise way of making sure that this vulnerable function can&#8217;t be used in any other way than it was originally intended.</p>\n\n\n\n<p>So because of that, we have full visibility into the kind of like a network, whether we see where a specific vulnerabilities are being exploited or not. And that allows us to also basically notify back to the plugin developers later saying like, hey, we now have proof that this vulnerability has been exploited, here&#8217;s all the attacker&#8217;s information, all that kind of stuff. So we have a lot of data around that as well.</p>\n\n\n\n<p>[00:35:03] <strong>Nathan Wrigley:</strong> I think it&#8217;s amazing that WordPress as a CMS is big enough to have a page builder plugin and a security plugin at the scale that they can not only function independently, but also they can create a really meaningful partnership between the two of you. And I have really found this conversation fascinating. It&#8217;s really interesting peeling back the curtain and seeing how you&#8217;re doing things behind the scenes, if you like, so that you&#8217;re protecting all of your customers. Thank you so much, Oliver. Thank you so much, Miriam. Where can we find you online?</p>\n\n\n\n<p>[00:35:34] <strong>Miriam Schwab:</strong> You can find me personally on Twitter at Miriam Schwab. I&#8217;m also on Make WordPress Slack, post status Slack, LinkedIn, whatever. And Elementor of course is on all the social networks. We&#8217;re active on Instagram, Twitter, our website, elementor.com.</p>\n\n\n\n<p>[00:35:48] <strong>Oliver Sild:</strong> All the same places, but just Oliver Sild.</p>\n\n\n\n<p>[00:35:51] <strong>Nathan Wrigley:</strong> Perfect, and Patchstack.</p>\n\n\n\n<p>[00:35:53] <strong>Oliver Sild:</strong> Yes, patchstack.com.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://x.com/miriamschwab\">Miriam Schwab</a> and <a href=\"https://x.com/OliverSild\">Oliver Sild</a>.</p>\n\n\n\n<p>Miriam co-founded Strattic, a platform with an aim to revolutionise WordPress security and performance on the web. After <a href=\"https://elementor.com/\">Elementor</a> acquired Strattic, Miriam continued leading the unit before becoming Head of WordPress Relations. Prior to that, Miriam founded and managed a prominent WordPress development agency in Israel. With over 15 years of experience, she&#8217;s a respected member of the WordPress community and a frequent speaker at WordPress events.</p>\n\n\n\n<p>Oliver Sild is the CEO and co-founder of <a href=\"https://patchstack.com/\">Patchstack</a>, a company dedicated to the mitigation of security vulnerabilities in WordPress and open-source environments. Patchstack is now a seven-year-old enterprise, and they specialise in penetration testing, security process management, and protective services for developers, agencies, and major hosting companies. Oliver&#8217;s background also includes experience running an agency, and his work at Patchstack focuses on collaborating with plugin developers and hosting providers to ensure robust security measures for their clientele.</p>\n\n\n\n<p>Miriam and Oliver joined me at WordCamp US 2024 in Portland, where they did a presentation discussing the processes needed to enhance open source plugin security and the advantages of leveraging bug bounty partnerships. Their collaboration brings to light the importance of integrating security solutions within the WordPress ecosystem, especially for companies with a footprint as large as that of Elementor.</p>\n\n\n\n<p>We talk about the global operations of Oliver&#8217;s team at Patchstack, who work across all time zones, providing round-the-clock threat intelligence and vulnerability monitoring. We also explore the Patchstack system as a whole and how it categorises WordPress vulnerabilities based on their exploitation likelihood, and their implementation of virtual patches to protect against high and medium-priority vulnerabilities automatically without code changes.</p>\n\n\n\n<p>We also get into how Miriam&#8217;s team at Elementor collaborates with Patchstack to ensure rapid and professional handling of vulnerabilities, enhancing security for their 17 million installations. The partnership between Elementor and Patchstack is a great example of how different companies within the WordPress community are able to work together to provide better outcomes for their users.</p>\n\n\n\n<p>If you&#8217;re curious about the intersection of page builders and security in WordPress, or the value of collaborative partnerships in maintaining the ecosystem, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://elementor.com/\">Elementor</a></p>\n\n\n\n<p><a href=\"https://patchstack.com/\">Patchstack</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/112-miriam-schwab-on-balancing-wordpress-success-and-family-life\">Miriam Schwab on Balancing WordPress Success and Family Life</a> &#8211; previous podcast</p>\n\n\n\n<p><a href=\"https://www.bugcrowd.com/\">Bugcrowd</a></p>\n\n\n\n<p><a href=\"https://patchstack.com/bug-bounty/\">Patchstack&#8217;s bug bounty program</a></p>\n\n\n\n<p><a href=\"https://solidwp.com/security/\">Solid Security</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/secupress/\">SecuPress</a></p>\n\n\n\n<p><a href=\"https://getshieldsecurity.com/\">Shield Security</a></p>\n\n\n\n<p><a href=\"https://wpmudev.com/project/wp-defender/\">WPMU Dev Defender</a></p>\n\n\n\n<p><a href=\"https://wpguardian.co.uk/\">WP Guardian</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"Do The Woo Community: From Blogs to WooCommerce Shops, Privacy Policies with Donata Stroink-Skillrud\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=86264\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://dothewoo.io/from-blogs-to-ecommerce-shops-privacy-policies-with-donata-stroink-skillrud/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:194:\"Emma and Adam chat with Donata on the essential nature of website policies for WooCommerce. Highlights include compliance, consequences of neglect, and the importance of clear privacy practices.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2024 12:53:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"BuddyPress: BuddyPress 14.2.1 Maintenance &amp; Security release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=335364\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://buddypress.org/2024/10/buddypress-14-2-1-maintenance-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3817:\"<p><a href=\"https://downloads.wordpress.org/plugin/buddypress.14.2.1.zip\">BuddyPress 14.2.1</a> is now available. This is a maintenance &amp; security release. <strong>All BuddyPress installations should be updated as soon as possible</strong>.</p>\n\n\n\n<p>The 14.2.1 release addresses the following security issue:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The &#8220;Take Photo&#8221; feature (which uses the logged in user&#8217;s Webcam to capture their profile photo) was vulnerable to an authenticated (Subscriber+) directory traversal. Discovered byÂ Domons from the Wordfence organization.</li>\n</ul>\n\n\n\n<p>This vulnerability was reported privately to the BuddyPress team, in accordance withÂ <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">WordPressâ€™s security policies</a>. Our thanks to the reporter for practicing coordinated disclosure.</p>\n\n\n\n<p>14.2.1 also fixes 3 bugs introduced in 14.0.0:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Groups: move the <code>invite_status</code> group meta check out of the <code>groups_join_group()</code> function (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9241\">#9241</a>).</li>\n\n\n\n<li>Administration: use the components right labels into the BP site health info panel (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9237\">#9237</a>)</li>\n\n\n\n<li>Administration: resolve Multiple Issues with the BP constants site health info panel (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9245\">#9245</a>)</li>\n</ul>\n\n\n\n<p>For complete details, visit theÂ <a href=\"https://codex.buddypress.org/releases/version-14-2-1/\">14.2.1 changelog</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline is-style-outline--1\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background no-border-radius wp-element-button\" href=\"https://downloads.wordpress.org/plugin/buddypress.14.2.1.zip\">Get BuddyPress 14.2.1</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>You can get the latest version by clicking on the above button, downloading it from theÂ <a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin directory</a>Â or checking it out from ourÂ <a href=\"https://buddypress.trac.wordpress.org/browser/branches/14.0\">Subversion repository.</a></p>\n\n\n\n<p>If for a specific reason you can&#8217;t upgrade to 14.2.1, we have also ported the security fix to BuddyPress versions going all the way back to branch 11.0. Here&#8217;s the list of the available downloads for the corresponding tags, you can also find these links on our <a href=\"https://wordpress.org/plugins/buddypress/advanced/\">WordPress.org Plugin Directory &#8220;Advanced&#8221; page:</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you are using BP <strong>11.x</strong> and can&#8217;t upgrade to 14.2.1, please upgrade to <a href=\"https://downloads.wordpress.org/plugin/buddypress.11.4.3.zip\">11.4.3</a></li>\n\n\n\n<li>If you are using BP <strong>12.x</strong> and can&#8217;t upgrade to 14.2.1, please upgrade to <a href=\"https://downloads.wordpress.org/plugin/buddypress.12.5.2.zip\">12.5.2</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"many-thanks-to-11-1-0-contributors\">Many thanks to 14.2.1 contributorsÂ <span class=\"dashicons dashicons-heart\"></span></h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/thomaslhotta\">vapvarun</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">boonebgorges</a>, <a href=\"https://profiles.wordpress.org/emaralive\">emaralive</a> &amp;Â <a href=\"https://profiles.wordpress.org/imath/\">imath</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2024 22:22:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.7 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10796:\"<p>The first release candidate (RC1) for WordPress 6.7 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, itâ€™s recommended that you evaluate RC1 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.7 RC1 in four ways:</p>\n\n\n\n<table><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-RC1.zip\">RC1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br /><code>wp core update --version=6.7-RC1</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=5087acab42d5354c8766303d13b78c8a77ac331b%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 RC1 WordPress Playground instance</a> (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table>You can test the RC1 version in four ways.\n\n\n\n<p>The current target for the WordPress 6.7 release is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s in WordPress 6.7 RC1?</h2>\n\n\n\n<p>Get a recap of WordPress 6.7â€™s highlighted features in the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since Beta 3, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.5?since=2024-10-15&until=2024-10-22\">GitHub commits for 6.7</a> since October 15</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F15%2F2024..10%2F22%2F2024&milestone=6.7&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets</a> since October 15</li>\n</ul>\n\n\n\n<p>Want to look deeper into the details and technical notes for this release? These recent posts cover some of the latest updates:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/new-block-type-registration-apis-to-improve-performance-in-wordpress-6-7/\">New block type registration APIs to improve performance in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/08/15/automatic-conversion-of-heic-images-to-jpeg-in-wordpress-6-7/\">Automatic conversion of HEIC images to JPEG in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/18/auto-sizes-for-lazy-loaded-images-in-wordpress-6-7/\">Auto Sizes for Lazy Loaded Images in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/20/new-plugin-template-registration-api-in-wordpress-6-7/\">New Plugin Template Registration API in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/developer-notes-for-zoom-out-in-wordpress-6-7/\">Developer Notes for Zoom Out in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/block-bindings-improvements-to-the-editor-experience-in-6-7/\">Block Bindings: Improvements to the Editor Experience in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/i18n-improvements-6-7/\">Internationalization improvements in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/updates-to-the-html-api-in-6-7/\">Updates to the HTML API in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/20/miscellaneous-block-editor-changes-in-wordpress-6-7/\">Miscellaneous Block Editor Changes in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/tag/dev-notes+6-7/\">All 6.7-related developer notes</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the worldâ€™s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to ensuring WordPress is performant and stable. Itâ€™s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7. For those new to testing, follow <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>From now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the projectâ€™s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.&nbsp;</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC1, youâ€™ll want to conclude your testing and update the <em>â€œTested up toâ€</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">pluginâ€™s readme file</a> to 6.7.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? Â¿EspaÃ±ol? FranÃ§ais? Ð ÑƒÑÑÐºÐ¸Ð¹? æ—¥æœ¬? à¤¹à¤¿à¤¨à¥à¤¦à¥€? à¦¬à¦¾à¦‚à¦²à¦¾? You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>. This release milestone (RC1) also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.7 release cycle.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>I See An R.C.<br />You See A Chance For Testing<br />Six Seven For The Win!</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post:</em> <em><a href=\"https://profiles.wordpress.org/atachibana/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>atachibana</a>, <a href=\"https://profiles.wordpress.org/jorbin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jorbin</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2024 16:42:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Do The Woo Community: Vote in This Yearâ€™s WooSesh Seshies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://dothewoo.io/blog/vote-in-this-years-woosesh-seshies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"Make sure and get your vote in for the Seshies, which will be announced on day 2 of WooSesh, end of day at the Do the Woo recap.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2024 10:29:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Do The Woo Community: Showcase Day WCUS and the Future of Open Source Contribution with Tammie and Jonathan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=86209\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://dothewoo.io/showcase-day-wcus-and-the-future-of-open-source-contribution-with-tammie-and-jonathan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:200:\"Jonathan and Tammie discuss their experiences at WordCamp US, focusing on Showcase Day\'s impact, the value of diverse contributions, and how companies can align their goals with community involvement.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2024 09:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: WordPress Expands Code of Conduct to Private Conversations, Community Reacts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=175808\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/wordpress-expands-code-of-conduct-to-private-conversations-community-reacts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5182:\"<p>Automatticâ€™s Marketing Lead, Nicholas Garofalo, has <a href=\"https://wordpress.org/news/2024/10/protect-private-conversations/\">announced</a> that WordPress is adding a new element to the Community Code of Conduct: <strong>Publishing private messages without consent</strong>. This addition expands the examples of unacceptable behaviors in the <a href=\"https://make.wordpress.org/handbook/community-code-of-conduct/\">Community Code of Conduct</a> to six.</p>\n\n\n\n<p>He pointed out that â€œSharing private communications without permission is a clear violation of professional integrity. This new addition ensures that private messages receive the same level of protection as personal information and that sensitive communications shared in confidence will not be disclosed without prior consentâ€¦ This change encourages honest, constructive engagement across all levels of participation.â€</p>\n\n\n\n<p>He continued, â€œThe strength of our community lies in the trust we place in one another. By clarifying and reinforcing our expectations, we are taking another step toward maintaining an inclusive, respectful, and safe environment for everyone.â€</p>\n\n\n\n<p>Code of Conduct is based on the <a href=\"https://www.contributor-covenant.org/\">Contributor Covenant</a>, version 2.1 and now includes six examples of <a href=\"https://make.wordpress.org/handbook/community-code-of-conduct/#our-expectations\">unacceptable behavior</a>.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The use of sexualized language or imagery, and sexual attention or advances of any kind.</li>\n\n\n\n<li>Insulting or derogatory comments, taunting or baiting, and personal or political attacks.</li>\n\n\n\n<li>Public or private harassment.</li>\n\n\n\n<li>Publishing othersâ€™ private information, such as a physical or email address, without their explicit permission.</li>\n\n\n\n<li>Publishing private messages without consent.</li>\n\n\n\n<li>Other conduct which could reasonably be considered inappropriate in a professional setting.</li>\n</ul>\n\n\n\n<p>The new addition takes effect immediately, with violations handled according to the existing enforcement guidelines. The sole exception is when private messages are shared to report concerns to the Incident Response Team.</p>\n\n\n\n<p>Yoast-sponsored WordPress Core contributor <strong>Carolina Nymark</strong> shared her experience in <a href=\"https://x.com/carolinapoena/status/1847834584974594334\">X</a>, â€œI am one of the people who&#8217;s private WP Slack messages have been screenshotted and made public. In my case it was a harmless joke that was shared, but it should go without saying that you don&#8217;t share private messages.â€Â </p>\n\n\n\n<p><strong>@gsusMad</strong> <a href=\"https://x.com/gsusMad/status/1847506984594977170\">tweeted</a>, &#8220;Attacking transparency (leaks) with transparency (CoC) as a way to show commitment to a respectful and inclusive community doesn&#8217;t feel right. If that wasn&#8217;t obvious when making the move, it&#8217;s a sign of a spiral where truth has likely become a second-class citizen, which I&#8217;m not sure aligns well with your core values.&#8221;</p>\n\n\n\n<p>&#8220;These sort of clauses make sense as long as they have a whistleblower clause. Public service whistleblowers are protected by law, Iâ€™d like to see these CoCs extend those capabilities to themselves and their communities personally.&#8221;, <a href=\"https://x.com/ngriffin_uk/status/1847557923473358909\">shared </a><strong>Nicholas Griffin</strong>, a Software Engineer.</p>\n\n\n\n<p><strong><a href=\"https://x.com/stedaniels/status/1847559939473977682\">Steve Daniels</a> </strong>tweeted, &#8220;This is vile. WordPress is changing its code of conduct to protect those who attack others in private messages by banning them from sharing the evidence. Only an abuser would create or condone such activity.&#8221;</p>\n\n\n\n<p>Former Incident Response Team member <strong>Megan Rose</strong> <a href=\"https://megabyterose.com/2024/10/code-of-conduct-confidentiality/\">shared her concerns</a> about the new changes. She said, â€œI worry that this new rule could enable abuse to happen in private at a time when the public trust of the IRT could potentially be in flux due to turnover or other factorsâ€¦ I wanted to publicly encourage caution with this new rule.â€</p>\n\n\n\n<p>Megan Rose also echoed concerns shared by others regarding how this rule may intersect with whistleblower and labor laws.</p>\n\n\n\n<p><strong>Angela Jin</strong>, who was the Head of Programs &amp; Contributor Experience at Automattic, shared her thoughts <a href=\"https://angelasjin.com/2024/10/21/on-community-code-of-conducts/\">on Community Code of Conduct</a>, â€œFocusing on the WordPress Code of Conduct, this latest change is something that most people under regular circumstances, will likely readily agree to. However, it contradicts my experience with the Community and Incident Response Teams. We generally tried to avoid making very specific â€œdonâ€™t do thisâ€ type rules, opting instead for behaviors we wanted to encourageâ€¦ The timing is also suspect, or right, given everything happening in WordPress at the moment. It depends on how you prefer to view it.â€</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Oct 2024 18:06:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Gravatar: 10 Game-Changing Linktree Alternatives for Content Creators in 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2269\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://blog.gravatar.com/2024/10/21/linktree-alternatives/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:26547:\"<p>Link-in-bio tools have become essential for anyone looking to centralize, manage, and professionalize their online presence. Since its launch in 2016, Linktree has dominated this space, <a href=\"https://www.statista.com/statistics/1468835/linktree-global-users/#:~:text=Link%2Din%2Dbio%3A%20leading,creator%20companies%202024%2C%20by%20users&text=As%20of%20May%202024%2C%20the,counted%20approximately%2050%20million%20users.\">amassing around 50 million users</a>. However, as the needs of content creators grow more complex, many are seeking alternatives that offer more versatility and advanced features.</p>\n\n\n\n<p>Why look beyond <a href=\"https://linktr.ee/\">Linktree</a>? For starters, its free plan can feel restrictive, lacking customization options and advanced features. Some users are on the hunt for cost-saving solutions, while others crave more solid tools to help them stand out in a crowded digital space. With Linktree&#8217;s <a href=\"https://uk.trustpilot.com/review/linktr.ee\">4-star rating on Trustpilot</a> and some users noting that it has &#8220;<a href=\"https://uk.trustpilot.com/reviews/66b5fd2c1b7083c1ccca4137\">gone downhill</a>,&#8221; it&#8217;s clear there&#8217;s room for improvement.</p>\n\n\n\n<p>Ready to explore your options? Let&#8217;s dive into 10 interesting <a href=\"https://blog.gravatar.com/2024/04/12/maximize-your-instagram-bio-the-top-tools-to-consider/\">link-in-bio</a> alternatives that show a different way of managing your online presence. From enhanced functionality to powerful analytics and monetization tools, these platforms might just be the upgrade you&#8217;ve been searching for.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Comparing the top 10 cutting-edge Linktree alternatives</strong></h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Gravatar: The game-changing verified link solution</strong></h3>\n\n\n\n<img tabindex=\"0\" width=\"1397\" height=\"716\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/gravatar-homepage.png\" alt=\"Gravatar homepage\" class=\"wp-image-2303\" />\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a> offers a fresh take on online identity management. It&#8217;s not just about avatars anymore â€“ Gravatar has evolved into a <a href=\"https://blog.gravatar.com/2024/07/31/better-links-simple-messaging-developer-tools-and-more/\">comprehensive link-in-bio tool</a> with some unique features:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Complete profile information:</strong> Share everything from your bio to important links, interests, and contact info.</li>\n</ul>\n\n\n\n<img tabindex=\"0\" width=\"1511\" height=\"865\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/profile-information.png\" alt=\"Gravatar profile interests\" class=\"wp-image-2304\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Monetization opportunities:</strong> Artists and entrepreneurs can include eWallets in their profiles for direct payments.</li>\n</ul>\n\n\n\n<img tabindex=\"0\" width=\"1661\" height=\"847\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/ewallets-feature.png\" alt=\"Gravatar eWallet feature\" class=\"wp-image-2306\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Verified links:</strong> <a href=\"https://gravatar.com/profile/links\">Add and verify links</a> to boost your credibility. This feature is particularly valuable for public figures like influencers, CEOs, and artists because it signals to other people that everything has been verified and deemed legitimate.</li>\n</ul>\n\n\n\n<img tabindex=\"0\" width=\"1655\" height=\"802\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/verified-links.png\" alt=\"Gravatar verified links\" class=\"wp-image-2307\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Rearrangeable sections:</strong> Easily prioritize your content by reordering the different sections on your profile. Want to show your verified links first and then your wallet? No problem!</li>\n\n\n\n<li><strong>Profile design:</strong> Customize your profile with unique backgrounds, headers, and button styles.</li>\n</ul>\n\n\n\n<img tabindex=\"0\" width=\"1653\" height=\"801\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/profile-customization-features.png\" alt=\"Gravatar profile customization features\" class=\"wp-image-2309\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Unified digital identity:</strong> Maintain a consistent online presence across various platforms.</li>\n</ul>\n\n\n\n<p>What sets Gravatar apart is its integration across a wide range of platforms like <a href=\"https://wordpress.org/\">WordPress</a>, <a href=\"https://www.tumblr.com/login\">Tumblr</a>, <a href=\"https://github.com/\">GitHub</a>, <a href=\"https://slack.com/\">Slack</a>, <a href=\"https://teachable.com/\">Teachable</a>, and <a href=\"https://openai.com/\">OpenAI</a>. This means that if you have a centralized Gravatar profile, every time you update your information there, the changes will be automatically applied to all integrated websites, and the ones we just listed are only a small part of that group.&nbsp;</p>\n\n\n\n<p>Gravatar is also developer-friendly, offering a <a href=\"https://blog.gravatar.com/2024/06/03/profiles-as-a-service/\">REST API</a> and SDKs â€“ something Linktree is still working on. This makes it an excellent choice for developers who want to integrate user profiles into their projects.</p>\n\n\n\n<p>Another unique feature is the ability to manage multiple identities linked to different email addresses, offering flexibility for separate personal and professional presences.</p>\n\n\n\n<p>Gravatar is ideal for professionals, bloggers, and content creators who want a trustworthy and consistent online presence. It&#8217;s particularly useful for those who frequently comment on blogs or participate in online forums.</p>\n\n\n\n<p>And the best part? Gravatar is free for individual users, making it an accessible option for creators at any stage of their career.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Shorby</strong></h3>\n\n\n\n<img tabindex=\"0\" width=\"1999\" height=\"1171\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/shor.by-homepage.png\" alt=\"Shor.by homepage\" class=\"wp-image-2310\" />\n\n\n\n<p><a href=\"https://dash.shor.by/smartpage\">Shorby</a> specializes in creating micro-landing pages optimized for Instagram and other social platforms. It&#8217;s similar to Linktree in concept but has more advanced features, and thereâ€™s no free version.</p>\n\n\n\n<p>Key features that set Shor.by apart include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Customizable micro-landing pages that go beyond simple link lists.</li>\n\n\n\n<li>Smart URLs designed specifically for Instagram bios.</li>\n\n\n\n<li>Comprehensive social media integration.</li>\n\n\n\n<li>Messenger buttons for direct communication with your audience.</li>\n\n\n\n<li>Detailed analytics and click tracking to measure your performance.</li>\n</ul>\n\n\n\n<p>What really makes Shorby stand out is its integration with messaging apps. This feature allows for improved customer communication, potentially boosting engagement and conversions. Another unique aspect is the ability to incorporate rich media like images or GIFs alongside your links. This visual enhancement can significantly increase the appeal and effectiveness of your landing page.</p>\n\n\n\n<p>Shorby is an excellent choice for social influencers, marketers, content creators, and businesses serious about optimizing their social media presence and driving engagement through their bio links.</p>\n\n\n\n<p>However, Shorbyâ€™s lack of a free version will inevitably be a drag for most users. You can test it out on <a href=\"https://www.instagram.com/\">Instagram</a> with a <a href=\"https://shorby.com/instagram/\">5-day free trial</a>, after which you&#8217;ll need to choose from their tiered pricing options: <a href=\"https://dash.shorby.com/upgrade/\">Rocket, Pro, or Agency plans</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Pallyy</strong></h3>\n\n\n\n<img tabindex=\"0\" width=\"660\" height=\"306\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/pallyy-homepage.png?w=660\" alt=\"Pallyy homepage\" class=\"wp-image-2312\" />\n\n\n\n<p><a href=\"https://pallyy.com/\">Pallyy</a> goes beyond just being a link-in-bio tool â€“ it&#8217;s a comprehensive social media management platform. Here&#8217;s what it offers:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Customizable bio link pages to showcase your content and links.</li>\n\n\n\n<li>Social media scheduling with auto-publish functionality.</li>\n\n\n\n<li>Integrated analytics for Instagram, <a href=\"https://www.facebook.com/\">Facebook</a>, <a href=\"https://x.com\">Twitter</a> &amp; <a href=\"https://www.linkedin.com/\">LinkedIn</a>.</li>\n\n\n\n<li>Unified inbox for messages and comments across platforms.</li>\n</ul>\n\n\n\n<p>Pallyy is a tool that adopts an all-in-one approach. You can manage your link-in-bio, schedule posts, and analyze performance for multiple platforms (including the abovementioned ones, <a href=\"https://www.google.com/intl/en_us/business/\">Google My Business</a>, and <a href=\"https://www.tiktok.com/\">TikTok</a>) all in one place. This integration can save time and help you create an organized social media workflow.</p>\n\n\n\n<p>This is why Pallyy is ideal for social media managers who are handling multiple accounts or businesses seeking an integrated social media solution. The platform&#8217;s unified inbox feature is particularly useful for those who need to stay on top of audience interactions across various platforms.</p>\n\n\n\n<p>They offer a free forever plan, which is great for those just starting out. <a href=\"https://pallyy.com/pricing\">Paid options</a> start at $18/month per Social Set (up to seven social profiles). For teams, there&#8217;s an additional cost of $29/month per user. This pricing structure makes Pallyy flexible for both individual creators and larger teams managing multiple brands.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Tap Bio</strong></h3>\n\n\n\n<img tabindex=\"0\" width=\"660\" height=\"394\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/tap-bio-homepage.png?w=660\" alt=\"\" class=\"wp-image-2313\" />\n\n\n\n<p><a href=\"https://tap.bio/\">Tap Bio</a> takes a unique approach with its card-based system for organizing content. Think of it as a mini-website that feels like navigating through Instagram Stories. This innovative format allows for a more engaging and interactive user experience.</p>\n\n\n\n<p>Key features of Tap Bio include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Multiple-card format for versatile content organization, including simple cards with a single CTA, email collection cards, <a href=\"https://www.youtube.com/\">YouTube</a> cards to feature videos, and more.&nbsp;</li>\n\n\n\n<li>Customizable designs and layouts to match your brand.</li>\n\n\n\n<li>Seamless integration with major social platforms.</li>\n\n\n\n<li>Separate detailed analytics for each card so you can track link performance.</li>\n\n\n\n<li>Option to retarget followers with <a href=\"https://adsense.google.com/start/\">Google AdSense</a> and other advertising platforms.&nbsp;</li>\n</ul>\n\n\n\n<p>Tap Bioâ€™s multi-card system is great because it allows for more diverse content presentation than traditional link-in-bio tools, giving you the flexibility to showcase different aspects of your brand or offerings.</p>\n\n\n\n<p>Tap Bio is great for content creators with varied offerings or brands showcasing multiple products or services. It&#8217;s particularly useful for those who want to tell a story or guide users through a specific journey.</p>\n\n\n\n<p>They offer a free basic plan with one card, which is a good starting point for many users. For those needing advanced features, Tap Bio provides paid <a href=\"https://tap.bio/@tap.bio/cards/23773\">Silver and Gold plans</a> that are $36 and $96 per year, respectively. The Silver plan allows for three cards, while the Gold plan lets you have unlimited cards.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Lnk.Bio</strong></h3>\n\n\n\n<img tabindex=\"0\" width=\"660\" height=\"314\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/lnk.bio-homepage.png?w=660\" alt=\"Lnk.Bio homepage\" class=\"wp-image-2315\" />\n\n\n\n<p><a href=\"https://lnk.bio/\">Lnk.Bio</a>, a black-owned and woman-led business, offers advanced customization and scheduling features for link management. With over 1.1 million creators currently using it, Lnk.Bio has proven its worth in the competitive link-in-bio market.</p>\n\n\n\n<p>Key features of Lnk.Bio include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Unlimited links and extensive customization options.</li>\n\n\n\n<li>Link scheduling for timed appearances.</li>\n\n\n\n<li>Video and music embedding capabilities.</li>\n\n\n\n<li>Comprehensive analytics dashboard.</li>\n\n\n\n<li>Multiple themes and layouts to suit various styles.</li>\n</ul>\n\n\n\n<p>What truly sets Lnk.Bio apart is its link scheduling feature. This allows for time-sensitive promotions, making it invaluable for event organizers or businesses with limited-time offers. You can set links to appear or disappear at specific times, ensuring your bio always showcases the most relevant content.</p>\n\n\n\n<p>The platform&#8217;s focus on multimedia content integration is another standout feature. By allowing users to embed videos and music directly in their bio links, Lnk.Bio creates a more engaging and immersive experience for visitors.</p>\n\n\n\n<p>Lnk.Bio offers a free plan with basic features, making it accessible to creators just starting out. For those needing more advanced capabilities, <a href=\"https://lnk.bio/#pricing\">paid options</a> include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mini monthly plan for $0.99 per month.&nbsp;</li>\n\n\n\n<li>Mini one-time for $9.99.&nbsp;</li>\n\n\n\n<li>Unique one-time for $24.99</li>\n</ul>\n\n\n\n<p>These unlock features like newsletters, multi Lnks, post scheduling, custom colors, and additional pages for greater brand consistency and content organization.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>6. Milkshake</strong></h3>\n\n\n\n<img tabindex=\"0\" width=\"660\" height=\"364\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/milkshake-homepage.png?w=660\" alt=\"\" class=\"wp-image-2316\" />\n\n\n\n<p><a href=\"https://milkshake.app/\">Milkshake</a> takes a mobile-first approach to website building, designed specifically for creating mini-websites right from your smartphone. This unique focus sets it apart in the crowded link-in-bio market.</p>\n\n\n\n<p>Key features of Milkshake include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mobile-optimized website builder for on-the-go updates.</li>\n\n\n\n<li>A swipeable &#8216;card&#8217; format similar to Tab Bioâ€™s for intuitive content navigation.</li>\n\n\n\n<li>Customizable themes and designs to match your brand.</li>\n\n\n\n<li>Easy integration with social media and messaging apps.</li>\n\n\n\n<li>Basic analytics with daily and monthly breakdowns for page views and link clicks.</li>\n</ul>\n\n\n\n<p>Unlike other tools, Milkshake puts an exclusive focus on mobile creation and viewing. Rather than just offering a list of links, Milkshake lets users create a cohesive mini-mobile website. This approach can lead to a more engaging and professional-looking presence, especially for audiences primarily using mobile devices.</p>\n\n\n\n<p>Milkshake is perfect for influencers who manage their online presence primarily via mobile or small businesses wanting a quick, effective mobile site solution. Its intuitive interface makes it easy for even tech novices to create an impressive online presence.</p>\n\n\n\n<p>The platform offers a free version with basic features. For those wanting more, <a href=\"https://help.milkshake.app/en/articles/9478349-milkshake-subscription-comparisons\">paid upgrades to Lite and Pro versions</a> are available on app stores. These premium options allow you to remove Milkshake branding and access more advanced tools and insights, helping you to further optimize your mobile presence.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>7. Campsite.bio</strong></h3>\n\n\n\n<img tabindex=\"0\" width=\"660\" height=\"355\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/campsite.bio-homepage.png?w=660\" alt=\"Campsite.bio homepage\" class=\"wp-image-2318\" />\n\n\n\n<p><a href=\"https://campsite.bio/\">Campsite.bio</a> focuses on marketing optimization and advanced analytics for link-in-bio pages. With over 250,000 creators, agencies, and brands already using it, Campsite.bio has carved out a niche in the competitive link-in-bio market.</p>\n\n\n\n<p>Key features include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Customizable link pages with background image or pattern options.</li>\n\n\n\n<li>Premium integrations, such as opt-in forms, custom forms, and tracking pixels.</li>\n\n\n\n<li>Advanced analytics and tracking capabilities.</li>\n\n\n\n<li>Collaborator access (for an additional charge).&nbsp;</li>\n</ul>\n\n\n\n<p>Overall, Campsite.bio is a tool that puts emphasis on marketing optimization tools and comprehensive analytics. These features allow users to gain deeper insights into their audience&#8217;s behavior and optimize their pages for better conversion rates.</p>\n\n\n\n<p>Campsite.bio is ideal for digital marketers looking to fine-tune their conversions or businesses running multi-channel campaigns. Its advanced tracking capabilities can help users make data-driven decisions to improve their online presence.</p>\n\n\n\n<p>The platform offers a free plan with basic features, making it accessible to newcomers. For those needing more advanced capabilities, Campsite.bio provides <a href=\"https://campsite.bio/pricing\">paid Pro and Pro+ tiers</a> for $7/month and $24/month, respectively. These premium options unlock additional features like custom domains and expanded analytics, allowing for greater control and insight into your link-in-bio performance.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>8. Beacons</strong></h3>\n\n\n\n<img tabindex=\"0\" width=\"660\" height=\"314\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/beacons-homepage.png?w=660\" alt=\"Beacons homepage\" class=\"wp-image-2319\" />\n\n\n\n<p><a href=\"https://beacons.ai/\">Beacons</a> position themselves as an all-in-one platform for creator monetization and audience engagement. Besides the simple link-in-bio functionality, it also offers a suite of tools for content creators, including websites, post activity, audience manager, email marketing, and many more.&nbsp;</p>\n\n\n\n<p>Key features of Beacons include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Customizable link pages to showcase your content.</li>\n\n\n\n<li>Built-in monetization tools, including tipping and product sales.</li>\n\n\n\n<li>Email capture and newsletter integration for audience building.</li>\n\n\n\n<li>Detailed analytics dashboard to track performance.</li>\n\n\n\n<li>Integration with major platforms and tools such as YouTube, <a href=\"https://www.spotify.com/int/why-not-available/\">Spotify</a>, <a href=\"https://www.twitch.tv/\">Twitch</a>, <a href=\"https://bandcamp.com/\">Bandcamp</a>, and more.</li>\n</ul>\n\n\n\n<p>What sets Beacons apart is its strong focus on creator monetization. The platform provides various ways for creators to earn directly from their audience, from digital product sales to tipping systems. This makes Beacons particularly attractive for content creators looking to turn their following into a sustainable income stream.</p>\n\n\n\n<p>Beacons is ideal for content creators seeking to monetize their audience or influencers selling products or services. Its comprehensive approach allows creators to manage multiple aspects of their online presence from a single platform.</p>\n\n\n\n<p>The platform offers a free plan with basic features, making it accessible to creators just starting out. For those needing more advanced capabilities, Beacons provides paid <a href=\"https://beacons.ai/i/plans\">Creator Pro, Store Pro, and Business Pro tiers</a> that start from $10/month up to $90/month. These unlock additional features and remove platform branding, allowing for a more professional presentation.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>9. Carrd</strong></h3>\n\n\n\n<img tabindex=\"0\" width=\"660\" height=\"339\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/carrd-homepage.png?w=660\" alt=\"Carrd homepage\" class=\"wp-image-2320\" />\n\n\n\n<p><a href=\"https://carrd.co/\">Carrd</a> is a simple, one-page website builder that can be cleverly adapted for link-in-bio purposes. Its flexibility and ease of use have made it a popular choice among creators and small businesses alike.</p>\n\n\n\n<p>Key features of Carrd include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Easy-to-use one-page website builder with drag-and-drop functionality.</li>\n\n\n\n<li>Responsive designs that look great on all devices.</li>\n\n\n\n<li>Highly customizable layouts and styles to match your brand.</li>\n\n\n\n<li>Form builders for lead capture and audience engagement.</li>\n\n\n\n<li>Basic analytics and tracking to monitor your site&#8217;s performance.</li>\n</ul>\n\n\n\n<p>A unique part of Carrd is its flexibility in creating more complex layouts than typical link-in-bio tools. While it&#8217;s not exclusively designed for link-in-bio purposes, this versatility allows users to create a more comprehensive online presence. You can essentially build a full (albeit simple) website that functions as an enhanced link-in-bio page.</p>\n\n\n\n<p>Carrd is ideal for creators wanting more design flexibility or small businesses needing a simple website and link-in-bio solution rolled into one. Its intuitive interface makes it accessible even to those with limited web design experience.</p>\n\n\n\n<p><a href=\"https://carrd.co/pro\">Carrd&#8217;s Pro plan</a> starts at just $9 per year for 3 websites, $19 for 10 sites, and $49 for up to 25 sites, making it one of the more affordable options for premium features.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>10. Link in Bio from Later</strong></h3>\n\n\n\n<img tabindex=\"0\" width=\"1264\" height=\"759\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/link-in-bio-by-later-homepage.png\" alt=\"Link in Bio by Later homepage\" class=\"wp-image-2321\" />\n\n\n\n<p><a href=\"https://later.com/link-in-bio/\">Later&#8217;s Link in Bio</a> tool is part of a larger social media management platform, with a strong focus on Instagram and TikTok integration. This tool goes beyond simple link sharing to offer a more comprehensive social media solution.</p>\n\n\n\n<p>Key features of Later&#8217;s Link in Bio include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Customizable link pages to showcase your content.</li>\n\n\n\n<li>Shoppable Instagram feed for easy product promotion.</li>\n\n\n\n<li>Featured Banner to highlight your top content.</li>\n\n\n\n<li>Ability to personalize the title tag and meta description for SEO.</li>\n\n\n\n<li>Detailed analytics for link and post-performance tracking.</li>\n</ul>\n\n\n\n<p>One of Later&#8217;s Link in Bioâ€™s best additions is its easy integration with Later&#8217;s broader social media management features. This allows for a more cohesive approach to your social media strategy. The tool also offers <a href=\"https://mailchimp.com/\">Mailchimp</a> integration, enabling easy email list building.</p>\n\n\n\n<p>Later&#8217;s Link in Bio is particularly well-suited for Instagram-focused creators and businesses, as well as eCommerce brands leveraging social media for sales. Its shoppable Instagram feed feature can significantly improve the path from post to purchase.</p>\n\n\n\n<p>Later offers a free plan that includes basic Link in Bio features. For those needing more comprehensive tools, paid plans are available, unlocking the full potential of <a href=\"https://later.com/pricing/\">Later&#8217;s social media management platform</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Maximizing your digital identity: Why Gravatar stands out from the crowd</strong></h2>\n\n\n\n<p>While all these alternatives offer unique features, Gravatar stands out as a comprehensive digital identity hub that allows you to create and manage a consistent, verified online presence across the entire web. It comes with a <a href=\"https://blog.gravatar.com/2024/06/26/link-your-gravatar-profile-with-a-free-custom-domain/\">free custom domain</a> and many premium features that you usually have to pay extra for.&nbsp;</p>\n\n\n\n<p>The &#8220;update once, sync everywhere&#8221; feature saves time and ensures consistency across the web. This means your avatar and profile information automatically appear on Gravatar-enabled sites, maintaining a unified digital identity.</p>\n\n\n\n<p>The verified links feature serves as a simpler alternative to Linktree, offering similar functionality but within the Gravatar ecosystem. This verification builds trust with profile visitors, reducing the risk of phishing or misrepresentation.</p>\n\n\n\n<p>For those already using Gravatar, adding and rearranging links within the same profile where their avatar is hosted is convenient and ensures consistency without needing another service. Plus, the ability to manage multiple identities linked to different email addresses offers flexibility for personal and professional use.</p>\n\n\n\n<p>Gravatar empowers users to control their online presence across the entire web, not just on social media platforms. It&#8217;s the foundation of a decentralized digital identity, giving you more control over how you&#8217;re represented online.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Beyond basic links: Set up your ideal Linktree alternative today</strong></h2>\n\n\n\n<p>As we&#8217;ve seen, Linktree alternatives offer more than just link aggregation. They provide robust tools for managing your online presence across platforms. Whether you prioritize customization, analytics, or e-commerce integration, there&#8217;s an option tailored to your needs.</p>\n\n\n\n<p>When choosing your ideal alternative, think about how it aligns with your long-term online strategy. Look for tools that suit your primary goal, platform, and budget, can grow with your needs, and offer flexibility in customization and integration.</p>\n\n\n\n<p>One standout (and 100% free) solution is <a href=\"https://gravatar.com/\">Gravatar</a>. It offers features like sharing your social media profiles, portfolio, website, and other relevant links easily, as well as multiple identity management and privacy controls, all while maintaining a consistent online presence.</p>\n\n\n\n<p>Gravatar uniquely integrates with thousands of platforms like GitHub, Slack, and WordPress. This means your information and avatar are potentially pulled from your Gravatar profile into platforms you use every day, ensuring your identity is consistent across the web.</p>\n\n\n\n<p>Ready to take control of your online presence? <a href=\"https://gravatar.com/profile\">Create your Gravatar profile today</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Oct 2024 15:01:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Do The Woo Community: Future Investments from WooCommerce: What to Expect\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://dothewoo.io/blog/future-investments-from-woocommerce-what-to-expect/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"As WooCommerce continues to grow as a leading platform for online commerce, here are several key areas that Beau Lebens mentioned in a recent podcast episode about where the company is focusing its future investments. These developments are aimed at enhancing both the merchant experience and the overall ecosystem for developers and businesses alike. Here [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Oct 2024 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: WP Fusion Lite Plugin Removed From WordPress.com Following a Cease and Desist Letter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=175800\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/wp-fusion-lite-plugin-removed-from-wordpress-com-following-a-cease-and-desist-letter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4846:\"<p>Automattic has agreed to <a href=\"https://wpfusion.com/business/regarding-our-cease-and-desist-letter-to-automattic/\">remove the WP Fusion Lite Plugin</a> from WordPress.com following a Cease and Desist letter filed by the plugin&#8217;s creator Jack Arturo on October 12, 2024. The letter accused Automattic and WordPress.com of unauthorized trademark usage by displaying the plugin on WordPress.com.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/wp-fusion-lite/\">WP Fusion Lite</a> is a WordPress plugin that connects WordPress websites to popular CRM systems and marketing automation tools. It has over 5,000 Active Installs in the WordPress.org Repository.&nbsp;</p>\n\n\n\n<p>Jack Arturo, founder of Very Good Plugins LLC and creator of WP Fusion plugin, <a href=\"https://x.com/verygoodplugins/status/1845246925886353795\">filed the Cease and Desist letter</a> stating: â€œAs the owner of the federally registered trademark WP FUSION (U.S. Registration No. 6,052,437), which was registered on May 12, 2020, and is associated with software services including website integration with customer relationship management (CRM) and marketing automation systems, I believe that your continued use and distribution of the plugin under the WP Fusion name is a clear infringement of my exclusive trademark rights under U.S. law.</p>\n\n\n\n<p>The plugin you are hosting creates a likelihood of confusion, mistake, or deception regarding the source, sponsorship, or affiliation of the WP Fusion brand, which could damage the reputation and goodwill associated with my brand. Please be advised that I will vigorously defend my trademark rights to the fullest extent of the law.â€</p>\n\n\n\n<p>The letter included three key demands:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Immediately remove the &#8220;WP Fusion Lite&#8221; plugin from WordPress.com.</li>\n\n\n\n<li>Cease any use of trademarks, logos, or names confusingly similar to WP Fusion.</li>\n\n\n\n<li>Provide written confirmation within ten business days that these actions have been taken.</li>\n</ul>\n\n\n\n<p>He also warned that if the above requests are not met, he would â€œpursue all available legal remedies, including but not limited to seeking injunctive relief, damages, and attorney&#8217;s fees for trademark infringement.â€&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Automattic&#8217;s Response on October 18, 2024Â </h3>\n\n\n\n<p>Automattic responded, saying they â€œwould like to resolve this matter swiftly and amicably, and to that end WP Fusion Lite is no longer listed on WordPress.com and we have disabled its landing page. It is no longer available to WordPress.com customers nor will it appear in search results. We trust this resolves your concerns.â€</p>\n\n\n\n<p>However, Automattic disagreed with the trademark infringement claim, stating: â€œAutomattic disagrees with your assertions that it has infringed the intellectual property rights of Very Good Plugins, LLC. The listing uses the WPFUSION trademark solely and only to the extent necessary to identify the genuine WPFUSION plugin, which constitutes nominative fair use under applicable law.â€</p>\n\n\n\n<p>Since last year, WordPress.com has displayed all WP.org plugins in a private directory for its hosting customers, a practice that has raised <a href=\"https://wptavern.com/developers-raise-concerns-about-wordpress-com-plugin-listings-outranking-wordpress-org-on-google\">concerns among developers</a>. They worry that WordPress.com plugin listings are outranking WordPress.org on Google, causing confusion for users. Many users, unaware of the distinction between WP.com and WP.org, click the WP.com link, which prompts them to create an account and sign up for premium hosting. Jack mentioned that this confusion was affecting his customers, who had already purchased the pro version of the plugin.</p>\n\n\n\n<p>Automattic has maintained that featuring plugins on WP.com benefits authors by increasing exposure. They responded to Jackâ€™s complaints on <a href=\"https://x.com/automattic/status/1845252369174364554\">X</a>, asking, â€œSo, to clarify, you&#8217;d like us to hide your plugin from the ~248M registered users on @wordpressdotcom?â€ Matt had also <a href=\"https://x.com/photomatt/status/1701973661110915205\">tweeted</a> last year, â€œIt&#8217;s providing distribution to the plugin authors, literally millions and millions of installs.â€</p>\n\n\n\n<p>Jack <a href=\"https://x.com/verygoodplugins/status/1845266438539382989\">clarified</a> that he has no objection to others mirroring his plugins, except for Automattic. Also, WP Fusion Pro does not require the free version to function, and they have been delivering updates to pro customers via their own servers for many years.</p>\n\n\n\n<p>The issue has been resolved, but it remains to be seen whether more plugin authors will choose to remove their plugins from WP.com.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Oct 2024 03:19:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: My Freedom of Speech\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=128329\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2024/10/first-amendment/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2208:\"<p><a href=\"https://wpengine.com/\">WP Engine</a> has <a href=\"https://www.theverge.com/2024/10/18/24273448/wp-engine-injunction-matt-mullenweg-wordpress-resources\">filed hundreds pages of legal documents seeking an injunction against me and Automattic</a>. They say this is about community or some nonsense, but if you look at the core, what they&#8217;re trying to do is ask a judge to curtail my First Amendment rights.</p>\n\n\n\n<p>The First Amendment is the basis of our democracy. It is <em>inconvenient</em> and <em>important</em>. It&#8217;s also short, so I&#8217;m going to quote the First Amendment in its entirety:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the Government for a redress of grievances.</p>\n</blockquote>\n\n\n\n<p>This means that, <a href=\"https://en.wikipedia.org/wiki/United_States_free_speech_exceptions\">with rare exceptions</a>, the government cannot tell you not to say something.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Freedom of Speech is not Freedom of Reach</h2>\n\n\n\n<p>The First Amendment says I should be able to state facts and my opinions about WP Engine. However, the <a href=\"https://www.nytimes.com/\">New York Times</a> is not required or compelled to publish them in their newspaper and distribute them to their subscribers.</p>\n\n\n\n<p>WP Engine is free to publish whatever <a href=\"https://en.wikipedia.org/wiki/GNU_General_Public_License\">GPL code</a> they want to the world. <a href=\"https://wordpress.org/\">WordPress.org</a> should not be compelled to distribute it or provide it free hosting.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Quiet For A While</h2>\n\n\n\n<p>After this post, I will refrain from personally commenting on the WP Engine case until a judge rules on the injunction. I will continue to exercise my First Amendment rights to promote others&#8217; speech. However, <strong>I hope others speak up on our battle with WP Engine, and I will boost their speech wherever I can</strong>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 20 Oct 2024 21:53:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Cloudflare Stories\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=128322\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2024/10/cloudflare-stories/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1102:\"<p>There are two great Cloudflare-related stories published this weekend.</p>\n\n\n\n<p><a href=\"https://www.wired.com/story/plaintext-you-can-now-see-the-code-that-ended-apartheid/\">The first is Steven Levy&#8217;s incredible story about Tim Jenkin</a>, who created a secure communication protocol for the African National Congress to overthrow the apartheid regime in South Africa. Cloudflare&#8217;s CTO, <a href=\"https://jgc.org/\">John Graham-Cumming</a>, later helped break past the cryptography system&#8217;s lost password, which he <a href=\"https://blog.jgc.org/2024/09/cracking-old-zip-file-to-help-open.html\">blogged about with some technical detail here</a>.</p>\n\n\n\n<p>Second, my dear friend Om Malik <a href=\"https://crazystupidtech.com/archive/future-of-internet-in-the-age-of-ai/\">published a great conversation with Cloudflare CEO Matthew Prince in his new newsletter Crazy Stupid Tech</a>. <a href=\"https://x.com/eastdakota\">Matthew</a> and Om are influential thinkers to listen to, and their discussion contains a lot of interesting nuance about networks, censorship, and sovereignty. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 20 Oct 2024 04:57:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"Gutenberg Times: Source of Truth WordPress 6.7, Mastering Theme.json, Dev Notes Galore and more â€” Weekend Edition #308\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=30448\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://gutenbergtimes.com/source-of-truth-wordpress-6-7-mastering-theme-json-dev-notes-galore-and-more-weekend-edition-308/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17110:\"<p>Hi there, </p>\n\n\n\n<p>WordPress 6.7 RC1 is scheduled for October 22, 2024. That&#8217;s also the occasion to publish the Fieldguide listing the big and small changes coming with the new version. Below I listed the Devnotes that are already available. <strong>Anne McCarthy</strong> published the 6,450-words <a href=\"https://gutenbergtimes.com/6-7-source-of-truth/\"><strong>Source of Truth</strong></a> on this site as well. </p>\n\n\n\n<p>It&#8217;s going to be a busy three weeks until the final release on November 12, 2024. </p>\n\n\n\n<p>Enjoy exploring the new features and update in WordPress and have a great weekend! </p>\n\n\n\n<p>Yours, ðŸ’•<br /><em>Birgit</em></p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/source-of-truth-wordpress-6-7-mastering-theme-json-dev-notes-galore-and-more-weekend-edition-308/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/source-of-truth-wordpress-6-7-mastering-theme-json-dev-notes-galore-and-more-weekend-edition-308/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/source-of-truth-wordpress-6-7-mastering-theme-json-dev-notes-galore-and-more-weekend-edition-308/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/source-of-truth-wordpress-6-7-mastering-theme-json-dev-notes-galore-and-more-weekend-edition-308/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</a></li></ol>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-3/\">WordPress 6.7 Beta 3</a> has been released and the first <strong>Dev Notes</strong> are being published: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/10/15/subscribe-to-changes-in-the-interactivity-api-state-and-context-on-client-side-navigation-in-6-7/\">Subscribe to changes in the Interactivity API state and context on client-side navigation in 6.7</a>  </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/14/updates-to-script-modules-in-6-7/\">Updates to Script Modules in 6.7</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/roster-of-design-tools-per-block-wordpress-6-6-edition-2/\">Roster of design tools per block (WordPress 6.7 edition)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/updates-to-the-html-api-in-6-7/\">Updates to the HTML API in 6.7</a></li>\n\n\n\n<li> <a href=\"https://make.wordpress.org/core/2024/10/17/new-block-type-registration-apis-to-improve-performance-in-wordpress-6-7/\">New block type registration APIs to improve performance in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/18/auto-sizes-for-lazy-loaded-images-in-wordpress-6-7/\">Auto Sizes for Lazy Loaded Images in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/18/post-editor-iframing-with-meta-boxes-in-wordpress-6-7/\">Post Editor iframing with meta boxes&nbsp;in WordPress 6.7</a></li>\n</ul>\n\n\n\n<img width=\"652\" height=\"374\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/376215782-1f8a8a02-f3fd-464d-a543-00f7a90dd1eb.png?resize=652%2C374&ssl=1\" alt=\"Highlights Grid WordPress 6.7\" class=\"wp-image-30498\" />\n\n\n\n<p><strong>Anne McCarthy</strong> found a <a href=\"https://nomad.blog/2024/10/18/new-location-for-the-6-7-source-of-truth/\">new location for the 6.7 Source of&nbsp;Truth</a> on the Gutenberg Times.  The <strong><a href=\"https://gutenbergtimes.com/6-7-source-of-truth/\">Source of Truth</a></strong> is a tool for others who educate WordPress users on the new updates. &#8220;Itâ€™s a foundational resource but, itâ€™s so long and detailed, it needs to be repackaged to be useful in each space.&#8221; McCarthy wrote. </p>\n\n\n\n<a href=\"https://gutenbergtimes.com/6-7-source-of-truth/\"><img width=\"652\" height=\"365\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/6.7-Source-of-Truth-Featured-Image.png?resize=652%2C365&ssl=1\" alt=\"White text on blue background with a paintbrush mark saying WordPress 6.7 Source of Truth\" class=\"wp-image-30499\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>ðŸŽ™ï¸ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-110-gutenberg-19-5-wordpress-6-7-create-block-theme-plugin/\">Gutenberg Changelog #110 â€“ Gutenberg 19.5, WordPress 6.7, Create Block Theme Plugin and a Thousand Block Themes at the Repository</a> with Joni Halabi </p>\n\n\n\n<img width=\"652\" height=\"184\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/Screenshot-2024-10-25-at-17.17.35.png?resize=652%2C184&ssl=1\" alt=\"\" class=\"wp-image-30608\" />\n</div></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Joen Asmussen</strong> shared a list of work done by the WordPress design team: <a href=\"https://make.wordpress.org/design/2024/10/18/design-share-66-oct-7-oct18/\"><strong>Design Share #66 (Oct 7-Oct18)</strong></a>. He highlights: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Admin bar evolution</li>\n\n\n\n<li>Unseen icon update</li>\n\n\n\n<li>Navigation: Provide fallback when menu was deleted</li>\n\n\n\n<li>Admin themes</li>\n\n\n\n<li>Update component: Combobox</li>\n\n\n\n<li>Storybook: Color</li>\n\n\n\n<li>WordPress Photo Directory</li>\n\n\n\n<li>5FTF. Sponsorship</li>\n</ul>\n\n\n\n<a href=\"https://make.wordpress.org/design/2024/10/18/design-share-66-oct-7-oct18/\"><img width=\"652\" height=\"278\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/5FTF-Sponsorship.webp?resize=652%2C278&ssl=1\" alt=\"\" class=\"wp-image-30490\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>In his video, <a href=\"https://www.youtube.com/watch?v=v5drhUktS_0\"><strong>WordPress, How to build Complex Layouts in the Block Editor </strong></a><strong>Elliot Richmond</strong> showed how easy it is now to build websites with WordPress, even if the layout seems a bit more challenging. I liked how you get to hear about the reasoning of design choices and also how Richmond decides on the tools to use. In the methods of the Speed building challenge, Richmond takes you along as he rebuilds the Blookup.com website.</p>\n\n\n\n<img width=\"652\" height=\"326\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/Screenshot-2024-10-16-at-15.56.32.png?resize=652%2C326&ssl=1\" alt=\"Screenshot of site building video\" class=\"wp-image-30483\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://x.com/robinpietersen\">Robin Pietersen</a> </strong>announced a few more blocks for FooEvents. In his post <a href=\"https://www.fooevents.com/introducing-the-new-fooevents-calendar-and-attendee-listing-blocks/?s=09\"><strong>Introducing the New FooEvents Calendar and Attendee Listing Blocks</strong></a> you can take a look at the new FooEvents Calendar Block and FooEvents Attendee Listing Block, as well as updates to the FooEvents Express Check-ins plugin and FooEvents Ticket Importer.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://x.com/ronaldhuereca\"><strong>Ronald Huereca</strong></a> t<a href=\"https://x.com/MediaRonLLC/status/1847527385823900064\">weeted he</a> &#8220;quietly released Photo Block earlier this week.&#8221;  An official announcement post is forthcoming. If you want to check out the new Photo Block, it&#8217;s available from the WordPress repository.  The <a href=\"https://docs.dlxplugins.com/photo-block\">documentation page</a> is already available, showing off the plugin&#8217;s features, that enhance the image core block: Cropping, Dimension support, Image Sizing and Object Fit, Add CSS Gram Effects, multiple caption variations and overlay support. It&#8217;s definitely worth exploring if you have a wider range of image needs. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Save The date!</strong> WordPress 6.7 and the new Twenty Twenty-Five theme are just weeks away. Theme Dev Leads,<strong> <a href=\"https://x.com/carolinapoena\">Carolina Nymark</a></strong> and <a href=\"https://x.com/juanfraa\"><strong>Juan Aldasoro</strong></a> will join Developer Hours on <strong>Oct. 29 at 15:00 UTC </strong>for an in-depth look at the themeâ€™s technical details and features. <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/304044317/\"><strong>Developer Hours: Exploring the Twenty Twenty-Five Theme</strong></a></p>\n\n\n\n<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/304044317/\"><img width=\"600\" height=\"338\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/DH-October-29-Carolina-Nymark-Juanfra-Aldasoro.webp?resize=600%2C338&ssl=1\" alt=\"\" class=\"wp-image-30507\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you are starting out building a Block Theme, it can be a bit overwhelming with the number of details you might have to consider. In <a href=\"https://developer.wordpress.org/news/2024/10/17/mastering-theme-json-you-might-not-need-css/\"><strong>Mastering theme.json: You might not need CSS</strong></a>, <strong>Justin Tadlock</strong> gives you a walkthrough of many tips, tricks, and techniques for using theme.json and style variations to their full extent.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Carlos Daniele</strong> created <a href=\"https://kinsta.com/blog/twenty-twenty-five-theme/\"><strong>A developerâ€™s overview of Twenty Twenty-Five, the next default WordPress theme</strong></a>. &#8220;Twenty Twenty-Five provides an excellent example of the philosophy of democratization of design, and this article will show you its structure in detail.&#8221; he wrote. Daniele looks at the code and explains some of the concepts that were incorporated into the new default theme, especially Section styles and Template patterns. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In <a href=\"https://kinsta.com/blog/wordpress-typography-theme-json/\"><strong>Revolutionizing WordPress typography with full site editing and theme.json</strong></a> <strong>Jeremy Holcombe</strong> takes a comprehensive journey through the tools and features of the Site editor and block themes on working with typography on the web and how users can make their typography choices and add them to their site. </p>\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2024&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly.â€‚The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a>&nbsp;|&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</h2>\n\n\n\n<p>For the first time, Developer Hours were streamed from YouTube directly, and it made a difference in the numbers of people reached. If you missed it, here is the recording: <a href=\"https://www.youtube.com/watch?v=6lBIkf3xNDw\"><strong>How to Simplify Client Editing in WordPress</strong></a> with <strong>Nick Diego</strong>, <strong>Ryan Welcher</strong> and <strong>Jamie Marsland</strong>. </p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=JrOpsePAX3c\">In his Live stream</a>,<strong> Ryan Welcher</strong>, explored if he could <strong>replace custom blocks with Block Bindings</strong>. It&#8217;s a continuation of the show from last week. <a href=\"https://www.youtube.com/watch?v=NIDS4PFUHBI\"><strong>Looking at the Block Bindings API coming in WordPress 6.7</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://x.com/3LPU4S\"><strong>Alfredo Navas-Fernandini</strong></a> found <a href=\"https://elpuas.com/blog/you-might-not-need-a-custom-block-the-block-variations-api/\"><strong>You Might Not Need a Custom Block: The Block Variations API</strong></a> and teaches you how to create Block variations with a common examples, a Call-to-Action block, and a Team query block,  assembled from core blocks. In the same mind set, Navas posted earlier <a href=\"https://elpuas.com/blog/you-might-not-need-a-custom-block-the-block-styles-api/\">You Might Not Need a Custom Block: The Block Styles API</a>, showing ways to create more buttons styles and a custom header block. </p>\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Oct 2024 08:30:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WordPress.org blog: Expanding Our Code of Conduct to Protect Private Conversations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17994\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2024/10/protect-private-conversations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2935:\"<p>At the heart of our community is our shared pledge to create a space that is harassment-free, welcoming, and inclusive for all. Our <a href=\"https://make.wordpress.org/handbook/community-code-of-conduct/\">Community Code of Conduct</a> already outlines a clear set of expectations, while also providing examples of unacceptable actions. Today, we are reinforcing our values by adding another element to our list of unacceptable behaviors: Publishing private messages without consent.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Why This Addition Matters</h2>\n\n\n\n<p>The relationships we build within our community often involve private discussions. These conversations may involve sensitive matters, personal experiences, or simply casual exchanges. Regardless of the content, every individual should feel confident that their private communications will remain private unless they grant explicit permission to share them.</p>\n\n\n\n<p>Sharing private messages without consent is a breach of trust that can also lead to unintended harm, including emotional distress or misrepresentation. When members of our community feel they cannot trust others in their personal conversations, it undermines the collaborative spirit that is crucial to our collective success.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How This Change Protects the Community</h2>\n\n\n\n<p>By explicitly addressing the publication of private messages without consent, we are reinforcing an existing unacceptable behavior in our Community Code of Conduct: Other conduct which could reasonably be considered inappropriate in a professional setting. Sharing private communications without permission is a clear violation of professional integrity.</p>\n\n\n\n<p>This new addition ensures that private messages receive the same level of protection as personal information and that sensitive communications shared in confidence will not be disclosed without prior consent. An important exception to this is when sharing private messages is necessary for reporting incidents or concerns to the <a href=\"https://make.wordpress.org/community/handbook/irt/\">Incident Response Team</a>, as part of our commitment to maintaining a safe and respectful environment.</p>\n\n\n\n<p>Ultimately, this change encourages honest, constructive engagement across all levels of participation.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Moving Forward Together</h2>\n\n\n\n<p>The strength of our community lies in the trust we place in one another. By clarifying and reinforcing our expectations, we are taking another step toward maintaining an inclusive, respectful, and safe environment for everyone.This new addition will take effect immediately, and violations will be handled in accordance with our existing <a href=\"https://make.wordpress.org/handbook/community-code-of-conduct/#enforcement\">enforcement guidelines</a>. Together, we can ensure our community remains a place of collaboration, trust, and mutual respect.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Oct 2024 00:51:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress.org blog: WordPress Thanks Salesforce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/thank-you-salesforce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2643:\"<p>In the midst of our legal battles with Silver Lake and WP Engine, I wanted to take a moment to highlight something positive.</p>\n\n\n\n<p>Because of my friendships with the co-founders of Slack, <a href=\"https://x.com/stewart\">Stewart Butterfield</a> and <a href=\"https://x.com/iamcal\">Cal Henderson</a>, WordPress.org has had a free version of the Pro version of Slack since they started in 2009. We switched from IRC to Slack, and it was like superpowers were unlocked for our team.</p>\n\n\n\n<p>Over the past 10 years, <a href=\"https://slack.com/\">Slack</a> has been our secret weapon of productivity compared to many other open source projects. Its amazing collaboration features have allowed us to scale WordPress from running just a few blogs to now powering around 43% of all websites in the world, almost 10 times the runner-up in the market.</p>\n\n\n\n<p>As we have scaled from very small to very large, Slack has scaled right alongside us, seemingly effortlessly. WordPress.org currently has 49,286 users on its <a href=\"https://slack.com/pricing\">Slack Business+ instance</a>, which would cost at least $8.8M/yr if we were paying. (And we may need to go to their enterprise grid, to support e-discovery in the lawsuit attacks from WP Engine, which would cost even more.) </p>\n\n\n\n<p>This incredible generosity was continued by the enlightened leadership of Marc Benioff at Salesforce when they bought Slack in 2020. However, it has not been widely known or recognized on our <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future page</a>, which only highlights self-reported contributor hours and doesn&#8217;t mention Salesforce at all.</p>\n\n\n\n<p>This is a grave error, and we are correcting it today. Going forward:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>I would like every business in the world to see the amazing collaboration and productivity gains Slack has enabled for our community of tens of thousands of volunteers worldwide and <a href=\"https://slack.com/\">consider adopting it for their own business</a>.</li>\n\n\n\n<li>Salesforce will have a complimentary top sponsor slot at our flagship WordCamp events in the <a href=\"https://us.wordcamp.org/\">United States</a>, <a href=\"https://europe.wordcamp.org/\">Europe</a>, and <a href=\"https://asia.wordcamp.org/\">Asia</a>, which attract thousands of people each.</li>\n\n\n\n<li>We will update our <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future program</a> to reflect contributions such as Salesforce&#8217;s going forward.</li>\n</ul>\n\n\n\n<p>We just want to repeat: Thank you. We hope to deepen our partnership with Salesforce in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Oct 2024 20:17:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Gutenberg Times: WordPress 6.7 Source of Truth\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=30495\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://gutenbergtimes.com/6-7-source-of-truth/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:81234:\"<p>After quite a few rounds of sharing the <a href=\"https://nomad.blog/tag/source-of-truth/\">Source of Truth on my personal site</a>, Birgit Pauli-Haack, the wonderful creator and curator of Gutenberg Times, offered up this space for me to share this resource. Going forward, we&#8217;re going to experiment with it continuing to be shared here in hopes of reaching more content creators, educators, and general WordPress enthusiasts who want to know every detail of the latest &amp; greatest of WordPress.</p>\n\n\n\n<p>As always, Iâ€™d recommend staying up to date on the&nbsp;dev notes&nbsp;as those are rolling out along with&nbsp;reviewing the Field Guide when it comes out.</p>\n\n\n\n<p><strong>As a reminder, this is not meant to replace dev notes or the release-specific field guides, which serve important roles and are separate efforts. </strong>I mainly see it as for folks close to the WordPress release itself and educating others than I see it as something broadly helpful for the average WordPress user. Itâ€™s a foundational resource but, itâ€™s so long and detailed, it needs to be repackaged to be useful in each space. Feedback is welcomed for improvements for this version and for future versions as I consider how best to share this information.</p>\n\n\n\n<p>Big thank you to everyone who helped in big and small ways.</p>\n\n\n\n<img width=\"652\" height=\"374\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/376215782-1f8a8a02-f3fd-464d-a543-00f7a90dd1eb.png?resize=652%2C374&ssl=1\" alt=\"\" class=\"wp-image-30498\" />\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#changelog\">Changelog</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#important-note-guidelines\">Important Note/Guidelines</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#overview\">OverviewÂ </a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#important-links\">Important links:</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#6-7-assets\">6.7 assets:Â </a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#tags\">Tags</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#priority-items-for-6-7\">Priority Items for 6.7</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#new-default-theme-twenty-twenty-five\">New default theme: Twenty Twenty-Five</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#refining-data-views\">Refining Data ViewsÂ </a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#enhancements\">Enhancements</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#expanded-extensibility\">Expanded extensibilityÂ </a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#consolidating-and-expanding-block-supports\">Consolidating and expanding block supports</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#block-bindings-improvements-including-ui-to-connect-blocks-and-custom-fields-developer-plugin-author-enterprise\">Block Bindings improvements, including UI to connect blocks and custom fields [developer] [plugin author] [enterprise]</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#ui-to-connect-blocks-and-custom-fields\">UI to connect blocks and custom fields</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#new-apis-to-empower-extenders\">New APIs to empower extenders</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#ux-improvements\">UX improvements</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#polishing-the-query-loop-block-with-a-focus-on-simplicity\">Polishing the Query Loop block with a focus on simplicity</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#zoom-out-to-compose-with-patterns\">Zoom out to compose with patterns</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#media-improvements\">Media improvements</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#support-for-heic-image-uploads\">Support for HEIC image uploads</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#auto-sizes-for-lazy-loaded-images\">Auto Sizes for Lazy-loaded Images</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#expanded-and-improved-background-image-support\">Expanded and improved background image support</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#view-meta-boxes-in-the-iframed-post-editor-plugin-author-enterprise\">View meta boxes in the iframed Post Editor [plugin author] [enterprise]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#font-management-updates-end-user-theme-author\">Font management updates [end user] [theme author]</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#edit-and-apply-font-size-presets\">Edit and apply font size presetsÂ </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#consistent-interfaces\">Consistent interfaces</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#font-library-enhancements\">Font library enhancements</a></li></ol></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#additional-items-for-6-7\">Additional Items for 6.7</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#template-registration-api-plugin-author-theme-author-developer\">Template Registration API [plugin author] [theme author] [developer]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#preview-options-api-developer-plugin-author-enterprise\">Preview Options API [developer] [plugin author] [enterprise]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#changes-to-heartbeat-api-to-lower-minimum-allowed-time-enterprise-plugin-author\">Changes to Heartbeat API to lower minimum allowed time [enterprise] [plugin author]Â </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#customize-heading-level-curation-developer\">Customize heading level curation [developer]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#general-improvements\">General improvements</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#updated-order-of-editor-actions-for-a-clearer-sidebar\">Updated order of editor actions for a clearer sidebar</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#opt-out-preference-for-choose-a-pattern-modal-when-adding-a-new-page\">Opt out preference for &#8216;Choose a Pattern&#8217; modal when adding a new page</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#more-robust-saving\">More robust saving</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#iterating-on-pattern-shuffling\">Iterating on pattern shuffling</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#writing-flow-improvements\">Writing flow improvementsÂ </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#adding-block-examples-and-previews\">Adding block examples and previews</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#site-editor-focused\">Site Editor focused</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#other\">Other</a></li></ol></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#interactivity-api-iteration-bug-fixes-internal-refactor-and-new-apis-developer-plugin-author\">Interactivity API iteration: bug fixes, internal refactor, and new APIs [developer] [plugin author]</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#new-apis-getserver-state-getservercontext\">New APIs: getServer State &amp; getServerContext</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#updates-for-the-html-api-plugin-author-developer\">Updates for the HTML API [plugin author] [developer]Â </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#time-input-as-a-subcomponent-of-timepicker-developer-plugin-author\">Time input as a subcomponent of TimePicker [developer] [plugin author]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#define-block-variations-via-a-php-file-developer-plugin-author\">Define block variations via a PHP file [developer] [plugin author]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#override-styles-dynamically-plugin-author-developer\">Override styles dynamically [plugin author] [developer]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#help-text-for-radiocontrol-options-developer-plugin-author\">Help text for RadioControl options [developer] [plugin author]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#clearfix-for-the-post-content-block-theme-author-end-user\">Clearfix for the Post Content block [theme author] [end user]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/6-7-source-of-truth/#continuing-to-improve-php-8-x-support\">Continuing to improve PHP 8.x support</a></li></ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"changelog\"><strong>Changelog</strong></h2>\n\n\n\n<p>Any changes will be catalogued here as the release goes on. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Oct 21, 2024: added links to published Dev Notes</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"important-note-guidelines\"><strong>Important Note/Guidelines</strong></h2>\n\n\n\n<p><em>This is a public document so please be mindful of the fact that a wider audience than you might think can participate in whatâ€™s shared here ðŸ™‚&nbsp;</em></p>\n\n\n\n<p><strong>Please do not copy and paste what is in this document </strong>since this will be shared with many people. This should be used to inspire your own content and to ensure that you have the best information about this release. If you do copy and paste, keep in mind that others might do the same, opening the door for some awkwardness around duplicated content out on the web.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The document is shared publicly so be mindful of what you comment. The audience is large!</li>\n\n\n\n<li>You will have Comment access but not edit access. This is intentional â€“ please comment if you have any questions/concerns/feedback and Iâ€™ll follow up.&nbsp;</li>\n\n\n\n<li>If there are drastic changes, this document will be updated and you will be alerted.</li>\n\n\n\n<li>Each item has been tagged using best guesses with different high level labels so that you can more readily see at a glance who is likely to be most impacted.</li>\n\n\n\n<li>Each item has a high-level description, visuals (if relevant), adoption strategy (if relevant), and key resources if you want to learn more.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"overview\"><strong>Overview&nbsp;</strong></h2>\n\n\n\n<p>Along with a new default theme, there are new features, like the ability to zoom out to compose content with patterns, and new APIs, like the Template Registration API. More than anything though, this release brings refinement to how everything connects together to create a more seamless WordPress experience.</p>\n\n\n\n<p>Of note, this release includes Gutenberg 18.6 &#8211; 19.3 and, for the first time, I used AI to help offer rewrites to different sections.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"important-links\">Important links:</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/09/03/roadmap-to-6-7/\">Roadmap to 6.7</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/6-7/\">6.7 Development Cycle information</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/23/wordpress-6-7-field-guide/\">6.7 Field Guide</a></li>\n\n\n\n<li>Whatâ€™s new for developers: <a href=\"https://developer.wordpress.org/news/2024/07/10/whats-new-for-developers-july-2024/\">July</a>, <a href=\"https://developer.wordpress.org/news/2024/08/10/whats-new-for-developers-august-2024/\">August</a>, <a href=\"https://developer.wordpress.org/news/2024/09/10/whats-new-for-developers-september-2024\">September</a>, <a href=\"https://developer.wordpress.org/news/2024/10/10/whats-new-for-developers-october-2024/\">October</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"6-7-assets\">6.7 assets:&nbsp;</h3>\n\n\n\n<p>To view all assets in this document, <a href=\"https://drive.google.com/drive/folders/1So-c8M-H45g_zyOZ8ACefZe-F-LD-8cq?usp=sharing\">please review this drive folder</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"tags\"><strong>Tags</strong></h2>\n\n\n\n<p>To make this document easier to navigate based on specific audiences, the following tags are used liberally:&nbsp;</p>\n\n\n\n<p>[end user]: end user focus.&nbsp;</p>\n\n\n\n<p>[theme author]: block or classic theme author.&nbsp;</p>\n\n\n\n<p>[plugin author]: plugin author, whether block or otherwise.</p>\n\n\n\n<p>[developer]: catch-all term for more technical folks.&nbsp;</p>\n\n\n\n<p>[site admin]: this includes a â€œbuilderâ€ type.&nbsp;</p>\n\n\n\n<p>[enterprise]: specific items that would be of interest to or particularly impact enterprise-level folks</p>\n\n\n\n<p><strong>If no tags are listed, itâ€™s because the impact is broad enough to impact everyone equally.&nbsp;</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"priority-items-for-6-7\"><strong>Priority Items for 6.7</strong></h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"new-default-theme-twenty-twenty-five\">New default theme: Twenty Twenty-Five</h3>\n\n\n\n<p>6.7 marks the next edition of a default WordPress theme, designed to showcase the latest in WordPress and set a new standard for block themers. This year&#8217;s theme aims to cater to a wide range of bloggers. Itâ€™s designed for <strong>simple personal blogs</strong> like ma.tt, <strong>photo blogs</strong> focused on photography or portfolios, and more <strong>complex blogs</strong>, such as news sites that require a broader set of blocks and more complex content.&nbsp;</p>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1aZM2tL4Tt9IYMbULYJHEAUcp_CWwcb0V/view?usp=drive_link\">demo</a> walking through the theme including style variations, template layouts, and page patterns.<br /><strong>Key Make Posts/GitHub/Trac Issue(s):</strong> <em>Follow the </em><a href=\"https://github.com/WordPress/twentytwentyfive\"><em>Twenty Twenty-Five GitHub repo</em></a><em> and </em><a href=\"https://make.wordpress.org/core/2024/08/15/introducing-twenty-twenty-five/\"><em>read the announcement post</em></a><em> for more information.&nbsp;</em></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"refining-data-views\">Refining Data Views&nbsp;</h3>\n\n\n\n<p>Following the launch of Data Views in 6.5 and advancements in 6.6, this release is focused on refining the experience with a few new features planned. The aim is to make these views more flexible for customization and more functional to use.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"enhancements\">Enhancements</h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/60630\">Ability to set the density of information in the grid layout</a>.</li>\n\n\n\n<li><a href=\"https://href.li/?https://github.com/WordPress/gutenberg/pull/63203\">Option to hide/show the filters in the user interface</a> to add more optionality and reduce clutter.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/63416\">Ability to customize the column order in table views</a> with the <a href=\"https://github.com/WordPress/gutenberg/pull/64646\">move left/right controls always available</a>, including in the <a href=\"https://github.com/WordPress/gutenberg/pull/64381\">new view configuration UI to manage order across all columns</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/63487\">Make the Grid layout aspect ratio user configurable</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/64175#top\">Graduate data view options out of a menu to allow more design expression</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/63309\">See authorâ€™s avatar next to publication status in Pages</a>.</li>\n\n\n\n<li>Mobile responsiveness improvements, including fixes like <a href=\"https://github.com/WordPress/gutenberg/pull/63203\">moving the filtering UI into a toggle-able panel to improve experience on narrow viewports/containers</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/63118\">make SiteHub available for Pages, Patterns, and Templates in mobile viewports</a>, and <a href=\"https://github.com/WordPress/gutenberg/pull/63002\">ensure Patterns and Templates can be edited</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/64209\">De-emphasise bulk actions on Grid layout</a> after feedback that always being able to see the bulk select option proved to be confusing.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/64268\">Move bulk actions menu to the Footer</a>, consolidate with the floating toolbar and total items display, to provide an easier to access pathway.&nbsp;</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/65223\">Show item count for each item in the sidebar</a> for access to quick information.&nbsp;</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/65295\">Improved UX of views for Pages</a> with filtered views, like Published and Drafts, that only shows additional filters and hides the â€œstatusâ€ filter to prevent ending up in a confusing state.&nbsp;&nbsp;</li>\n</ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"expanded-extensibility\">Expanded extensibility&nbsp;</h4>\n\n\n\n<p>As part of enhancing Data Views extensibility and supporting the <a href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\">Admin Redesign</a> efforts, an API was introduced to register and unregister dataview actions. The existing post actions were also moved to globally registered actions and typed actions (see examples in <code>packages/editor/src/dataviews/actions</code>). This enables third-party developers to manage actions as needed. This includes a way to register and unregister core actions around <a href=\"https://github.com/WordPress/gutenberg/pull/64087\">trashing</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/64088\">permanently deleting</a>, and <a href=\"https://github.com/WordPress/gutenberg/pull/64134\">restoring</a> posts. In staying with the idea, users of the component can also unregister actions to duplicate <a href=\"https://github.com/WordPress/gutenberg/pull/64441\">posts</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/64373\">patterns</a>, or <a href=\"https://github.com/WordPress/gutenberg/pull/64388\">template parts</a>.&nbsp;</p>\n\n\n\n<p>Developers can also remove the actions to view <a href=\"https://github.com/WordPress/gutenberg/pull/64467\">posts</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/64464\">post revisions</a> or prevent users from <a href=\"https://github.com/WordPress/gutenberg/pull/64366\">renaming a post</a> or <a href=\"https://github.com/WordPress/gutenberg/pull/64199\">reordering pages.</a> These actions appear in both the Site Editor views and the sidebar in the Post or Site Editor.</p>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1q3_IyMrAtXe6s1gDc5kSr9qmt484GNNa/view?usp=drive_link\">demo</a> changing grid density, <a href=\"https://drive.google.com/file/d/1B7DeTe6eXG6LCub2dKLLwPFE47TCmXck/view?usp=drive_link\">image</a> of show/hide filters option.<br /><strong>Adoption approach:</strong> updated by default if using a block theme and opt in for extending with two guides to help <a href=\"https://developer.wordpress.org/news/2024/08/27/using-data-views-to-display-and-interact-with-data-in-plugins/\">Using Data Views to display and interact with data in plugins</a> &amp; <a href=\"https://developer.wordpress.org/news/2024/09/23/actions-from-data-views-adding-images-to-the-media-library/\">Actions from Data Views: Adding images to the Media Library</a><br /><strong>Key Make Posts/GitHub/Trac Issue(s):</strong> <em>Follow </em><a href=\"https://github.com/WordPress/gutenberg/issues/63128\"><em>this tracking issue</em></a><em> for more information.</em></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"consolidating-and-expanding-block-supports\">Consolidating and expanding block supports</h3>\n\n\n\n<p>Several blocks now come with expanded support options, enabling even more design possibilities. Notably, the long-requested shadow support for Group blocks has been added, which is a big win for designers and theme developers:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Buttons: Add border, color, and padding block supports. (<a href=\"https://github.com/WordPress/gutenberg/pull/63538\">63538</a>)</li>\n\n\n\n<li>Categories: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/63950\">63950</a>)</li>\n\n\n\n<li>Column: Enable border-radius support. (<a href=\"https://github.com/WordPress/gutenberg/pull/63924\">63924</a>)</li>\n\n\n\n<li>Comment Author Name: add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/64550\">64550</a>)</li>\n\n\n\n<li>Comment Content: add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/64230\">64230</a>)</li>\n\n\n\n<li>Comment Date: add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/64210\">64210</a>)</li>\n\n\n\n<li>Comment Template: Add Border Block Support. (<a href=\"https://github.com/WordPress/gutenberg/pull/64238\">64238</a>)</li>\n\n\n\n<li>Comment Edit Link: Add Border Block Support. (<a href=\"https://github.com/WordPress/gutenberg/pull/64239\">64239</a>)</li>\n\n\n\n<li>Comment Reply Link: Add border support. (<a href=\"https://github.com/WordPress/gutenberg/pull/64271\">64271</a>)</li>\n\n\n\n<li>File: Add border block support (<a href=\"https://github.com/WordPress/gutenberg/pull/64509\">64509</a>).</li>\n\n\n\n<li>Gallery: Add border block support. (<a href=\"https://github.com/WordPress/gutenberg/pull/63428\">63428</a>)</li>\n\n\n\n<li>Group: Add block support for shadow. (<a href=\"https://github.com/WordPress/gutenberg/pull/63295\">63295</a>)</li>\n\n\n\n<li>Heading: Add border support. (<a href=\"https://github.com/WordPress/gutenberg/pull/63539\">63539</a>)</li>\n\n\n\n<li>Image: Adopt margin block support (<a href=\"https://github.com/WordPress/gutenberg/pull/63546\">63546</a>)</li>\n\n\n\n<li>Latest comments: Add color block support (<a href=\"https://github.com/WordPress/gutenberg/pull/63419\">63419</a>)</li>\n\n\n\n<li>List: add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/63540\">63540</a>)</li>\n\n\n\n<li>List Item: Add color support (<a href=\"https://github.com/WordPress/gutenberg/pull/59892\">59892</a>), add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/63541\">63541</a>).</li>\n\n\n\n<li>Media &amp; Text: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/63542\">63542</a>)</li>\n\n\n\n<li>Paragraph: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/63543\">63543</a>)</li>\n\n\n\n<li>Post Author Biography: Add border support&nbsp; (<a href=\"https://github.com/WordPress/gutenberg/pull/64615\">64615</a>)</li>\n\n\n\n<li>Post Author Name: Add border support&nbsp; (<a href=\"https://github.com/WordPress/gutenberg/pull/64530\">64530</a>)</li>\n\n\n\n<li>Post Author: Add border support&nbsp; (<a href=\"https://github.com/WordPress/gutenberg/pull/64599\">64599</a>)</li>\n\n\n\n<li>Post Comments Form: Add Border Block Support. (<a href=\"https://github.com/WordPress/gutenberg/pull/64233\">64233</a>)</li>\n\n\n\n<li>Post Content: Add background image and padding support (<a href=\"https://github.com/WordPress/gutenberg/pull/62499\">62499</a>)</li>\n\n\n\n<li>Post Date: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/64023\">64023</a>)</li>\n\n\n\n<li>Post Excerpt: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/64022\">64022</a>)</li>\n\n\n\n<li>Post Terms: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/64246\">64246</a>)</li>\n\n\n\n<li>Post Title: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/64024\">64024</a>)</li>\n\n\n\n<li>Preformatted: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/64302\">64302</a>)</li>\n\n\n\n<li>Query Title: Add border support&nbsp; (<a href=\"https://github.com/WordPress/gutenberg/pull/64581\">64581</a>)</li>\n\n\n\n<li>Quote: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/63544\">63544</a>), add spacing supports (<a href=\"https://github.com/WordPress/gutenberg/pull/63545\">63545</a>), add background image and minimum height support (<a href=\"https://github.com/WordPress/gutenberg/pull/62497\">62497</a>), add align support (<a href=\"https://github.com/WordPress/gutenberg/pull/64188\">64188</a>).</li>\n\n\n\n<li>Search: Add margin support. (<a href=\"https://github.com/WordPress/gutenberg/pull/63547\">63547</a>)</li>\n\n\n\n<li>Site Tagline: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/63778\">63778</a>)</li>\n\n\n\n<li>Site Title: Add border support (<a href=\"https://github.com/WordPress/gutenberg/pull/63631\">63631</a>)</li>\n\n\n\n<li>Social Links: Add border block support (<a href=\"https://github.com/WordPress/gutenberg/pull/63629\">63629</a>)</li>\n\n\n\n<li>Tag Cloud: Add border block support (<a href=\"https://github.com/WordPress/gutenberg/pull/63579\">63579</a>)</li>\n\n\n\n<li>Term Description: Add border block support (<a href=\"https://github.com/WordPress/gutenberg/pull/63630\">63630</a>)</li>\n\n\n\n<li>Verse block: Add background image and minimum height support (<a href=\"https://github.com/WordPress/gutenberg/pull/62498\">62498</a>)</li>\n\n\n\n<li>Text orientation controls have been added to more blocks (site-title, site-tagline, verse, and button block.) (<a href=\"https://github.com/WordPress/gutenberg/pull/62727\">#62727</a>)</li>\n</ul>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1Z3aZYjI7kmM2Q1Gzhvq9kiEouNWzdaMR/view?usp=drive_link\">image</a> of shadow support in the Group block.</p>\n\n\n\n<p>In <a href=\"https://make.wordpress.org/core/2024/10/17/roster-of-design-tools-per-block-wordpress-6-6-edition-2/\">Roster of design tools per block (WordPress 6.7 edition</a>, you&#8217;ll find an overview table, updated with the most recent changes. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"block-bindings-improvements-including-ui-to-connect-blocks-and-custom-fields-developer-plugin-author-enterprise\">Block Bindings improvements, including UI to connect blocks and custom fields [developer] [plugin author] [enterprise]</h3>\n\n\n\n<p>The Block Bindings API launched in 6.5 and iterated upon in 6.6 allows you to bind dynamic data to block attributes, solving many use cases for custom blocks and powering other features, like overrides in synced patterns. The work for this release centered mainly on polishing and opening the underlying APIs that were deemed stable, improving the overall UX, and adding a user interface (UI) that allows users to connect attributes with custom fields to their binding sources, making it possible to create bindings through the UI instead of the Code Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"ui-to-connect-blocks-and-custom-fields\">UI to connect blocks and custom fields</h4>\n\n\n\n<p><em>A quick note here, this is specific to post meta fields as the APIs to extend this UI werenâ€™t considered stable yet. This means that other sources canâ€™t use it yet.</em></p>\n\n\n\n<p>This release comes with a new user interface (UI) that allows users to connect attributes with custom fields, making it possible to create bindings through the UI instead of the Code Editor. This UI is controlled by a new editor setting reading a <a href=\"https://github.com/WordPress/wordpress-develop/pull/7258\"><code>new edit_block_binding</code> capability</a>, which is mapped to `edit_post` (if editing a post) or <code>edit_theme_options</code> (if editing a template). This means that by default admin and editor users can create and modify bindings, but this can be overridden with <code>block_editor_settings_all</code> or <code>map_meta_cap</code> filters.</p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"new-apis-to-empower-extenders\">New APIs to empower extenders</h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/65713\">APIs to register sources in the client</a>: Allow extenders to show their source value and provide mechanisms to update it if wanted.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/64102\">Utils to update and remove bindings</a>: Open the door for plugin authors who might want to create their own UI.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/wordpress-develop/pull/6839\">PHP filter to customize the output of a block bindings source</a>: Provide flexibility for developers that just want to modify the output of a specific source.</li>\n</ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"ux-improvements\">UX improvements</h4>\n\n\n\n<p>In terms of UX improvements, this includes everything from warnings when a block is connected to an invalid attribute to changing the placeholder text when a block is bound. Additionally, a <a href=\"https://github.com/WordPress/wordpress-develop/pull/7298\">new â€œlabelâ€ property</a> has been added to register_meta to be able to consume a human-readable text, which highly improves the UX, especially for non-developer users. When combined, these all seek to improve the experience of editing and interacting with bound blocks.</p>\n\n\n\n<p>For this release, the possibility of extending this UI hasnâ€™t been opened because the API wasnâ€™t considered stable, but there are plans to do so in the future.</p>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1V0OduoyRBnFNy2KUtjAvQiu7lUotfpfA/view?usp=drive_link\">demo</a> of UI to connect blocks and custom fields.&nbsp;<br /><strong>Adoption approach: </strong>opt-in by using block bindings UI with the ability to override which users have access to the UI with the `block_editor_settings_all` filter. To disable, you can use the same `block_editor_settings_all` filter and set <code>$editor_settings[\'canUpdateBlockBindings\']</code>as false.<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>To read about every change in this release, review <a href=\"https://github.com/WordPress/gutenberg/issues/63018\">this iteration issue</a><strong>.</strong></p>\n\n\n\n<p>The Developer Note covers the details: <a href=\"https://make.wordpress.org/core/2024/10/21/block-bindings-improvements-to-the-editor-experience-in-6-7/\">Block Bindings: Improvements to the Editor Experience in 6.7</a> </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"polishing-the-query-loop-block-with-a-focus-on-simplicity\">Polishing the Query Loop block with a focus on simplicity</h3>\n\n\n\n<p>WordPress 6.7 introduces significant improvements to the Query Loop block, focusing on simplicity and clarity. One of the most notable changes is the default settings, where the block now automatically inherits the query from the template, eliminating the need for users to enable this option manually. This ensures that posts display immediately both in the editor and on the front end, streamlining the process for most users who just want to see their content without extra configuration. This also applies when adding a Query Loop block to a single post or page, where the settings will be automatically configured to work in that context.</p>\n\n\n\n<p>The Post List variation has been removed from the Inserter due to its confusing settings, which often caused posts to not appear. This change improves the overall user experience.&nbsp;</p>\n\n\n\n<p>In terms of customization, a new toggle allows users to easily switch between default and custom queries. If opting for a custom query, another toggle lets users choose between filtering for posts, pages, or custom post types. Additionally, commonly used settings like Posts Per Page, Offset, and Max Pages to Show have been moved from the toolbar to the sidebar settings panel, consolidating all key options into one central place for easier configuration.</p>\n\n\n\n<p>The update also includes several refinements, such as a quick preview when selecting the Query Loop block in the Inserter and more intuitive help text, particularly for sticky posts, which are now clearly labeled to always appear first. Pagination controls have been enhanced and moved to the Advanced section for better organization. Another new feature is the introduction of a &#8220;format&#8221; parameter, which allows users to filter content by post format, offering more flexibility in creating tailored queries. Combined, these updates make the Query Loop block both easier to use for beginners and more powerful for advanced users.</p>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1OPLKlFAi3c9J0JNlQlOEuygVzD70pKrd/view?usp=drive_link\">demo</a> of some of the query loop block changes, <a href=\"https://drive.google.com/file/d/13HAuc-2EdkQ8BYCg1NViA2NyIQmy-FA3/view?usp=drive_link\">image</a> of post format support.&nbsp;<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong><a href=\"https://make.wordpress.org/core/2024/09/23/core-editor-improvement-simplified-query-loop-block-with-smarter-defaults-intuitive-settings/\">Core Editor Improvement: Simplified Query Loop block with smarter defaults &amp; intuitive settings</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"zoom-out-to-compose-with-patterns\">Zoom out to compose with patterns</h3>\n\n\n\n<p>The Zoom Out view aims to simplify the process of composing content at the pattern level, rather than focusing on lower-level, individual blocks. This new feature, accessible as a toggle in the toolbar, introduces a high-level, streamlined approach to site building with several key benefits:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>High-Level Overview of Content Structure: The Zoom Out View allows users to insert and manipulate patterns across a page or template, offering a clearer sense of the content structure.&nbsp;</li>\n\n\n\n<li>Efficient Pattern Manipulation: While zoomed out, users can easily move, delete, shuffle between, and edit patterns, powered by the usual block toolbar.</li>\n\n\n\n<li>Toggle On/Off: This option can be turned on and off in various ways, including clicking the option in the toolbar and double-clicking to edit patterns. All of these options provide pathways in and out of zooming as youâ€™d like.</li>\n\n\n\n<li>Ability to style at a high level: As part of making zoom out more robust, you will still see options to style top level container blocks and any individual blocks that donâ€™t exist within a container. This means you can stay zoomed out and still make quick changes, like changing the background color of a Group block.</li>\n\n\n\n<li>Additional Enhancements: Other refinements include closing the inserter automatically when switching to block-level editing, showing top-level sections in List View, visual vertical displacement when dragging patterns, and an â€œAdd patternâ€ prompt for the quick inserter.</li>\n</ul>\n\n\n\n<p>This feature gives users a simplified, high-level interface to make design changes, ensuring more cohesive layouts with less granular block management.</p>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1mQFeDmNun-U_PCedpoTqWlRTYKYB2O5U/view?usp=drive_link\">demo</a> showing a template being built moving in and out of using zoom out.<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>Zoom out mode iteration issue for 6.7 for a full list of related changes (<a href=\"https://github.com/WordPress/gutenberg/issues/64197\">64197</a>)&nbsp;</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2024/10/21/developer-notes-for-zoom-out-in-wordpress-6-7/\">Developer Notes for Zoom Out in WordPress 6.7</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"media-improvements\">Media improvements</h3>\n\n\n\n<p>Adding and interacting with media is taking a big leap forward in this release with HEIC support, auto sizes for lazy loaded images, and more background image support at an individual block and global level:</p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"support-for-heic-image-uploads\">Support for HEIC image uploads</h4>\n\n\n\n<p>â€œIn WordPress 6.7, <a href=\"https://en.wikipedia.org/wiki/High_Efficiency_Image_File_Format\">HEIC</a> image uploads <a href=\"https://core.trac.wordpress.org/ticket/53645\">will be automatically converted to JPEG on the server when possible</a>. This allows you to view HEIC images in WP Admin and use them in posts and pages regardless of whether a visitorâ€™s browser supports HEIC. Automatic conversion of HEIC images to JPEG can be disabled using the <code>image_editor_output_format</code> filter.â€</p>\n\n\n<pre class=\"wp-block-code has-small-font-size\"><span><code class=\"hljs language-php shcb-code-table shcb-line-numbers shcb-wrap-lines\"><span class=\"shcb-loc\"><span>add_filter( <span class=\"hljs-string\">\'image_editor_output_format\'</span>, <span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span><span class=\"hljs-params\">( $output_format )</span> </span>{\n</span></span><span class=\"shcb-loc\"><span>\n</span></span><span class=\"shcb-loc\"><span>Â Â Â Â <span class=\"hljs-keyword\">unset</span>( $output_format&#91;<span class=\"hljs-string\">\'image/heic\'</span>] );\n</span></span><span class=\"shcb-loc\"><span>\n</span></span><span class=\"shcb-loc\"><span>Â Â Â Â <span class=\"hljs-keyword\">return</span> $output_format;\n</span></span><span class=\"shcb-loc\"><span>\n</span></span><span class=\"shcb-loc\"><span>} );\n</span></span></code></span></pre>\n\n\n<p>From the <a href=\"https://make.wordpress.org/core/2024/08/15/automatic-conversion-of-heic-images-to-jpeg-in-wordpress-6-7/\">Automatic conversion of HEIC images to JPEG in WordPress 6.7</a></p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"auto-sizes-for-lazy-loaded-images\">Auto Sizes for Lazy-loaded Images</h4>\n\n\n\n<p>â€œThis implements the HTML spec for applying auto sizes to lazy-loaded images by prepending auto to the sizes attribute generated by WordPress if the image has a loading attribute set to lazy. For browsers that support this HTML spec, the image&#8217;s size value will be set to the concrete object size of the image. For browsers that don&#8217;t support the spec, the word &#8220;auto&#8221; will be ignored when parsing the sizesizes value.â€</p>\n\n\n\n<p>From the <a href=\"https://core.trac.wordpress.org/ticket/61847\">trac ticket</a> that implemented this feature.</p>\n\n\n\n<p>Developer Note: <a href=\"https://make.wordpress.org/core/2024/10/18/auto-sizes-for-lazy-loaded-images-in-wordpress-6-7/\">Auto Sizes for Lazy Loaded Images in WordPress 6.7</a></p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"expanded-and-improved-background-image-support\">Expanded and improved background image support</h4>\n\n\n\n<p>Recent updates to background image support bring new customization options for content blocks like Quote, Verse, and Post Content. Previously, background image functionality was restricted to container blocks such as Cover and Group, but with expanded support across multiple blocks, users now have more flexibility in design. This enhancement eliminates the need for nesting blocks, making it easier to achieve the desired look by adding a background image to individual blocks.</p>\n\n\n\n<p>Another key improvement is the ability to set background images globally via Styles for block themes for all blocks with background support. For example, this means you can apply a background image across all Quote or Pull Quote blocks within a site, ensuring consistency in design. Additionally, when setting a background image globally or for an individual block, you can enable a fixed background directly from the block settings in Styles. Alternatively, you can define this setting in <code>theme.json</code> using the `background.backgroundAttachment` style property. Finally, a new popover interface has been introduced for background image controls, keeping them neatly hidden when not in use.&nbsp;</p>\n\n\n\n<p>In terms of technical updates, you can now use reference values for background images in <code>theme.json</code>, allowing for code reuse and avoiding potential bugs. For example, you can reference a background image defined via <code>styles.background.backGroundImage</code> by setting a value of <code>{ ref: \'styles.background.backgroundImage\' }</code> for another background image. Overall, these enhancements greatly improve the flexibility and user experience of adding background images across a site.</p>\n\n\n\n<p><strong>Visuals: </strong>images of <a href=\"https://drive.google.com/file/d/1mS1QUNCV4Qe13HHFE-5LWVcMhltgyUaa/view?usp=drive_link\">Quote block</a> and <a href=\"https://drive.google.com/file/d/1FEfhr1-bxFiEHfOubyNb1uFr-TZcbjo3/view?usp=drive_link\">Verse block</a> with background image support, <a href=\"https://drive.google.com/file/d/1nwVqced-a7U3QxnVsUKNVcOxOGjbvSIN/view?usp=drive_link\">demo</a> of using background image tools in Styles.</p>\n\n\n\n<p><strong>Adoption approach:&nbsp;</strong></p>\n\n\n\n<p>Opt out for HEIC support via the <code>image_editor_output_format</code> hook.</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-php\">add_filter( <span class=\"hljs-string\">\'image_editor_output_format\'</span>, <span class=\"hljs-function\"><span class=\"hljs-keyword\">function</span><span class=\"hljs-params\">( $output_format )</span> </span>{\n\nÂ Â Â Â <span class=\"hljs-keyword\">unset</span>( $output_format&#91;<span class=\"hljs-string\">\'image/heic\'</span>] );\n\nÂ Â Â Â <span class=\"hljs-keyword\">return</span> $output_format;\n\n} );</code></span></pre>\n\n\n<p>See examples of adding reference values to `theme.json` <a href=\"https://github.com/WordPress/gutenberg/pull/64128\">in the PR that implemented the feature</a>.&nbsp;</p>\n\n\n\n<p><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>background image block support follow up tasks with a dedicated 6.7 section (<a href=\"https://github.com/WordPress/gutenberg/issues/54336\">54336</a>)</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"view-meta-boxes-in-the-iframed-post-editor-plugin-author-enterprise\">View meta boxes in the iframed Post Editor [plugin author] [enterprise]</h3>\n\n\n\n<p>Previously, after an effort to <a href=\"https://github.com/WordPress/gutenberg/issues/33346\">iframe the post editor</a>, metaboxes prevented the editor content from loading in an iframe, causing a fair amount of disruption and workarounds. To resolve this and ensure that both metaboxes and canvas content is visible when working on content, a split view option has been added to allow you to access both while editing when the editor is iframed. This change will provide a consistent WYSIWYG experience between the Editor and frontend views.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The editor running as an iframe will affect many plugin developers and may force you to modify your code (see <a href=\"https://github.com/WordPress/gutenberg/pull/64351#issuecomment-2326301103\">this comment</a>). Expect a dev note on this topic. Ideally, if you are building a plugin that extends the editor with custom data input, you would transition to one of the available <a href=\"https://href.li/?https://developer.wordpress.org/block-editor/reference-guides/slotfills/\">SlotFills</a> in the interface, creating a more integrated user experience.</li>\n\n\n\n<li>This work makes the post editor canvas work as an iframe when there is a meta box.</li>\n\n\n\n<li>The meta box area is resizable, and its height is saved as a user preference. If the browser height is low, the meta box switches to a toggleable details element.</li>\n</ul>\n\n\n\n<p>For enterprise folks who often use plugins that add metaboxes, this is also a change to be aware of and plan for.&nbsp;</p>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1Sfa0pPnlOJ8_7sxUhrctSnayHgLYfugh/view?usp=drive_link\">demo</a> showing before and after this work with the Yoast plugin as an example.&nbsp;<br /><strong>Adoption approach: </strong>Plugin developers may have to alter their code. Expect a dev note on this topic. <a href=\"https://github.com/Yoast/wordpress-seo/issues/21602\">Hereâ€™s an example</a> from Yoast around adjustments that had to be made.<br /><strong>Key Make Posts/GitHub/Trac Issue(s):&nbsp; </strong>Try split content view with open metaboxes (<a href=\"https://github.com/WordPress/gutenberg/pull/64351\">64351</a>)</p>\n\n\n\n<p>Developer Note: <a href=\"https://make.wordpress.org/core/2024/10/18/post-editor-iframing-with-meta-boxes-in-wordpress-6-7/\">Post Editor iframing with meta boxes&nbsp;in WordPress 6.7</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"font-management-updates-end-user-theme-author\">Font management updates [end user] [theme author]</h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"edit-and-apply-font-size-presets\">Edit and apply font size presets&nbsp;</h4>\n\n\n\n<p>An enhanced Styles interface allows for greater flexibility when creating, editing, removing, and applying font size presets. Users can now easily modify the presets provided by a theme or create their own custom options. A key feature is the ability to toggle fluid typography, which enables responsive font scaling, with the option to set custom fluid values for finer control over responsiveness. Of note, individual font sizes may opt out of fluid typography if it is turned on globally. Individual font size presets can opt in to fluid typography if it is not turned on globally, creating more possibilities.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"consistent-interfaces\">Consistent interfaces</h4>\n\n\n\n<p>In addition to these font-related enhancements, the Styles interface has been upgraded to offer more intuitive control over font size presets. These presets, along with color presets, are now available for selection from the Styles sidebar under the &#8220;Browse styles&#8221; option, aligning with the left sidebar Styles menu. This change creates a more streamlined and consistent user experience, making navigating and applying global styles across the site easier and making &nbsp; the fonts management modal dialog more discoverable. (<a href=\"https://github.com/WordPress/gutenberg/pull/62129\">62129</a>)</p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"font-library-enhancements\">Font library enhancements</h4>\n\n\n\n<p>Fonts are now grouped by source (<a href=\"https://github.com/WordPress/gutenberg/pull/63211\">63211</a>) helping users understand at a glance where each font comes from. A new â€œSelect Allâ€ option (<a href=\"https://github.com/WordPress/gutenberg/pull/63531\">63531</a>) allows for quick activation or deactivation of all fonts at once, streamlining font management. When no fonts are installed, a message now displays in the library tab (<a href=\"https://github.com/WordPress/gutenberg/pull/63740\">63740</a>), improving user awareness. Additionally, enhancements have been made to the &#8220;No fonts installed&#8221; state (<a href=\"https://github.com/WordPress/gutenberg/pull/63533\">63533</a>), clarifying situations when fonts are installed but not yet activated.</p>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1yOpfEc9fVustc7swG5CXTm6ivGeLBFl9/view?usp=drive_link\">demo</a> showing editing font preset, creating a font preset, and font library improvements.<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong><a href=\"https://make.wordpress.org/core/2024/10/08/core-editor-improvement-new-features-and-flows-for-font-management/\">Core Editor Improvement post dedicated to these changes</a>, efforts done across a number of PRs including add font size presets UI (<a href=\"https://github.com/WordPress/gutenberg/pull/63057\">63057</a>), Font Library: group fonts by source (<a href=\"https://github.com/WordPress/gutenberg/pull/63211#top\">63211</a>), and fluid typography: allow individual preset overrides (<a href=\"https://github.com/WordPress/gutenberg/pull/64790\">64790</a>).</p>\n\n\n\n<p>Developer Notes excerpt: <a href=\"https://make.wordpress.org/core/2024/10/20/miscellaneous-block-editor-changes-in-wordpress-6-7/#new-font-size-presets-ui\">New Font Size Presets UI</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"additional-items-for-6-7\"><strong>Additional Items for 6.7</strong></h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"template-registration-api-plugin-author-theme-author-developer\">Template Registration API [plugin author] [theme author] [developer]</h3>\n\n\n\n<p>A new API streamlines the process of registering templates and template parts for plugins, making it easier for developers to integrate custom templates. Previously, plugins had to rely on multiple filters to accomplish this, which created a barrier to entry and limited adoption. With this new API, developers now have a much simpler path to building block templates and aligning with the expectations of WordPress users.</p>\n\n\n\n<p>One key feature of the new API is that plugin-registered templates can be overridden by themes, with fallback options that automatically revert to the plugin&#8217;s registered title and description when necessary. The API also empowers theme builders by offering customization options for these templates. Additionally, developers can unregister existing templates or create custom category templates to suit their needs.</p>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1jXL79RTt3v7UN9UW_dQ5GT9myUU-juCE/view?usp=drive_link\">image</a> of code showing how to register a template.&nbsp;<br /><strong>Adoption approach:</strong> Opt in. The tutorial, <a href=\"https://developer.wordpress.org/news/2024/08/29/registering-block-templates-via-plugins-in-wordpress-6-7/\">Registering block templates via plugins in WordPress 6.7</a>, walks you through an example of how to use the new API to provide single, archive, and custom templates for a Book custom post type. Hereâ€™s an example for now:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-xml\">register_block_template( \'devblog-plugin-templates//example\', &#91;\n\n\'title\' Â  Â  Â  =&gt; __( \'Example\', \'devblog-plugin-templates\' ),\n\n\'description\' =&gt; __( \'An example block template from a plugin.\', \'devblog-plugin-templates\' ),\n\n\'content\' Â  Â  =&gt; \'\n\n<span class=\"hljs-comment\">&lt;!-- wp:template-part {\"slug\":\"header\",\"area\":\"header\",\"tagName\":\"header\"} /--&gt;</span>\n\n<span class=\"hljs-comment\">&lt;!-- wp:group {\"tagName\":\"main\"} --&gt;</span>\n\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">main</span> <span class=\"hljs-attr\">class</span>=<span class=\"hljs-string\">\"wp-block-group\"</span>&gt;</span>\n\n<span class=\"hljs-comment\">&lt;!-- wp:group {\"layout\":{\"type\":\"constrained\"}} --&gt;</span>\n\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">div</span> <span class=\"hljs-attr\">class</span>=<span class=\"hljs-string\">\"wp-block-group\"</span>&gt;</span>\n\n<span class=\"hljs-comment\">&lt;!-- wp:paragraph --&gt;</span>\n\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">p</span>&gt;</span>This is a plugin-registered template.<span class=\"hljs-tag\">&lt;/<span class=\"hljs-name\">p</span>&gt;</span>\n\n<span class=\"hljs-comment\">&lt;!-- /wp:paragraph --&gt;</span>\n\n<span class=\"hljs-tag\">&lt;/<span class=\"hljs-name\">div</span>&gt;</span>\n\n<span class=\"hljs-comment\">&lt;!-- /wp:group --&gt;</span>\n\n<span class=\"hljs-tag\">&lt;/<span class=\"hljs-name\">main</span>&gt;</span>\n\n<span class=\"hljs-comment\">&lt;!-- /wp:group --&gt;</span>\n\n<span class=\"hljs-comment\">&lt;!-- wp:template-part {\"slug\":\"footer\",\"area\":\"footer\",\"tagName\":\"footer\"} /--&gt;</span>\'\n\n] );</code></span></pre>\n\n\n<p><strong>Key Make Posts/GitHub/Trac Issue(s): </strong><a href=\"https://developer.wordpress.org/news/2024/08/29/registering-block-templates-via-plugins-in-wordpress-6-7/\">Registering block templates via plugins in WordPress 6.7</a> developer blog post tutorial, Add plugin template registration API (<a href=\"https://github.com/WordPress/gutenberg/pull/61577\">61577</a>).</p>\n\n\n\n<p>Developer Note: <a href=\"https://make.wordpress.org/core/2024/10/20/new-plugin-template-registration-api-in-wordpress-6-7/\">New Plugin Template Registration API in WordPress 6.7</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"preview-options-api-developer-plugin-author-enterprise\">Preview Options API [developer] [plugin author] [enterprise]</h3>\n\n\n\n<p>The latest WordPress release enhances the Preview Options in the block editor, making it easier for developers to customize how content is previewed. A new API allows plugins and themes to add custom items to the preview dropdown menu, enabling users to see content in different formats or environments. This flexibility improves the editing experience while maintaining the existing structure of the Preview dropdown:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Introduces <code>PreviewDropdownMenuItem</code> component for adding custom items to the Preview dropdown</li>\n\n\n\n<li>Allows plugins to add menu items with custom titles and click handlers</li>\n\n\n\n<li>Maintains the existing Preview dropdown structure while allowing for extensibility</li>\n</ul>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1Axvxz-jnDHk0E341zRWF7cPelnRoLfXo/view?usp=drive_link\">image</a> of an example of how a plugin could use this API.&nbsp;<br /><strong>Adoption approach:</strong> opt in.<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>Add extensibility to PreviewOptions v2 (<a href=\"https://github.com/WordPress/gutenberg/pull/64644#top\">64644</a>)</p>\n\n\n\n<p>Developer Note: <a href=\"https://make.wordpress.org/core/2024/10/18/extending-the-preview-dropdown-menu-in-wordpress-6-7/\">Extending the Preview Dropdown Menu in WordPress 6.7</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"changes-to-heartbeat-api-to-lower-minimum-allowed-time-enterprise-plugin-author\">Changes to Heartbeat API to lower minimum allowed time [enterprise] [plugin author]&nbsp;</h3>\n\n\n\n<p>The WordPress Heartbeat script (used to set post locks, show logged-out warnings in wp-admin, etc.) <a href=\"https://github.com/WordPress/wordpress-develop/pull/7301\">has been updated</a> to <a href=\"https://public-api.wordpress.com/bar/?stat=groovemails-events&bin=wpcom_email_click&redirect_to=https%3A%2F%2Fmake.wordpress.org%2Fcore%2F2023%2F10%2F23%2Fsummary-and-insights-of-phase-3-related-conversations%2F%23%3A%7E%3Atext%3DCollaborative%2520editing%2520%2526%2520asynchronous%2520collaboration&sr=1&signature=e67e40321ccefa55db4f6637890faf5e&user=64259130&_e=eyJlcnJvciI6bnVsbCwiYmxvZ19pZCI6MjAzNzcxODY0LCJibG9nX2xhbmciOiJlbiIsInNpdGVfaWRfbGFiZWwiOiJ3cGNvbSIsIl91aSI6NjQyNTkxMzAsImxvY2FsZSI6ImVuIiwiY3VycmVuY3kiOiJVU0QiLCJjb3VudHJ5X2NvZGVfc2lnbnVwIjoiVVMiLCJzaWdudXBfZmxvd19uYW1lIjoiIiwiZW1haWxfZG9tYWluIjpudWxsLCJwb3N0X2lkIjo3NDYwLCJ1c2VyX2VtYWlsIjoiIiwiZGF0ZV9zZW50IjoiMjAyNC0wOS0xNyIsImVtYWlsX2lkIjoiYjhkMDZiNjFhMWI0NTA2YjJhNjkyN2U1NWQ4YzFiOGYiLCJlbWFpbF9uYW1lIjoicG9zdCIsInRlbXBsYXRlIjoicG9zdCIsImFuY2hvcl90ZXh0IjoiaW1wcm92ZSB0aGUgY3Jvc3MtdXNlciBjb2xsYWJvcmF0aW9uIGV4cGVyaWVuY2UiLCJfZHIiOm51bGwsIl9kbCI6IlwvIiwiX3V0Ijoid3Bjb206dXNlcl9pZCIsIl91bCI6ImFubmV6YXp1IiwiX2VuIjoid3Bjb21fZW1haWxfY2xpY2siLCJfdHMiOjE3MjY1NTQ1NTU2NzMsImJyb3dzZXJfdHlwZSI6InBocC1hZ2VudCIsIl9hdWEiOiJ3cGNvbS10cmFja3MtY2xpZW50LXYwLjMiLCJibG9nX3R6IjowLCJ1c2VyX2xhbmciOiJlbiJ9&_z=z\">improve the cross-user collaboration experience</a>. This update speeds up the &#8220;heartbeat&#8221; a bit, from 15 to 10 seconds, which means post locked notices (when somebody edits a post) will be set and cleared faster. It also allows extenders more flexibility in setting a precise heartbeat poll interval, rather than a fixed set of values, ranging from 1 to 3600 seconds (1 hour).</p>\n\n\n\n<p><strong>Adoption approach: </strong>opt in by making changes to <code>wp.heartbeat.interval()</code> which has been modified to allow theme and plugin authors to set the heartbeat interval to any value between one second and one hour rather than limiting them to a fixed set of values.<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>Heartbeat API: consider changing the min allowed time (<a href=\"https://core.trac.wordpress.org/ticket/61960\">61960</a>)</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"customize-heading-level-curation-developer\">Customize heading level curation [developer]</h3>\n\n\n\n<p>The <code>levelOptions</code> block attribute allows you to limit the available heading levels directly through block markup in patterns and templates. Additionally, you can customize the attribute using a filter for both PHP and JavaScript so the applications are broad. This attribute is now available for Core blocks that use heading elements, including <a href=\"https://github.com/WordPress/gutenberg/pull/64106\">Post Title</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/64107\">Query Title</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/64113\">Site Tagline</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/64111\">Site Title</a>, and <a href=\"https://github.com/WordPress/gutenberg/pull/64103\">Comments Title</a>.</p>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1NChG_4ZAkyPKtkLSyPLlhD0Vm_X4OkZl/view?usp=drive_link\">image</a> of before/after heading curation.<br /><strong>Adoption approach: </strong>Opt in via block markup or filters. For examples, <a href=\"https://github.com/WordPress/gutenberg/pull/63535\">please review the PR</a> that added this option to see both markup and filter examples.&nbsp;<br /><strong>Key Make Posts/GitHub/Trac Issue(s):</strong> Enable heading level curation. (<a href=\"https://github.com/WordPress/gutenberg/pull/63535\">63535</a>)</p>\n\n\n\n<p>Developer Note excerpt: <a href=\"https://make.wordpress.org/core/2024/10/20/miscellaneous-block-editor-changes-in-wordpress-6-7/#heading-level-curation\">Heading level curation</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"general-improvements\">General improvements</h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"updated-order-of-editor-actions-for-a-clearer-sidebar\">Updated order of editor actions for a clearer sidebar</h4>\n\n\n\n<p>The top toolbar in the editors is an important part of the publishing and saving flow, requiring careful consideration around the placement of each item. In this release, two enhancements come together to add clarity and streamline the experience of working across the editors:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Reorder the top bar actions to move Save/Publish buttons to the right of the Settings and Global Styles (pinned items) buttons.&nbsp;</li>\n\n\n\n<li>Swap the &#8220;Cancel&#8221; and &#8220;Publish&#8221; buttons in the pre-publish check panel, allowing users to publish without additional cursor movement.</li>\n</ul>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1vLC8_X2APSpX_K1QmzFZHKLN5GMCcXY7/view?usp=drive_link\">demo</a> of streamlined pre-publish flow, <a href=\"https://drive.google.com/file/d/1_UFOlzJ9cfVZ49UUZhU2nBmph8r2UF5l/view?usp=sharing\">image</a> of before/after in the site editor of editor actions, <a href=\"https://drive.google.com/file/d/1plrWkmLLV7dx7jXiGQezXHsVcAx7ROAn/view?usp=drive_link\">image</a> of before/after in the post editor of editor actions.<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>Editor topbar: Reorder the actions on the right (<a href=\"https://github.com/WordPress/gutenberg/pull/65163\">65163</a>), Swap position of the Pre-publish checks buttons (<a href=\"https://github.com/WordPress/gutenberg/pull/65317#top\">65317</a>).</p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"opt-out-preference-for-choose-a-pattern-modal-when-adding-a-new-page\">Opt out preference for &#8216;Choose a Pattern&#8217; modal when adding a new page</h4>\n\n\n\n<p>Based on feedback, a new preference was added to toggle on and off â€œShow starter patternsâ€ to provide the ability to control whether starter patterns appear when creating a new page.&nbsp;</p>\n\n\n\n<p><strong>Visuals: </strong><a href=\"https://drive.google.com/file/d/1VR5YRm9U4WbrLeknyjX5K5Wh0JihpnJ9/view?usp=drive_link\">demo</a> showing turning off this option.<br /><strong>Adoption approach: </strong>Opt in by turning preference on.&nbsp;<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>Add opt out preference to the &#8216;Choose a Pattern&#8217; modal when adding a page. (<a href=\"https://github.com/WordPress/gutenberg/pull/65026\">65026</a>)</p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"more-robust-saving\">More robust saving</h4>\n\n\n\n<p>Imagine a situation where you are adding an image to your post and, before it finishes loading, you navigate away from the editor, without ever getting a warning that your image hasnâ€™t yet been saved. In WordPress 6.7, work was done to ensure that doesnâ€™t happen anymore with the introduction of temporary block attributes that ensure in-progress media items are eventually saved and shown:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Introduce â€œlocalâ€ attributes and use it for the image block. (<a href=\"https://github.com/WordPress/gutenberg/pull/63076\">63076</a>)</li>\n\n\n\n<li>Video Block: Do not persist blob urls and fix undo. (<a href=\"https://github.com/WordPress/gutenberg/pull/63238\">63238</a>)</li>\n\n\n\n<li>Audio Block: Do not persist blob urls and fix undo. (<a href=\"https://github.com/WordPress/gutenberg/pull/63257\">63257</a>)</li>\n\n\n\n<li>File block: Do not persist blob urls and fix undo. (<a href=\"https://github.com/WordPress/gutenberg/pull/63282\">63282</a>)</li>\n</ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"iterating-on-pattern-shuffling\">Iterating on pattern shuffling</h4>\n\n\n\n<p>To ensure that pattern shuffling behaves as expected and to minimize the risk of losing customizations made to patterns, several adjustments were made to limit its scope:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Shuffling now applies only to patterns added by the theme or the user.</li>\n\n\n\n<li>Shuffling is only available in the zoomed-out view, and the option has been removed from the block toolbar.</li>\n</ul>\n\n\n\n<p><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>&nbsp;Remove the Shuffle block toolbar button <a href=\"https://github.com/WordPress/gutenberg/pull/64571\">(</a><a href=\"https://github.com/WordPress/gutenberg/pull/64954\">64954</a>), limit pattern shuffling to theme and user patterns only (<a href=\"https://github.com/WordPress/gutenberg/pull/62677\">62677</a>).</p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"writing-flow-improvements\">Writing flow improvements&nbsp;</h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Allow dropping multiple images to the image block. (<a href=\"https://github.com/WordPress/gutenberg/pull/65030\">65030</a>)</li>\n\n\n\n<li>Drag and Drop: When dragging a mix of video, audio, and image blocks, create individual blocks as appropriate. (<a href=\"https://github.com/WordPress/gutenberg/pull/65144\">65144</a>)</li>\n\n\n\n<li>Inserter: When opening the block inserter, it will now stay open when interacting with the editor canvas. This makes it easier to move around the document while adding blocks. (<a href=\"https://github.com/WordPress/gutenberg/pull/63059\">63059</a>)</li>\n\n\n\n<li>LinkControl: Refined the display of the link preview title and URL when both are same. (<a href=\"https://github.com/WordPress/gutenberg/pull/61819\">61819</a>)</li>\n\n\n\n<li>Link Editing: Automatically add tel to phone number when linking URL. (<a href=\"https://github.com/WordPress/gutenberg/pull/64865\">64865</a>)</li>\n\n\n\n<li>Page editor: Double-click to edit template part. (<a href=\"https://github.com/WordPress/gutenberg/pull/65024\">65024</a>)</li>\n\n\n\n<li>Post Title: Fix pasting in Safari. (<a href=\"https://github.com/WordPress/gutenberg/pull/64671\">64671</a>)</li>\n\n\n\n<li>Post Title: Move selection at the end after pasting over the text. (<a href=\"https://github.com/WordPress/gutenberg/pull/64665\">64665</a>)</li>\n\n\n\n<li>Restore: Move to trash button in Document settings. (<a href=\"https://github.com/WordPress/gutenberg/pull/65087\">65087</a>)</li>\n\n\n\n<li>Slash Inserter: Restrict block list to allowed blocks only. (<a href=\"https://github.com/WordPress/gutenberg/pull/64413\">64413</a>)</li>\n\n\n\n<li>Writing flow: Split heading into default block. (<a href=\"https://github.com/WordPress/gutenberg/pull/61891\">61891</a>)</li>\n</ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"adding-block-examples-and-previews\">Adding block examples and previews</h4>\n\n\n\n<p>The following adds previews and examples to blocks so that, when searching in the Inserter, you can quickly see how each might be used:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Excerpt block: Add example of the block. (<a href=\"https://github.com/WordPress/gutenberg/pull/63010\">63010</a>)</li>\n\n\n\n<li>Login/out block: Add example of the block. (<a href=\"https://github.com/WordPress/gutenberg/pull/62937\">62937</a>)</li>\n\n\n\n<li>Post author blocks: Add example and preview. (<a href=\"https://github.com/WordPress/gutenberg/pull/62978\">62978</a>)</li>\n\n\n\n<li>Post content block: Add example of the block. (<a href=\"https://github.com/WordPress/gutenberg/pull/62968\">62968</a>)</li>\n\n\n\n<li>Post title: Add example of the block. (<a href=\"https://github.com/WordPress/gutenberg/pull/62955\">62955</a>)</li>\n\n\n\n<li>Post date block: Add a block example. (<a href=\"https://github.com/WordPress/gutenberg/pull/63368\">63368</a>)</li>\n\n\n\n<li>Post featured image: Add example of the block. (<a href=\"https://github.com/WordPress/gutenberg/pull/63011\">63011</a>)</li>\n\n\n\n<li>Post terms block: Add an example. (<a href=\"https://github.com/WordPress/gutenberg/pull/63369\">63369</a>)</li>\n\n\n\n<li>Query loop block and Posts list: add example (<a href=\"https://github.com/WordPress/gutenberg/pull/63286\">63286</a>)</li>\n</ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"site-editor-focused\">Site Editor focused</h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add colors and typography to the browse styles section. (<a href=\"https://github.com/WordPress/gutenberg/pull/63173\">63173</a>)</li>\n\n\n\n<li>Allow editing of description only for custom templates. (<a href=\"https://github.com/WordPress/gutenberg/pull/63664\">63664</a>)</li>\n\n\n\n<li>Add a typesets section to Typography. (<a href=\"https://github.com/WordPress/gutenberg/pull/62539\">62539</a>)</li>\n\n\n\n<li>Apply same styles to block previews on inserter and Styles. (<a href=\"https://github.com/WordPress/gutenberg/pull/63177\">63177</a>)</li>\n\n\n\n<li>Document bar is now displayed when viewing the Style book and Style revisions (<a href=\"https://github.com/WordPress/gutenberg/pull/62669\">#62669</a>)</li>\n\n\n\n<li>Move font directory into uploads to match WP 6.5. (<a href=\"https://github.com/WordPress/gutenberg/pull/60354\">60354</a>)</li>\n\n\n\n<li>Polish create template part modal. (<a href=\"https://github.com/WordPress/gutenberg/pull/63617\">63617</a>)</li>\n\n\n\n<li>Template parts now show the content panel in the editor settings. (<a href=\"https://github.com/WordPress/gutenberg/pull/62034\">#62034</a>)</li>\n\n\n\n<li>Use four color palette colors instead of five for useStylesPreviewColors. (<a href=\"https://github.com/WordPress/gutenberg/pull/64700\">64700</a>)</li>\n</ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"other\">Other</h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Automatically select group variation if there is only one available. (<a href=\"https://github.com/WordPress/gutenberg/pull/61871\">61871</a>)</li>\n\n\n\n<li>Categories List block: Add dropdown for taxonomies. (<a href=\"https://github.com/WordPress/gutenberg/pull/65272\">65272</a>)</li>\n\n\n\n<li>Cover Block: Move Clear Media button from Inspector Controls to Block Controls. (<a href=\"https://github.com/WordPress/gutenberg/pull/64630\">64630</a>)</li>\n\n\n\n<li>Flex dimensions: Rename â€œFillâ€ to â€œGrowâ€. (<a href=\"https://github.com/WordPress/gutenberg/pull/62779\">62779</a>)</li>\n\n\n\n<li>Format Library: Add alt edit field to inline image (<a href=\"https://github.com/WordPress/gutenberg/pull/64124#top\">64124</a>)</li>\n\n\n\n<li>Image lightbox: Remove duplicate image when lightbox is opened. (<a href=\"https://github.com/WordPress/gutenberg/pull/63381\">63381</a>)</li>\n\n\n\n<li>Image: Adds the block controls for uploading image. (<a href=\"https://github.com/WordPress/gutenberg/pull/64320\">64320</a>)</li>\n\n\n\n<li>Improve Social Icons setup and appending. (<a href=\"https://github.com/WordPress/gutenberg/pull/64877\">64877</a>)</li>\n\n\n\n<li>Make SiteLogoReplaceFlow always available in the Site Logo block toolbar. (<a href=\"https://github.com/WordPress/gutenberg/pull/63499\">63499</a>)</li>\n\n\n\n<li>Move gallery link controls to the block toolbar. (<a href=\"https://github.com/WordPress/gutenberg/pull/62762\">62762</a>)</li>\n\n\n\n<li>Post Date &amp; Comment Date: Add relative date format. (<a href=\"https://github.com/WordPress/gutenberg/pull/62298\">62298</a>) Both the Post Date and Comment Dates now let you <a href=\"https://github.com/WordPress/gutenberg/pull/62298\">set a relative date format</a> (e.g., 00 hours ago).</li>\n\n\n\n<li>Table Block: Add toolbar button to add a caption. (<a href=\"https://github.com/WordPress/gutenberg/pull/47984\">47984</a>)</li>\n\n\n\n<li>Toolbar justification controls for Group and Content blocks The justification controls for the Group and Content blocks are now exposed in the block toolbar. This makes it easier to quickly update these blocks to be left or right-aligned, using a similar interface to text and button blocks. (<a href=\"https://github.com/WordPress/gutenberg/pull/62924\">62924</a>)</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"interactivity-api-iteration-bug-fixes-internal-refactor-and-new-apis-developer-plugin-author\">Interactivity API iteration: bug fixes, internal refactor, and new APIs [developer] [plugin author]</h2>\n\n\n\n<p>For WordPress 6.7, internal improvements and bug fixes were done to ensure that the Interactivity API&#8217;s code is as simple and stable as possible and to make the Interactivity API resilient when used asynchronously (e.g., adding directives or stores after initialization). This paves the way for future performance improvements such as directive code splitting or lazy loading of interactive blocks.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"new-apis-getserver-state-getservercontext\">New APIs: getServer State &amp; getServerContext</h3>\n\n\n\n<p>Alongside this, two new APIs are available with <code>getServerState</code> and <code>getServerContext</code>, available from the <code>@wordpress/interactivity</code> package. These functions are required for subscribing to changes in state/context when the HTML is updated using <code>navigate()</code>. These functions return an object that is analogous to the state/context returned by <code>store()</code>/<code>getContext()</code>, with a couple of differences:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The object returned is read-only.</li>\n\n\n\n<li>The object is updated after <code>navigate()</code> calls, using the values defined in the HTML.</li>\n\n\n\n<li>Devs cannot directly use its properties in directives, but they can use callbacks to subscribe to changes in its properties and update the usual state/context.</li>\n</ul>\n\n\n\n<p><strong>Adoption approach: </strong>Opt in. For awareness, some new documentation is available for using the Interactivity API:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/core-concepts/the-reactive-and-declarative-mindset/\">The Reactive and Declarative mindset</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/core-concepts/undestanding-global-state-local-context-and-derived-state/\">Understanding global state, local context and derived state</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/core-concepts/server-side-rendering/\">Server-side rendering: Processing directives on the server</a></li>\n</ul>\n\n\n\n<p><strong>Key Make Posts/GitHub/Trac Issue(s):</strong><em>Follow </em><a href=\"https://github.com/WordPress/gutenberg/issues/63232\"><em>this iteration issue</em></a><em> for more information.</em></p>\n\n\n\n<p>Developer Note: <a href=\"https://make.wordpress.org/core/2024/10/15/subscribe-to-changes-in-the-interactivity-api-state-and-context-on-client-side-navigation-in-6-7/\">Subscribe to changes in the Interactivity API state and context on client-side navigation in 6.7</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"updates-for-the-html-api-plugin-author-developer\">Updates for the HTML API [plugin author] [developer]&nbsp;</h2>\n\n\n\n<p>The HTML Processor has a few upgrades and features:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Full HTML Support: HTML Processor can handle any HTML and in only the rarest situations will the HTML Processor now give up, and in none of these cases is it because the processor doesn&#8217;t know how to handle a given tag.</li>\n\n\n\n<li>Ability to modify most text in a document: The first of a new set of modification methods has been added to the HTML API: <code>set_modifiable_text()</code>.&nbsp;</li>\n\n\n\n<li>Full parser mode: The <code>create_full_parser()</code> mode was introduced, which allows the HTML API to process entire HTML documents from start to finish, something that wasn&#8217;t possible before.</li>\n\n\n\n<li>CSS behavior reviewed: The Tag Processor and fragment parser in the HTML Processor will assume a document is in standards mode (no-quirks mode) unless it determines otherwise. In response to this, all CSS-adjacent code has been audited and updated to ensure that the matching of things like class names behaves just as it would in a browser.</li>\n</ul>\n\n\n\n<p><strong>Adoption approach:</strong> opt in by using the HTML API<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>HTML API: Plans for 6.7 (<a href=\"https://github.com/WordPress/gutenberg/issues/60396\">60396</a>)&nbsp;</p>\n\n\n\n<p>Developer Note: <a href=\"https://make.wordpress.org/core/2024/10/17/updates-to-the-html-api-in-6-7/\">Updates to the HTML API in 6.7</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"time-input-as-a-subcomponent-of-timepicker-developer-plugin-author\">Time input as a subcomponent of TimePicker [developer] [plugin author]</h2>\n\n\n\n<p>Sometimes users only need a way to enter time separate from the <a href=\"https://github.com/WordPress/gutenberg/pull/63145\">date for the TimePicker.component</a>. Developers can now offer <code>separateTimePicker.TimeInput</code> fields in their plugins and apps.&nbsp;</p>\n\n\n\n<p><strong>Adoption approach: </strong><a href=\"https://wordpress.github.io/gutenberg/?path=/docs/components-timepicker--docs\">Documentation is available</a> via Storybook.<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>TimeInput: Expose as subcomponent of TimePicker (<a href=\"https://github.com/WordPress/gutenberg/pull/63145\">63145</a>).&nbsp;</p>\n\n\n\n<p>Developer Note excerpt: <a href=\"https://make.wordpress.org/core/2024/10/18/editor-components-updates-in-wordpress-6-7/#timepicker-time-input-can-be-used-in-isolation\">TimePicker: Time input can be used in isolation</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"define-block-variations-via-a-php-file-developer-plugin-author\">Define block variations via a PHP file [developer] [plugin author]</h2>\n\n\n\n<p>6.7 introduces <a href=\"https://github.com/WordPress/gutenberg/pull/62092\">support for referencing a PHP file</a> in block.json for registering block variations. To do this, you must assign the file path as a value for the variations property:</p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs language-json\">{\n\n<span class=\"hljs-attr\">\"variations\"</span>: <span class=\"hljs-string\">\"file:./variations.php\"</span>\n\n}</code></span></pre>\n\n\n<p>Previously, you could only define a variations JSON object, but this change lets you register the variations on the server-side. The PHP file must return an array of variations to register.</p>\n\n\n\n<p><strong>Adoption approach: </strong>opt in.&nbsp;<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>block.json: Allow passing filename as variations field (<a href=\"https://github.com/WordPress/gutenberg/pull/62092\">62092</a>)&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"override-styles-dynamically-plugin-author-developer\">Override styles dynamically [plugin author] [developer]</h2>\n\n\n\n<p>The <a href=\"https://github.com/WordPress/gutenberg/pull/63656\">hook `useStyleOverride` is now available for plugin developers</a> so that styles can be added to the canvas by blocks. This can be especially useful when packaging a component library with custom styles rather than instructing developers to enqueue a separate stylesheet in all the correct locations.&nbsp;</p>\n\n\n\n<p><strong>Adoption approach: </strong>opt in.&nbsp;<br /><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>Make useStyleOverride public (<a href=\"https://github.com/WordPress/gutenberg/pull/63656\">63656</a>)&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"help-text-for-radiocontrol-options-developer-plugin-author\">Help text for RadioControl options [developer] [plugin author]</h2>\n\n\n\n<p>â€œDevelopers using the Radio Control component can now add help text for each of the listed options by adding an extra `<a href=\"https://github.com/WordPress/gutenberg/pull/63751\">options[].description`</a> property. This becomes even more relevant when the component is used in the context of input forms for visitors and users via the new wp-admin.â€ &#8211; From <a href=\"https://developer.wordpress.org/news/2024/09/10/whats-new-for-developers-september-2024/\">Whatâ€™s new for developers? (September 2024)</a></p>\n\n\n\n<p><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>RadioControl: add support for option help text (<a href=\"https://github.com/WordPress/gutenberg/pull/63751\">63751</a>).</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"clearfix-for-the-post-content-block-theme-author-end-user\">Clearfix for the Post Content block [theme author] [end user]</h2>\n\n\n\n<p>â€œ<a href=\"https://github.com/WordPress/gutenberg/pull/63690\">A â€œclearfixâ€ solution</a> is now applied to the Post Content block. This is an old-school technique that ensures blocks after Post Content sit below the content itself, especially in cases where there is a right or left-aligned block at the end of the post. As this was an issue for quite a while, itâ€™s expected that theme developers found other ways to solve this particular problem. Now that itâ€™s solved for the core block, you might need to double-check your existing sites to make sure this doesnâ€™t break any previous layouts. Content creators might have helped themselves by adding a spacer block after the aligned block in questions.â€ &#8211; From <a href=\"https://developer.wordpress.org/news/2024/09/10/whats-new-for-developers-september-2024/\">Whatâ€™s new for developers? (September 2024)</a></p>\n\n\n\n<p><strong>Adoption approach:</strong> please double-check to ensure existing layouts continue to work.&nbsp;<br /><strong>Key Make Posts/GitHub/Trac Issue(s):</strong> Post content: Add clearfix (<a href=\"https://github.com/WordPress/gutenberg/pull/63690\">63690</a>)</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"continuing-to-improve-php-8-x-support\">Continuing to improve PHP 8.x support</h2>\n\n\n\n<p>To continue improving support for PHP 8.x, code specific to prior PHP versions that are no longer supported have been removed.</p>\n\n\n\n<p><strong>Key Make Posts/GitHub/Trac Issue(s): </strong>Remove PHP &lt; 7.2 code (<a href=\"https://core.trac.wordpress.org/ticket/61574\">61574</a>)&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Oct 2024 19:54:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Anne McCarthy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WordPress Foundation: 2024 WordPress Foundation Meeting Minutes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpressfoundation.org/?p=1193851\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpressfoundation.org/news/2024/meeting-minutes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14353:\"<h1 class=\"wp-block-heading\">October 17, 2024 &#8211; Online</h1>\n\n\n\n<p><strong>Present</strong>:&nbsp;</p>\n\n\n\n<p>WordPress Foundation Directors: Mark Ghosh, Matt Mullenweg, and Chele Chiavacci Farley</p>\n\n\n\n<p>Guests/Observers: Harmony Romo, Isotta Peira, and Sarah Glenn</p>\n\n\n\n<p>Regrets: None</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Call to Order</strong></li>\n\n\n\n<li><strong>Financial discussion</strong>\n<ul class=\"wp-block-list\">\n<li><strong>WordPress Foundation financial overview and discussion&nbsp;</strong></li>\n</ul>\n</li>\n</ol>\n\n\n\n<p>Harmony Romo spoke to the current financial position of the WordPress Foundation as of today October 17, 2024 and reported on the current cash position, which is up $44,560 compared to the prior year. She noted that after challenges with Wells Fargo earlier in the year that the foundation has switched to J.P. Morgan.</p>\n\n\n\n<p><strong>WordPress Foundation Cash Position:</strong></p>\n\n\n\n<table class=\"has-fixed-layout\"><tbody><tr><td>J.P. Morgan Commercial Operating Account</td><td>$264,680</td></tr><tr><td>PayPal</td><td>$0</td></tr><tr><td>Stripe</td><td>$0</td></tr></tbody></table>\n\n\n\n<p>She shared that, to date, in 2024 the foundation has received $41,417 in donations, up $12,952 compared to last year. It was noted that since WordCamp US in September 2024 there has been an increase in donations with 48 new recurring donations created and a total of $12,535 donated.&nbsp;<br /><br />Matt Mullenweg inquired about the sources of the increased donations to WPF. Harmony Romo shared that there are currently 174 active recurring donations, an increase of 40 over the prior year. Donations received were from a wide variety of foundation supporters, with no single donor contributing more than $5,000. This ensures that the foundation will meet the required 33.33% public support percentage.</p>\n\n\n\n<p>The board, alongside a recommendation from Harmony Romo, identified that the foundation should maintain a balance of $150,000. There was further discussion as to how the current excess should be directed. It was suggested that donations could be made to non-profit organizations with similar missions (Foundation for Public Code, Black Girls Code, and Internet Archive) as has been done in the past. Matt Mullenweg requested that an agenda item be added to direct $100,000 to the Internet Archive as they are currently in need.</p>\n\n\n\n<ul start=\"2\" class=\"wp-block-list\">\n<li><strong>Motion by Matt Mullenweg to approve a $100,000 donation to the Internet Archive&nbsp;</strong>: Seconded by Chele Chiavacci Farley and Mark Ghosh and carried&nbsp;</li>\n</ul>\n\n\n\n<ul start=\"3\" class=\"wp-block-list\">\n<li><strong>WordPress Community Support, PBC financial overview and discussion</strong></li>\n</ul>\n\n\n\n<p>Harmony Romo spoke to the current financial position of WordPress Community Support, PBC as of today October 17, 2024 and reported on the cash position which is up $667,076 compared to this time in 2023.</p>\n\n\n\n<p><strong>WordPress Community Support Cash Position:<br /></strong></p>\n\n\n\n<table class=\"has-fixed-layout\"><tbody><tr><td>J.P. Morgan Commercial Operating Account</td><td> $2,181,836</td></tr><tr><td>J.P. Morgan Commercial Deposit-Only Account&nbsp; </td><td>$0</td></tr><tr><td>PayPal</td><td>$0</td></tr><tr><td>Stripe</td><td>$0</td></tr></tbody></table>\n\n\n\n<p>Harmony Romo noted that ~$120,000 of our current balance does represent income received for 2025 events and that we still have significant expenses from WordCamp US, held in September 2024, that have yet to be reconciled.&nbsp;</p>\n\n\n\n<p>Matt Mullenweg inquired as to why the cash position is so much higher this year than in the past, and Harmony shared that both WordCamp US and WordCamp Europe ended up with significant surpluses. He requested that the programming team look to address this and suggested that we invest in local marketing for WordCamp US next year, and that the programming team works to reduce ticket prices if possible.</p>\n\n\n\n<ul start=\"4\" class=\"wp-block-list\">\n<li><strong>Discussion of Meetup.com fees and bank strategy&nbsp;</strong></li>\n</ul>\n\n\n\n<p>Harmony Romo shared that the largest overhead expense is $221,529 for Meetup.com fees per year. She shared that there has been some progress and testing of GatherPress, which if successful could reduce overhead expenses by more than 50%.&nbsp;</p>\n\n\n\n<p>Harmony Romo shared that the foundation moved their operating account to J.P. Morgan after challenges with Wells Fargo earlier in the year.</p>\n\n\n\n<p>The board discussed whether or not the WordPress Foundation or WordPress Community Support, PBC should alter their banking strategy. It was decided that there is low financial risk with J.P. Morgan, and opening additional accounts with different banks is not necessary at this time. The board did identify that opening money market accounts would be beneficial for WordPress Community Support, PBC and potentially for the WordPress Foundation.<br /><br />Chele Chiavacci Farley noted that interest income returns on both accounts should be 4-5% on the balances. Mark Ghosh recommended that balances be transferred to money market accounts with an option to automatically fund the operating account as needed to cover expenses. Harmony Romo will discuss this with the J.P. Morgan representatives and follow up with options and details via email.</p>\n\n\n\n<ul start=\"5\" class=\"wp-block-list\">\n<li><strong>Discussion of tax returns</strong></li>\n</ul>\n\n\n\n<p>Harmony Romo shared that in the filing of the 2023 WordPress Foundations Form 990 the foundation highlighted do_action and learn.wordpress.org programs. The main difference in the 2023 filing, over 2022, was an increase in donation income from $23,744 to $36,388.&nbsp;</p>\n\n\n\n<p>As for WordPress Community Support, PBC, the 2023 filing reflected a loss of ($159,983). The loss was due to a large increase in total WordCamps, 71 in 2023 compared to 26 in 2022, and rising inflation that heavily impacted venue as well as food and beverage costs. It was noted that the majority of 2023 losses were related to the flagship events (WordCamp Europe, WordCamp US).  Some of the income for WC Asia that was received in 2020 was reported as income for that year versus being carried forward to offset the 2023 expenses, which also contributed to the loss. This 2023 tax loss will roll forward to offset future years income.&nbsp;</p>\n\n\n\n<p>Chele Chiavacci Farley requested that moving forward all financials shared with the board include the prior years financials, and that we ensure a board meeting is held prior to when taxes are due.&nbsp;</p>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li><strong>Programming discussion</strong></li>\n</ol>\n\n\n\n<p>Isotta Peira shared updates on the various WordPress Foundation and WordPress Community Support, PBC programs.&nbsp;</p>\n\n\n\n<p><strong>do_action:</strong></p>\n\n\n\n<p>By the end of 2024, the foundation will have supported 8 do_action charity hackathons that combined produced over 21 charity websites for deserving non-profits. The do_action events are close to revenue neutral and only $1,066 was paid in grants in 2024. Mark Ghosh inquired as to how this compares to last year, and it was shared that there were twice as many do_action events as in 2023, when the Foundation only supported 4. In an effort to promote do_actions, they are now displayed on events.WordPress.org alongside other events, like WordCamps.&nbsp;</p>\n\n\n\n<p><strong>Open source education:</strong><br /><br />So far in 2024, the WordPress training team organized one online Intro to Open Source workshop called <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/301830181/\">â€œShape the Future: Your Role in WordPress Open Source Contribution</a> that received 40 RSVPs. There were also 108 participants who completed the â€˜<a href=\"https://learn.wordpress.org/course/open-source-basics-and-wordpress/\">Open Source Basics and WordPressâ€™</a> Learn WordPress asynchronous course, and six meetup groups that held open source-focused workshops with a combined total of 200 participants that RSVPâ€™d. There were no direct costs associated with any of these programs as they used the Meetup.com infrastructure paid for by WordPress Community Support.</p>\n\n\n\n<p><strong>Learn WordPress</strong><br /></p>\n\n\n\n<p>Learn WordPress, launched in December 2020, continues to grow. There are currently 502 lessons and 24 courses with 38,000 people that have registered. So far, 8,600 learners have completed courses this year, which is an average course completion rate of 21%. There have also been 107 online workshops in 2024 with an average of 33 participants.<br /><br />Matt Mullenweg expressed some concern around the low number of learners (8,600) that completed courses, given that there are two full-time sponsored employees focusing on the program. He requested that the programming team work to increase the number of individuals that complete courses as that is much more valuable than the number of people that register.&nbsp;</p>\n\n\n\n<p>It was also noted that Learning Pathways was launched in August 2024 as a new approach to educational content, and so far, the average learner satisfaction rate is 93%, and the video retention rate for Learning Pathway courses is 59% (this aligns with technology video benchmarks that see a 40-70% retention rate).&nbsp;</p>\n\n\n\n<p><strong>Mentorship Program</strong></p>\n\n\n\n<p>An update was shared on the new WordPress Contributor Working Group that aims to bring in new contributors to WordPress through active mentorship over a six-week period. In 2024 there were two cohorts, the first with 28 mentors supporting 52 mentees and the current cohort with 25 mentors supporting 100 mentees. Mentees in the Spring 2024 cohort had an 89% program satisfaction rate.&nbsp;</p>\n\n\n\n<p>Matt Mullenweg shared that rtCamp has 10 developers prepared to contribute to core, but they need mentorship. He will create a WordPress.org Slack channel with a representative from rtCamp and Hari Shanker.</p>\n\n\n\n<p><strong>Meetups<br /><br /></strong>It was shared that as of today, there are 633 WordPress chapter Meetups in 92 countries, with over 510,000 Meetup members globally, an increase of 10,000 members since last year.&nbsp;</p>\n\n\n\n<p><strong>WordPress Events</strong><strong><br /></strong><strong><br /></strong>So far in 2024, there have been 56 WordCamps and WordPress Events held in 51 countries with 6 events held in the US, with another 22 events scheduled over the next two months for a total of 78 events in 2024 compared to 71 events in 2023. In total the events sold more than 18,500 tickets, which is an increase of 4,500 over the previous year.&nbsp;</p>\n\n\n\n<p>The board discussed the progress here and Matt Mullenweg shared that he thinks we can do much better and would like to see a larger increase in ticket sales for next year.</p>\n\n\n\n<p><strong>Kim Parsell Memorial Scholarship:</strong></p>\n\n\n\n<p>In 2024 the Kim Parsell Memorial Scholarship recipient was Cynthia Norman of Ontario, Canada who was awarded $3,000. Cynthia was a member for the 2023 mentorship pilot and has since contributed to the WordPress Training Team, and created more than two dozen lessons for Learn WordPress.Â </p>\n\n\n\n<p>The board was impressed with the impact the scholarship has had and decided to expand the program to offer scholarships for WordCamp Europe and WordCamp Asia in addition to WordCamp US.&nbsp;</p>\n\n\n\n<p>Mark Ghosh suggested that the recipient receives approximately 5 minutes of stage-time to discuss how they became involved, and Matt Mullenweg suggested that this could be built into his keynote at flagship events. Matt Mullenweg also recommended that we write blog posts about recipients and try to encourage more people to apply.&nbsp;</p>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li><strong>Updates and new business</strong></li>\n</ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li>New Executive Director</li>\n</ul>\n\n\n\n<p>It was noted that Mary Hubbard will be starting as the new Executive Director of WordPress.org next week. She will also oversee educational programs in 2025 with support from teams focused on community, education, and contribution.&nbsp;</p>\n\n\n\n<ul start=\"2\" class=\"wp-block-list\">\n<li><strong>New business</strong></li>\n</ul>\n\n\n\n<p>Mark Ghosh suggested that WordPress Community Supports look into offering developer badges or certification as a type of learning offering.&nbsp;</p>\n\n\n\n<p>Mark Ghosh suggested that in order to move forward more quickly with GatherPress the foundation may want to consider a hackathon type event focused on building this plugin, as the rapid iteration available at a hackathon may help move this along quicker, since a new solution would directly reduce expenses.&nbsp;</p>\n\n\n\n<ol start=\"5\" class=\"wp-block-list\">\n<li><strong>Next Meeting</strong></li>\n</ol>\n\n\n\n<p>Matt Mullenweg suggested that the foundation move from one annual meeting to two meetings annually. Mark Ghosh, and Chele Chiavacci Farley agreed this would be beneficial as it would allow the new Executive Director to provide an update and opportunities to review financials prior to tax filings being due.&nbsp;</p>\n\n\n\n<p>The board decided the next meeting will be in March, with the following one in August or September.</p>\n\n\n\n<ol start=\"6\" class=\"wp-block-list\">\n<li><strong>In-Camera Session</strong>\n<ul class=\"wp-block-list\">\n<li>Matt Mullenweg called an in-camera session for the board at 9:35 AM PST, and the guests/observers departed.&nbsp;</li>\n</ul>\n</li>\n</ol>\n\n\n\n<p>The In-Camera session was adjourned at 9:55 AM PST.</p>\n\n\n\n<ol start=\"7\" class=\"wp-block-list\">\n<li><strong>Close</strong></li>\n</ol>\n\n\n\n<p>Matt Mullenweg called the meeting to close at 9:57 AM PST.&nbsp;</p>\n\n\n\n<p><strong>ADDENDUM</strong></p>\n\n\n\n<p>After the meeting was adjourned, it was discovered that some courses on Learn.WordPress.org were deprecated during the fiscal year reported on in the board meeting, and thus the total completed number of courses was understated by 4,087. Total completed courses was actually 12,687.</p>\n\n\n\n<p>In addition, it was suggested there be an annual blog post announcing the winner of the Kim Parsell scholarship. This is, in fact, already being done.</p>\n\n\n\n<p>WC Asia 2024 also ended with a surplus, which has increased the cash position of WPCS.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Oct 2024 16:09:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Harmony Romo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"Do The Woo Community: WooCommerce Caching, Scaling, Plugin Optimization, Security, Headless, and AI with Andre Faca\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=86155\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://dothewoo.io/woocommerce-caching-scaling-plugin-optimization-security-headless-and-ai-with-andre-faca/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"In this episode of Woo DevChat, Marcel and Mike discuss optimizing WooCommerce sites with guest Andre Faca, covering caching, performance, scaling, and security best practices.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Oct 2024 08:25:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WordPress Foundation: WordPress Foundation Donates $100,000 to Internet Archive\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpressfoundation.org/?p=1193835\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpressfoundation.org/news/2024/wordpress-foundation-donation/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:768:\"<p>On October 17th, 2024, the WordPress Foundation Board of Directors made the unanimous decision to make a contribution of $100,000 to the <a href=\"http://Archive.org\">Internet Archive</a>. The WordPress Foundation has long supported the work of the Internet Archive. </p>\n\n\n\n<p>The work this organization does to <a href=\"https://blog.archive.org/2016/10/23/defining-web-pages-web-sites-and-web-captures/\">preserve the Internet</a>, ensures that students, researchers, journalists, librarians, and curious citizens around the globe have access to our digital cultural heritage for many years to come. </p>\n\n\n\n<p>The Board of Directors is hopeful that this donation will make a significant impact, given the recent challenges faced by the organization.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Oct 2024 19:54:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Harmony Romo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: Developers Remove Plugins From WordPress.org Repository After ACF Controversy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=175491\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/developers-remove-plugins-from-wordpress-org-repository-after-acf-controversy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4525:\"<p>Following the recent ban and <a href=\"https://wptavern.com/acf-plugin-forked-to-secure-custom-fields-plugin\">ACF to Secure Custom Fields fork/takeover</a> incident, some plugin authors have announced their decision to remove their plugins from the WordPress.org repository.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gravity PDF Plugin</h3>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/gravity-forms-pdf-extended/\">Gravity PDF plugin</a> with over 50k active installations and a 4.9 rating is leaving the plugin repository. Its founder Jake Jackson <a href=\"https://gravitypdf.com/news/installing-and-upgrading-to-the-canonical-version-of-gravity-pdf/\">stated</a> that â€œWordPress co-founder Matt Mullenweg has weaponized WordPress.org and appropriated the popular Advanced Custom Fields plugin from its creators. This action sets a dangerous precedent, and violates the integrity and security of the platform. To minimize the risks to ourselves and our users, the canonical (primary) version of the free and open-source Gravity PDF plugin is now being distributed directly from GravityPDF.com.â€</p>\n\n\n\n<p>The team reassured users that all existing PDF settings, custom templates, and fonts will be preserved when transitioning to the new release. Future reviews will be hosted on <a href=\"https://www.g2.com/products/gravity-pdf/reviews\">G2.com</a>. The canonical plugin will use â€œgravity-pdfâ€ for the slug and text domain, replacing the â€œgravity-forms-pdf-extendedâ€ used on WordPress.org. Updates for the premium version and its extensions will continue directly from GravityPDF.com.</p>\n\n\n\n<a href=\"https://x.com/takisbig/status/1846542405706649856\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXeBCgibxR6Q2OJ7hjcnbnSHUnt0mZul_fiN5UHGXRlnnrG9N_-wKG5tgAE1aTgOKwO7js8IsPnhs3ktfcY0GWU-aQYD8WPiC96FAkml9d58dhZIGWKz3xCQnKaW-hiC0bE_TOgtVV3WIgUg4uFongcFSfvb?key=sYM_dbehUUr6zg7NnQ_agg\" alt=\"\" /></a>\n\n\n\n<a href=\"https://x.com/ajaydsouza/status/1846519982030483735\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdy92EbP5Jkcj_u3OOrDU7vxQasl9fbRrqJSOLELKPkpSIjUAUe0UnYCP4Hh5mJEfLkN2hPS3KIVfr9DZnlgDJ2M9IEJ0315cClyqVOcZZpJSbZatAhkm9Y7I6rPDC9uzPUSSKDvQW0LlosKhaq0d9ugcKq?key=sYM_dbehUUr6zg7NnQ_agg\" alt=\"\" /></a>\n\n\n\n<h3 class=\"wp-block-heading\">BE Media from Production &amp; Display Posts Plugins&nbsp;</h3>\n\n\n\n<p>Bill Erickson, author of <a href=\"https://en-gb.wordpress.org/plugins/be-media-from-production/\">BE Media from Production</a> and <a href=\"https://wordpress.org/plugins/display-posts-shortcode/\">Display Posts</a>, also expressed concerns, <a href=\"https://displayposts.com/install/\">stating</a>, â€œI am no longer comfortable hosting my code on WordPress.org given recent actions by Matt Mullenweg.â€</p>\n\n\n\n<p><a href=\"https://en-gb.wordpress.org/plugins/be-media-from-production/\">BE Media from Production</a> plugin has been closed and <a href=\"https://wordpress.org/support/topic/plugin-has-moved-to-github/\">Future updates</a> to this plugin will only come from the official GitHub repo.</p>\n\n\n\n<p>He also <a href=\"https://x.com/BillErickson/status/1845872464296808724\">tweeted</a>: â€œIf you use my plugin BE Media from Production, it&#8217;s now hosted only on GitHub.â€</p>\n\n\n\n<h3 class=\"wp-block-heading\">Paid Memberships Pro Plugin</h3>\n\n\n\n<p>The Paid Memberships Pro team released version 3.3 and their CEO Jason Coleman <a href=\"https://www.paidmembershipspro.com/pmpro-update-3-3/\">explained</a>, â€œThis is the first update of the core Paid Memberships Pro plugin that will be served off our own license server instead of the wordpress.org repository. We have been serving our premium plugins and several of our free plugins from our own license server for many years. We will now be serving downloads and updates of our core plugin ourselves.â€</p>\n\n\n\n<p>He continued, â€œWe plan to follow suit for all of our plugins that are hosted at wordpress.org, excepting a few that are co-maintained with other folks there. The core plugin is still free and users will always be able to update it for free.â€</p>\n\n\n\n<p>Version 3.2.2 will be available in the repository for a day or so and then closed.Â Jason said on <a href=\"https://x.com/jason_coleman/status/1846957738624274560\">X</a> that &#8220;We&#8217;ve had this planned for over a year. Recent events motivated us to expedite things.&#8221;</p>\n\n\n\n<p>Given the current situation, it doesn&#8217;t seem like things will settle down anytime soon. It remains to be seen if other developers too will follow suit. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Oct 2024 19:43:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WordPress.org blog: WP Engine Promotions &amp; Coupons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17996\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/wp-engine-promotions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2256:\"<p>Given the egregious legal attacks by WP Engine against WordPress co-founder Matt Mullenweg, a number of their customers have been looking for alternative hosting, and in return a number of hosts have created specials and promotions for WP Engine customers looking to migrate to a host that has great relations with WordPress.org. Here they are, in alphabetical order.</p>\n\n\n\n<p>We&#8217;ll update this post if any new offers come online, get in touch and we&#8217;ll link it.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.bluehost.com/migrate-wordpress-website?channelid=P61C46097236S625N0B2A151D0E0000V107\">Bluehost will cover migration costs, and credit back your existing contract</a>. They offer 24/7 phone support, you can call them at 844-699-3907. Their wp.cloud-powered Cloud hosting starts at $29.99/mo.</li>\n\n\n\n<li><a href=\"https://www.dreamhost.com/switch-to-dreamhost/\">DreamHost is offering free migrations</a>, with plans starting at $16.95/mo.</li>\n\n\n\n<li><a href=\"https://hostinger.com/migrate\">Hostinger offers free migration for an unlimited number of websites with a 24/7 dedicated customer success team</a>. Their relevant cloud plans start at $7.99/mo. </li>\n\n\n\n<li><a href=\"https://www.nexcess.net/wp-engine-vs-nexcess/\">Nexcess has plans starting at $21/mo</a>.</li>\n\n\n\n<li><a href=\"https://pressable.com/wpe-contract-buyout/\">Pressable will credit back your current WP Engine contract and match their pricing</a>, so if you&#8217;re in the middle of a long contract with WP Engine, you don&#8217;t need to wait until your renewal time.</li>\n\n\n\n<li><a href=\"https://siteground.com/free-wp-migration\">SiteGround has a special with 83% off and unlimited automated WP migrations</a>, their plans start at $2.99/mo.</li>\n\n\n\n<li><a href=\"https://wordpress.com/migrate-from-wp-engine/\">WordPress.com will give you a free year of any plan they offer</a>, and donate 5% of your purchase price to the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>. Their relevant plans start at $25/mo.</li>\n\n\n\n<li>For large-scale enterprise customers, <a href=\"https://wpvip.com/wordpress-vip-vs-wp-engine/\">WordPress VIP will cover the cost of migration</a>. Their plans generally start at $2k/mo.</li>\n</ul>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Oct 2024 15:19:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Gary: HOWTO: Fork WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://pento.net/?p=5587\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://pento.net/2024/10/17/howto-fork-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9215:\"<p>Congratulations on your decision to fork WordPress! You&#8217;ve taken on a mammoth task, I&#8217;m impressed with your willingness step up to the challenge of a lifetime. I&#8217;m here to give some advice on the things you might not have thought about yet, and what you&#8217;ll need to help the long term success of your fork.</p>\n\n\n\n<p>Forking, I&#8217;m please to share, <a href=\"https://wordpress.org/news/2024/10/spoon/\">is beautiful</a>. It continues to be an important feature of the Open Source ethos, even if it has become more involved as projects have matured. Forking is a valuable tool for Open Source communities to demonstrate that they believe a project should move in a different direction.</p>\n\n\n\n<p>Before we get into the details, however, I do have to offer a few disclaimers. This post is <strong>not</strong>:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>An active call for people to fork WordPress. In the spirit of Open Source, I think it&#8217;s important that we publicly talk about what this process looks like, even if it can be an uncomfortable discussion.</li>\n\n\n\n<li>An announcement that I&#8217;m forking WordPress. I don&#8217;t have the free time for that.</li>\n\n\n\n<li>An offer to wrangle your fork of WordPress. I am happy to discuss your plans and offer advice, though.</li>\n</ul>\n\n\n\n<p>Disclaimers out of the way, let&#8217;s begin!</p>\n\n\n\n<h2 class=\"wp-block-heading\">Before you Announce</h2>\n\n\n\n<p>First of all, let&#8217;s talk about that big old elephant in the room: the current level of instability in the WordPress world. I wouldn&#8217;t be surprised to learn that this the major factor in motivating your fork. Unfortunately, this approach won&#8217;t get you very far, so the first thing you need to do is take any feelings you have about it, and set them aside. You need to decide what you&#8217;re in favour of, instead. What are are the positive motivational factors that will make you jump out of bed, and push this project forward for the next decade or more? What will motivate others to join you for the long haul?</p>\n\n\n\n<blockquote><p>Build a community, not an angry mob.</p></blockquote>\n\n\n\n<p>Think carefully about what your fork is going to be named. I&#8217;m willing to bet that you first jumped to calling it <em>{Adjective}</em>Press, or perhaps something with &#8220;WP&#8221; in the name. That&#8217;s a great idea if you&#8217;re planning on your project being forever defined as a protest against WordPress, but you need to think beyond that. How will you define your brand to keep it relevant for decades to come?</p>\n\n\n\n<p>Oh, and make sure you can get the domains and social media handles for your name. Having to try and get them later is just expensive and frustrating.</p>\n\n\n\n<p>Talk to people. Not just your circle of friends and colleagues who agree with you, find people who can offer different perspectives, and decide how your fork is going to help them. Talk to WordPress core contributors (not just committers!), and learn their take on it. Can you present an argument that would convince long term contributors to switch to working on your fork?</p>\n\n\n\n<p>Figure out funding, at least enough to bootstrap your project. As much as I&#8217;d love to be, most of us are not post-economic. You can only get so far as a volunteer project, you&#8217;re going to need at least some people to be paid to work on it. There are big, complex problems that crop up along the way, it&#8217;s hard to solve them if everyone has to context switch between their day job, and their volunteer work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Meta Project</h2>\n\n\n\n<p>If you&#8217;ve made it this far into starting your fork, give yourself a pat on the back. You&#8217;ve made it much further than many others do. Your next challenge is deciding the process of building it. You could stick with the <a href=\"https://en.wikipedia.org/wiki/Benevolent_dictator_for_life\">BDFL</a> approach, which certainly has benefits, particularly when first starting out. It might be hard to sell what many folks see as a key weakness in WordPress, though. Perhaps you might like to explore a democratic governance model, or some sort of hybrid approach. Everything has a set of benefits and trade-offs, you&#8217;ll need to decide what works for you.</p>\n\n\n\n<p>You&#8217;re going to have a bunch of technical dirty work to figure out. Where will the code be hosted? How will you track issues? Provide support? Discuss plans? Build community? Track data? Host themes, and plugins? What will you do about mobile apps?</p>\n\n\n\n<p>At first glance, each of these are fairly straightforward to answer, but it&#8217;s very easy to get lost in the possibilities. My advice here is simple: pick something, use it until it stops being valuable. You can always switch to something different later. Switching governance models might be hard, but switching server-side tools is relatively easy.</p>\n\n\n\n<blockquote><p>Do the dirty work, but don&#8217;t get stuck in the weeds.</p></blockquote>\n\n\n\n<p>Start thinking about how you&#8217;ll build your in-person community. Meetups, conferences, hack days, helping people move to your project, there are countless opportunities here to build your community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Moat</h2>\n\n\n\n<p>WordPress has three substantial factors that have made it largely unassailable for many years.</p>\n\n\n\n<p>First, there&#8217;s the massive community that&#8217;s built up around WordPress over the years. Regular meetups and conferences are an integral part of building a popular Open Source project. You can&#8217;t really piggy back off the work that WordPress has done over the years here, either. The only way forward is to put in the work to build and maintain a community that you&#8217;re proud to be a part of.</p>\n\n\n\n<p>Second, there&#8217;s the vast selection of plugins and themes that are available to download for free. The quality between options vary wildly, of course, but that&#8217;s largely irrelevant. The fact that so many options exist means there really is something for everyone. You&#8217;re going to need to figure out how to either maintain long term compatibility with existing WordPress plugins and themes, or you&#8217;re going to find yourself reproducing them all.</p>\n\n\n\n<p>Finally, you&#8217;ll need to deal with inertia. The vast majority of WordPress site owners have no need or motivation to change, so you need to make it easy (ideally, your fork would be a drop-in replacement), and beneficial. What will your fork do better to solve real problems?</p>\n\n\n\n<h2 class=\"wp-block-heading\">Tell Your Friends!</h2>\n\n\n\n<p>It&#8217;s around about this point that you&#8217;re probably getting ready to talk about your fork publicly. Go ahead, you&#8217;ve earned it!</p>\n\n\n\n<p>Launch day is inevitably a mix of strong emotions. Elation if you get a huge positive response from the public, maybe discouragement if the public response is a bit more muted. Relief at having made it this far. Optimism about the future. Maybe even some doubt could creep in that you&#8217;re the right person to be wrangling such a huge endeavour. Whatever you end up experiencing, try not to stress about it too much. It&#8217;s a big day, but what really defines your project is what you do with it tomorrow. Next week. Next year.</p>\n\n\n\n<p>Go right back to the start, and remind yourself of the positive reasons that you&#8217;re choosing to build this project. Tell the world those positive reasons, and welcome anyone who wants to join you on the journey.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Long Haul</h2>\n\n\n\n<p>Not every day is launch day, however. Most of your days will be&#8230; kinda boring, to be honest. That&#8217;s a good thing! Too much excitement will inevitably burn out you and your community. Sustainable effort, day after day, is how you build something to last.</p>\n\n\n\n<blockquote><p>It&#8217;s a marathon, not a sprint.</p></blockquote>\n\n\n\n<p>Of course, there&#8217;ll be ups and downs. It&#8217;s always okay to go back to the start, and reminder yourself (and your community!) of the positive reasons that you&#8217;re all working together on this.</p>\n\n\n\n<p>Oh, and please try to remember that one day, you&#8217;re probably not going to be the right person to lead your project any more. This isn&#8217;t something to fear, or to look forward to, really: projects, communities, and individuals all grow and change. It&#8217;s probably going to be a weird time when you get to this point, but it doesn&#8217;t have to be a time of upheaval and uncertainty. If you&#8217;ve run the project well, you should hopefully have a deep pool of talented folks who can step in to continue what you began.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Have Fun!</h2>\n\n\n\n<p>Finally, it would be remiss of me not to remind you to have fun! It&#8217;s easy to get lost in conflict at times, but it&#8217;s important to remember that&#8230; it&#8217;s just a CMS. It&#8217;s not going to be the end of the world if you take time away from the project, it&#8217;s actively beneficial for you to have a life outside of the internet. Friends, family, pets, hobbies: make time for the things that matter in your life.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Oct 2024 01:20:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Gary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: #141 â€“ Christy Nyiri and Mike Straw on Automatticâ€™s Special Projects Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=175292\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/podcast/141-christy-nyiri-and-mike-straw-on-automattics-special-projects-team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:46359:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, learning about the work of the Automattic Special Projects Team.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice. Or by going to wptavern.com/feed/podcast. And you can copy that URL into most podcasts players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Christy Nyiri and Mike Straw.</p>\n\n\n\n<p>Christy leads the design arm of Automattic&#8217;s Special Projects Team. She taught herself to design and code 17 years ago, and has since worked with a wide range of clients, many of whom you&#8217;ll hear about later.</p>\n\n\n\n<p>Mike is an engineer with the Special Projects Team. He&#8217;s been writing code for over four decades and has been deeply into WordPress for the last seven years.</p>\n\n\n\n<p>Today we&#8217;re pulling back the curtain on the work done at Automattic&#8217;s Special Projects Team, a somewhat mysterious entity within Automattic. Because of its low visibility and its detachment from regular product output, many have never heard of the team or what they produce, but that is about to change.</p>\n\n\n\n<p>Mike and Christy, tell us all about the team, what they do and who they work with and for. They clarify the unique operational model of the team, which resembles an internal agency focusing exclusively on WordPress and open source projects. Their mission isn&#8217;t driven purely by profit. They often support nonprofits and contribute back to the WordPress community.</p>\n\n\n\n<p>We get into the team&#8217;s philosophy of learning from mistakes while striving for excellence. From there work with prominent websites, to assisting household names to more philanthropic work, Mike and Christy illustrates how their work showcases the power and versatility of WordPress. In short, they strive to show the very best that WordPress can produce.</p>\n\n\n\n<p>This episode highlights the technical and design prowess of the Special Projects Team, but also captures the passion and dedication of its members.</p>\n\n\n\n<p>Whether you&#8217;re a WordPress developer, a web design, enthusiastic, or someone interested in the operational intricacies of high caliber web projects, this episode is for you.</p>\n\n\n\n<p>If you&#8217;d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Christy Nyiri and Mike Straw.</p>\n\n\n\n<p>I am joined on the podcast by Christy Nyiri and Mike Straw. Hello both.</p>\n\n\n\n<p>[00:03:28] <strong>Christy Nyiri:</strong> Hello.</p>\n\n\n\n<p>[00:03:29] <strong>Mike Straw:</strong> Hello.</p>\n\n\n\n<p>[00:03:31] <strong>Nathan Wrigley:</strong> We&#8217;re going to have a conversation today from WordCamp US. We are in one of the meeting rooms in Portland, Oregon. Christy and Mike have joined me today because they work on a really interesting team, which I don&#8217;t know much about. So they&#8217;re going to school me in how this all hangs together, and how it works.</p>\n\n\n\n<p>Before we begin that though, Christy first, and then Mike afterwards, would you mind just giving us a little potted bio about yourselves. Maybe a minute, or something like that.</p>\n\n\n\n<p>[00:03:55] <strong>Christy Nyiri:</strong> Yeah. Hey, I&#8217;m Christy Nyiri. I&#8217;m Canadian, but I live in Brooklyn now. I&#8217;ve been with Automattic for a little over four years, and it&#8217;s the longest job I&#8217;ve ever held. So that says something about Automattic as a company.</p>\n\n\n\n<p>[00:04:08] <strong>Nathan Wrigley:</strong> Thank you very much Christy. And Mike, give us your little potted bio.</p>\n\n\n\n<p>[00:04:12] <strong>Mike Straw:</strong> I&#8217;m Mike. I&#8217;m currently from Ohio, but I&#8217;m from everywhere. I traveled around a lot as a kid, and then in my adult life. But I joined Automattic about seven years ago, and I just joined the Special Projects Team two years ago. I kind of can&#8217;t hold down a job, so I keep changing places I work. I did that my whole life, changing jobs between company, or between organisations. And then in Automattic, I&#8217;ve kind of bounced around a little bit, and I&#8217;ve settled on the special projects team and I am pretty happy here.</p>\n\n\n\n<p>[00:04:42] <strong>Nathan Wrigley:</strong> Okay, so you&#8217;ve alluded to what we&#8217;re going to talk about today, Mike. You mentioned the Special Projects Team. It&#8217;s kind of an interesting name. It sort of feels a little bit shrouded in mystery. I don&#8217;t know, it almost feels like special forces in in the army, or something like that. You know, this is the team that we deploy when things get a little bit tricky, when things are complicated.</p>\n\n\n\n<p>I don&#8217;t know if that&#8217;s the feeling that you guys get, but it does feel as if what you are working on is, let&#8217;s say, at a higher level than any of the websites I ever built. Put it that way.</p>\n\n\n\n<p>So the first question, and either of you can tackle this. What is the Special Projects Team, and which kind of clients do you work with?</p>\n\n\n\n<p>[00:05:18] <strong>Christy Nyiri:</strong> So the Automattic Special Projects Team, I&#8217;ll read our little mission statement. We just help interesting people, projects, and organisations have a great experience with WordPress.</p>\n\n\n\n<p>[00:05:27] <strong>Nathan Wrigley:</strong> Okay, perfect. Can you name drop? Are you allowed to name drop any of the kind of projects that you&#8217;ve worked on before?</p>\n\n\n\n<p>[00:05:32] <strong>Christy Nyiri:</strong> For sure. You can see a bunch of the projects on our website, which is specialprojects.automattic.com. The biggest one that I worked with personally was Print Magazine, which is like a publication that has been around since the 1940s, and it has a big history in the design community.</p>\n\n\n\n<p>[00:05:48] <strong>Mike Straw:</strong> Some of the ones I really were proud of is End The Backlog. Which was about backlogs of sexual assault in the country, because they won a Webby for their work. The website won a Webby, and the work they&#8217;re doing has actually had real impact, like the numbers and the charts since they started has actually stopped this backlog that&#8217;s going on. So it was like a real social life impact. And I have some background in that field, so I&#8217;m really passionate about it. So seeing that happen was really cool.</p>\n\n\n\n<p>Also, the site we talked about, one of the sites we talked about yesterday was Johan Ernst the explorer, his website, and just the amazing experience of the site itself. The work is pretty amazing.</p>\n\n\n\n<p>Post Secret is another really cool one that we&#8217;ve worked on. There&#8217;s a list, we have, what is it, over 450 production sites running now that we&#8217;ve built over the years. And it&#8217;s actually a fun experience having only been here for two years to periodically go on a website and say, hey, wait a minute, that&#8217;s one of our websites. Because I still don&#8217;t know the list completely.</p>\n\n\n\n<p>[00:06:51] <strong>Nathan Wrigley:</strong> Okay, thank you for that. That&#8217;s great. So we know that some of the websites that you&#8217;re building have impact. Sounds like some of them, especially meaningful to you in particular there, Mike. That&#8217;s really nice.</p>\n\n\n\n<p>What&#8217;s the purpose of the team though? So, as an example, if I rocked up to the special projects team, and just said, I have a brochure website for a local veterinary practice in the town where I live. I&#8217;m guessing that, at some point, you&#8217;re going to filter me out, maybe I don&#8217;t qualify as special.</p>\n\n\n\n<p>And I just wonder, is there a criteria? Is it, I don&#8217;t know, is there a criteria based upon the depth of your pockets, or the type of projects, or the industry you are in, or is it maybe just more, well, there&#8217;s a notorious company? Everybody&#8217;s heard of those, so they qualify as special. What is the criteria that gets you in?</p>\n\n\n\n<p>[00:07:35] <strong>Christy Nyiri:</strong> Well, we&#8217;ve done projects for a huge range of people, like from very high profile projects to, honestly, there is, not a vet, but we have a site for an animal adoption agency that I think is actually just a girl. A young girl, a teenager, and we built her a website.</p>\n\n\n\n<p>So the project has come to us through referrals from other partners that have already existed, and from other Automatticians as well. So if anyone at the company has a project they think would fit with our mission, we can work on that too.</p>\n\n\n\n<p>[00:08:07] <strong>Nathan Wrigley:</strong> Okay. So yeah, there&#8217;s definitely some sort of criteria there. But it seems, I was probably missing the target a little bit. So it really isn&#8217;t necessarily to do with the depth of the pockets, or the fact that you are notorious, it really could be anything.</p>\n\n\n\n<p>[00:08:17] <strong>Christy Nyiri:</strong> It really can, yeah.</p>\n\n\n\n<p>[00:08:19] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s fascinating. In the presentation blurb that went along with the presentation that you gave yesterday, one of the phrases that you used was, well, you said, connecting partners with the best that the WordPress community has to offer. And as soon as I hear the word WordPress community, I kind of imagine the crowd that we&#8217;re amongst here. Everybody shows up, everybody has their turn, you know, anybody can speak here, anybody can attend here.</p>\n\n\n\n<p>But the sort of slightly exclusive nature of the word special, and the kind of projects that you deal with, how is that connection made? Do you feed back things to the WordPress community? So I&#8217;m just wondering if you could unpack that sentence for me.</p>\n\n\n\n<p>[00:08:54] <strong>Mike Straw:</strong> There&#8217;s a lot there, because we really are, we&#8217;re part of the WordPress community. We are not primarily about making money, but the way I like to word it is, we are here to make WordPress look good.</p>\n\n\n\n<p>We bring things to our partners, we give them the best experience, with the best website we can build for them, and give them the best experience we can for using WordPress.</p>\n\n\n\n<p>So we choose tools, we&#8217;re really big on, like right now using block editor, and all that technology. We&#8217;ve been doing a lot of even no code builds, or low code builds, only building like specific functionality that has to be coded up, but using the block editor, and using the tools so that it&#8217;s just there. And then when they&#8217;re working on their website later, they just go in the editor, and click, and it&#8217;s done. So very simple. So it&#8217;s making the WordPress experience a good experience.</p>\n\n\n\n<p>And then we also, on the other side of it, we try to give back to the community as much as we can. If we do use a plugin, as an example, I was recently on a project where I found a bug in a plugin that we had installed on a site that was a wordpress.org plugin. I went in, I was like, this is the problem, here&#8217;s the bug. And I fixed it inside, so we could get the site going. And then I went on to their forum and said, hey, we found a bug, here&#8217;s the bug, here&#8217;s how I fixed it. And then they&#8217;re like, cool, thank you, and the next release had the fix.</p>\n\n\n\n<p>And we do that with community plugins. We do that with our own products. You know, we&#8217;ll obviously, we&#8217;ll promote Automattic products for them to use. And if there&#8217;s a problem with the product, we&#8217;ll go to the product team and say, we found this. The dog fooding experience, that we dog food pretty much everything that Automattic has to offer. And we find a problem, and we say, we&#8217;ll go to the product team and say, here&#8217;s the bug we found. And sometimes we&#8217;ll also say, here&#8217;s the PR to fix the code.</p>\n\n\n\n<p>[00:10:43] <strong>Nathan Wrigley:</strong> So it&#8217;s kind of like a double pronged thing, in that you are creating things, but then contributing back, maybe improvements to existing things, but also perhaps creating your own functionality and allowing the WordPress repository to get a hold of that. But also, I suppose the community piece there is that you are creating exceptional websites, exceptional experiences, which then are a kind of advert, if you like, for WordPress as a tool, like a showcase almost. You know, the things that you produce, I&#8217;m guessing are of, without blowing your own trumpets, you would probably regard them as of high quality, and good examples of what WordPress itself can do.</p>\n\n\n\n<p>And I do feel at this moment in time, we&#8217;re recording this in 2024, that we do have, not a credibility problem, but we are competing in a marketplace where the tools that are out there, which you can pay, I don&#8217;t know, $20 a month for, we know what we&#8217;re talking about, these SaaS-based tools. They are beginning to be popular. They&#8217;ve got television adverts, they have giant marketing budgets. So one of the ways that I guess WordPress can promote itself is with exceptional websites that people can look at. So, I don&#8217;t know if you&#8217;ve got anything you want to add to that.</p>\n\n\n\n<p>[00:11:48] <strong>Mike Straw:</strong> Yeah. I think, internally, because you know we have our own internal team names. Our team is called Team 51, which sounds as mysterious and strange, and secretive as Special Projects. But really the 51 is for 51%. And that is, we want WordPress to have 51% of the internet. And we&#8217;re doing that by doing things like this because, and this is me personally editorialising a little of, before I came to WordPress, WordPress does kind of have a reputation issue sometimes, because the average external person hears of these suss hosting sites, or because anybody can extend it, anybody can write a plugin.</p>\n\n\n\n<p>And you get a plugin in there that&#8217;s junk, and then the WordPress experience is junk, and then they&#8217;re saying WordPress is junk. And so we&#8217;re trying to highlight, no, WordPress itself is a solid tool, a solid platform, and if you develop well on it, you will have a solid site. And so we do a lot of that just to kind of build the reputation.</p>\n\n\n\n<p>[00:12:46] <strong>Christy Nyiri:</strong> I&#8217;d like to add that, on the design side of things, someone came up to me after the talk yesterday and said, how does WordPress compete with the other platforms out there that are really design focused? And I think that is what we&#8217;re trying to do on our team, is show that you can build really well designed websites with WordPress, and using the block editor.</p>\n\n\n\n<p>It is a more recent thing, I will admit, the block editor only really came to maturity maybe in the last year. And up until then, like I was even very anti-block theme. As a developer I&#8217;m like, I can build it better in PHP, like I know what I&#8217;m doing. But like now that you can adjust padding, and negative margins, and all those things, it&#8217;s an actual tool that you can use to build nice looking things.</p>\n\n\n\n<p>There is some work that needs to be done, but it&#8217;s getting there. And we&#8217;re confident that the more that we show sites that we build, that are full, non headless builds, like straight block themes, that it&#8217;ll inspire other people to do the same.</p>\n\n\n\n<p>[00:13:39] <strong>Mike Straw:</strong> One of the things I will often tell people is, I think I&#8217;m a pretty good engineer, I am a terrible designer. So you tell me what to make a website look like and do, and I will make it do it. If you look at my websites that I have put together, they are disgustingly ugly because a designer has not looked at them.</p>\n\n\n\n<p>With the block editor, I&#8217;ve gotten better. I&#8217;m able to actually make it look pretty decent because it does a lot of that for me. But it&#8217;s that thing of, if you have something that&#8217;s only going to be built by engineers, it&#8217;s going to look like something an engineer built. If you build it like anybody would build a website on any other platform, where you have designers that design, and make the look, and the branding, and you get the marketing in there, whatever team you have, and then the engineers are building what they have said make it look like, you end up with something that&#8217;s nice and pretty.</p>\n\n\n\n<p>And WordPress, I think, has always had that capability, although it required a lot more engineering work historically. But now, I think it&#8217;s amazing now that we now have project builds that, I think we&#8217;ve had some that just had no engineer involvement now.</p>\n\n\n\n<p>[00:14:37] <strong>Nathan Wrigley:</strong> Oh wow. Because the blocks are good enough.</p>\n\n\n\n<p>[00:14:39] <strong>Mike Straw:</strong> Our designers design it, our account managers build it in the block editor, and then they&#8217;re done.</p>\n\n\n\n<p>[00:14:44] <strong>Nathan Wrigley:</strong> It feels a bit like Team 51 is a website building agency, buried within Automattic then. So again, just to let me understand it a little bit more, we&#8217;ve got designers, Christy&#8217;s a designer. We&#8217;ve got developers, Mike is a developer. And it sounded like you mentioned marketing as well. There&#8217;s marketing people as well? What I&#8217;m trying to get to with that question, is it almost like an agency buried inside of Automattic?</p>\n\n\n\n<p>[00:15:09] <strong>Christy Nyiri:</strong> Yeah, you&#8217;re hitting the nail right on the head. Our team does operate on an agency model. There&#8217;s a couple of other teams at Automattic that do as well. One being VIP, and now the other one is lost on me. Oh, The Design Core, they&#8217;re kind of like do all our internal brand stuff.</p>\n\n\n\n<p>So Team 51, we are composed of designers, engineers, and project managers, which we call TAMS, AKA Technical Account Managers. And we also have an operations team. All of us like work together to build sites, as any traditional agency would.</p>\n\n\n\n<p>[00:15:40] <strong>Mike Straw:</strong> The marketing was an example of how a company would build a website. But yeah, for us internally, some of the partners we bring in have a marketing branch, and we will work with them to do the designing. But yeah, we don&#8217;t do marketing ourselves within the team.</p>\n\n\n\n<p>[00:15:56] <strong>Nathan Wrigley:</strong> Okay. And I think I&#8217;m right in saying that the WP Tavern website, and if you are listening to this, there&#8217;s a high chance that either you&#8217;re on an RSS reader, and you&#8217;re listening to this on a podcast player, or you&#8217;re on the WP Tavern website. I think the Tavern website is one of your projects.</p>\n\n\n\n<p>[00:16:10] <strong>Mike Straw:</strong> I believe so.</p>\n\n\n\n<p>[00:16:10] <strong>Christy Nyiri:</strong> Yeah. Yeah, I remember working on that, or working with other people who were working on it. But yeah, we did that a few years ago, but it was before block themes. I think it&#8217;s actually probably due for a revamp to create a block theme version of it.</p>\n\n\n\n<p>[00:16:24] <strong>Nathan Wrigley:</strong> I&#8217;m going to be in your inbox.</p>\n\n\n\n<p>Okay, let&#8217;s go in this direction. If we&#8217;re going to categorise your team as special, which is obviously the name. What is special? What do you bring to the table that any other agency out there might not? I am not trying to put you up against, or make you give me a competitive analysis statement of how you&#8217;re different. But what are some of the things that you&#8217;ve noticed in your time there, which really does separate it out as a special thing?</p>\n\n\n\n<p>[00:16:47] <strong>Christy Nyiri:</strong> Yeah, I think the biggest thing with our team is that we&#8217;re just like really WordPress focused, and involved in the community, and the open source nature of WordPress, which a lot of like other larger agencies, building larger sites, aren&#8217;t. They&#8217;re doing headless builds using whatever sort of build processes they are, and we&#8217;re like hardcore, a hundred percent block themes. So that&#8217;s one special thing about us.</p>\n\n\n\n<p>[00:17:08] <strong>Mike Straw:</strong> And, while we use the agency model, we don&#8217;t directly operate like an agency. An agency is a company trying to make money by building websites. So they&#8217;re going to try to do the things that are going to help them bring in good income, and that&#8217;s kind of what they&#8217;re thinking about.</p>\n\n\n\n<p>We are more, even though we operate on that model, that&#8217;s how we interact with partners that we&#8217;re working on with websites and things like that. The things we&#8217;re doing is not to extract funding from them. Again, it&#8217;s about us making a project that shines, and does good things, and makes a site that they will be proud of and brag to their friends about. And so we don&#8217;t operate in that.</p>\n\n\n\n<p>And we&#8217;re also just, the entire team is people that are just really, really passionate about WordPress. We want to make it look good. We want to give the best that we have to our partners, to the community. It&#8217;s not unusual, when we discover a bug or a glitch, there&#8217;s somebody within minutes saying, okay, who do we need to talk to, to make sure this works right for everybody else that&#8217;s running into this.</p>\n\n\n\n<p>[00:18:09] <strong>Nathan Wrigley:</strong> Do you end up doing sort of some philanthropic work as well? Because this is something buried within Automattic, and Automattic as we know, the three of us at least do, and dear listener, if you don&#8217;t, you can go and explore what Automattic do. They&#8217;ve got multiple revenue streams, and so a traditional agency, I&#8217;m imagining their revenue stream is client work. And the fact that Automattic has other revenue streams, does that make it possible for you to do website builds that aren&#8217;t necessarily going to be, air quotes, profitable? That perhaps you could describe as, I don&#8217;t know, philanthropic?</p>\n\n\n\n<p>A good example may be The Tavern actually because, as far as I&#8217;m aware, it doesn&#8217;t, there&#8217;s no revenue stream coming out of The Tavern. The decision has been made to keep a news organisation for WordPress going, and it&#8217;s being kept alive by your team, but there&#8217;s no revenue stream there. So I&#8217;m wondering, do you have that? Is it possible for you to do things on a more philanthropic nature because of the funding system that you&#8217;ve got?</p>\n\n\n\n<p>[00:19:03] <strong>Christy Nyiri:</strong> Yeah, I think exactly what you&#8217;re saying. We are not like a profits based team. We work on just trying to showcase the best of what WordPress can do. And so we definitely have done sites for partners that are nonprofits, and we help them build their web presence online.</p>\n\n\n\n<p>[00:19:22] <strong>Mike Straw:</strong> I think End The Backlog is a great example of that. There&#8217;s a lot of ones that are just, they&#8217;re not profit making entities. They&#8217;re just groups that are trying to do better things in the world, and we&#8217;re providing some service to that. We&#8217;re not necessarily we&#8217;re not like, this is a good, although that comes into the equation, it&#8217;s not a, we&#8217;re doing this because it&#8217;s a good social justice thing or something, but it&#8217;s a good place we can work. But the outcome is definitely there of enabling these organisations to be able to do things that they might not otherwise be able to do because of financial considerations.</p>\n\n\n\n<p>[00:19:55] <strong>Nathan Wrigley:</strong> But it does sound then as if the overall purpose of the special projects team then, and we did allude to this a little bit ago, but we probably could go a little bit further, is to act like a bit of a showcase for WordPress, and just to sort of exemplify the very best of what it can do.</p>\n\n\n\n<p>And I don&#8217;t know if you&#8217;ve got like one place, one domain where we can go, and look at the work that you&#8217;ve done, or if it&#8217;s more of, no, you&#8217;ll have to be a bit inventive, and Google, and contact us, and we&#8217;ll tell you what we&#8217;ve built.</p>\n\n\n\n<p>But it does feel like that&#8217;s the point. Here&#8217;s a big property. Here&#8217;s an important thing, whether it&#8217;s philanthropic or not, and we&#8217;re going to churn out the best that WordPress can do, and thereby, sort of vicariously let the community know, here&#8217;s WordPress. Here&#8217;s how credible it is. Here&#8217;s the kind of people with the stature that they&#8217;ve got who are using it.</p>\n\n\n\n<p>[00:20:41] <strong>Mike Straw:</strong> As of this week, you can go to specialprojects.automattic.com, which has a list of websites, showcases. It actually has some of the tools we&#8217;ve built, and some of the blocks that we&#8217;ve got out there.</p>\n\n\n\n<p>Going back to contributing to the WordPress community, there&#8217;s a pull request to put our Accordion Block into Gutenberg Core.</p>\n\n\n\n<p>But actually, going back to that whole showcasing idea, the actual way back origins of this team go back to when Matt was working for CNET and building WordPress. And he would build WordPress sites for his friends and say, here&#8217;s a site I made in WordPress, isn&#8217;t WordPress cool? I&#8217;m not quoting him. I don&#8217;t know what he actually said exactly, but that&#8217;s the gist of what was happening.</p>\n\n\n\n<p>But that was kind of how, when we were starting as a team back in the day, a lot of times it was a, we&#8217;d see a site hosted on, I don&#8217;t know if it was around back then, but a Wix or a Squarespace kind of environment, and we&#8217;d be like, we could make that in WordPress.</p>\n\n\n\n<p>The team would build a WordPress site mirroring that site, and then go to that person and say, look, we made a WordPress site, this is probably going to be a lot easier for you to work with than wherever you are. And that&#8217;s kind of the origins of, literally, let&#8217;s make WordPress look good by building good WordPress sites.</p>\n\n\n\n<p>[00:21:53] <strong>Nathan Wrigley:</strong> Forgive me for sort of making this assumption, but it seems like you&#8217;re both quite happy with the work that you are doing. It&#8217;s got value, there&#8217;s some credibility to the work that you&#8217;re doing. I mean, that kind of stuff going on a CV looks nice, right?</p>\n\n\n\n<p>And I&#8217;m just wondering if somebody listening to this has the thought that, I think I&#8217;m doing good work, I think I have that caliber in me.</p>\n\n\n\n<p>How did you end up dropping into this team? Was it that you were Automatticians already? You may have touched on this in your bio at the beginning, I can&#8217;t remember. Is there a way that you can find yourself into this team? Do you hire externally? There&#8217;s a lot in there, but just tell us what you can.</p>\n\n\n\n<p>[00:22:27] <strong>Mike Straw:</strong> Can I say yes?</p>\n\n\n\n<p>[00:22:28] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;ll do it.</p>\n\n\n\n<p>[00:22:30] <strong>Mike Straw:</strong> Because I think we have very different experiences. You got hired into 51. So we&#8217;d had very different experiences on this, and I think from both ways of, I came in, I got hired by Automattic about seven years ago. Basically rediscovered WordPress, went to a conference, became a happiness engineer doing wordpress.com support.</p>\n\n\n\n<p>And then, I think I said earlier, I kind of can&#8217;t hold down a job. I switched from wordpress.com support to doing WooCommerce support. And then I went through, we had an internal developer apprenticeship program that I went through, back to engineering, and worked as an engineer on the woocommerce.com website.</p>\n\n\n\n<p>But back when I was a wordpress.com happiness engineer, one of the sites came in for support, who happens to be one of my favorite authors. So I saw her site, and actually it was a, she made a post on her blog of, I&#8217;m having a problem with my like button or something. I&#8217;m like, oh, well I have the access, I&#8217;m doing support, I can go check on it. And I went in, and I start reading, and it had this little flag on it saying, this is a Team 51 site.</p>\n\n\n\n<p>So I went and looked. It&#8217;s like, you contact these people. I was like, okay, what is this Team 51? Are they alien secret people? I don&#8217;t know because I hadn&#8217;t, I was new enough, I didn&#8217;t know who they were. And so I messaged someone, I was like, here&#8217;s the thing. And then we got chatting, and he started talking about what they&#8217;re doing. I&#8217;m like, oh my gosh, I want to, this just sounds really cool.</p>\n\n\n\n<p>And once an opportunity came in, after I was an engineer for a while, and then they just happened to have an internal thing saying, we&#8217;re looking for some engineers. And I was like, hello, please, yes, and contacted them and then got in. So we do some of that internal hiring kind of thing. But also, and I think Christy can talk more about getting from the outside.</p>\n\n\n\n<p>[00:24:09] <strong>Nathan Wrigley:</strong> Okay. So there is internal, there&#8217;s mechanisms internally within Automattic to make your way toward the team. But Christy&#8217;s got a different story.</p>\n\n\n\n<p>[00:24:15] <strong>Christy Nyiri:</strong> I guess I didn&#8217;t say this earlier, but I lead the design arm of Special Projects. When I got involved with Automattic I was, like I&#8217;ve been designing and developing websites, self-taught for like, I don&#8217;t know, 17, 18 years now. And I started with WordPress about 17 years ago, when it was so young.</p>\n\n\n\n<p>And it was like February, 2020, and I was looking for a full-time role somewhere, and I had a friend who was on the Tumblr engineering team at the time. And he&#8217;s like, why don&#8217;t you just apply at Automattic? And I was like, oh, okay.</p>\n\n\n\n<p>And then I applied, and went through the whole trial, and the interview. And the interview was for a product designer. And I don&#8217;t really do product design. I&#8217;m a web, UI person. But I went through the trial expecting eventually like, to get an offer, it would be as the product designer. And they were like, oh, actually we have this team for you, we think you&#8217;d be good on, it&#8217;s called Team 51. And like I had the same reaction as Mike, Team 51, what is that? It sounds mysterious.</p>\n\n\n\n<p>And I kind of like looked on the website that they had, and looked at who was on the team, and Jeffrey Zeldman was on the team at the time. Oh my God, if I get to work with Jeffrey Zeldman, like, amazing. And so I was thrilled to get hired at that time.</p>\n\n\n\n<p>But I was the first internal designer on the team at that point. They didn&#8217;t really have anyone else. They were working with some contractors who&#8217;s, a lot of them are still with us. We&#8217;ve now grown from just me, to like three other internal designers on our team. So the benefit for my design side of the team is that having internal designers means they can work on internal projects, and they&#8217;re more closely associated with the brand. So they can do like Automattic brand things as well. Because like, in addition to the websites, sometimes we do other projects. I am involved in kind of a rebrand for Automattic. There will be something coming hopefully in the next year or so in that end.</p>\n\n\n\n<p>[00:25:58] <strong>Nathan Wrigley:</strong> Would it be fair to say then, if I find a website and the logo of Automattic is at the bottom of the footer, would that be something that is likely to have been done by your team?</p>\n\n\n\n<p>[00:26:07] <strong>Christy Nyiri:</strong> Some of them, yeah. Not all of them. We do some internal builds, but there&#8217;s definitely ones we haven&#8217;t done.</p>\n\n\n\n<p>[00:26:13] <strong>Nathan Wrigley:</strong> Okay. Yeah, so it&#8217;s not guaranteed, but it&#8217;s a probable. Do you find yourself involved in Automattic properties that have got nothing to do with WordPress as well? So, I don&#8217;t know, things like Pocket Casts and, dare I say it, Tumblr, things like that.</p>\n\n\n\n<p>[00:26:25] <strong>Mike Straw:</strong> We&#8217;ve built Tumblr sites as part of it. We&#8217;ve had a couple people just kind of get directly involved on building Tumblr themes. One of the ones, the first time I heard that we were doing that was actually the Jonas Brothers were going on tour, and one of the leads I&#8217;ve had, it was actually built that theme.</p>\n\n\n\n<p>And I think that might&#8217;ve been the, was that the first one we did? I know they came back. But we built the theme for the Jonas Brothers when they went on tour. And I think there were some others that we&#8217;ve built. We&#8217;ve built Tumblrs for partners, like along with the sites, or things like that. So yeah, we&#8217;ve worked with Tumblr. I don&#8217;t know that we&#8217;ve done anything with Pocket Casts. That&#8217;s what I listen to your podcast on.</p>\n\n\n\n<p>[00:27:01] <strong>Nathan Wrigley:</strong> Okay, yeah. That&#8217;s my podcast player of choice as well.</p>\n\n\n\n<p>[00:27:05] <strong>Mike Straw:</strong> Oh, we built, that&#8217;s right, we did. We built the Pocket Cast Blog. We just recently moved that over.</p>\n\n\n\n<p>[00:27:09] <strong>Nathan Wrigley:</strong> Automattic seems like it&#8217;s on a clip of purchasing things. So in the more recent past, I can think of Beeper and Texts, and maybe they&#8217;re the kind of things that in the future will come under your purview as well. I don&#8217;t know.</p>\n\n\n\n<p>[00:27:18] <strong>Mike Straw:</strong> If there&#8217;s a website, if it&#8217;s an Automattic branded site that belongs to it, we tend to be involved in building those sites, and getting them up and running, or doing a redesign and migration of the site into the Automattic platform.</p>\n\n\n\n<p>I&#8217;ve worked, personally spent some time on akismet.com, jetpack.com, automattic.com, I think I&#8217;ve done a little bit of work there. So like those internal sites, we do work with those. And yeah, I had forgotten, we migrated the Pocket Cast Blog.</p>\n\n\n\n<p>[00:27:45] <strong>Nathan Wrigley:</strong> Nice. Now, I&#8217;m guessing the fact that you&#8217;ve got, both of you, this incredible heritage, and you&#8217;re obviously surrounded by people of an equal caliber. I&#8217;m guessing that the kind of work that you put out means that it has to be of the highest quality. And if somebody was to be thinking, I&#8217;d like to work with that team, you have to have really high expectations here. Nothing can go out the door that isn&#8217;t as good as it possibly can be.</p>\n\n\n\n<p>I don&#8217;t really have a question in there, but I&#8217;m just sort of asking, is that the case? Do you feel that you are doing the best work that you can do with everything that you put out? No corners cut, go the extra mile, do the extra work, that kind of thing. I&#8217;m getting some smiles.</p>\n\n\n\n<p>[00:28:22] <strong>Mike Straw:</strong> That sounds really high stress.</p>\n\n\n\n<p>[00:28:23] <strong>Nathan Wrigley:</strong> Yeah, and I wondered if it was.</p>\n\n\n\n<p>[00:28:25] <strong>Mike Straw:</strong> So there&#8217;s a kind of a philosophy within Automattic of, you&#8217;re allowed to make mistakes. As a matter of fact, I said earlier, I went through an apprenticeship program to become an engineer again, because I&#8217;ve been doing some sort of coding for decades. But it was always smaller projects, and I knew when I came to Automattic, there was no way I could operate at the scale and the level that Automattic operates at.</p>\n\n\n\n<p>So I came in as a support person, and then when they had the opportunity for me to go learn this, and when I started my apprenticeship, I actually, I was going to work on the woocommerce.com website. And as part of my apprenticeship, no pressure there, far as I know, the largest WooCommerce site on the internet, and I said something to my lead. Something about, as long as I don&#8217;t crash the site. And he says, oh no, it&#8217;s not a matter of if you&#8217;re going to crash the site, it&#8217;s when. And I fulfilled that. I only crashed it once, so that was good.</p>\n\n\n\n<p>Yeah, and I&#8217;ve made mistakes on Team 51. I&#8217;ve made some that had some impact. I wish I hadn&#8217;t, but I did. And I learned from it, and will never do that again, and had learned things as I went. It&#8217;s definitely not a, we&#8217;re cavalier, work fast, break things, as some companies operate in. It&#8217;s, we are very careful, but we also acknowledge the fact that we are human beings that are going to make mistakes, especially because we&#8217;re operating at the cutting edge of things.</p>\n\n\n\n<p>A new thing comes in WordPress, or is coming in WordPress, a lot of times we&#8217;ll start implementing it, and using it, and sometimes things don&#8217;t go perfectly. And we have an internal system to make sure that if something does go wrong, we&#8217;re quick to get it fixed, quick to get everything back to working well. But yeah, we do want to give the best. We do all absolutely always give the very best we have to what we&#8217;re doing. We don&#8217;t have an expectation of perfection in that. We have an expectation of, I would say an expectation of excellence, but not of perfection, if that makes sense.</p>\n\n\n\n<p>[00:30:19] <strong>Christy Nyiri:</strong> Well, I have an expectation of perfection in design. I&#8217;d say it&#8217;s like really hard in design to get things to the level that I really want them to be. That mostly comes down to just like the really little, this finessing at the end of the build, the CSS details. That&#8217;s what I love. Like I&#8217;m a huge CSS nerd, and because I&#8217;ve built most sites, like up until working in Automattic, my background is that I would do it myself, and do those afterwards, and it&#8217;s hard for me to kind of like translate that to a developer a lot of the time.</p>\n\n\n\n<p>But other people on my team that are younger, and have better, I guess like development handoff practices, are really good at like translating to a dev. Like, here&#8217;s the animation I want to see, here&#8217;s the details that I want on the site. And the site that Mike mentioned earlier, johanernst.com, so that&#8217;s. J-O-H-A-N-E-R-N-S-T, and I want everyone to see the site because it is, I think, the most perfect example of what we&#8217;ve built. It&#8217;s like a super high caliber, and all the little details on it. And they&#8217;re still even adding more. Like they&#8217;re going to add, on the site there&#8217;s this globe, and then we&#8217;re going to add a connector of the expeditions around the globe, so you can see the kind of like route that he&#8217;s taken. It&#8217;s such a good site, check it out.</p>\n\n\n\n<p>[00:31:34] <strong>Mike Straw:</strong> Going back to the perfection idea, I&#8217;m going to amend a little bit, or with what Christy said, the perfection of the design, and the way the sites look, that is a thing. We try to give them the absolute best site. And I learned that on one website we worked on, that we got the initial site delivered, and then the QA went on for the design QA, and I was one of the people that worked on the couple of hundred issues that they found with the design.</p>\n\n\n\n<p>A lot of it was, this is shaded a little different, this is just a couple of pixels out of alignment when you&#8217;re with this particular, like it was very, very detailed design. Making the site look perfect. Making things absolutely the best it can be. So there is that standard of the site we deliver. I was looking more from an engineering perspective of perfect code is not a thing, and sometimes there is a belief that you have to just do everything perfect, and if you make something go wrong, that&#8217;s just the end of everything. And we don&#8217;t have that mindset. We work very, very, very hard to make sure that doesn&#8217;t happen.</p>\n\n\n\n<p>The presentation I gave yesterday about the safety net plugin we have, comes from that mindset of, we want to never risk doing something that&#8217;s going to impact our partners, or any of our websites in a negative way. WordPress is a very large code base, it&#8217;s not perfect. But our standards for what we deliver very much are very, very detailed.</p>\n\n\n\n<p>[00:33:04] <strong>Nathan Wrigley:</strong> In preparation for this podcast, I actually asked a few Automatticians if they had any idea what your team does.</p>\n\n\n\n<p>[00:33:10] <strong>Christy Nyiri:</strong> Nobody does.</p>\n\n\n\n<p>[00:33:11] <strong>Nathan Wrigley:</strong> Yeah, and not only did they not know, many of them didn&#8217;t know that it was a thing, the Special Projects Team. So I think the cabal like nature of it, it is interesting. There is this perception that, okay, they live in a different warehouse over there, and they&#8217;ve got chemicals boiling in test tubes, and things like that. But it&#8217;s kind of interesting, this podcast, peeling it back a little bit, and just realising sort of more human nature of it.</p>\n\n\n\n<p>[00:33:34] <strong>Mike Straw:</strong> It is kind of that way, but not by design. It just kind of happened that way, because we are so small, and we have such a small thing. So it&#8217;s just not really visible necessarily every day to things that are going on, because we&#8217;re not necessarily putting out product, and things like that.</p>\n\n\n\n<p>So I could see where people, well, again, both of us kind of had that perception before we actually came to the team of this big, mysterious thing. And, no, it&#8217;s just really people that really love doing cool stuff.</p>\n\n\n\n<p>[00:34:01] <strong>Nathan Wrigley:</strong> It sounds like the caliber of work that you&#8217;re doing is of great interest to you both. You seem to enjoy the space that you&#8217;re in. And obviously, the difficulty that comes with that is understood. I will into the show notes put any of the links that we mentioned today, including the, and I&#8217;m going to call it showcase, I don&#8217;t know if that was the right word, of the kind of sites that the team have been building.</p>\n\n\n\n<p>But really fascinating just pulling back the curtain a little bit, and hopefully, off the back of this episode, some people will reach out to wherever they need to reach out to, to see how they can become involved. You never know, you might find some job applications coming through.</p>\n\n\n\n<p>Thank you so much for talking to me today. Honestly, really interesting just pulling back the curtain a little bit on the team that you are involved in, and hopefully making it feel a bit less cabal like, in the process. So, Christy and Mike, thank you so much for chatting to me today. I really appreciate it.</p>\n\n\n\n<p>[00:34:48] <strong>Mike Straw:</strong> Absolutely. Thank you, this has been fun.</p>\n\n\n\n<p>[00:34:49] <strong>Christy Nyiri:</strong> Yeah, thanks so much.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/nyiriland/\">Christy Nyiri</a> and <a href=\"https://profiles.wordpress.org/mikestraw/\">Mike Straw</a>.</p>\n\n\n\n<p>Christy leads the design arm of Automatticâ€™s Special Projects Team. She taught herself to design and code 17 years ago and has since worked with a wide range of clients, many of whom youâ€™ll hear about later.</p>\n\n\n\n<p>Mike is an engineer with the Special Projects Team. Heâ€™s been writing code for over four decades, and has been deeply into WordPress for the last seven years.</p>\n\n\n\n<p>Today, we&#8217;re pulling back the curtain on the work done at <a href=\"https://specialprojects.automattic.com/\">Automatticâ€™s Special Projects Team</a>, a somewhat mysterious entity within Automattic. Because of its low visibility and its detachment from regular product output, many have never heard of the team or what they produce, but thatâ€™s about to change.</p>\n\n\n\n<p>Mike and Christy tell us all about the team. What they do, and who they work with and for. They clarify the unique operational model of the team, which resembles an internal agency, focusing exclusively on WordPress and open-source projects. Their mission isn&#8217;t driven purely by profit; they often support nonprofits and contribute back to the WordPress community.</p>\n\n\n\n<p>We get into the teamâ€™s philosophy of learning from mistakes while striving for excellence. From their work with prominent websites, to assisting household names, to more philanthropic work, Mike and Christy illustrate how their work showcases the power and versatility of WordPress. In short, they strive to show the very best that WordPress can produce</p>\n\n\n\n<p>This episode highlights the technical and design prowess of the Special Projects Team, but also captures the passion and dedication of its members.</p>\n\n\n\n<p>Whether you&#8217;re a WordPress developer, a web design enthusiast, or someone interested in the operational intricacies of high-calibre web projects, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://specialprojects.automattic.com/\">Automattic Special Projects Team</a></p>\n\n\n\n<p><a href=\"https://www.printmag.com/\">PRINT magazine</a></p>\n\n\n\n<p><a href=\"https://www.endthebacklog.org/\">End The Backlog</a></p>\n\n\n\n<p><a href=\"https://johanernst.com/\">Johan Ernst</a></p>\n\n\n\n<p><a href=\"https://postsecret.com/\">Post Secret</a></p>\n\n\n\n<p><a href=\"https://pocketcasts.com/\">Pocket Casts</a></p>\n\n\n\n<p><a href=\"https://blog.pocketcasts.com/\">Pocket Casts Blog</a></p>\n\n\n\n<p><a href=\"https://www.tumblr.com/\">Tumblr</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2024 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Do The Woo Community: Itâ€™s WooSesh 2024 with Brian Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=86126\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://dothewoo.io/its-woosesh-2024-with-brian-richards/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:160:\"WooSesh 2024 is a free virtual conference on October 29-30, focusing on exceptional customer experience in WooCommerce, featuring keynotes and community awards.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2024 12:39:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Those Other Lawsuits\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=128223\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2024/10/other-lawsuits/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2707:\"<p>It&#8217;s a heavy day, and I&#8217;m sad to write this. Not sure where to start.</p>\n\n\n\n<p>In 2022, a lawyer recruited two people who took care of my Momâ€”an assistant and one of her dozen nursesâ€”to resign and demand a million dollars each, or they would publish horrible things about her in a lawsuit. I refused. The lawsuits were filed. Luckily, the accusations are so sick, twisted, and outrageous that they refute themselves. There&#8217;s some weird sex stuff, and also claims that my Mom is racist. I am sad for whatever mind could even imagine such things. </p>\n\n\n\n<p>I won&#8217;t link or quote them because they don&#8217;t deserve that, but the lawsuits have been part of the public record and available to anyone with a web browser since 2022. The lawyer sent them to every major media publication and gossip rag.  You&#8217;re just hearing about them now because any journalist who spent five minutes calling around easily saw how spurious the claims are and didn&#8217;t run with the story. They&#8217;ve been dredged up as part of the smear campaign against me in my battle with Silver Lake and WP Engine.</p>\n\n\n\n<p>My advice for any other founder: As you gain wealth this may happen to you with household staff as well. Never settle. It just creates an incentive for more people to make stuff up. Even if it&#8217;s messy, fight the claims in court as I am doing. It&#8217;s the only way to deter people trying to make a quick buck. These cases are common, and the media is used to them.</p>\n\n\n\n<p>Now for some good news! I&#8217;m happy to report that since these two people left, my Mom has had no errors in her medication (previously, she had to be hospitalized twice and almost died because of medication errors). She&#8217;s back to the weight she was in her 30s and isn&#8217;t in a wheelchair all the time anymore. She&#8217;s just moved into a new home we&#8217;ve been remodeling together for the past 5 years.  She still has 24/7 RNs, but the new nurses have been fantastic and feel like an extension of our family. We&#8217;re looking forward to celebrating the holidays together with my sister, lifelong family friends like the Ornelas family, Mom&#8217;s four dogs, and some of my fifteen godchildren who live in the area.</p>\n\n\n\n<p>I may be wrong or dumb about many other things, but I sincerely believe in the sanctity and beauty of every human life, regardless of any background. We are all God&#8217;s creation. My Mother taught me these values, and I have done my best to uphold them in my life&#8217;s work building open source, WordPress, and Automattic. <a href=\"https://ma.tt/2024/09/charitable-contributions/\">It&#8217;s part of why I give so much back</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2024 10:30:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: Response to DHH\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=128140\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://ma.tt/2024/10/on-dhh/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2388:\"<p>I&#8217;ve taken this post down. I&#8217;ve been attacked so much the past few days; the most <a href=\"https://ma.tt/2024/10/other-lawsuits/\">vicious</a>, personal, hateful words poisoned my brain, and the original version of this post was mean. I am so sorry. I shouldn&#8217;t let this stuff get to me, but it clearly did, and I took it out on DHH, who, while I disagree with him on several points, isn&#8217;t the actual villain in this story: <strong>it&#8217;s WP Engine and Silver Lake</strong>.</p>\n\n\n\n<p>A few bullets to his core points:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The headline &#8220;Automattic is doing open source dirty&#8221; is not fair.</li>\n\n\n\n<li>Automattic did not work on a deal with WP Engine for 18+ months because of the GPL, or them using &#8220;WP&#8221; in their name, it was because of their abuse of the WordPress and WooCommerce trademarks. Trademarks must be protected, as evidenced by <a href=\"https://rubyonrails.org/trademarks\">Rails trademark policy</a>.</li>\n\n\n\n<li><a href=\"https://automattic.com/2024/09/25/open-source-trademarks-wp-engine/\">Our C&amp;D</a> is about public trademark abuse; <a href=\"https://wpengine.com/wp-content/uploads/2024/09/Cease-and-Desist-Letter-to-Automattic-and-Request-to-Preserve-Documents-Sent.pdf\">theirs</a> is about censorship, and doxxes private messages. They have since filed a <a href=\"https://wpengine.com/wp-content/uploads/2024/10/Complaint-WP-Engine-v-Automattic-et-al.pdf\">kitchen sink lawsuit</a> that embroils all of WordPress.org.</li>\n\n\n\n<li>Updating ACF to <a href=\"https://wordpress.org/support/plugin/advanced-custom-fields/\">Secure Custom Fields in our directory</a> was to provide users of our plugin directory the best, safest, most secure code. It included a security update that still has not been merged by the ACF team.</li>\n\n\n\n<li>We will merge any improvements ACF makes to their GPL code going forward and will also include enhanced functionality in the coming days to provide a secure and free drop-in replacement for ACF. If WP Engine didn&#8217;t want this to happen, they should not have published their code under the GPL or distributed it through WordPress.org&#8217;s directory.</li>\n\n\n\n<li>I think it&#8217;s fantastic when businesses are built on open source, the WordPress ecosystem is at least 10B+ a year; Automattic and WP Engine are less than 5% of that.</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2024 09:30:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Do The Woo Community: A Conversation with Beau Lebens, WooCommerce in 2024 and Beyond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=86017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://dothewoo.io/a-conversation-with-beau-lebens-woocommerce-in-2024-and-beyond/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55954:\"Episode Transcript\n<p><strong>Jonathan:</strong><br />Welcome to another episode of <em>Inside Woo</em>. I&#8217;m your host, Jonathan Wold, and with me today is Beau Lebens, the head of engineering at WooCommerce. How are you, Beau?</p>\n\n\n\n<p><strong>Beau:</strong><br />I&#8217;m doing well, Jonathan. Thanks for having me on.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />It&#8217;s good to have you, and we have a lot to cover inside of WooCommerce. Before we get to that, though, for those who don&#8217;t know, would you mind giving us just a bit of background on yourself? You&#8217;ve been at Automattic for, if I&#8217;m counting right, 15 years now?</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, a little like that. Yep. A little over 15 years.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />And WooCommerce, you&#8217;ve been focused on WooCommerce for over five years now at this point, and you&#8217;ve worn a lot of different hats. Can you just give us some context for your work broadly at Automattic and what you&#8217;ve been focused on at Woo for the past five-plus years?</p>\n\n\n\n<p><strong>Beau:</strong><br />Sure thing. Yeah, so as you mentioned, itâ€™s been a little over 15 years with Automattic now. I came on originally as an engineer, just the one engineer person, and worked on a bunch of different parts of Automattic. I originally actually came on working, ironically, not directly on WordPress. The first few things I actually worked on were IntenseDebate and then Gravatar, but then I got deep into WordPress.com. I worked on Jetpack for a number of years and then came over to the Woo team, I guess it was five and a half years ago, and joined originally on what was then the core engineering team, with an eye towards being in this sort of engineering leadership role, helping to steer the future of WooCommerce in the WordPress space as someone who had actually worked in the WordPress world before joining Automattic as well. So, really early on in the WordPress space, and so that&#8217;s sort of always been my forte. And since coming onto Woo, I have really helped, I guess, steer Woo alongside WordPress, which is something I believe weâ€™ll talk about. Thereâ€™s something weâ€™re still doing, which is having Woo be kind of in lockstep with the evolution of WordPress itself, but then also steering it towards this whole green space as far as the commerce world goes, and what it looks like and what it means to be not just the de facto commerce solution for WordPress, but being a real commerce ecosystem of its own.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />So, you&#8217;ve worn a lot of different hats, and with Automattic broadlyâ€”myself as a former Automatticianâ€”there&#8217;s a lot of flexibility and freedom that you have to pursue interests. So, you have a lot of autonomy in what you do. Iâ€™m a big fan of a wide-ranging experience. I think it makes you better at the work that you do. Are there any particular experiences that stand out to you from your 15 years that have especially helped shape the work, I guess the experience and the approach, that you take to the work that you do now in WooCommerce?</p>\n\n\n\n<p><strong>Beau:</strong><br />Definitely, yeah. So as I mentioned, I sort of was working with WordPress before I even started at Automattic. Originally, I got involved with WordPressâ€”I guess very originallyâ€”just because it was an interesting new platform. I was in the web space already and was building websites and doing all sorts of things that WordPress looked interesting for. But then what really got me deep into it was actually attempting a startup with a friend of mine, which, as many startups do, failed miserably. But the premise there was actually leveraging what was, at the time, WordPress MU (which is now a multisite feature that is baked into core), and integrating with bbPress, which is sort of a bulletin board or forum system based on WordPress. So, it was taking those, mashing them together, and then completely changing the front-end experience, so the user didnâ€™t actually know they were using WordPress or bbPress for that matter. So, it was this really customized WordPress-based system.</p>\n\n\n\n<p>And when I look back, thatâ€™s actually something that has been a little bit of a thread and feels relevant now, the way that we look at WooCommerce, which is: Yes, this thing is based on WordPress. Yes, it is WordPress-powered. Yes, it brings WordPressâ€™s ability to manipulate and manage content to the forefront, but itâ€™s also something else. And itâ€™s leaning into thatâ€”leveraging this operating system, if you like, and customizing it towards a specific experience, in our case commerce, and then doing everything thatâ€™s possible with that power that comes under the hood. And so, thatâ€™s still something that weâ€™re doing today. We are leveraging all of the power of WordPressâ€™s posts and users and settings management, all of this stuff that comes under the hood, all of that portability and flexibility that allows it to run on any web host, but weâ€™re applying that same approach to commerce.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />I think thatâ€™s part of what Iâ€™ve always found interesting about WooCommerce in particular, is itâ€™s such a great example of an ecosystem within WordPress. And I think itâ€™s especially so because, for most folks who are using WooCommerce, they have this clear business intention, this clear commercial intention, but the way that they got there can vary quite a bit. They could have started out in WordPress with a blog and suddenly, like, add commerce, and then that sort of takes off. And now you have this commerce business. There are people who came in just for WooCommerceâ€”that was something that we began to see early on in WooCommerce is people coming into the ecosystem for Woo. So, itâ€™s always sat at this unique intersection.</p>\n\n\n\n<p>And I think what Iâ€™m interested in hearing first is, you have this evolution of WooCommerce starting out as a plugin that gave you a lot out of the box from the outset and introduced this whole new range of capabilities to WordPress. And already, from your perspective, when did ecosystem thinking first come into WooCommerce? Was that driven by how people began to use it and what they demanded of it? Whatâ€™s your perspective as an observer first, and then coming into where that thinking about WooCommerce as a plugin evolved into an ecosystem?</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, thatâ€™s a great question. I want to actually just really quickly touch on that mention of these overlapping ecosystems or communities between WordPress and WooCommerce, because I think thatâ€™s the really fascinating one. Thereâ€™s a couple of different ways you can look at it, and I often look at itâ€”there are two specific ways I tend to look at it. One is, if you try and Venn diagram those worlds, right? WooCommerce has huge overlap with WordPress, obviously, as a product and as a community and an ecosystem, but itâ€™s not 100%. So, to your point, thereâ€™s a certain slice of people, whether theyâ€™re developers or the merchants themselves, who really arenâ€™t thinking about WordPress much at all. Itâ€™s just there, itâ€™s the foundation of WooCommerce, but theyâ€™re thinking of it through a sort of WooCommerce-first lens. And so, that may be a merchant who just wants to set up a storeâ€¦</p>\n\n\n\n<p><strong>Jonathan:</strong><br />â€¦which I think is worth pointing out that thatâ€™s pretty unique. In WordPress, oftentimes thereâ€™s a lot of ecosystems, sub-ecosystemsâ€”forms are good examplesâ€”but with WooCommerce, I think youâ€™ll have people who really arenâ€™t thinking about the WordPress part, which is something a lot of people in WordPress, it may not be obvious unless you point it out.</p>\n\n\n\n<p><strong>Beau:</strong><br />Absolutely. Yeah, absolutely. Itâ€™s something that, especially if youâ€™re sort of steeped in this WordPress background (which, Iâ€™ll be the first to say, I am myself), itâ€™s actually kind of hard to wrap your head around that reality and accept that, no, some of these people, they just heard about WooCommerce, and they heard WooCommerce is how you put a store on the internet. And so, they go looking for that, and thatâ€™s what they want. And then, as they unpeel the onion, if you like, they see, oh, thereâ€™s this WordPress thing under here as well, and I have access to this whole other, what they think of as a whole other ecosystem of WordPress solutions and flexibility and everything else that comes.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Like, &#8220;Oh, I can have a blog as well, thatâ€™s cool.&#8221;</p>\n\n\n\n<p><strong>Beau:</strong><br />Right. &#8220;And I can add complicated forms to it, and I can optimize my SEO,&#8221; all these other things that come along with that WordPress world. They maybe didnâ€™t appreciate that they were getting that out of the box with WooCommerce.</p>\n\n\n\n<p>The other lens that I look at itâ€”so first, youâ€™ve got that Venn diagram world. The other one is this sort of stacked platforms, if you like, where WordPress is very much a platform, itâ€™s a whole ecosystemâ€”itâ€™s WordPress the solution, and then all of the plugins and themes and everything that come with it. WooCommerce is kind of like, oh, add another core platform on top of that, and then another whole ecosystem of WooCommerce-specific solutions. So we refer to them as extensions, but at a code level, theyâ€™re really just WordPress plugins that rely on WooCommerce specifically. And thereâ€™s a whole other world of them, which is sort of this next layer on this commerce solution, if you like.</p>\n\n\n\n<p>And so, when you think about it as slices rather than a Venn diagram, we have basically everything that you have at</p>\n\n\n\n<p>the WooCommerce level, whether thatâ€™s communities or meetups or plugins or any of the solutions that exist for WordPress. We have all of that at the WooCommerce layer as well. And so then, thatâ€™s a really interesting way of slicing it out. And then you can look at just whatâ€™s happening at the WooCommerce level, but then also how does that interact with the layer below it? So you end up in a pretty complex environment, but itâ€™s a really interesting one to work in.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />So, if you start to take its origins as a plugin, from your perspective, how did we get there? I like the layers idea. What are the things that stand out to you?</p>\n\n\n\n<p><strong>Beau:</strong><br />I actually think early on in WooCommerceâ€™s trajectory, if you like, there was kind of this acknowledgment that you canâ€™t build everything that you need for a commerce solution in a single plugin for WordPress. Itâ€™s hard enough to do as a complete standalone, entirely controlled SaaS service. Even in that environment, you canâ€™t build everything that you need to cater to every commerce solution all in one native package. You have to have something of an ecosystem to provide all of the unique solutions that all of these different commerce scenarios require.</p>\n\n\n\n<p>So from day one, I think whether it was fully acknowledged or not, WooCommerce has sort of embraced this idea that it takes an ecosystem to provide all of these solutions. And what weâ€™ve done over the years is really lean into that. And weâ€™ve really said, yeah, thatâ€™s core to how WooCommerce works. No matter how much we may or may not build into that core experience, youâ€™re always going to need the flexibility that WordPress and, by extension, WooCommerce provide. Youâ€™re always going to need some extra workflow modification, or maybe you need, I donâ€™t know, a specific shipping carrier in a region thatâ€™s not very big, whatever it may be. And so the way that we can provide that is that we as Wooâ€”that distinction is there, the company rather than WooCommerce the productâ€”something thatâ€™s really important to us is figuring out how to build an excellent experience but retain this flexibility and extensibility so that developers and builders can customize and tailor it.</p>\n\n\n\n<p>And then, I think one of the other big challenges for us is making sure that interoperability is there so that once you start putting together a solution, it still feels like a meaningful, singular commerce experience. And that exists both at that WooCommerce layer and that WordPress layer. And thatâ€™s where it gets really interesting, frankly, and challenging. And where I think the direction that WordPress is going (which we can talk about if thatâ€™s interesting) is really sort of enabling a level of integration and flexibility that actually is not great at the moment in WordPress. WordPress has some, I think, almost a lack of opinion that has been great for flexibility but has resulted in some experiences that feel a bit disjointed and that arenâ€™t as deeply integrated as they could be.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />I started writing about this concept of ecosystem plugins a number of years back, and WooCommerce was the one that really stood out to me. And when I think about this concept of an ecosystem within WordPress, there were three characteristics that stood out. First, you have to introduce a suite of functionality, which WooCommerce clearly doesâ€”a whole new category. You also have to provide an integration layer that can be extended. But the third thingâ€”and Iâ€™ve felt from the beginning that WooCommerce, whether inadvertently or not, has done this better than mostâ€”is you also need to influence and shape that ecosystem, like taking an active role. Because I think a lot of the ecosystems we have in WordPress, up until more recently, itâ€™s been fairly hands-off. And I think in WooCommerce, thereâ€™s a degree, at least from my perspective, to which just the demands of the growing business required active curation. The partnerships team did a lot of work to help shape and influence what came into WooCommerce.</p>\n\n\n\n<p>But from your perspective, through your lens and the roles that youâ€™ve played, and from an engineering perspective, how do you think about the responsibility of WooCommerce the business to shape the ecosystem, especially when itâ€™s so large? There are people who use WooCommerce in so many different ways, and youâ€™re already beginning to allude to the importance of opinions there. But how do you think about that responsibility?</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, itâ€™s a tricky one. It can be, as you said, itâ€™s really broad, and so people are doing all sorts of things with WooCommerce, some of which we would never imagine. And so, itâ€™s very difficult to plan for that. We do take backwards compatibility really seriously. Similar to one of the things that is actually sort of fundamental to WordPressâ€™s success over the 20 years that itâ€™s existed, is this commitment to backwards compatibility. What does that look like? What does that mean? And frankly, itâ€™s something that, as engineers and developers, itâ€™s easy to get really annoyed with and wish that we didnâ€™t have to do and just wish that we could move forward, change things, build the new shiny thing, build a new system, whatever. But I think thatâ€™s fundamental to WordPressâ€™s success and WooCommerceâ€™s success.</p>\n\n\n\n<p>We do need to break it sometimesâ€”there are some unavoidable situations where maybe itâ€™s a security fix or a specification change, or whatever it might be where we just canâ€™t figure out how to maintain backwards compatibility or, frankly, staying backwards compatible is not in everyoneâ€™s best interest, and so we have to move things forward.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Letâ€™s talk about that specifically because I think itâ€™s a really good example of where the tension, especially from an engineering perspective, lies because, at least from my perspective, having worked with many engineers, you can kind of move on. You see better ways to do something. You see, okay, thereâ€™s this new set of practices that we want to bring in. This makes a lot of sense. And from an end userâ€™s perspective, oftentimes it just doesnâ€™t matter. And if you look at it, I feel similarly that WordPressâ€™s and WooCommerceâ€™s success is in large part due to the confidence and stability that comes from that. People donâ€™t have to think about it often; itâ€™s just not breaking. Is there an example that stands out to you of where you did the harder workâ€”usually the much harder workâ€”to maintain the backwards compatibility? I think for builders listening to me, this is an important part of success in the WordPress ecosystem, is internalizing why this compatibility, why the work matters. Is there any example that stands out to you?</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, I have a huge one, which is very relevant. We can talk about the past version and the future version of it, and thatâ€™s HPOSâ€”so high-performance order storage. For anyone whoâ€™s not familiar, this is a pretty fundamental change where, historically, WooCommerce had stored all of its order information, so someone places an order on your website, you make a sale, that information was stored in the WP post table, because that was the sort of most flexible place to store that data in a WordPress install, where historically it was somewhat frowned upon to introduce your own custom tables. And so back in the day, WooCommerce was built as a plugin. It was intended to be installed on WordPress, spun up pretty quickly, and you could just go about your way, start taking orders.</p>\n\n\n\n<p>So HPOS was this project to shift all of that data to a custom set of tables, which were optimized for storing large volumes of order data and for processing at high capacity. And the actual engineering work to just do that, if we were just changing WooCommerce core, was done in about two months max. And thatâ€™s with even sort of trying to allow for the fact that the way that we did it, the planning process, everything was very different because we were catering to an entire ecosystem. So we did this work, and then it took almost two years before that was actually the default on new WooCommerce installs.</p>\n\n\n\n<p>And thatâ€™s because all of the work was really around the ecosystem and adoption and educating other developers and introducing systems to allow different plugins to declare compatibility or incompatibility and how we handle all of those different combinations of things that are or are not compatible. Thatâ€™s where all the complexity came in. And that, frankly, is all about backwards compatibility, whether thatâ€™s at the sort of user level or the code level, itâ€™s handling all of these different scenarios that exist in the WordPress world because youâ€™ve got these different versions of things out there running, and you canâ€™t just update them all at once. We canâ€™t just go tell people, you have to update WordPress, WooCommerce, and every plugin that youâ€™re running to X version and theyâ€™re all compatible and then youâ€™re good. And so since we canâ€™t do that, we have to deal with this complexity.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Thatâ€™s a great example because I think instinctively it feels to me like it was the right approach to focus on the lowest common denominator of experience, which is the merchant, and also the most important in this case. So, it takes that time, yet if you can make it available to your builders, to the agency ecosystem sooner, then there&#8217;s more winning that can happen. They&#8217;re able to successfully roll this out for their merchants, their clients, your merchants, and you can probably get a productive feedback loop that also gives confidence that makes what you ultimately roll out to everyone more effective. And if I contrast this to other ecosystems, part of the problem is that they don&#8217;t have that first focus. I don&#8217;t remember the details of it, but my sense of what happened with Magento, for instance, was this sort of big cut from one to the next. And from what I recall, there were developers who were</p>\n\n\n\n<p>quite happy about the changes, and probably also the work that they&#8217;d have to be paid for to make the migration successful. But a lot of merchants ended up being disenfranchised and just lost in the process. So, youâ€™ve done a good job, from my perspective, to remain merchant-centric in those decisions. And it sounds like you&#8217;ve recognized the role that your ecosystem can play in supporting that, and you can create a win for them as well in the process.</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, thatâ€™s definitely a learning for us. And I think also a challenge and just something that we&#8217;re still getting better at is how to really engage with this developer ecosystem. You mentioned earlier that there are people out there building WooCommerce solutions, and we frankly just donâ€™t even know who most of them are. Thatâ€™s both the beauty and the struggle of, I think, WordPress itself, but also WooCommerce is that they&#8217;re out there in the world. The code base is available, people can go build them and deploy them anywhere, and they may not interact with us in any way. And so, it can be very difficult for us to communicate with that ecosystem of builders and developers. And it&#8217;s something that actually, I think we haven&#8217;t done as good of a job as we should have in the last few years, but I guess a few years ago, the last year plus, you may have seen we&#8217;re much more active out there in public now. That&#8217;s a really conscious and intentional shift. We really want to engage with developers through GitHub, through our Slack community, through our developer blog. We&#8217;ve been putting a ton of work into tightening up and aggregating all of the, what was disparate documentation for our platform, bringing that all into a single developer hub, and then also leaning into toolingâ€”do we have CLI commands and all of the stuff that we know developers actually prefer to work with. They shouldnâ€™t have to dig through the code to find out how to do something. We should have better documentation for that.</p>\n\n\n\n<p>So that&#8217;s really a foundational thing for us that we&#8217;re investing a lot in. And we really want that feedback loop with community developers who are building on top of WooCommerce or they&#8217;re building solutions for WooCommerce. Frankly, a lot of that has happened without us hearing about it. And so sometimes we get these blowups of feedback where people get frustrated and they say, &#8220;Why arenâ€™t you doing X?&#8221; And we say, &#8220;Oh, we actually hadn&#8217;t heard that that was such a big deal to you.&#8221;</p>\n\n\n\n<p><strong>Jonathan:</strong><br />So, this is one of the things thatâ€™s standing out to me in thisâ€”some of these problems, these challenges, we&#8217;ll call them challengesâ€”that you&#8217;re experiencing are quite unique to open source. If we contrast this to proprietary platforms, in a proprietary platform, you wouldn&#8217;t have that. Typically, you wouldnâ€™t have that two-year period.</p>\n\n\n\n<p><strong>Beau:</strong><br />Youâ€™d just do it.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />You just do it. &#8220;This approach is deprecated as of this year. We&#8217;ve upgraded everything.&#8221;</p>\n\n\n\n<p><strong>Beau:</strong><br />Exactly.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />You take care of it for them. And you also know your constraints, whoâ€™s working in your platform more often than not. And if you donâ€™t, you can solve that a lot more readily. Iâ€™m curious from your perspective, I guess I&#8217;m not asking about just the benefits of it in this open-source ecosystem. And I think thatâ€™s a big part of why itâ€™s grown to where it is. Itâ€™s a key factor in all of this. But I guess, how do you think aboutâ€”you grew up in the WordPress spaceâ€”how do you think about the impact that the open-source nature has, the benefits, and the trade-offs to WooCommerce? Because you started from a plugin, now you have an entire ecosystem that happens to be open source. Itâ€™s quite unique and very commercial in its nature, and there are all these dynamics at play. And yeah, I think itâ€™s worth touching on that because that&#8217;s a single characteristic that has a lot of impact on what you&#8217;re trying to work on.</p>\n\n\n\n<p><strong>Beau:</strong><br />Definitely. Yeah, itâ€™s an interesting and very difficult question to answer because, as you said, it seems like a relatively narrow questionâ€¦</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Right? &#8220;Oh, itâ€™s just open source.&#8221;</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, it has so many implications. So I do think it is fundamental both to our previous successâ€”I think it is what got us hereâ€”and it poses some unique challenges in going forward. There are certain things that, especially in a commerce space, would be much, much easier to do if we controlled the full stack, if all of WooCommerce was hosted in a single environment and we could just deploy updates, or we could optimize certain things. Performance is a favorite topic, which is actually an area that we are investing in more this year. We mentioned HPOS, but there are a ton of different performance characteristics that, when you control the whole system, you can just optimize for the way that system works. Whether itâ€™s, I donâ€™t know, adding an index in a database or optimizing a specific query or whatever it might beâ€”adding a specific caching layerâ€”we donâ€™t even know what people do with most WooCommerce stores. And so, it makes it very, very difficult to optimize the performance profile of something that you donâ€™t know what it is.</p>\n\n\n\n<p>So that sort of thing can be really challenging. But I think what we&#8217;re seeing is, over the years, thereâ€™s a certain number of pretty consistent profiles that we see. For example, people use WooCommerce in certain ways, and itâ€™s actually one of the beauties of being housed within Automattic, which has multiple hosting environments, is that we can just go look at real stores and see how theyâ€™re going, what theyâ€™re doing, what software theyâ€™re running, what performance bottlenecks do they ever run into, and then just working directly with them and improving it and then bringing those improvements back to the rest of the platform.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Itâ€™s such a unique challenge. I remember when I worked at WooCommerce, one of the debates at the time was this: how does WooCommerce relate to the hosting ecosystem? And this is such a good example because someone can have really low-cost hosting on WordPress, which is great, and then wake up one day and decide to install WooCommerce and run WooCommerce and start to take orders. All of this can be happening in an environment that was not designed, intended for that, right? And thatâ€™s not necessarily going to be apparent to the user.</p>\n\n\n\n<p><strong>Beau:</strong><br />They have a bad experience potentially, and they think, &#8220;Oh, itâ€™s WooCommerceâ€™s fault.&#8221; And I think commerce and content are really interesting when married together, but theyâ€™re also almost opposed from a performance perspective, right?</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Caching versus not caching.</p>\n\n\n\n<p><strong>Beau:</strong><br />Exactly.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Right out of the gate.</p>\n\n\n\n<p><strong>Beau:</strong><br />Right out of the gate. The fundamental strategy for content performance is just cache everything, and basically, itâ€™s a static website, and to the moon. And itâ€™s the opposite with commerceâ€”you basically have to not cache everything, or there are definitely caching strategies that you can go down, but you probably canâ€™t just static cache everything. You probably have a very different profile of users coming back to your website. And so, there are just fundamental differences there that really do require us to think about the way that we approach WooCommerce as: itâ€™s on WordPress, but itâ€™s also quite different from WordPress.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />So then, here comes the tension, right? Because from an engineering perspective, and especially if you didnâ€™t come up in the WordPress spaceâ€”which is part of why I think youâ€™re in such a unique positionâ€”if you came from a proprietary ecosystem, the answer would be clear: &#8220;Well, we need to control this.&#8221; &#8220;Let&#8217;s not deal with all these hosts out here. We need to control as much of this as possible.&#8221; And you could argue, I think successfully, that from whatâ€™s best for the merchantâ€™s perspective, thatâ€™s a fair line of reasoning. Letâ€™s give them a great experience. And hosting is a good example of an open-source variable that can have a big impact. But yet, thatâ€™s also a big part of why WooCommerce has grown as much as it has. You have this vast ecosystem. And while itâ€™s much harder, Iâ€™ve been really happy to see WooCommerce take an approach over the past couple of years of working with the hosts and figuring out, okay, how do we support that? So how do you think about that? And I think for the merchant in particular, ideally, they wouldnâ€™t even have to care about this, but yet there is real-world impact to that. Thereâ€™s a lot there, but how do you think about that?</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, so I think itâ€™s really interesting that you&#8217;re sort of bringing it from the merchant&#8217;s perspective because we try and do that a lot. Ultimately, even though we know that builders and developers are involved with many WooCommerce deployments, ultimately, itâ€™s a merchant who has to use the product. And so, however we get there, we need to get to a good merchant experience. And frankly, something that weâ€™ve seen over the years is that if you look back originally to the sort of WooCommerce early days, WooThemes days, and then all the way throughâ€”frankly, until nowâ€”the model for WooCommerce is you get WooCommerce, and then you will definitely add all of these other solutions. Youâ€™ll add a payment gateway, a shipping carrier, a tax solution probably, who knowsâ€”all sorts of things. Actually, fun fact, I think the number Iâ€™ve seen recently is an average Woo store has something like 44 plugins. So youâ€™re talking about a lot of extra stuff.</p>\n\n\n\n<p>And so that was intentional. That was the approachâ€”</p>\n\n\n\n<p>give builders and merchants the flexibility to get this core and then plug in any solution that they need and mix and match to get exactly what they want. And what weâ€™ve seen over the years is, I guess, two things. One, that introduces a level of decision fatigue, discoverability, and complexity that people donâ€™t actually love. No one really wants to manage a bunch of software. So thereâ€™s this level of complexity that it introduces. And then, the other one is frankly that the expectations of people on the internet have changed. WooCommerce has been around for over a decade. Things have changed in that time.</p>\n\n\n\n<p>And so, what we are seeing is we actually need, as the platform, as WooCommerce, we actually need to have a little bit stronger of an opinion on what good looks like. And so, you will see us start to shift a little bit more towards, hey, if you donâ€™t have a preference or you donâ€™t have a specific need, you should just use this solution.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Stronger defaults.</p>\n\n\n\n<p><strong>Beau:</strong><br />Right, stronger defaults, which is theoretically something that WordPress has always hadâ€”decisions, not options. This has been a mantra forever, and we&#8217;ve usually tried to do that at the technical level, but we havenâ€™t always done it at the sort of product experience level. And youâ€™ll see us do that a little bit more going forward, and thatâ€™s directly based on feedback where weâ€™ve just heard, &#8220;Look, there are too many things to manage. There are too many choices to make. I actually donâ€™t want to do this. I just want to be told which ones work together. I want them to work really well. I want them to be integrated. If Iâ€™m using a specific payment solution, I want to get comprehensive payment reports, and I want it to perfectly handle my taxes,&#8221; whatever the combination may be.</p>\n\n\n\n<p>And when you&#8217;re mixing and matching from the ground up, that level of interoperability can be pretty tricky to get right. So, youâ€™ll see us do a little bit more of thatâ€”saying, &#8220;Hey, these solutions work together.&#8221; We still want to maintain the optionâ€”if you donâ€™t want to use that, youâ€™ve still got the flexibility. Thatâ€™s the beauty of everything being open source and extensible. But if you go that route, then obviously, you&#8217;re taking all of that into your own hands, and now you need to figure out, do they work together as well as they could, which is frankly how things are right now. And that&#8217;s part of the value that builders provide in the equationâ€”putting together a package of solutions and then making sure that they work well together.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />So, you guys just recently launched the business services category, and to me, that was good. I was happy to see that. It was a good example of, at least from an outside perspective, this continued evolution to take in a more holistic view of the things that merchants need. If you&#8217;re a merchant and you&#8217;re having any kind of success, thereâ€™s a whole series of additional things you are going to need at some point, right? And yeah, I think I&#8217;d love to hear more from you on anything that stands out to you in that evolutionâ€”the impact of thinking more holistically, of thinking about better decisions, not options, of thinking about that end-user experience. How is that affecting what you prioritize in terms of developing new features and introducing new things like the business services category?</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, that&#8217;s a great one. So, I guess just to touch on that briefly, for anyone whoâ€™s not familiar with it, I guess a few months ago now we introduced the business services tab within our marketplace. And this is basically where you go as a merchant to find sort of WooCommerce-adjacent services. So, the idea is they donâ€™t necessarily need a technology integration; they may not be part of your website or part of your baked-in business workflow, but you need them to run a business. And I think this sort of breaking out of the idea of WooCommerce as just a plugin to, no, for a lot of people, WooCommerce represents their business. It is the hub, how they run their livelihood. And so, what can we do to help them do that? What are all the other pieces that are relevant when running a business, and how do we connect people to those solutions? I think previously, we just relied on, I guess, developers to either do that or for a business owner to engage with a developer and a tax professional or an accountant or whoever, and for them to just figure it out themselves. And if weâ€™re in a world where weâ€™re trying to enable merchants to get up and running and get going, then the more we can do to help them, the better. So, thatâ€™s really where thatâ€™s coming from.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />I like that a lot. One thing I want to touch onâ€”so I think WooCommerce and WordPress, especially being in Automattic, thereâ€™s always been a unique interplay between whatâ€™s happening in core WordPress and whatâ€™s happening in WooCommerce. I remember WooCommerce was doing early work on blocks, and there was an alignment of interest there, I think because it was at Automattic, that might not have been there otherwise. It was a lot of work to try and figure out how do we do this. And I remember some of the earlyâ€”at least from my perspectiveâ€”there was a lot of pioneering work that was done in Woo on improving user interfaces and experiences that also had a positive impact on the work that was happening in core. So, how do you think about the interplay? WooCommerce, to me, is the largest and most impactful sub-ecosystem of WordPress, and that can be something that can be lost at times. How do you think about the relationship between what&#8217;s happening in WooCommerce versus whatâ€™s happening in WordPress? How does WooCommerce, from an engineering perspective, think about what&#8217;s happening in the project and where WordPress itself is evolving?</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, I think you&#8217;re spot on with the reality that if WooCommerce wasnâ€™t within Automattic, things might be a little different here, and that would impact both WooCommerce and WordPress. The work that youâ€™re referring to, investing early in blocks and thinking about whatâ€™s happening in WordPress core, is very much still happening. Actually, a perfect example of thatâ€”a couple of examples, actuallyâ€”the product editor that you&#8217;ve seen us working on, if you&#8217;re watching the sort of things that are feature-flagged and available, if you jump into the right spot, thatâ€™s undergone a couple of really major changes, and thereâ€™s probably still another one coming, which is part of why we havenâ€™t pushed that out as any sort of default experience for the majority of users. And thatâ€™s because itâ€™s evolving alongside whatâ€™s happening in WordPress. And frankly, WordPress itself is still figuring out a lot of things related to full-site editing, to data views, to all these new components and new UX patterns and things. And so, we&#8217;re right there with them. We&#8217;re actually working alongside core Gutenberg teams and really bringing to them, &#8220;Hey, we have this complex experience thatâ€™s critical for commerce that you haven&#8217;t considered yet. Letâ€™s work together and solve for that.&#8221;</p>\n\n\n\n<p>Actually, a kind of random good exampleâ€”weâ€™re having a conversation at the moment around, should data viewsâ€”so these are effectively the replacement for a WP list tableâ€”should they support drag-and-drop? On the surface, you&#8217;d say, yeah, absolutely. But there are a lot of scenarios where it breaks. If you&#8217;ve got a sort or a filter applied and you change the order, what happens now? So, thereâ€™s a bunch of things like that where the fact that we represent commerce, we represent a lot of really complex user interactions and a certain way of interacting with what is technically WordPress (which WordPress focused purely on content may not be taking into account). And so, what I like to think is that WooCommerce is basically one of the most complex applications of anything that WordPress could come up with. And so, if the WordPress platform can support that, it can support almost anything.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />I like that example a lot, and I think one of the strengthsâ€”itâ€™s a double-edged swordâ€”one of the strengths is that interplay of content and commerce that merchants see, right? They love the idea of being able to create content, which is often key to the marketing, the sales side of a commerce business. And itâ€™s easy to take for grantedâ€”that&#8217;s not just trivial in these other platforms. They tend to be, &#8220;Okay, this is commerce, and maybe thereâ€™s some light content layer.&#8221; So, there&#8217;s a lot of complexity that comes with that because theyâ€™re not the same, yet they can have a clear relationship with each other. But the needs in commerceâ€”itâ€™s a different workflow, different expectations, different problem set, the caching versus non-caching. So, it seems like itâ€™s a lot more work to do that and to stay with that.</p>\n\n\n\n<p>As weâ€™re nearing the end, what I&#8217;d love to touch on isâ€”you see that work firsthand, and I think thatâ€™s increasingly appreciated for those who&#8217;ve been in the space for a while and been following. It could be frustrating that things donâ€™t happen quickly. At the same time, I think people who are paying attention can also see that care and consideration and thinking long-term is also part of what you&#8217;d want in a steward of the ecosystem. So, for the builders who are listening and theyâ€™re looking to the future of WooCommerce, what are some of the things that you would be encouraging builders to be thinking about? Where should they be focusing some of their energy and efforts? Letâ€™s start with the agency folks first. For folks who are building for merchants, they have clients, whether freelancers or agencies, what are some of the things that</p>\n\n\n\n<p>you recommend that they be thinking about in the context of where you see the platform going?</p>\n\n\n\n<p><strong>Beau:</strong><br />Great question. Yeah, so I think we&#8217;ve talked about blocks and the future of WordPress and where WordPress is going. So, I&#8217;d say part of it would be to understand that as much as you can, especially for bigger agenciesâ€”I think they tend to be better connected to what is happening with WordPress. So, understand that and be looking at what does this mean for the sites that I&#8217;m building, especially on the backend. So, in the admin experience, things are shifting towards blocks, towards this new WP admin design that is sort of coming slowly down the pikeâ€”the full-site editor. So, think about how that all applies to the type of work that you do and look at which solutions you&#8217;re picking. So, which extensions or plugins are you choosing to build new sites on? Especially, are they compatible with this future? I would frankly be really thinking about that at this point. If theyâ€™re not and you are not the developer of that solution, start working with that developer to understand how they can make it compatible with that future. Start engaging with us. Like I said before, we really are out there trying to engage more directly with developers and agencies because we want to hear what is happening out there. I think people actually forget that agencies are oftenâ€”agencies and solo developersâ€”they&#8217;re actually often the front line thatâ€™s really understanding the reality of applying software like WordPress or WooCommerce in a way that we frankly may not understand because we are building the software and they&#8217;re applying it in certain scenarios. So, getting that real-world feedback loop of, hey, how are you using it? What problems are you running into? Are there limitations we can remove? Are there things that we&#8217;re not doing that we should be doing, or whatever?</p>\n\n\n\n<p>Really closing that feedback loop with us is the biggest thing. I mentioned earlier, I think we have a community Slack channelâ€”thatâ€™s a great spot to start. We have a developer blog, which is at developer.woocommerce.com. Thereâ€™s a developer-specific newsletter on there now, which I would strongly recommend anyone building for WooCommerce to be on. And then, we&#8217;ve started using GitHub discussions pretty actively as well. So, I&#8217;d suggest jumping in there. You&#8217;ll see RFCs for major changes that we&#8217;re looking at doingâ€”things like that. We need real feedback from people who are frankly outside of that cycle of Gutenberg development (and I use Gutenberg there loosely just to refer to the whole roadmap). But yeah, real-world uses of WooCommerceâ€”we want to hear about them.</p>\n\n\n\n<p>And I guess I would sayâ€”this sounds a little &#8220;Matrix-y&#8221;â€”but open your mind a little bit. We&#8217;ve heard feedback from builders specifically or developers who donâ€™t necessarily want change. They know how to build for the current system, and they want it to stay the same. We need to change to stay up with WordPress. WooCommerce and WordPress are inextricably tied together. Thatâ€™s not going to change. So, we are going to stay deeply integrated with WordPress. We believe thatâ€™s actually the thing that makes us unique in the market and which gives us the strength and flexibility and the reach of WordPress itself. So, we fully intend to stay integrated with WordPress, and that means that the future is going in a certain direction. So, I would encourage everyone to understand that direction and come along with us.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />I like that a lot. The business services category launch, I think, is a good illustration of what I&#8217;m observing in the market, which is a growing interest from products to play in the WooCommerce space. More product companies are coming in, theyâ€™re seeing the opportunity, theyâ€™re seeing the size of the ecosystem, and that&#8217;s been an important part for a long time nowâ€”people building extensions. And you&#8217;re seeing bigger and bigger companies come in. There&#8217;s a full partnerships team at WooCommerce. For the people listening who are building products for the WooCommerce ecosystem, what guidance do you have to offer them? How would you encourage them to be thinking about the evolution of WooCommerce as a platform, as an ecosystem, and what should they be paying attention to?</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, that&#8217;s a good one. So, I think, as you said, there are a lot of people trying to enter the WooCommerce market, if you like. And for us, we&#8217;re in this weird spot. We&#8217;ve talked a lot about ecosystem thinking and the community and working with developers and builders, and that is the strength of what we&#8217;re doing. But frankly, if we&#8217;re to remain running as a business, we also need to commercialize certain parts of it. We need to be part of the money that&#8217;s flowing through this ecosystem so that we can continue funding the development of what we&#8217;re doing.</p>\n\n\n\n<p>So, I mentioned there&#8217;s a few sort of central commerce experiences that we&#8217;re investing heavily in. I&#8217;d say off the top-line list of that is payments, shipping, taxes. These are areas that you&#8217;re going to see us invest in heavily, and you&#8217;ve already seen us probably building WooPayments. We also recently relaunched WooCommerce Shipping. So, these are areas that we know that it&#8217;s critical for merchants to have a great experience, and we believe that the best experience is one thatâ€™s going to be deeply integrated with WooCommerce. So, there are plenty of other solutions for payments and shipping in particular where it&#8217;s a plugin and then you go use some other dashboard to manage that part of your business. And we fundamentally believe that there is at least a certain audience who want that all in WP admin. They want an integrated experience, they want to be able to bounce between different parts. I mentioned earlier like payments and taxes, let&#8217;s say. You can imagine that actually extending to all threeâ€”so, if you&#8217;re taking a payment that includes taxes, that covers shipping, you want to be able to understand all of that in the performance of your business. And if that&#8217;s spread out across multiple systems, that can be really difficult. So, I&#8217;d say we&#8217;ll be investing more heavily in those areas, which is not to say that other people shouldn&#8217;t, but I guess know that we will be playing in those spaces a lot.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />For someone who is coming into the spaceâ€”you just made that point about the importance of the integrated experience. If they&#8217;re new, how would you encourage them to be thinking about that? For instance, in the business services category, you introduced banking, for instance. And unless your intention is to get into banking (which, who knows?), but itâ€™sâ€”for someone who&#8217;s in the banking space and coming in, how would you be encouraging them to be thinking about things like that? Should it be integrated? There&#8217;s not existing precedent, right? It could be outside the space; they could go to a separate dashboard. How would you think about that example?</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, banking is an interesting one. Obviously, that&#8217;s a really complicated space.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />But also fundamental to commerce.</p>\n\n\n\n<p><strong>Beau:</strong><br />Fundamental to commerce, pretty connected to payments, interestingly. So, it is an area that we&#8217;re sort of touching on. But I would say in general, what we would love to see more of is people who are really thinking about WooCommerce as a whole complex system and how can they build something that&#8217;s part of that complex system rather than, &#8220;I represent banking; I want to just make my banking visible.&#8221; Thatâ€™s the first step. But actually building it in some sort of integrated way is really where we see things succeed more.</p>\n\n\n\n<p>So, I mentioned that the business services tab is largely for things that really probably won&#8217;t integrate deeply or are somewhat separate or somewhat adjacent to the website itself. There may be some crossoverâ€”so actually, banking is maybe a good one. We probably could, and probably will, have more flows and better seamless handoff between your WooCommerce store and whatever that banking solution is. But we&#8217;re probably not going to, for example, replicate your entire banking website and banking experience all within WooCommerce. In business services, just as a specific example, I think is also really interesting for connecting things like developers. And this is an interesting sort of crossoverâ€”one of the services you may need as a business is a developer to customize your business website.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Right.</p>\n\n\n\n<p><strong>Beau:</strong><br />So, I think there&#8217;s an interesting crossover there, which weâ€™ve just started exploringâ€”opening up the ability for merchants to get access to various forms of technical support, to use a loose term there, as part of running their business.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Well, Iâ€™m excited. There&#8217;s a lot to the ecosystem, and I think this is why you coming on episodes like this is especially helpful from my perspective, to give a broader sense of what&#8217;s going on behind the scenes. And I really appreciate you taking the time to share. We&#8217;ve given folks a lot of things to think about and work with. If someone wants to reach out to you, Beau, what&#8217;s the best way to get in contact?</p>\n\n\n\n<p><strong>Beau:</strong><br />The best way is probably to tweet at me, or I guess &#8220;X&#8221; at me, however you say that now. Yeah, you can get me on there. Itâ€™s just @BeauLeins, which Iâ€™m sure we can put in the show notes or something for the spelling. Or frankly, you can also just email me: beau@automattic.com.</p>\n\n\n\n<p><strong>Jonathan:</strong><br />Excellent. Beau, thank you for the time. Thank you for the work that you and the team have been doing, and talk to you soon.</p>\n\n\n\n<p><strong>Beau:</strong><br />Yeah, thanks, Jonathan. Appreciate it. Been fun.</p>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\"></div>\n\n\n\n\n<p>In this episode of <strong><em>Inside Woo</em></strong>, host <strong>Jonathan Wold</strong> welcomes <strong>Beau Lebens</strong>, head of engineering at WooCommerce, to discuss the development and future of WooCommerce within the WordPress ecosystem which grew out of his post on Woo, <em><strong>WooCommerce in 2024 and beyond: Roadmap update</strong></em>.</p>\n\n\n\n<p>Beau shares his extensive experience within Automattic and provides insights into the uniqueness of WooCommerce as it evolves from a WordPress plugin to a complete commerce solution with its ecosystem. The conversation covers topics such as the challenges and responsibilities of maintaining backward compatibility, the role of WooCommerce in the broader WordPress evolution, and the strategic alignment with new WordPress technologies like blocks and full site editing. </p>\n\n\n\n<p>Beau highlights ongoing efforts to improve the integration of merchant and agency experiences, focusing on performance optimization and ecosystem collaboration. They also chat about  new additions like the Business Services tab and emphasizes the importance of providing integrated, merchant-centric solutions.</p>\n\n\n\n<p><strong>Takeaways</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>WooCommerceâ€™s Growth</strong>: WooCommerce started as a simple plugin but has evolved into a robust ecosystem, tightly integrated with WordPress, providing flexibility for both developers and merchants.</li>\n\n\n\n<li><strong>Stronger Defaults for Merchants</strong>: To reduce complexity and decision fatigue for merchants, WooCommerce is focusing on providing stronger defaults, particularly in payments, shipping, and taxes, while still maintaining flexibility for developers.</li>\n\n\n\n<li><strong>Backward Compatibility</strong>: WooCommerce is deeply committed to backward compatibility, even when implementing complex changes like the High-Performance Order Storage (HPOS) project, to ensure stability for merchants and developers.</li>\n\n\n\n<li><strong>Developer Engagement</strong>: WooCommerce is increasingly engaging with its developer community through GitHub, Slack, and blogs, seeking feedback to shape future updates and features.</li>\n\n\n\n<li><strong>Ecosystem Thinking</strong>: WooCommerce embraces ecosystem thinking, encouraging third-party developers to build integrated solutions that work seamlessly within the WooCommerce platform rather than as standalone products.</li>\n\n\n\n<li><strong>Commerce and Content Performance</strong>: One of WooCommerceâ€™s unique challenges is balancing the performance needs of real-time commerce with content-focused caching, requiring continuous optimization.</li>\n\n\n\n<li><strong>Future Investment</strong>: WooCommerce is investing heavily in key areas such as payments, shipping, taxes, and technologies like blocks and full-site editing, aligning with WordPressâ€™s long-term roadmap.</li>\n</ul>\n\n\n\n<p><strong>Links</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://x.com/beaulebens\">Beau Lebens on X (Twitter)</a></li>\n\n\n\n<li><a href=\"https://developer.woocommerce.com\">WooCommerce Developer Resources</a></li>\n\n\n\n<li><a href=\"https://github.com/woocommerce/woocommerce/discussions\">WooCommerce on GitHub</a></li>\n\n\n\n<li><a href=\"https://developer.woocommerce.com/2024/07/23/woocommerce-in-2024-and-beyond-roadmap-update/\">WooCommerce in 2024 and beyond: Roadmap update</a></li>\n\n\n\n<li><a href=\"https://developer.woocommerce.com/category/roadmap-insights/\">Roadmap Insights</a></li>\n</ul>\n\n\n\n<p><strong>Chapter Titles with Timestamps</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>00:00&nbsp;Introduction and Welcome</li>\n\n\n\n<li>00:38&nbsp;Beau Lebens&#8217; Journey at Automattic</li>\n\n\n\n<li>02:38&nbsp;The Evolution of WooCommerce</li>\n\n\n\n<li>05:14&nbsp;WooCommerce as an Ecosystem</li>\n\n\n\n<li>10:18&nbsp;Challenges and Responsibilities in WooCommerce Development</li>\n\n\n\n<li>16:49&nbsp;High Performance Order Storage (HPOS)</li>\n\n\n\n<li>25:00&nbsp;Open Source Dynamics in WooCommerce</li>\n\n\n\n<li>28:16&nbsp;Understanding Performance Bottlenecks</li>\n\n\n\n<li>28:28&nbsp;WooCommerce and Hosting Ecosystem</li>\n\n\n\n<li>29:03&nbsp;Commerce and Content: A Performance Perspective</li>\n\n\n\n<li>30:01&nbsp;Engineering Challenges and Merchant Experience</li>\n\n\n\n<li>31:12&nbsp;WooCommerce&#8217;s Evolution and Stronger Defaults</li>\n\n\n\n<li>34:49&nbsp;Business Services and Holistic Merchant Support</li>\n\n\n\n<li>36:59&nbsp;Interplay Between WooCommerce and WordPress</li>\n\n\n\n<li>41:41&nbsp;Future Directions for WooCommerce Builders</li>\n\n\n\n<li>46:27&nbsp;Guidance for WooCommerce Product Companies</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2024 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: Jetpack 13.9.1 Patches a Critical Security Flaw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=175212\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/jetpack-13-9-1-patches-a-critical-security-flaw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2144:\"<p><a href=\"https://jetpack.com/blog/jetpack-13-9-1-critical-security-update/\">Jetpack 13.9.1</a>, a critical security update, was released yesterday to fix a vulnerability in the Contact Form feature that had been present since 2016. This flaw allowed logged-in users of a site to access forms submitted by visitors.</p>\n\n\n\n<p>The vulnerability was discovered during an internal security audit, prompting the Jetpack team to collaborate with the WordPress.org Security Team to release patches for all versions of Jetpack dating back to 3.9.9.</p>\n\n\n\n<img width=\"2158\" height=\"744\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-33.png\" alt=\"Full list of the 101 different versions of Jetpack released yesterday.\" class=\"wp-image-175217\" />\n\n\n\n<p>The Jetpack team also warned: â€œWe have no evidence that this vulnerability has been exploited in the wild. However, now that the update has been released, it is possible that someone will try to take advantage of this vulnerability.â€</p>\n\n\n\n<p>Wordfence team <a href=\"https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/jetpack/jetpack-1391-missing-authorization-to-authenticated-subscriber-sensitive-information-disclosure\">shared</a> that the plugin is â€œvulnerable to unauthorized access of data due to missing capability checks in the Contact_Form_Endpoint class in various versions version up to, but not including, 13.9.1. This makes it possible for authenticated attackers, with subscriber-level access and above, to read all Jetpack form submissions on the site.â€&nbsp;</p>\n\n\n\n<p>The vulnerability has been given a CVSS score of 4.3, and users are advised to update to Jetpack 13.9.1 to secure their websites.&nbsp;</p>\n\n\n\n<p>The Jetpack team reassured users, stating, â€œWe will continue to regularly audit all aspects of our codebase to ensure that your Jetpack site remains safe.â€&nbsp;</p>\n\n\n\n<p><strong>Update</strong>: <a href=\"https://wpscan.com/plugin/jetpack/\">WPScan</a> will share the Proof of Concept on November 11, 2024, to give users time to update. The vulnerability was reported by their researcher Marc Montpas. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2024 04:02:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WPTavern: HeroPress Turns Ten\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=175202\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wptavern.com/heropress-turns-ten\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2520:\"<p><a href=\"https://heropress.com/\">HeroPress</a>, launched by Topher DeRosia, has <a href=\"https://heropress.com/ten-years-of-heropress/\">turned ten</a>. Born from the idea of amplifying the voices of those who have overcome significant challenges, HeroPress has spent the last decade celebrating the diverse and inspiring journeys of people who have found strength, opportunity, and success through their connection with WordPress.</p>\n\n\n\n<p>At its core, HeroPress is about storytelling. It showcases the personal and professional journeys of individuals from all walks of life, connected by their use of WordPress.</p>\n\n\n\n<p>Back in 2015, HeroPress had hit a snag following failure to<a href=\"https://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline\"> attract backers</a> but this didn&#8217;t stop Topher. So rather than releasing videos with translations as originally planned, he opted for text-based essays, which are easier and more cost-effective to create, translate, and download over low bandwidth.</p>\n\n\n\n<p><a href=\"https://heropress.com/essays/finding-your-place/\">Andrey â€œRarstâ€ Savchenko</a> wrote the first essay for HeroPress, and over time, it has become a beacon of hope for those seeking inspiration.</p>\n\n\n\n<a href=\"https://x.com/hellofromTonya/status/1844835198283743394\"><img width=\"2412\" height=\"1064\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-34.png\" alt=\"\" class=\"wp-image-175222\" /></a>\n\n\n\n<p>The global reach of HeroPress is reflected in the incredible diversity of its contributors: 278 essays have been published in 29 languages from 66 countries, featuring 136 women, 134 men, and 3 non-binary individuals.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>HeroPress has been a blessing in my life for ten years now. It has been a deep deep privilege to share the stories of WordPress with the world.&nbsp;</p>\n\n\n\n<p>Topher DeRosia</p>\n</blockquote>\n\n\n\n<p>As HeroPress turns 10, itâ€™s also looking for <a href=\"https://heropress.com/donate/\">financial support</a>. â€œHeroPress isnâ€™t just a website â€” itâ€™s a platform that brings hope and connection to the global WordPress community. Your financial support ensures that we can keep sharing these stories, helping to inspire more people through the power of WordPress,â€ said Topher DeRosia.</p>\n\n\n\n<p>You can also <a href=\"https://heropress.com/contribute/\">share your WordPress story </a>with HeroPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2024 03:55:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 6.7 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17984\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8279:\"<p id=\"block-3cf2f536-f167-464f-a4ba-07f45105e476\">WordPress 6.7 Beta 3 is now ready for testing!</p>\n\n\n\n<p id=\"block-b65e3bf0-0494-4039-a701-f21e505600ad\"><strong>This beta version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 3 on a test server and site.</p>\n\n\n\n<p id=\"block-e904322b-c488-4166-8312-0b769067b943\">You can test WordPress 6.7 Beta 3 in four ways:</p>\n\n\n\n<table class=\"has-fixed-layout\"><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-beta3.zip\">Beta 3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br /><code>wp core update --version=6.7-beta3</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=11b364fbffbab28d9127be91ee2d48f6645a6509%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 Beta 3 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup.&nbsp;</td></tr></tbody></table>\n\n\n\n<p id=\"block-93b754f0-e211-47b7-ac89-349d85c2f02f\">The current target date for the final release of WordPress 6.7 is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<p id=\"block-7b5d791d-225a-4623-83ee-19a586c7094b\"><strong>Catch up on what&#8217;s new in WordPress 6.7</strong>: Read the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-2/\">Beta 2</a> announcements for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-f1abd396-a019-4c9a-bcb8-9ac381a61ca1\">How to test this release</h2>\n\n\n\n<p id=\"block-92dfcab6-d2a8-4753-84ce-8ef7b6dd1e90\">Your help testing the WordPress 6.7 Beta 3 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7.</p>\n\n\n\n<p id=\"block-6519fad7-59ea-45f1-9b8f-ca14c09c865d\">If you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p id=\"block-4bd66b13-6784-4a4f-bb7a-b4dab8e5fc12\">Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-67b6a6c7-a95e-4b27-8946-a66d15105cb7\">Vulnerability bounty doubles during Beta/RC</h2>\n\n\n\n<p id=\"block-16175da3-84c9-45d0-b735-08a9d4453a14\">Between Beta 1, released on October 1, 2024, and the final Release Candidate (RC) scheduled for November 5, 2024, the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the projectâ€™s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-14306771-b240-4e15-948f-7504757bbb61\">Beta 3 updates and highlights</h2>\n\n\n\n<p id=\"block-93917d31-4478-45b5-b71c-1c8a1f49cc65\">WordPress 6.7 Beta 3 contains more than 26 Editor updates and fixes since the Beta 2 release, including 18 tickets for WordPress core.</p>\n\n\n\n<p id=\"block-ffdc1220-c2f5-4c23-982b-60c366c629d1\">Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 3 using these links:</p>\n\n\n\n<ul id=\"block-3fcf78c7-bebc-42e1-96f6-8b605ea23aae\" class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-09&until=2024-10-14\">GitHub commits for 6.7</a> since October 9, 2024</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F09%2F2024..10%2F14%2F2024&milestone=6.7&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets</a> since October 9, 2024</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-c414b25e-802f-4f29-a31c-9e13394a4947\">A Beta 3 haiku</h2>\n\n\n\n<p id=\"block-a0f155a2-19b3-4645-a516-c7ae56541e5f\">Code in motion hums,<br />New features bloom, bugs retreat,<br />6.7 calls.</p>\n\n\n\n<p id=\"block-014ab749-322b-44bd-bf4f-bf5817d90bfd\"><em>Props to <a href=\"https://profiles.wordpress.org/joedolson/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joedolson</a> and </em><a href=\"https://profiles.wordpress.org/jeffpaul/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jeffpaul</a><em> for proofreading and review, and haiku from&nbsp;<a href=\"https://wordpress.slack.com/team/U030RHV73\" target=\"_blank\" rel=\"noreferrer noopener\">@colorful-tones</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2024 00:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WordCamp Central: Beyond the Savannah: Join Us at WordCamp Nairobi 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=8222797\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://central.wordcamp.org/news/2024/10/beyond-the-savannah-join-us-at-wordcamp-nairobi-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8394:\"<h1 class=\"wp-block-heading\">Introduction</h1>\n\n\n\n<p>Kenya, a land of breathtaking contrasts, is renowned for its abundant wildlife, vibrant cultures, and welcoming smiles. In the heart of this diverse landscape lies Nairobi City, famously known as the Silicon Savannahâ€”home to one of Africaâ€™s most dynamic and engaging WordPress communities. In the midst of all this, WordCamp Nairobi 2024 will be held, marking the 8th annual gathering of WordPress enthusiasts, developers, and innovators in Kenya.</p>\n\n\n\n<p>This November, the Kenyan WordPress community invites you to join us in â€˜The City Under the Sunâ€™ as we come together for two days of learning, collaboration, and connection. WordCamp Nairobi 2024 promises to be a celebration of creativity, innovation, and the limitless possibilities of WordPress in Africa and beyond.</p>\n\n\n\n<h1 class=\"wp-block-heading\">The 2024 Theme:</h1>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2024/10/Blog-Image-3.jpg\"><img width=\"1024\" height=\"640\" tabindex=\"0\" src=\"https://central.wordcamp.org/files/2024/10/Blog-Image-3-1024x640.jpg\" alt=\"\" class=\"wp-image-8223263\" /></a>\n\n\n\n<p><strong><em>&#8216;Beyond the Savannah: Connecting the Kenyan WordPress Community to the World&#8217;</em></strong></p>\n\n\n\n<p>Our theme this year, â€œBeyond the Savannahâ€, symbolizes our commitment to expanding horizons and exploring WordPress&#8217;s limitless possibilities. We aim to bridge the gap between the Kenyan WordPress community and the international stage, fostering collaboration, knowledge sharing, and growth.</p>\n\n\n\n<p>Just as the Kenyan savanna is a vast and diverse landscape, so too is the world of WordPress. Our theme encourages us to venture beyond our comfort zones and discover new opportunities for growth and innovation.</p>\n\n\n\n<h1 class=\"wp-block-heading\">When Will it Happen and Where?</h1>\n\n\n\n<p>WordCamp Nairobi 2024 will take place on <strong>November 1st and 2nd, 2024</strong> at the <strong>Daystar University, Nairobi Campus Towers</strong>, located in the heart of Nairobi. This venue offers modern facilities and stunning views of the city skyline, providing an inspiring backdrop for two days of learning and networking.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f3db.png\" alt=\"ðŸ›\" class=\"wp-smiley\" /> Exciting News! WordCamp Nairobi 2024 will be at Daystar University, Nairobi Campus! This innovative venue is perfect for networking and learning.<br /><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/23f3.png\" alt=\"â³\" class=\"wp-smiley\" /> Donâ€™t wait! Limited tickets availableâ€”secure yours now! <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f39f.png\" alt=\"ðŸŽŸ\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f449.png\" alt=\"ðŸ‘‰\" class=\"wp-smiley\" /> <a href=\"https://t.co/uCHLG4QqdB\">https://t.co/uCHLG4QqdB</a><a href=\"https://twitter.com/hashtag/WCNBO24?src=hash&ref_src=twsrc%5Etfw\">#WCNBO24</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a>  <a href=\"https://twitter.com/hashtag/DaystarUniversity?src=hash&ref_src=twsrc%5Etfw\">#DaystarUniversity</a> <a href=\"https://t.co/ZxGgTcCagg\">pic.twitter.com/ZxGgTcCagg</a></p>&mdash; WordPress Kenya (@WordPress_Kenya) <a href=\"https://twitter.com/WordPress_Kenya/status/1844730970311631037?ref_src=twsrc%5Etfw\">October 11, 2024</a></blockquote>\n</div>\n\n\n\n<h1 class=\"wp-block-heading\">What to Expect: Speakers and Sessions</h1>\n\n\n\n<p>WordCamp Nairobi 2024 will feature a diverse lineup of local and international speakers, each bringing unique insights and expertise to the event. From experienced developers to creative designers, content creators, and entrepreneurs, our speakers will cover a wide range of topics relevant to the WordPress community.</p>\n\n\n\n<p>You can expect sessions on beginner workshops, advanced development, design and UX talks, business and marketing strategies, case studies, and much more.</p>\n\n\n\n<h1 class=\"wp-block-heading\">Sponsorship Opportunities</h1>\n\n\n\n<p>WordCamp Nairobi 2024 is made possible thanks to the generous support of sponsors. We offer a range of sponsorship opportunities that allow your brand to be part of the event while supporting the local WordPress community. <strong><a href=\"https://nairobi.wordcamp.org/2024/sponsors/call-for-sponsors/\">Become a sponsor today</a></strong> and help us make this event accessible to everyone.</p>\n\n\n\n<h1 class=\"wp-block-heading\">Nairobi Vibes and Accommodation</h1>\n\n\n\n<p>Nairobi, often called the â€œGreen City in the Sun,â€ is a vibrant fusion of cultures, energy, and modernity. From its rich cultural heritage and diverse people to local cuisines, buzzing nightlife, dynamic art and music scenes, lush nature parks, and bustling shopping hubs, Nairobi offers a unique blend of experiences. As a hub of <strong>tech and innovation</strong>, and with its pleasant year-round weather, Nairobi has something for everyone.</p>\n\n\n\n<p>If you&#8217;re traveling from outside Nairobi, there are several accommodation options near the venue, ranging from budget-friendly hotels to more luxurious stays. We recommend booking early to secure the best rates and proximity to Daystar University. <a href=\"https://nairobi.wordcamp.org/2024/travel/accomodation/\"><strong>Click here for detailed accommodation information</strong></a></p>\n\n\n\n<h1 class=\"wp-block-heading\">Tickets</h1>\n\n\n\n<p>Tickets for WordCamp Nairobi 2024 are now available! We offer <strong>General Admission</strong>, <strong>Microsponsor Support, </strong>and<strong> Student Admission</strong> tickets, ensuring that thereâ€™s a suitable option for everyone. All tickets include 2-day access to sessions, workshops, food, drinks, swag, and more. <strong><a href=\"https://nairobi.wordcamp.org/2024/tickets/\">Get your tickets now</a></strong> and join us for an unforgettable experience!</p>\n\n\n\n<h1 class=\"wp-block-heading\">Join Us at WordCamp Nairobi 2024!</h1>\n\n\n\n<p>WordCamp Nairobi 2024 is shaping up to be an unforgettable event filled with learning, collaboration, and exciting opportunities to connect with the WordPress community. Whether you&#8217;re new to WordPress or a seasoned professional, thereâ€™s something for everyone. From insightful sessions to hands-on workshops, networking with peers, and celebrating the unique energy of Nairobi, this event promises to be a highlight of the year.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">WordPress lovers, it\'s time! Grab your tickets for <a href=\"https://twitter.com/hashtag/WordCampNairobi2024?src=hash&ref_src=twsrc%5Etfw\">#WordCampNairobi2024</a> NOW! <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f39f.png\" alt=\"ðŸŽŸ\" class=\"wp-smiley\" /> Donâ€™t miss out on this incredible opportunity!<br />Click to book <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f449.png\" alt=\"ðŸ‘‰\" class=\"wp-smiley\" /><a href=\"https://t.co/O3tFfLDcU2\">https://t.co/O3tFfLDcU2</a><a href=\"https://twitter.com/hashtag/WNBO24?src=hash&ref_src=twsrc%5Etfw\">#WNBO24</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/TechEvents?src=hash&ref_src=twsrc%5Etfw\">#TechEvents</a> <a href=\"https://twitter.com/hashtag/NairobiTech?src=hash&ref_src=twsrc%5Etfw\">#NairobiTech</a> <a href=\"https://twitter.com/hashtag/WebDevelopment?src=hash&ref_src=twsrc%5Etfw\">#WebDevelopment</a> <a href=\"https://t.co/GsE5aQFHvl\">pic.twitter.com/GsE5aQFHvl</a></p>&mdash; WordPress Kenya (@WordPress_Kenya) <a href=\"https://twitter.com/WordPress_Kenya/status/1835704120864276554?ref_src=twsrc%5Etfw\">September 16, 2024</a></blockquote>\n</div>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Contact Us: nairobi@wordcamp.org</li>\n\n\n\n<li>Our Website: <a href=\"https://nairobi.wordcamp.org/2024/\">https://nairobi.wordcamp.org/2024/</a></li>\n\n\n\n<li>Tickets Info: <a href=\"https://nairobi.wordcamp.org/2024/tickets/\">https://nairobi.wordcamp.org/2024/tickets/</a>&nbsp;</li>\n\n\n\n<li>Sponsorship Opportunities: <a href=\"https://nairobi.wordcamp.org/2024/sponsors/call-for-sponsors/\">https://nairobi.wordcamp.org/2024/sponsors/call-for-sponsors/</a>&nbsp;</li>\n\n\n\n<li>Join the Talks: #WCN24 #WordCampNairobi #WordPressKenya</li>\n</ul>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2024 19:08:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeremy Kabaya\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Do The Woo Community: Team Members Video, During a Call, Off or On?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86083\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://dothewoo.io/blog/team-members-video-during-a-call-off-or-on/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7945:\"<p>As an agency or a service, you are on Zoom, Google Meets, etc. having those calls with your team. Small and large.</p>\n\n\n\n<p>The question is. </p>\n\n\n\n<p>Should there be a rule for video on or off?</p>\n\n\n\n<p>There were a couple of things that prompted this thought with me. One was a podcast episode from <strong>Woo AgencyChat</strong> and another from a post our host Katie Keith shared on X.</p>\n\n\n\n<img width=\"1024\" height=\"526\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2024/10/2024-10-13-1.32.45%E2%80%AFPM.png?resize=1024%2C526&ssl=1\" alt=\"\" class=\"wp-image-86086\" />\n\n\n\n<p><a href=\"https://x.com/KatieKeithBarn2/status/1844018227736625500\">You can see all the replies and the conversation here. </a></p>\n\n\n\n<p>Here is a summary of those responses.</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Mixed rules depending on context:</strong> Some companies have expectations for cameras to be on during scheduled meetings but allow flexibility for unscheduled or informal calls. For example, some prefer cameras on for important discussions, but may allow them off in situations like unscheduled meetings or when someone is not prepared.</li>\n\n\n\n<li><strong>Cultural expectations:</strong> Many teams don&#8217;t have strict rules but generally encourage cameras to be on. Some teams naturally default to cameras on because it&#8217;s become part of the company culture, while others leave it to individual preference.</li>\n\n\n\n<li><strong>Flexibility is key:</strong> Several respondents suggest a &#8220;soft rule&#8221; where cameras are encouraged but exceptions are understood (e.g., someone is unwell, internet issues, or self-consciousness). Some also suggested having cameras on at the start to ensure attention but allowing them off later.</li>\n\n\n\n<li><strong>Cameras for communication:</strong> Many argue that having the camera on improves communication, trust, and engagement by allowing facial cues to be seen, though some disagree and suggest that itâ€™s not always necessary for effective communication.</li>\n\n\n\n<li><strong>Empathy and personal boundaries:</strong> Some responses highlight the importance of understanding personal preferences and comfort levels. Leaders are advised to meet people where they are and not force cameras on, which could create pressure or anxiety.</li>\n\n\n\n<li><strong>Job context matters:</strong> For specific situations like interviews or client-facing calls, many agree that cameras should be on. However, for internal team meetings, it&#8217;s seen as less critical unless it helps foster better engagement.</li>\n\n\n\n<li><strong>Respect and engagement:</strong> Thereâ€™s a sentiment that having the camera on is a way of showing respect to the team and being fully present in meetings, as it helps with connection and understanding.</li>\n\n\n\n<li><strong>Other considerations:</strong> Some suggested improving audio quality or offering a compromise like sharing a headshot if the camera is off. Others mentioned that if cameras are optional, it can create misunderstandings, and there should be clarity on expectations.</li>\n</ol>\n\n\n\n<div class=\"wp-block-group has-border-color has-light-gray-background-color has-background has-small-font-size has-global-padding is-layout-constrained wp-container-core-group-is-layout-5 wp-block-group-is-layout-constrained\">\n<p class=\"has-secondary-color has-text-color has-link-color wp-elements-f0a1ab971f9dce87252b162a11a595d4\">Thanks to our sponsor&#8230;</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-4 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-3 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group has-base-background-color has-background wp-container-content-1 has-global-padding is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-2 wp-block-group-is-layout-constrained\">\n<img width=\"600\" height=\"600\" tabindex=\"0\" src=\"https://i0.wp.com/dothewoo.io/wp-content/uploads/2022/10/GoDaddy-square.png?resize=600%2C600&ssl=1\" alt=\"GoDaddy\" class=\"wp-image-75131\" />\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-container-content-2\"> <strong><a href=\"https://godaddy.com\">GoDaddy</a></strong>: Build your clients sites using the flexibility of a <strong>Managed WooCommerce Store from GoDaddy</strong>. If you clients are looking to expand their store, you can deliver them a fully-customized WooCommerce site.</p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<h3 class=\"wp-block-heading\">And then there are cases like this. </h3>\n\n\n\n<p>He had&nbsp;<strong>Joe Riviello, founder of Zen Agency</strong> on Woo AgencyChat. He is also a cardiovascular perfusionist while running his agency.</p>\n\n\n\n<p>Joe talked about a very interesting situation around the case of, video off or on.</p>\n\n\n\n<p>&#8220;The majority of my staff, our leadership, is very experienced. I try to vet everyone who comes through the door, all of our staff, and I try to hire people who have many years of experience&#8230;. About two weeks ago, we hired a gentlemanâ€”I wonâ€™t say any namesâ€”who was really an experienced SEO. He wasnâ€™t really in the whole e-commerce realm but was an experienced SEO. Thatâ€™s a portion that weâ€™re really trying to build out in our agency. We see good opportunities there, especially utilizing AI in that space. </p>\n\n\n\n<p>So anyway, we hired this guy. I vetted him, I hired him, and he started last week. Everything seemed to be going great. I was on vacation last week, so I didnâ€™t really get any face-to-face time with him, but this week I did. I had face-to-face time with him yesterday, along with the rest of my marketing team. We had a group meeting, and his face wasnâ€™t on the Google Meet, though it normally was when I was interviewing him and discussing the role. Anyway, I could tell something was not right; I could just tell. As we were in the meeting, I went into my G Suite, and I looked up his IP address and saw an IP address from the Philippines.</p>\n\n\n\n<p>So that raised a red flag. I asked him to show his face, and he wouldnâ€™t show his face. He said he had to restart his computer. So I said, â€œWell, you know what? Instead of showing your face, just tell me your birthday,â€ because I knew his birthday from a background check that we ran on him. He couldnâ€™t say his birthday. He just dropped off. </p>\n\n\n\n<p>So immediately at that moment, I picked up my phone and called this guy, and he answered the phone while he was in the meeting with me. â€œHey Joe, howâ€™s it going?â€ So I knew something was up, and I would not stop, man. I just kept grinding, trying to get it out of him. It turns out he was working a couple of different jobs in the same role, but who knows if it was even him doing the work or not. </p>\n\n\n\n<p>I know one of his previous employersâ€” it definitely was not him doing the work because I phoned them, and now apparently he no longer has a job there either.&#8221; So again, Iâ€™m not going to mention any names, but that was an interesting day yesterday and part of my morning today.&#8221;</p>\n\n\n\n<h3 class=\"wp-block-heading\">A unique case but&#8230;</h3>\n\n\n\n<p>Now I admit this is not typical, and also this was a recent hire. But still, one can have definitive ideas of video camera etiquette, and you still need to be prepared for those unusual moments. Also, a great lesson learning in hiring remotely.</p>\n\n\n\n<p>You can read the transcript or listen to the full episode, <strong><a href=\"https://dothewoo.io/balancing-careers-and-agency-evolution-with-joe-riviello/\">Balancing Careers and Agency Evolution with Joe Riviello</a></strong></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2024 11:52:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: State of Enterprise WordPress 2024 Survey is Now Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=175111\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/state-of-enterprise-wordpress-2024-survey-is-now-open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2103:\"<p>The 2024 <a href=\"https://soewp.com/\">State of Enterprise WordPress Survey</a> is now open. This marks the second year Big Bite, a UK-based enterprise WordPress agency, is conducting this survey.</p>\n\n\n\n<p>Last year, over 100 prominent organizations using WordPress, including Macyâ€™s, New Statesman Media Group, and The Times, participated. The <a href=\"https://soewp.com/2023-report/\">2023 report</a> highlighted how enterprises monetize their websites, with 9 out of 10 respondents planning to continue using WordPress due to high satisfaction. Additionally, nearly three-quarters of the brands surveyed rated the return on investment from their WordPress sites as good or excellent.</p>\n\n\n\n<p>This yearâ€™s survey aims to build on these insights by gathering more data on usage patterns, customization trends, budget allocations, and the challenges enterprise brands face with WordPress. The survey takes about 6 minutes to complete and covers topics such as enterprise profiles, WordPress usage and selection, costs, maintenance, and future plans of enterprises.</p>\n\n\n\n<p>Iain McPherson, CEO of Big Bite, commented: â€œThe findings from the 2023 survey paint a very positive picture of enterprise WordPress, with almost three quarters of respondents stating that theyâ€™d be very likely to recommend the platform to other large-scale organizations. This signals that weâ€™ll see even more major brands adopting WordPress in the coming months and years, however itâ€™s crucial that we donâ€™t rest on our laurels.&#8221;</p>\n\n\n\n<p>He continued, &#8221; By releasing State of Enterprise WordPress as an annual report, we want to create an ongoing dialogue with as many enterprise users as possible, ensuring that the wider WordPress ecosystem can continue to evolve and meet the needs of large-scale brands.â€</p>\n\n\n\n<p>Enterprise organizations using WordPress or those with an enterprise-level solution are invited to <a href=\"https://bigbitesurveys.typeform.com/soewp2024\">take the survey</a> and share their experiences through the end of October. All responses will remain confidential.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2024 04:35:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: ACF Plugin Forked to â€˜Secure Custom Fieldsâ€™ Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=175027\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/acf-plugin-forked-to-secure-custom-fields-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13647:\"<p>Yesterday, WordPress co-founder Matt Mullenweg <a href=\"https://wordpress.org/news/2024/10/secure-custom-fields/\">announced</a> the forking of the Advanced Custom Fields (ACF) plugin into a new plugin called <a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">Secure Custom Fields</a>.</p>\n\n\n\n<p>In the announcement, he stated: â€œOn behalf of the <a href=\"https://wordpress.org/about/security/\">WordPress security team</a>, I am announcing that we are invoking <a href=\"https://github.com/wordpress/wporg-plugin-guidelines/blob/trunk/guideline-18.md\">point 18 of the plugin directory guidelines</a> and are forking Advanced Custom Fields (ACF) into a new plugin, Secure Custom Fields. <strong>SCF has been updated to remove commercial upsells and fix a security problem</strong>.â€</p>\n\n\n\n<a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/#18-we-reserve-the-right-to-maintain-the-plugin-directory-to-the-best-of-our-ability\"><img width=\"2104\" height=\"1526\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-30.png\" alt=\"Point 18 of Plugin Directory Guidelines \" class=\"wp-image-175066\" /></a>Point 18 of Plugin Directory Guidelines \n\n\n\n<p>The post went on to explain, â€œ<strong>This update is as minimal as possible to fix the security issue. </strong>Going forward, Secure Custom Fields is now a <strong>non-commercial plugin</strong>, and if any developers want to get involved in maintaining and improving it, please get in touch. Similar situations have happened before, but not at this scale. This is a rare and unusual situation brought on by WP Engineâ€™s legal attacks, we do not anticipate this happening for other plugins.â€</p>\n\n\n\n<img width=\"2110\" height=\"1448\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-25.png\" alt=\"SCF Plugin Changelog\" class=\"wp-image-175053\" />SCF Plugin Changelog\n\n\n\n<a href=\"https://x.com/WordPress/status/1845180875798884632\"><img width=\"2110\" height=\"798\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-29.png\" alt=\"\" class=\"wp-image-175060\" /></a>\n\n\n\n<p>The ACF plugin is popular among web developers for its capabilities in customizing edit screens and managing custom field data. However, it has become <a href=\"https://wptavern.com/impact-of-wpengines-ban-on-acf-plugin\">embroiled in a dispute between Automattic and WP Engine</a>, its owner. Following <a href=\"https://wptavern.com/wp-engine-banned-from-using-wordpress-org-resources\">WP Engine&#8217;s ban</a>, the ACF team was <a href=\"https://x.com/wp_acf/status/1841843084700598355\">blocked</a> from accessing WordPress dot org on October 03, 2024.</p>\n\n\n\n<p>Next, Automattic tweeted about a vulnerability in the plugin. The tweet was later deleted. In response, the ACF team released <a href=\"https://www.advancedcustomfields.com/blog/acf-6-3-8-security-release/\">ACF 6.3.8</a>, a routine security release stating, â€œWP Engine remains blocked from accessing our plugins on the .org plugin repository and therefore this update has been shipped to WP Engineâ€™s repository and to the ACF website.â€, they said.</p>\n\n\n\n<p>The ACF team also provided a copy of this update to the WordPress.org Security team, which posted it to the plugin repository.</p>\n\n\n\n<p>On October 9, a <a href=\"https://wptavern.com/wordpress-org-login-gets-mandatory-affiliation-checkbox-following-wp-engine-dispute\">mandatory affiliation checkbox</a> was added to the WordPress.org login. Users could access their accounts only after confirming, â€œI am not affiliated with WP Engine in any way, financially or otherwise.â€</p>\n\n\n\n<h3 class=\"wp-block-heading\">WP Engine Reacts</h3>\n\n\n\n<p>WP Engine <a href=\"https://x.com/wp_acf/status/1845169499064107049\">tweeted</a>: â€œWe have been made aware that the Advanced Custom Fields plugin on the WordPress directory has been taken over by WordPress dot org. A plugin under active development has never been unilaterally and forcibly taken away from its creator without consent in the 21 year history of WordPress&#8230; This essential community promise has been violated, and we ask everyone to consider the ethics of such an action, and the new precedent that has been set.â€Â Â </p>\n\n\n\n<p>They <a href=\"https://x.com/wp_acf/status/1845247349276148208\">added</a>: â€œWe were saddened and appalled by Matt Mullenwegâ€™s actions this morning appropriating the Advanced Custom Fields plugin that our ACF team has been actively developing for the WordPress community since 2011.â€</p>\n\n\n\n<p>In response, WordPress.org <a href=\"https://x.com/WordPress/status/1845179941727690824\">noted</a> that this is not the first occurrence of such an incident: â€This has happened several times before, and in line with the <a href=\"https://github.com/wordpress/wporg-plugin-guidelines/blob/trunk/guideline-18.md\">guidelines you agreed to by being in the directory</a>. Best of luck with your version. We&#8217;re looking forward to making ours amazing for our users, using the best GPL code available.â€Â </p>\n\n\n\n<p>In a <a href=\"https://www.advancedcustomfields.com/blog/acf-plugin-no-longer-available-on-wordpress-org/\">blog post</a> on the ACF website, the team shared, â€œThe change to our published distribution, and under our â€˜slugâ€™ which uniquely identifies the ACF plugin and code that our users trust in the WordPress.org plugin repository, is inconsistent with open source values and principles.&nbsp; The change made by Mullenweg is maliciously being used to update millions of existing installations of ACF with code that is unapproved and untrusted by the Advanced Custom Fields team.â€</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Advanced Custom Fields is a sophisticated plugin with over 200,000 lines of code, which we continually develop, enhance, support and invest in to meet the needs of our users across WordPress.Â  Weâ€™ve made 15+ releases over the past two years, since joining WP Engine, and added significant new functionality to the free plugin as well as continually improving performance and our security and testing practices to meet the â€˜enterprise gradeâ€™ that our users deserve.â€</p>\n\n\n\n<p>Iain Poulson</p>\n</blockquote>\n\n\n\n<p>The post concludes, â€œMullenwegâ€™s actions are extraordinarily concerning and pose the grave risk of upending and irreparably harming the entire WordPress ecosystem.&nbsp; His attempt to unilaterally take control of this open platform that we and so many other plugin developers and contributors have relied on, in the spirit of sharing plugins for all, provides further evidence of his serious abuse of trust, manifold conflicts of interest, and breach of the promises of openness and integrity in the community.â€</p>\n\n\n\n<h3 class=\"wp-block-heading\">Impact of the Fork&nbsp;</h3>\n\n\n\n<p>This development does not affect WP Engine, Flywheel hosting, or ACF PRO customers. Free plugin users can choose to install <a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">Secure Custom Fields from the plugin directory</a> or the ACF 6.3.8 version from <a href=\"https://www.advancedcustomfields.com/blog/installing-and-upgrading-to-the-latest-version-of-acf/\">advancedcustomfields.com</a>. For sites with auto-updates enabled through WordPress.org, the update will automatically transition them from Advanced Custom Fields to Secure Custom Fields.</p>\n\n\n\n<p>The WordPress community is no stranger to forking; for instance, WordPress itself was forked from the b2/cafelog project, and ClassicPress was forked in response to the introduction of Gutenberg. However, the forking of the ACF plugin has sent shockwaves through the community, raising ethical questions about the decision.</p>\n\n\n\n<p>Interestingly, the Securecustomfields.com domain currently redirects to the ACF website, as highlighted by <a href=\"https://x.com/kellie/status/1845232004750770636\">Kellie Peterson</a> on X.</p>\n\n\n\n<p>The community has expressed their support and criticisms about this forking.  The previous reviews of the ACF plugin are still visible under the <a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">Secure Custom Fields</a> plugin. Following the announcement, several members posted both positive and negative reviews about the plugin in the repository while others took to X.</p>\n\n\n\n<a href=\"https://wordpress.org/plugins/advanced-custom-fields/#reviews\"><img width=\"500\" height=\"369\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-20-500x369.png\" alt=\"\" class=\"wp-image-175044\" /></a>SCF Reviews from Plugin Repository\n\n\n\n<p>Colin Stewart <a href=\"https://x.com/cost_dev/status/1845213012954591601\">tweeted</a>: â€œIn light of today&#8217;s news, since I mentioned in my previous post that I&#8217;m a member of the WordPress Security Team before anyone asks me: No, I was not aware.â€ Justin Sainton also <a href=\"https://x.com/JS_Zao/status/1845245386862268521\">tweeted </a>along the same lines: â€œI do not love it. (Speaking independently, as a member of the Plugin Review Team)â€</p>\n\n\n\n<p>Several people also pointed out that ACF&#8217;s logos are still there in the new plugin, while WP Engine logos are still in the assets folder, while others referred to the post published by the Plugin Review Team <a href=\"https://make.wordpress.org/plugins/2021/02/16/reminder-forked-premium-plugins-are-not-permitted/\">Forked Premium Plugins Are Not Permitted</a>.</p>\n\n\n\n<a href=\"https://x.com/richardhyland/status/1845216757352468777\"><img width=\"2890\" height=\"978\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-21.png\" alt=\"\" class=\"wp-image-175046\" /></a>\n\n\n\n<a href=\"https://x.com/BFTrick/status/1845172736785850698\"><img width=\"2888\" height=\"1028\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-22.png\" alt=\"\" class=\"wp-image-175049\" /></a>\n\n\n\n<a href=\"https://x.com/techandtrading/status/1845467669727736099\"><img width=\"1816\" height=\"586\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-31.png\" alt=\"\" class=\"wp-image-175071\" /></a>\n\n\n\n<a href=\"https://x.com/DanielW_Kiwi/status/1845299674665865524\"><img width=\"2926\" height=\"1082\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-24.png\" alt=\"\" class=\"wp-image-175051\" /></a>\n\n\n\n<a href=\"https://x.com/interesting_op/status/1845187104516489466\"><img width=\"2114\" height=\"770\" tabindex=\"0\" src=\"https://wptavern.com/wp-content/uploads/2024/10/image-28.png\" alt=\"\" class=\"wp-image-175058\" /></a>\n\n\n\n<p>The creator of Ruby on Rails, David Heinemeier Hansson, published <a href=\"https://world.hey.com/dhh/open-source-royalty-and-mad-kings-a8f79d16\">Open source royalty and mad kings</a>. WP And Legal Stuff published <a href=\"https://wpandlegalstuff.com/the-acfscf-fork-and-legal-risk/\">ACF>SCF â€˜forkâ€™ and legal risk</a>. </p>\n\n\n\n<p>Tim Nash, a WordPress security consultant, has published an <a href=\"https://timnash.co.uk/advisory-advanced-custom-fields-changes/\">advisory about the ACF changes</a>, while James Giroux published <a href=\"https://jamesgiroux.ca/acf-gets-a-fork-by-wordpress-org/\">ACF Gets A Fork By WordPress.org</a> where he says â€œWhile emotions are high, this move highlights the importance of maintaining the security and integrity of WordPressâ€™s ecosystem. Forking under the GPL is not unprecedented, and this action reinforces the need for WP Engine/Silver Lake to negotiate in good faith.â€</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other Forks</h3>\n\n\n\n<p>In a blog post titled <a href=\"https://wordpress.org/news/2024/10/spoon/\">Forking is Beautiful</a>, Matt mentioned two recent WordPress fork attempts &#8211; <strong>FreeWP &amp; AspirePress</strong>. </p>\n\n\n\n<p>About Vinny Green&#8217;s <a href=\"https://freewp.com/\">FreeWP</a>, Matt said: &#8220;We strongly encourage anyone who disagrees with the direction WordPress is headed in to join up with Vinny and create an amazing fork of WordPress. Viva FreeWP!&#8221;</p>\n\n\n\n<p>In response, Vinny took to <a href=\"https://x.com/vinnysgreen/status/1844488053060141233\">X to clarify</a>: &#8220;I love how I never said I was going to fork the project and only wanted to support those who did. Matt is incredible at only hearing the things he wants to hear. Thanks for the free promotion, I guess. We in the biz called that earned media.&#8221;</p>\n\n\n\n<p>The <a href=\"https://freewp.com/faq/\">FAQ section</a> in the FreeWP website has more details about the project: &#8220;To the best of our knowledge, it is a website that starts with â€œfreewpâ€ and ends with â€œ.comâ€. Any further details are at the discretion of the individual who manages it.&#8221; </p>\n\n\n\n<p>&#8220;Whatâ€™s FreeWP then? Besides a more pleasant depiction of the domain? Its burgeoning project that is dedicated to the following mission:Â Coming soon. And not a fork.&#8221; </p>\n\n\n\n<p>So you guessed its status! But you can sign up now to get updates. </p>\n\n\n\n<p><a href=\"https://aspirepress.org/\">AspirePress</a>, on the other hand, is a loosely collected group of volunteers that offer their support to the WordPress platform and it &#8220;exists to be a community of individuals focused on helping WordPress become the platform we all aspire for it to be.&#8221;</p>\n\n\n\n<p>They are building a <a href=\"https://aspirepress.org/a-vision-for-aspirepress-and-a-community-run-org-mirror/\">mirror of WP .org</a> and <a href=\"https://x.com/AspirePressOrg/status/1845280032228331818\">tweeted</a>: &#8220;In case we have&#8217;t been crystal clear, we <strong>have not</strong> forked WordPress. Rumors to the contrary are exaggerations.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 13 Oct 2024 17:57:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"Gutenberg Times: Gutenberg Changelog #109 â€“ Gutenberg 19.4, Creating a Block Theme, Responsive Navigation Block Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=30411\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-109-a-responsive-navigation-block/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68591:\"<p>In this episode, Birgit Pauli-Haack and Anne Katzeff discuss Gutenberg 19.4, Creating a Block Theme, Responsive Navigation Block Plugin, and more.</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-109-a-responsive-navigation-block/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-109-a-responsive-navigation-block/#transcript\">Transcript</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special guest: Anne Katzeff</h2>\n\n\n\n<ul class=\"wp-block-social-links is-layout-flex wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-linkedin  wp-block-social-link\"><a href=\"https://www.linkedin.com/in/annekatzeff/\" class=\"wp-block-social-link-anchor\"><span class=\"wp-block-social-link-label screen-reader-text\">LinkedIn</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-x  wp-block-social-link\"><a href=\"https://x.com/ASKDesign2\" class=\"wp-block-social-link-anchor\"><span class=\"wp-block-social-link-label screen-reader-text\">X</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress  wp-block-social-link\"><a href=\"https://profiles.wordpress.org/askdesign/\" class=\"wp-block-social-link-anchor\"><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a href=\"https://www.instagram.com/annekatzeff_askdesign/\" class=\"wp-block-social-link-anchor\"><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.askdesign.biz/blog/2024/01/building-my-first-wordpress-block-theme-part-1/\">Building My First WordPress Block Theme &#8211; part 1</a></li>\n\n\n\n<li><a href=\"https://www.askdesign.biz/blog/2024/02/building-my-first-wordpress-block-theme-part-2-navigation/\">Building My First WordPress Block Theme â€“ part 2: Navigation</a></li>\n\n\n\n<li><a href=\"https://www.askdesign.biz/blog/2024/04/building-my-first-wordpress-block-theme-part-3-header/\">Building My First WordPress Block Theme &#8211; part 3: Header</a></li>\n\n\n\n<li><a href=\"https://www.askdesign.biz/blog/2024/09/building-my-first-wordpress-block-theme-part-4-child-themes/\">Building My First WordPress Block Theme â€“ part 4: Child Themes</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Announcements</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-2/\">WordPress 6.7 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">Help Test WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://www.wpgraphql.com/\">WPGraphQL</a></li>\n\n\n\n<li><a href=\"https://www.wpgraphql.com/2024/10/07/wpgraphql-becomes-a-canonical-plugin-my-move-to-automattic\">WPGraphQL Becomes a Canonical Plugin</a></li>\n\n\n\n<li>Developer Hours: <a href=\"https://www.youtube.com/watch?v=6lBIkf3xNDw\">How to Simplify Client Editing in WordPress</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Community Contributions</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/plugins/getdave-responsive-navigation-block/\">Responsive Navigation Block</a> (Plugin) </li>\n\n\n\n<li>Video: <a href=\"https://www.youtube.com/watch?v=R5kzAaEsDMg\">Responsive MOBILE MENU using the WORDPRESS Navigation block</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=0lKBhwFqAds\">Video: WordPress Mobile Menus Fixed in 3 Minutes!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg 19.4</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2024/10/09/whats-new-in-gutenberg-15-9-31-may-2/\">Whatâ€™s new in Gutenberg 19.4? (9 Oct)</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Whatâ€™s in active development or discussed</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Twenty-Twenty-Five Default Theme</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/twentytwentyfive\">GitHub repo</a></li>\n\n\n\n<li><a href=\"https://2025.wordpress.net\">Demo Site </a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hello and welcome to our 109th episode of the Gutenberg Changelog Podcast. In today&#8217;s episode, we will talk about Gutenberg 19.4, creating a block theme, Responsive Navigation Block plugin, and more.</p>\n\n\n\n<p>I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time Core contributor for the WordPress Open Source Project sponsored by Automattic.</p>\n\n\n\n<p>Today I&#8217;m delighted to team up with Anne Katzeff once more to spread the joy of WordPress. Anne is a theme developer who has embraced block themes and posts regularly in the Outreach channel with questions that helps others as well. Anne and I, we met in Florida, and we are co-organizers of the local WordPress Meetup. And she became a dear friend. Welcome to the show, Anne. How are you today?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Hi, Birgit. It&#8217;s great to see you. Always enjoy talking with you. I&#8217;m doing well today. Thank you. How about yourself?</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>I&#8217;m doing well. I finally got over my cold. I might still sound a little horsey like the last episode, and I apologize for that. I didn&#8217;t know until I listened to how bad it actually was.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Creating a Block Theme<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>Yeah. So Anne, you shared your learning on building your first block theme in a series of blog posts. So let me go right in there. What were your biggest wins looking back in your approach of building themes?</p>\n\n\n\n<p><em>Anne Katzeff</em>: All right, let&#8217;s dive right in. As I was reviewing it, I realized that way back, the seed of it was being invited to be a test case for the Create Block Theme plugin. And a couple of folks on that development team zoomed in with me and watched me live use the plugin my first time using it. So I didn&#8217;t know anything, it was really interesting for all of us because there was this learning curve and they were trying not to interfere and ask questions. So I was a tester and they monitored me, and that experience gave me the confidence to start exploring block theme design. And so I was quickly a fan of the Create Block Theme plugin. The very first clear takeaway for me at that time, it was still part the font embedment was still part of that plugin, and it&#8217;s now been introduced into Core. And I think that&#8217;s part of what the plugin&#8217;s role is is to serve as an exploration platform. And those features that people really find useful are gradually taken into Core and become part of that.</p>\n\n\n\n<p>So that was the first one. And then creating a child theme. So I&#8217;ve always created child themes, I know how to do them in various ways. But to just have that one button to do it was like, &#8220;Oh, yay.&#8221; And then I went through a series of pain points as I was starting to&#8230; I was actually working on a real site and doing all this for the first time with block themes. So I got familiar with Global Settings, and my first pain point was the content and wide measurements. I didn&#8217;t understand that, so I had to play around with that and wrap my brain around it. And then segueing from there into the group layout settings, that was a real pain point for me. It was like, &#8220;What? What are you talking about?&#8221; So all these new concepts. And for me to learn these things, I just play around. I&#8217;m not afraid to make mistakes, so I just try this, try that.</p>\n\n\n\n<p>I got a feeling for how all those things work, found the connection between nested or group blocks and the width characteristics within them. And I realized, God, there&#8217;s so much flexibility in this building of block themes. So then I went on to navigation, another pain point for me. It really was a completely different way of constructing a menu. So that took a lot of exploration, a lot of challenges. And I think I figured it out logistically how to add the pages and posts. That wasn&#8217;t the problem. The problem was more how to style it. So in Global Settings you have your typography, your colors, and your layout. And I saw colors, links, just weren&#8217;t really applying to what was happening in the navigation. So I gradually discovered that you have to go into the template or rather the template part. Let me look at my notes because I had to review all this yesterday like, &#8220;Okay, so how does this work?&#8221;</p>\n\n\n\n<p>Yeah, it&#8217;s styled in the block of a nav pattern, which is my process, and then that&#8217;s placed into a template.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So say that again. Your process is to create a pattern, put the navigation block in there, and then add that pattern to a header.</p>\n\n\n\n<p><em>Anne Katzeff:</em> To a header. Yeah. Right. So in case, because of the synced part of the pattern, we wanted to be able to edit it globally, I think. This is months ago, so I&#8217;m trying to remember what was it that I figured out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> So I think that&#8217;s what I did. And I just sort of stumbled, gradually stumbled on to how to style the navigation and the hover. I think there may be a hover now, not positive about this, but at the time I had to use custom CSS.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. For the link, there is now a hover feature in the Global Style. So you could always do it via the theme.json file. Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> True. Right.</p>\n\n\n\n<p><em>Birgit Pauli-Haa</em>ck: So you kind of ventured out to create or design the theme right in the Site Editor. And kind of setting up your, first, your color palettes, then your typography, and then the layouts. So that&#8217;s the width that the wide widths kind of thing. And then you try to do the header and the navigation and everything in a child theme. Is that kind ofâ€¦.</p>\n\n\n\n<p><em>Anne Katzeff:</em> You got it. Yeah. So theme.json was a new language for me. I know HTML and CSS, so I didn&#8217;t want to dive into that cold. So I&#8217;m using the full Site Editor as a bridge, and that was also part of my learning curve and my still part of my process is to use the full Site Editor, make all my customiza&#8230; or as many customizations in there that I can along with occasional CSS. See, I come into it with, I&#8217;m a custom CSS girl, but I realized quickly, &#8220;Oh, I don&#8217;t need to do that anymore. There&#8217;s really no need for that style CSS file aside from registering the theme.&#8221; So a little tweak in my process there. And finally, when things are looking good or a certain milestone, I&#8217;ll save the changes to the theme. Now, I had a lot of trepidation about doing this. I couldn&#8217;t breathe the first time I did it because I wasn&#8217;t sure what exactly is going to happen.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Is my theme going to go away?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Is my theme going to disappear? So I took the leap and did it, and then I exported that theme. And that was a big light bulb for me. Then I realized, &#8220;Oh, if I do that, then I can do version control.&#8221; Because I have control over the theme files. Once you save what&#8217;s done in the full Site Editor, once you save it to the theme, it takes those from the database and puts them into the theme files. That was the key for me. I&#8217;m still doing it that way. That&#8217;s where I&#8217;m at today.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So that&#8217;s where you are today. So did you create new templates for your theme or for that client site?</p>\n\n\n\n<p><em>Anne Katzeff:</em> I probably did. Let me see. Oh yeah, for the blog part, yes, I absolutely did. So I used Twenty Twenty Four as my parent theme, and it comes packaged with certain patterns and options for the blog.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Okay, yeah. And then now I understand it. So the child theme you took from Twenty Twenty-Four.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And then you modified it with the colors and the typography and all the others?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Cool, cool, cool. So the listeners, you can read up about that on Anne Katzeff&#8217;s blog where she has four parts and really goes into the details on how she managed the navigation and the header and why child theme and all that.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah. I wasn&#8217;t sure how many parts it would turn into.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right.</p>\n\n\n\n<p><em>Anne Katzeff</em>: So I didn&#8217;t ever say part one of blah, blah, blah, but I think four parts, that&#8217;s it.</p>\n\n\n\n<p>Birgit Pauli-Haack: Yeah, right now, that&#8217;s what I found on your blog. I watched it kind of growing a bit and feeling that. You said that you had to try a lot of trial and error to kind of figure things out. How do you feel about creating your second block theme?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Much better, much more comfortable. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>What would you start first with? What would you start with?</p>\n\n\n\n<p><em>Anne Katzeff</em>: Well, strangely enough, the very first time I did all this, created my first block theme, I actually forgot to create the child theme. So I was moving along in Twenty Twenty Four, making all these modifications, and then I realized, &#8220;Oh, I have to make my child theme.&#8221; So I wasn&#8217;t sure again what will happen if I do that. So I basically started from scratch because I didn&#8217;t want to mess up anything. So now it&#8217;s so crazy, Birgit, because that&#8217;s always the first step for me is to create a child theme. And I know a lot of people just would take the parent theme Twenty Twenty Four, whatever it is they want to modify and run with it. And that&#8217;s a perfectly fine way to do it too. It&#8217;s just that I like to know that my customizations will stick if the Twenty Twenty Four theme is updated. And indeed it has been updated.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>Anne Katzeff</em>: What was the question? Oh, was it easier? Yes, definitely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And what would be your first step that&#8230; From the trial and error, what are the learnings kind of? How would you approach it now, apart from creating the child theme first?</p>\n\n\n\n<p><em>Anne Katzeff</em>: Yeah, I would do pretty much what I&#8217;ve already done the first time. So I&#8217;d go into the child theme is being modified. I&#8217;d go through the full Site Editor and modify my Global Settings, tackle my navigation almost right away probably after my Global Settings with typography, choosing the font and colors. And determining what that inner content width should be because I think the default is 840 maybe, and that&#8217;s a little too narrow for me. Yeah. So I make it a little bit wider. I try to stick with what works and not mess around too much.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So you want your theme to be connected with the Twenty Twenty-Four, so when that gets updated, your theme gets updated too, but you keep the modifications from-</p>\n\n\n\n<p><em>Anne Katzeff:</em> Exactly. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> But the Create Block Theme plugin also gives you two more choices. One is to clone the current theme.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So then you make it a new theme, which is not, it&#8217;s detached from Twenty Twenty-Four. And the other one is that you can start a theme from scratch. It&#8217;s not entirely from scratch, but you get the bare minimum on templates and hardly any presets for that. So you can kind of go into the theme.json or in your Site Editor and start from a white background pretty much.</p>\n\n\n\n<p><em>Anne Katzeff</em>: Yep.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So you don&#8217;t have, I&#8217;m not quite sure what the trigger would be to actually use a child theme with that setting, because if you can clone it, then you get it. But then the updates from Twenty Twenty-Four, you wouldn&#8217;t get.</p>\n\n\n\n<p><em>Anne Katzeff:</em> I think I do it with client work as a good fallback for them, a safety net.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm.</p>\n\n\n\n<p><em>Anne Katzeff: </em>If I were designing a theme to submit to the repository, I would probably use the clone feature and not worry so much about any updates because it would be a standalone theme. So that&#8217;s kind of the delineation for me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Okay, cool. Yeah, no, I find that very interesting to talk to theme developers and how they&#8230; So what are the new concepts that you find easier now that you went through both of them? The classic theme, you&#8217;re a long time classic theme developer and now building block themes. What was the shift? Do you need to think a little bit differently with something?&nbsp;</p>\n\n\n\n<p><em>Anne Katzeff:</em> Well, as a user of block themes, that was an easy transition for me. But yet clients still struggle with that. I think they get initially intimidated, and then once I do some tutorials with them, they go, &#8220;Oh, okay, I&#8217;m good.&#8221; But getting into the full Site Editor, there were several new concepts, primarily, like templates, I understood. But template parts and patterns, I wasn&#8217;t quite sure what is the exact difference here. And gradually I came to understand blocks are the place that we begin. We take a bunch of blocks to form patterns perhaps, and then we can reuse those patterns if they&#8217;re synced into the template parts. And the template parts are what form the layouts for the templates. So once I played around with all those different things, I understood the sequence. And they are building blocks, literally. And I also figured out, &#8220;Oh, template parts are actually mini templates.&#8221; They&#8217;re like little guys that could stand on their own maybe at some point in time.</p>\n\n\n\n<p>So it all kind of started to fall into place. I got a nice comment this morning on part three of my blog series, which is about the header. And where I explain that pattern of blocks to patterns to template parts to templates. And the person appreciated the breakdown. I went, &#8220;Oh, I&#8217;m always relieved when people find value in what I say.&#8221; It&#8217;s like, &#8220;Okay, someone&#8217;s listening.&#8221; Someone like me, like Sally Field. So it was validating to get that feedback.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> So that was the big concept for me. And then little tweaks in the language with the Create Block Theme plugin. Some of the options at the very beginning are still there now. But I think the language was tweaked or maybe it was just my evolution because perhaps the saving changes to the theme was always there. Was it always there?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. That was a Core feature of the Create Block Theme that you could take everything out of the database into a theme and have it in the files.</p>\n\n\n\n<p><em>Anne Katzeff:</em> And it seems so straightforward now when we&#8217;re talking about it. And I think on some level I got it, but on another level I really didn&#8217;t. And so I was scared. I&#8217;m scared to do that, but then Iâ€¦.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> You braved it.</p>\n\n\n\n<p><em>Anne Katzeff:</em> I did. And it&#8217;s like a miracle.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah, yeah, yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> The Outreach channel is a great place where we can almost talk directly with developers, including the wonderful Create Block Theme plugin team and get answers to our questions. No question seems to be a silly one in that Slack channel, which is nice.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, so dear listeners, I think we talked about it before with Jessica Lyschik as well, that the Outreach channel is definitely a place where you can meet a few of the developer theme builders and also block builders. And also I know that there are quite a few that hang out there, like Justin Tadlock and Nick Diego, myself and a few others. Yeah. I know that Rich Tabor once in a while kind of looks at some of the questions because it&#8217;s really important to figure out what is not working right or what is not explained right. And to find the difference about it, we need to have a conversation and that&#8217;s the place to have the conversation. So recently I had a conversation, it was not in the channel, but I realized that there is another way to&#8230; In the Site Editor on the right-hand side, when you create a template, you can also click on a design section underneath it, and then you get different ways to form the template.</p>\n\n\n\n<p>And those are actually patterns, template patterns pretty much. So they have a theme, they have a template type, and then you say archive. So when you create a new archive template, you get a suggestion of a series of patterns if they&#8217;re with a theme. Yeah. And that was kind of really something that I had a hard time getting my head around. Where does it all live? And it lives in a pattern directory of a default theme. You will find them in the Twenty Twenty-Four. You also will find them in Twenty Twenty-Five. Yeah. So that&#8217;s another way of offering your theme users multiple ways to skin the cat or to display some of the things that you want to display on an archive page for a category or a single post template. And you have multiple patterns of those. Then you can offer them when they click on a new template or switch them up.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah. And then there are all those patterns on WordPress.org that you can just&#8230; If you&#8217;re logged in, it&#8217;s so easy you just copy it, I think, not remembering off the top of my head, but it&#8217;s a wonderful feature.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. It would be added to your Canvas. Yeah. I think the new Zoom Out&#8230; Have you tried it with the new Zoom Out view?</p>\n\n\n\n<p><em>Anne Katzeff: </em>Oh, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Oh, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> What do you think about it?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Well, I have notes about that. Let me gather my thoughts here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> You have notes about it.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah, I do because I had a lot of reactions to it. One last thought before we segue into that about the patterns. Not only are there some wonderful patterns that can be inspiring, but you can learn so much from their structure on how to do a layout. So there are multipurpose patterns out there. So the Zoom Out separator, I think it begins to address the issue of very cluttered UI, user interface. There&#8217;s a lot packed into the real estate here, and we&#8217;ve had ongoing discussions about it. You&#8217;ve got the left and right sidebars, the admin sidebar, the full Site Editor sidebar. And then if you open up the list view, you&#8217;ve got another sidebar, pop-up modals, dropdown sub-menus. It&#8217;s really hard to find your way and then remember where you are. So I think this feature is making strides, it still needs work.</p>\n\n\n\n<p>So far from what I gather, it looks like just a one-step zoom. I had a thought initially. Wouldn&#8217;t it be cool if it were a magnifying kind of thing?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm.</p>\n\n\n\n<p><em>Anne Katzeff:</em> I&#8217;m not sure if we need that, but it would be cool. And it&#8217;s almost currently a toggle on and off.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm.</p>\n\n\n\n<p><em>Anne Katzeff:</em> We&#8217;re starting to get a number of view-related options I noticed, because that Zoom thing is tucked between several other icons up on that upper right corner, the display and other things.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, the preview.</p>\n\n\n\n<p><em>Anne Katzeff:</em> The preview. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm.</p>\n\n\n\n<p><em>Anne Katzeff: </em>And I&#8217;m thinking when you reach a certain threshold of stuff that is related, can&#8217;t we find a way to group them and reduce that clutter?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm. Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> These are just some of the thoughts I had.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, you&#8217;re right.</p>\n\n\n\n<p><em>Anne Katzeff</em>: But the other thing that happened while I was looking at this and seeing all the work being done, there&#8217;s a great discussion on GitHub as this feature evolves. And to me it was such a wonderful example of WordPress collaborative teamwork.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Some snippets of the conversation are like, &#8220;During the act of dragging, everything else should be inert.&#8221; &#8220;Ah, yes.&#8221; And then another one. &#8220;We can be much better at changing the visual appearance of the Editor, highlighting drop zones, for instance.&#8221; &#8220;Ah.&#8221; It&#8217;s great stuff if you have the time to read through it. It just made me so appreciative of the details theâ€¦.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That people think about. Yeah.</p>\n\n\n\n<p><em>Anne Katzeff: </em>People are working really hard at this stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm.</p>\n\n\n\n<p><em>Anne Katzeff: </em>And it doesn&#8217;t take&#8230; It&#8217;s not a simple fix sometimes, it takes discussion and testing. So you&#8217;ve put the issue out there, there&#8217;s some discussion and then there&#8217;s testing, and then there&#8217;s resolution and tweaking, and it&#8217;s very cool. It made me really happy to be a part of it even as an observer.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, it&#8217;s a great description of how actually things are getting done in Gutenberg and how many people are kind of working on it and discussing it. So the Zoom Out view is right now, I think the biggest advantage is when you&#8217;re working with patterns and you&#8217;re trying to create a page with a subset of patterns. So you have a hero pattern, then you have a services pattern, and then you have a post pattern and you kind of want to assemble one page with all the different patterns. So you actually, and then afterwards&#8230; And that&#8217;s how you use the Zoom Out because it only highlights the sections. So itâ€™s between the patterns. So you&#8217;re not putting a pattern inside another pattern, inside another pattern.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Right.</p>\n\n\n\n<p>Birgit Pauli-Haack: Which I have done multiple times. And I said, &#8220;Well, Iâ€™ll get myself out of it again.&#8221; So I got a real trouble thing there.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And so for that, it is really good because then you can just&#8230; And there on the left-hand side with a Zoom Out, there are four or five action items that you can do. One is delete a full pattern, which is sometimes really difficult. And then you can move a pattern up and down just if you had it in the wrong place. Yeah. Those are the two things that I can remember for those.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah. Reducing the number of distractions.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes, that&#8217;s pretty much kind of a single purpose kind of zoom kind of thing. And when you&#8217;re done with all the patterns, you can zoom in again with clicking on the toggle again. And then manage all the single blocks that you have there now with the pattern. So yeah, changing the images, changing the headlines, changing the text, and you don&#8217;t have to worry about the patterns again. I think that&#8217;s right now the biggest advantage of using Zoom Out. I think it&#8217;s not particularly helpful in any other context right now, but it&#8217;s also, you can&#8217;t select a single block while in Zoom Out. You have to get out of Zoom Out before to do that. So it kind of separates the concerns a little bit and takes care of the overwhelm.&nbsp;</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah, totally.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, there are I think 50 patterns in the Twenty Twenty-Five or so. So it&#8217;s really interesting to kind of move them around and mix and match them. Yeah. So yeah. Any other insights that you want to share with our listeners about your block theme building adventures before we go into our announcements and to the rest of the show?</p>\n\n\n\n<p><em>Anne Katzeff: </em>Ooh, let&#8217;s see. While you were talking about all that, I was thinking about the navigation again. And now we mentioned there&#8217;s a new mobile option on that, which I have yet to explore, but I&#8217;ve been seeing posts about it on Twitter. So get ready, hold onto your hats. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, we are going to talk a little bit later about that. That&#8217;s a new plugin, a plugin to test things out, but we can talk about it now.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contributions &#8211; Responsive Navigation Block</h3>\n\n\n\n<p>So Dave Smith, who&#8217;s a Core contributor on Gutenberg and has actually worked on a Navigation Block quite a bit before, he&#8217;s now working on the Zoom Out, and he&#8217;s also a release lead for 6.7. He created a standalone plugin where you can have a Responsive Navigation Block. So it comes with two variations, a Navigation Block for desktop and a Navigation Block for mobile. And you can style them differently. So you need to install the plugin and then you can create the different Navigation Blocks for a certain header, what? Yeah, template.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Would it pick up automatically? It picks up the content from the regular navigation, desktop navigation?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: No, you need to design it. You need to design.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Is it a desktop or is it a mobile kind of thing?</p>\n\n\n\n<p><em>Anne Katzeff</em>: Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And you can rename them as well. Yeah, so Dave did a longer video, 25 minutes. I haven&#8217;t watched it completely, but I will share the link to it in the show notes. I went for Jamie Marsland&#8217;s three-minute piece because it all came out today or yesterday kind of thing, so I didn&#8217;t get a chance to see it all.</p>\n\n\n\n<p><em>Anne Katzeff:</em> It&#8217;s hot off the press.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hot off the press. Yes. So you install it and then you decide, &#8220;Okay, which one is the desktop? Which one&#8217;s the mobile?&#8221;</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>And then you can give the mobile a different background or something like that. And then it picks up on the&#8230; And even when you look at the&#8230; edit the mobile Block, Navigation Block, it actually reduces the Canvas to a mobile size.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Oh, wow.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So it&#8217;s also-</p>\n\n\n\n<p><em>Anne Katzeff</em>: You get a preview.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; that part of it. You get a preview of how it is.</p>\n\n\n\n<p><em>Anne Katzeff: </em>Oh, nice.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So it&#8217;s also using some of the Zoom Out, Zoom In kind methods in the background.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Right. Oh, the mind, how it works. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So yeah, it&#8217;s kind of really interesting. Yeah. We share the link in the show notes and then also to the two videos so you can kind of learn more about it dear listeners.</p>\n\n\n\n<p><em>Anne Katzeff</em>: Now you were saying you can rename those menus.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes.</p>\n\n\n\n<p><em>Anne Katzeff:</em> And that just sparked another memory for me because yesterday I think I wanted to rename a pattern and I wasn&#8217;t able to do it. I was like, &#8220;Really? I can&#8217;t rename a pattern.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, was it your own pattern? Or was it a pattern that came from the theme?</p>\n\n\n\n<p><em>Anne Katzeff: </em>Well, it&#8217;s all mine now because it&#8217;s embedded in my child theme.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right. But when you said, okay&#8230; If it&#8217;s in the theme, you probably are not able to. So you need to duplicate it first to rename it.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Oh.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Or you go into your files if you have them and rename it there because they don&#8217;t want&#8230; I don&#8217;t think it&#8217;s something that you want to rename the pattern from your theme because when the update comes, it kind of will overwrite stuff again if it&#8217;s the sameâ€¦.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Got you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. So it&#8217;s kind of that one is definitely something toâ€¦</p>\n\n\n\n<p><em>Anne Katzeff:</em> Always something to experiment with. Yeah. Okay.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So we have announcements here.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> WordPress 6.7 Beta 2 has come out and is ready for testing. Remember final release is November 12th and it&#8217;s coming closer and closer. Now the WordPress test team also has some great instructions on how you can assist in testing the new versions. It&#8217;s in the Help Test WordPress 6.7 aptly titled post. It&#8217;s a long post, but it has a great table of contents menu where you can kind of pick the feature that you want to test and then you go in and get some nice instructions. First, a little explanation of how it&#8217;s supposed to work, and then some instructions, what you can do with it. I went through the theme testing instructions there. This is actually a great way to explore the new theme.&nbsp;</p>\n\n\n\n<p><em>Anne Katzeff:</em> Absolutely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; some testing instructions. Yeah. So go ahead and start testing your own plugins and themes and everything if they&#8217;re compatible, how they&#8217;re compatible to 6.7. The release candidate is scheduled for October 20th. That&#8217;s also when the Field Guide comes out. So if you are waiting for the developer notes that come with a Field Guide, that&#8217;s the date to look out for. That&#8217;s also where all the developer related APIs have all the explanations in there. So are you looking forward to 6.7?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Sure.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Anything in particular?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Maybe. I don&#8217;t know off the top of my head. As we go through the enhancements, I&#8217;ll chime in.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. All right. Yeah. So there&#8217;s another development that I wanted to let you know about it. WPGraphQL, it&#8217;s a way to use GraphQL with WordPress Database and it&#8217;s mostly used for headless WordPress developers or by them. Jason Bahl has started working for Automattic and brings his WPGraphQL plugin with him and it&#8217;s going to be a canonical plugin, meaning it&#8217;s going to be a plugin that will be maintained by Core developers. So he&#8217;s back full-time working on the plugin, which he couldn&#8217;t do at WP Engine. So that is a great development out of that. And I remember 2018, or was it even &#8217;17? I think it was in 2018 that Jason Bahl developed or showcased his WPGraphQL plugin at WordCamp US. And that seems so far away again, now it&#8217;s about six years. Yeah. And having developed that since then almost full time, it&#8217;s really very robust. And a lot of enterprise level websites are actually built on top of it.</p>\n\n\n\n<p><em>Anne Katzeff: </em>Ah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Because to integrate WordPress with other data and need to use WordPress for the content management or content creation. But the other website or the website that use that content is also connecting with other data.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Oh, wow.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So they needed a front-end on top of it that&#8217;s in JavaScript or any other maybe Next.js or something like that. But the WPGraphQL kind of connects all those pieces. It&#8217;s really cool.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Wow. Sounds cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And there is a new Developer Hours on the schedule and it will change the broadcast method. So if you are a regular attendee of the Developer Hours every two weeks of the month, you had to go to Zoom first and then log in and had to be at Meetup first, then on Zoom first, and then you were able to kind of attend the Developer Hours. Now all these processes are shortened and it will be a live stream on the WordPress channel on YouTube. So you just kind of subscribe to that, it&#8217;s announced there. And I will share of course the link in the show notes. The next Developer Hours is happening on Tuesday, October 15th, and at 15:00 UTC. If my calculations are correct, that&#8217;s 5:00 P.M. Central Europe Time or 11:00 A.M. Eastern Time. And that&#8217;s directly from the YouTube channel. You don&#8217;t have to log in&#8230; You only have to log into YouTube, which you probably have an account for and then you can be participating in the chat.</p>\n\n\n\n<p>So the topic is How to Simplify Client Editing in WordPress. And the description reads like, â€œDiscover the full potential of WordPress Editor and Site Editor in these presentations designed to showcase the many ways you can simplify, curate the ways your clients edit content in WordPress. Will tackle a common challenge, creating a more controlled and user-friendly block editing experience that aligns with brand guidelines, limits user capabilities and prevents accidental changes and more. So you learn practical techniques like lock patterns, enabling content only editing, disabling specific blocks, configuring the theme.json, adjust editor settings and restrict block functionality.&#8221; So it&#8217;s Nick Diego and Jamie Marsland and they will discuss the current limitations and how you contribute to the future of WordPress to better support your clients and non-technical users.&nbsp;</p>\n\n\n\n<p><em>Anne Katzeff:</em> It sounds great.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>It&#8217;s a really great topic and these are so many questions that we get when we are on WordCamps or in other places on how can I make this go away? Kind of how can I&#8230;</p>\n\n\n\n<p><em>Anne Katzeff:</em> Ah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, how can I not have them change the color of things? Or something like that. Yeah, so&#8230;</p>\n\n\n\n<p><em>Anne Katzeff: </em>That&#8217;s exactly the branding issue. Exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right. Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> And fonts.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. It&#8217;s a big change.</p>\n\n\n\n<p><em>Anne Katzeff: </em>Don&#8217;t change the type. I know you like those curly Q fonts, but no one can read them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I know it&#8217;s an existential fear from designers that clients mock up the design that they spend so much time to do.</p>\n\n\n\n<p><em>Anne Katzeff:</em> It&#8217;s real.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It&#8217;s real. Yeah. So join Nick Diego and Jamie Marsland on October 15th, 15:00 UTC. All right. So we talked about the plugin.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Whatâ€™s Released &#8211; Gutenberg 19.4</h3>\n\n\n\n<p>Yeah, we are now to Gutenberg 19.4. And that&#8217;s been released this week and it had 186 PRs from 54 contributors. And of those 54 contributors, six&#8230; Well, let me look at it first. Yeah, six, were new of them, so congratulations for your first contribution to Gutenberg to those new contributors.&nbsp;</p>\n\n\n\n<p>Anne Katzeff: And again, what struck me was the amount of work that goes into it and fixing bugs, cleaning up the UI. There seems to be a lot more attention on that, which makes my heart sing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, it&#8217;s the first Beta of 6.7 came out October 1st. And this is the first Gutenberg plugin after that that has a lot of bug fixes in there that will come into 6.7. The enhancements are locked, so those won&#8217;t get into 6.7, but all the bug fixes that or most of them will come into 6.7.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p>So let&#8217;s start with the enhancements. So for end users, it&#8217;s probably easier to find the Query Loop Block. First of all, why would you know what that&#8217;s called because it sounds so technical? But it&#8217;s the posts and the post types and the blogs and all that. So all these keywords are now discoverable when you look for that. So what else is in there? Do you want to take turns on it?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Oh, I saw the File Block, allow content only editing. It&#8217;s just there&#8217;s so many little things that users come across. And if you find something that doesn&#8217;t seem right, just let the team know because they clean it up and it looks like that is one of the bugs that&#8217;s been fixed. So that was good.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. If it was in content only, you weren&#8217;t able to upload anything or do anything.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah. I mean, what? So it&#8217;s a stumbling block that&#8217;s been removed. And the other one with the navigator, they just added a new smoother transition for exiting certain scenarios. So I like that. Instead of this jarring screen change. What else did we see? We talked about the Zooming feature.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Zoom Out, yeah, we already talked about that.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. There are quite a few enhancements for that. There&#8217;s a content only Zoom Out Mode and then there&#8217;s also only Zoom Out on inserters on block selection.</p>\n\n\n\n<p><em>Anne Katzeff:</em> So help me understand this one, Birgit, because I think it&#8217;s meant to ensure that the default block inserters display on hover, even on Zoom Out Mode. So is that what it addressed?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So you have that in Canvas too, that when you hover between blocks that you all of a sudden get a sibling inserter. And that&#8217;s a little bit [inaudible 00:39:27] in the Zoom Out Mode. So it only will show up, let the inserter show when you actually select a block.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Got you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So it&#8217;s not going to hover&#8230; When you hover over Zoom Out, it was showing every time you&#8217;re going from one place to the next, it shows you an inserter, which you probably wouldn&#8217;t need at that moment because you are just hovering.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So now they&#8217;re doing it when you select the block.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah. That&#8217;s fine-tuning. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s definitely-</p>\n\n\n\n<p><em>Anne Katzeff:</em> That was great.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So the Zoom Out, so what will come to the 6.7 is the Zoom Out Mode for patterns, but they&#8217;re also working on other things on the Zoom Out and for the Zoom Out Mode and kind of figuring out, okay, when can you do what in different scenarios?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And so it&#8217;s definitely an active development. And we&#8217;ll only have a reduced from the plugin to the 6.7. There&#8217;s only a subset of that it will come to 6.7 that they are very confident about. And the other ones, they&#8217;re still kind of trying to figure things out. Yeah. And the data forms, the Data Views. We talked about quite a lot here on the podcast and also on the Weekend Edition. With 19.4, there&#8217;s also the data forms component that&#8217;s part of the Data Views that has now combined field support. So you can have form labels and fields next to each other. So they are in columns or something like that.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Ah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So the component now offers that particular feature for developers who use that for their plugins.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay. Good. And then something about the Edit Mode, they updated the tools menu with the right and slash design order. There was a lot of attention given to that. And to be honest, I&#8217;ve never ever used that feature. It&#8217;s like I don&#8217;t really see the point of it, but&#8230; To me, it just adds to the clutter. I&#8217;m all for clearing out the clutter.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I think it&#8217;s also there for those who are traveling the Canvas via keyboard navigation, so they can get in and out. So the problem there is that you need to navigate either to go from block to block or go into the block. And that&#8217;s where the right end design or the right end design mode kind of changes. Is it either do you edit the block or do you want to select the block kind of? So for someone who is around the Canvas with a keyboard, there&#8217;s a toggle in between. For those who actually see what they&#8217;re doing and use the mouse, it&#8217;s almost seamless. So that&#8217;s why you probably haven&#8217;t used it because you can select the block with a mouse and automatically are in the Edit Mode. But you can also scroll the Canvas and then point with a mouse to get into an Edit Mode. But when you&#8217;re around with a keyboard, you need the different modes to know if you are traveling up and down the Canvas or you&#8217;re going deeper into the block. I don&#8217;t know if I explained this.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay. So it&#8217;s like an accessibility tool?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes, absolutely.</p>\n\n\n\n<p><em>Anne Katzeff: </em>Okay. Got you. Thank you for that explanation.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It probably also would get a little bit more prominent for the Zoom Out view because then there&#8217;s a different Edit Mode and a different Select Mode as well. So there&#8217;s similar concepts there that will come with the Zoom Out. But I&#8217;m really excited about the next one, and that is that you now have a command, palette command to add a new page within the Site Editor so you don&#8217;t have to get out and out and out, go to the pagesâ€¦</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah. Thank you. Absolutely. And it&#8217;s so sensible. It&#8217;s like tackling the separation of content and design. It&#8217;s just such a sensible addition. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And there&#8217;s a little quality of life kind of change. For the connected blocks, the color is going to be purple, but now they also have a purple backdrop color. So you can really see, okay, this is&#8230; The color, the purple was nice, but it also was very subtle. So with the background it&#8217;s a little bit more obvious, ah, for the block.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay. Yeah, because I wasn&#8217;t sure if I agreed with that enhancement. My concern was does it pass in accessibility tests?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm.</p>\n\n\n\n<p><em>Anne Katzeff: </em>And I would assume it does. That gets grayed out maybe for people with color blindness or issues.</p>\n\n\n\n<p><em>Birgit Pauli-Haac</em>k: Yeah, I&#8217;m not an accessibility specialist, but I am sure they have at least checked the color contrast with it if it&#8217;s a grayed out kind of backdrop there.</p>\n\n\n\n<p><em>Anne Katzeff:</em> So the text is purple, it&#8217;s a darker purple on a lighter purple.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, absolutely. Yeah.</p>\n\n\n\n<p><em>Anne Katzeff: </em>Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And it&#8217;s a more of blurry kind of backdrop. So it&#8217;s actually an icon kind of stands out there.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So for the next one, the extensibility new feature is that the pre-save post and the save post filters that were before unstable are now stabilized. And the difference is that if they&#8217;re unstable, you never know what happens. There might be breaking changes if you use them for your plugin development. What they allow you is to add additional things to check before a post is saved. So if you don&#8217;t have an excerpt, you can, as a plugin developer, you could prevent the post to save until an excerpt is added to it or the featured image or something that&#8230; or any other kind of check that they want to do on the publishing thing. And you would use the pre-save post filter and then allow the save post filter as well if you want to save additional things with it.</p>\n\n\n\n<p>So these features were all there before, but they had the unstable something, underscore unstable in front of it. And that means for any developer, &#8220;Okay, if I use this, I&#8217;m on my own.&#8221; There&#8217;s no documentation, there is no guarantee that it&#8217;s backwards compatible and any of that. It can change at any time. When it&#8217;s declared stable, it&#8217;s kind of the promise of backwards compatibility is kind of attached to it. So a lot of plugin developers are really happy about that, I would think.</p>\n\n\n\n<p><em>Anne Katzeff:</em> You&#8217;re so good at explaining things.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Oh, really?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yes. Absolutely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Sometimes I think I&#8217;m kind of rambling a bit.</p>\n\n\n\n<p><em>Anne Katzeff:</em> No. Not for me. It works for me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you. The Block Hooks are now supporting asynchronous filters and actions. So if you want to go out and do something with another feature, you can use async methods for your plugin and your blocks that you add to another block. That&#8217;s the Block Hooks, right? Block Hooks are, there&#8217;s a hook where you can say after this paragraph, put a link there or put a hash there for whatever. And then now you can do it with async filters and action. So cool. It&#8217;s an enhancement for the developers that can, so they can use modern stuff like JavaScript.</p>\n\n\n\n<p>All right. So I think we are&#8230; Are we through the post or did&#8230;</p>\n\n\n\n<p><em>Anne Katzeff:</em> I think the enhancements.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> We&#8217;re through enhancements?</p>\n\n\n\n<p><em>Anne Katzeff:</em> I think so.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. There are two things I wanted to point out, I think from the documentation. Yeah. So speaking about Data Views, all the documentation is actually in the storybook site that&#8217;s attached to the Gutenberg repo. And they now added another page there that kind of adds a high level graphical representation of Data Views and data source attraction. Which is really helpful for those who want to use that. It&#8217;s a new API, so documentation, so it&#8217;s a little bit behind, but if you want to explore that, that&#8217;s definitely here for your perusal.</p>\n\n\n\n<p><em>Anne Katzeff:</em> I&#8217;m a big fan of visuals that help us understand concepts, so I like that one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, me too. Me too. Gives you a little map of your clutter brain. I don&#8217;t want to do mine. And there is another item in the documentation section of the Changelog. They added another page for Core concepts at the interactivity API documentation about using TypeScript within the interactivity API model. So that&#8217;s definitely worth a read for those who use the interactivity API or those who want to use them and still trying to figure out the use case, which can be hard. I cannot see that, we will get there.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Code Quality</h3>\n\n\n\n<p>Speaking of stable, the BorderBoxControl component as well as the BorderControl and the BoxControl. These three components are now also promoted to stable. So it&#8217;s safe to use in your custom blocks or if you use them in your plugin settings pages as well. So I&#8217;m glad that there&#8217;s some work there to migrate things that have been around for a while to actually say, okay, make a decision. It&#8217;s stable and we support backwards compatibility for that. It&#8217;s definitely a commitment. I don&#8217;t know, some people have commitment issues but not developers. So that&#8217;s the Changelog from Gutenberg Plugin 19.4.</p>\n\n\n\n<p>Well, thank you so much for going through that with me. I also know just today, the Developer blog has a roundup post every month called What&#8217;s New for Developers, and it comes out today. Today&#8217;s October the 10th, and the 10th is the publishing date. And I will add that to the show notes so you can also not only look at the 19.4, but also what&#8217;s coming from Core into 16.7 and what&#8217;s just new. There&#8217;s a ton of things in there. I reviewed it this morning and I was amazed what all is in there that was in 19.3, was in 19.4 and also comes with 6.7. So it&#8217;s definitely a great place to catch up. So now end the section-</p>\n\n\n\n<p><em>Anne Katzeff:</em> And I&#8217;ve been keeping an eye&#8230; I&#8217;m, sorry, Birgit.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Go ahead.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Whatâ€™s in Active Development or Discussed</h3>\n\n\n\n<p><em>Anne Katzeff</em>: I&#8217;ve been keeping an eye on the development and design of the next default theme Twenty Twenty Five.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Okay. Yeah.&nbsp;</p>\n\n\n\n<p><em>Anne Katzeff:</em> And initially I thought, &#8220;Oh, I&#8217;ll contribute to this.&#8221; And I just haven&#8217;t had the time, but I&#8217;m keeping an eye on it. I&#8217;m getting really excited about new things that are coming our way when that&#8217;s all ready&#8230; Several months ago there was a call for, I think Carolina may have done this, but someone probably Carolina said, &#8220;What would you like to see in the next default theme?&#8221; And one of the things I mentioned was some more portfolio type of options for artists and designers and folks like me. And sure enough, there&#8217;s a portfolio aspect to it for photo blogs and I would think other applications. There&#8217;s a bunch of stuff happening with grids like the density of grid layouts, the Data View options, patterns. We&#8217;ve got the, like we&#8217;ve been talking about today, the Zoom Out and the drag and drop&#8230; We didn&#8217;t actually mention the drag and drop part of the Zoom out, which-</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, we didn&#8217;t.</p>\n\n\n\n<p><em>Anne Katzeff:</em> &#8230; that was one of the most exciting parts for me. So when you&#8217;re in the Zoom In, you can drag and drop from somewhere-</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>The patterns.</p>\n\n\n\n<p><em>Anne Katzeff:</em> From the patterns, that&#8217;s right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> From the patterns. Yes. In this Zoom Out Mode, you can drag and drop them over.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Zoom&#8230; Oh, okay. Yeah, got switched in my head. Another feature that&#8217;s been mentioned elsewhere on the Twitterverse, for example, the uploads for HEIC images, that&#8217;s been enabled or will be enabled. And there are just so many different design tools that they&#8217;re considering, like item colors in a list item, borders for different colors for borders and paragraphs and buttons and things like that. And an integration of a Lightbox similar to the Gallery. Well, maybe I have it twisted in my head there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> The Gallery Block will have a Lightbox aspect to it. And then again, I always want to see, and I would love to see more work in the UI design and Custom Fields area. So we haven&#8217;t really touched on that, but those are things that are of interest to me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> So I think theyâ€™re doing a fabulous job. Coming your way.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Coming your way to the WordPress instance near you with WordPress 6.7. And I wanted to&#8230; That sounded so technical with the HEIC image. Those are images made with an iPhone and you can now upload them to your WordPress site without having to go into your computer, download them to your computer and then go and upload them again. Now you can do this from your phone. And that&#8217;s actually quite interesting. So you can use your WordPress site if you want to, like your Instagram kind of thing, but you have your own space there. Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Does it convert those images to JPEG?</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yes.</p>\n\n\n\n<p><em>Anne Katzeff:</em> It does. It compresses them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. That&#8217;s actually the feature, because web browsers don&#8217;t support HEIC images, so you need to convert them to what browsers do and to make them there. But on upload it will do all the things, all the magic. Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay.</p>\n\n\n\n<p>Birgit Pauli-Haack: And yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> See I don&#8217;t rely on the native WordPress compression. I do that compression myself before I do an upload and I convert to JPEG, but this is all on desktop. So if you want to go directly from your phone to your site, that&#8217;s a nice feature.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, that&#8217;s what a lot of people do that want to share their photos, upload them to the blog. And then of course with the new Twenty Twenty-Five, and thank you for pointing that out, you are now getting a great designs for photo blogs and portfolio things. I really like also, the patterns that they offer for galleries, there are six or seven patterns.</p>\n\n\n\n<p><em>Anne Katzeff</em>: Oh, really? Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, they are in there.</p>\n\n\n\n<p><em>Anne Katzeff: </em>That&#8217;s great.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And 6.7 comes with a bunch of new design tools. It&#8217;s mainly borders for everybody. Every single block.</p>\n\n\n\n<p><em>Anne Katzeff:</em> That could be a blog title. Borders for all.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Borders for all. Borders for us. Oh no, that was a bookstore.</p>\n\n\n\n<p><em>Anne Katzeff: </em>Oh, right. Right, Borders Bookstore.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>So the images got their Lightbox with 6.5, I think.</p>\n\n\n\n<p><em>Anne Katzeff: </em>Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>There was nothing in there for 6.6. And then now with the 6.7, the gallery, so when you add images to the gallery, there&#8217;s another feature there. There&#8217;s actually, when you upload a bunch of photos in your Canvas, in your next post, it automatically creates a gallery. So that&#8217;s also something. And then when you have an Image Block and you drag and drop another image next to it also automatically creates a Gallery Block, so you have them side by side.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Huh. Okay. So it doesn&#8217;t automatically create a column.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No.</p>\n\n\n\n<p><em>Anne Katzeff:</em> A Column Block. Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And now when you&#8217;re in the gallery, the link feature of the image, and that&#8217;s also for the Image Block, the link feature, it kind of comes out as a drop-down, the link button and it gives you the choice. Do you want to link at it or do you want to have a Lightbox or expand on click because you can&#8217;t have both? There&#8217;s only one click and it&#8217;s either a link to someplace else or you get your Lightbox there.</p>\n\n\n\n<p><em>Anne Katzeff</em>: Makes sense. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That you can set for every image in your gallery. So it&#8217;s now possible.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>And then-</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah. Wouldn&#8217;t it be curious if some of the gallery images clicked&#8230; When you clicked on them, you&#8217;d get a Lightbox for one and then a link for&#8230; What a mess. You have to choose.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. It confuses people. And then when all the pictures have the link to Lightbox, then you also get a gallery slider. Not a slider, but a previous and next for your images. So you can actually watch the gallery in expand mode throughout the images. Yeah. So it&#8217;s really-</p>\n\n\n\n<p><em>Anne Katzeff:</em> Will there be a navigation device? Or you just do it with your keyboard?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> There will be arrows next to each other.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Arrows. Yeah. Mm-hmm. Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I don&#8217;t know if there are bullets, so you know how many are in there. I don&#8217;t recall, but I need to test them.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Maybe you can style them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. Well, yes you can-</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah. You can probably style them differently.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, you need to style them through CSS then. Yeah, you can-</p>\n\n\n\n<p><em>Anne Katzeff: </em>Oh, I see what you mean. Yeah. Below the Lightbox, the dots underneath.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So you kind of indicate how many of that. So yeah, glad that we talked about 6.7 a little bit. Yeah, the Query Loop definitely has some nice features in there, now it knows the template you are adding it to. And then you can actually&#8230; Ryan Welcher did great work on that to add additional settings into the sidebar for the Query Loop Blocks. So you can change the order and you could do that as well. And then you have drop-downs for categories and all that taxonomy, different kinds of taxonomies by author.&nbsp;</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah, I would really want to play with that. Yeah, because what I was wondering, I think I read somewhere that you can have maybe a grid of six, let&#8217;s say, and then interrupt that pattern with maybe two, and then go back to another grid of six. So I think you can mix them in, which is very exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And so you have three Query Blocks and then each one of them can be a different category or can have a different feature set or something like that. Yeah.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Yeah. That&#8217;s great. Outstanding.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, that&#8217;s what you also see on the&#8230; We talked about Twenty Twenty-Five that you have different kind of blogs. So one is a simple blog, the other one is the photo blog, and the third feature is kind of a news blog. You have multiple posts a day or something like that. You get a magazine view.</p>\n\n\n\n<p><em>Anne Katzeff</em>: Yeah, the categories are perfect for a newspaper or magazine type of content.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Exactly, yeah. And there is one little trick that if you get some&#8230; Because you have multiple Query Blocks, so it goes out and does the query multiple times, that might be a performance hit.</p>\n\n\n\n<p><em>Anne Katzeff</em>: Oh yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> But if you remove, because on that magazine look, you don&#8217;t want that pagination there on the Query Loop. You can take that out of it and then the performance is a little bit better there.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, it&#8217;s going to be really interesting. Yeah. All right.</p>\n\n\n\n<p><em>Anne Katzeff:</em> All right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So we&#8217;re coming to the end of the show and if people want to get in contact with you, how would they find you?</p>\n\n\n\n<p><em>Anne Katzeff:</em> Oh, so on Twitter, who am I on Twitter? Let me have a look at myself on Twitter. ASKDesign2 and-</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Okay. With the number 2, right?</p>\n\n\n\n<p><em>Anne Katzeff:</em> With the number 2. And where else? On Instagram am I the same? Probably.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>So are you on WordPress Slack?</p>\n\n\n\n<p><em>Anne Katzeff:</em> I am on WordPress Slack. Who am I there? Let&#8217;s see. It&#8217;s funny, you never look at yourself on these things. I am Anne Katzeff on that. Yeah. So those are the two places.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So it&#8217;s K-A-T-Z-E-F, right?</p>\n\n\n\n<p><em>Anne Katzeff:</em> K-A-T-Z-E-F-F as in flower.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right. And your website is&#8230;</p>\n\n\n\n<p><em>Anne Katzeff:</em> Askdesign, A-S-KDesign.biz. So when I was first getting my website up and running, askdesign.com was already taken. That domain name was already taken by a plumber. So my brother said, &#8220;What about .biz?&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm.</p>\n\n\n\n<p><em>Anne Katzeff: </em>So that&#8217;s what I did.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s a good domain name, yes. All right, so I will share all the links to Anne as well in the show notes. And thank you very much for taking the time and being here and going through the changeover with me.</p>\n\n\n\n<p><em>Anne Katzeff:</em> My pleasure.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; sharing all your blog theme experiences here.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Thanks for the invite.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, absolutely. You might get another one in a couple of months.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So dear listeners, always the show notes will be published on <a href=\"http://gutenbergtimes.com/podcast\">GutenbergTimes.com/podcast</a>. And this is episode 109. And if you have questions or suggestions or news you want us to include, send them to <a href=\"mailto:Changelog@GutenbergTimes.com\">Changelog@GutenbergTimes.com</a>, that&#8217;s <a href=\"mailto:Changelog@GutenbergTimes.com\">Changelog@GutenbergTimes.com</a>, or just ping me on Twitter or on WordPress Slack. That&#8217;s it for now, I&#8217;ll talk to you in two weeks with 19.5 and more about 6.7.</p>\n\n\n\n<p>Thank you so much, Anne, and goodbye.</p>\n\n\n\n<p><em>Anne Katzeff:</em> Thanks so much Birgit.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 13 Oct 2024 09:33:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Everyoneâ€™s An Owner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=127874\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2024/10/owner-mentality/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4893:\"<p>Last Friday we said goodbye to 159 colleagues as part of our <a href=\"https://ma.tt/2024/10/alignment/\">alignment offer</a>. It was a tough day, there are a lot of close relationships within Automattic, and goodbyes are always hard.</p>\n\n\n\n<p>On Monday, I got to <a href=\"https://www.youtube.com/watch?v=pviYWzu0dzk\">be Oprah for a few minutes</a>. We had scheduled a town hall for leaders around the company to speak to everyone, and our <a href=\"https://woocommerce.com/\">Woo</a> team had ~350 people in person at a meetup in Tulum. I had five minutes to talk, and over the weekend, I had been brainstorming with finance and HR for something nice we could do for everyone who stayed. We couldn&#8217;t give them all a six-month bonus, which would have cost ~$126M, but we did take how much we spent on severance for the 159 people, rounded up a bit, and granted everyone at Automattic 200 shares of A12 stock, so about a $12M bonus for the employees.</p>\n\n\n\n<p>What&#8217;s A12 stock? This is probably the first time you&#8217;re hearing about it, we haven&#8217;t had a chance to talk about this publicly much before.</p>\n\n\n\n<p>Usually, options or common stock in a private company is fairly illiquid, with rare opportunities to sell or lots of restrictions <a href=\"https://www.nytimes.com/2017/03/03/technology/uber-said-to-consider-changes-to-employee-stock-compensation.html\">like what Uber had</a>; it&#8217;s not an efficient or predictable market. Options are &#8220;nice&#8221; because they can defer taxes, but you still have to exercise them, and they can go underwater. Also, as a fully distributed company, we have people in 91 countries, so security and tax laws around options make them not worth it in most places outside of the US.</p>\n\n\n\n<p>When thinking about a stock plan for Automatticians, we thought, our most sophisticated investors have nice protections like a 1x liquidation preference, what if we gave that to employees, too? So to summarize, A12 is a special class of stock available only to buy if you&#8217;re a current Automattician with these characteristics:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>There are twice-a-year windows to buy. You have to hold for 1 year, but then there are quarterly windows to sell, which is very predictable.</li>\n\n\n\n<li>Automattic maintains the internal market, and provides a backstop so you can always sell the shares at what you paid for them or more, like a 1x liquidation preference.</li>\n\n\n\n<li>Current employees can buy, but former employees are eligible for every selling window, there&#8217;s no politics like can happen with tender offers. It&#8217;s reliable and predictable.</li>\n\n\n\n<li>Unlike options, A12 stock never expires. Once you own it, you own it.</li>\n\n\n\n<li>Initially we only allowed $25k/year of A12 to be purchased, but as our business has scaled we now allow up to $1M/yr of A12 stock to be purchased. (Remember, the company has to backstop the purchase price.)</li>\n\n\n\n<li>A12 is just economic rights, it doesn&#8217;t have any voting rights.</li>\n\n\n\n<li>A12 stock can be transferred to a trust.</li>\n\n\n\n<li>The price is set by an external firm, just like our 409a. Because that process discounts us so much for being private, it&#8217;s a pretty good deal compared to what investors would pay for a share.</li>\n\n\n\n<li>We&#8217;ve mostly moved away from options, which really only work for already wealthy, sophisticated hires. We pay very generous base salary (which banks love, makes it easier to get a mortgage) and then people can make a personal decision whether the characteristics of A12 fits with their financial planning alongside index funds, stocks, and bonds.</li>\n</ul>\n\n\n\n<p>We&#8217;ve been running this program since 2016. The main downside risk for A12 holders, which isn&#8217;t that different from common stock, is that we go out of business and can&#8217;t keep our commitments. But that&#8217;s true of any stock investment, and we have a pretty solid track record.</p>\n\n\n\n<p>We want everyone to have an owner mentality, so we&#8217;ve also now started granting 1 share of A12 stock to every new hire.</p>\n\n\n\n<p>Our legal team has their hands full right now with the <a href=\"https://www.cnbc.com/2024/10/05/wordpress-ceo-matt-mullenweg-goes-nuclear-on-silver-lake-wp-engine-.html\">Silver Lake / WP Engine stuff</a>, but we&#8217;d like to open source our docs around this so other companies can offer the same thing easily, I&#8217;ll see if we can make time for that in the next few weeks.</p>\n\n\n\n<p>We also announced something else cool for employees on Monday around our Grand Meetup in 2025, but to know that secret you have to <a href=\"https://automattic.com/work-with-us/\">work with us</a>. We are one of the most open companies, but we can&#8217;t publish everything! <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/263a.png\" alt=\"â˜º\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Oct 2024 23:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: Secure Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17956\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/secure-custom-fields/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2839:\"<p>On behalf of the <a href=\"https://wordpress.org/about/security/\">WordPress security team</a>,  I am announcing that we are invoking <a href=\"https://github.com/wordpress/wporg-plugin-guidelines/blob/trunk/guideline-18.md\">point 18 of the plugin directory guidelines</a> and are forking Advanced Custom Fields (ACF) into a new plugin, Secure Custom Fields. SCF has been updated to remove commercial upsells and fix a security problem.</p>\n\n\n\n<p>On October 3<sup>rd</sup>, the ACF team announced ACF plugin updates will come directly from their website. Sites that followed the ACF team&#8217;s instructions on â€œHow to update ACFâ€ will continue to get updates directly from WP Engine.Â On October 1<sup>st</sup>, 2024, WP Engine also deployed its own solution for updates and installations for plugins and themes across their customersâ€™ sites in place ofÂ <a href=\"https://wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress.org</a>â€™s update service.</p>\n\n\n\n<p>Sites that continue to use&nbsp;<a target=\"_blank\" href=\"https://wordpress.org/\" rel=\"noreferrer noopener\">WordPress.org</a>â€™s update service and have not chosen to switch to ACF updates from WP Engine can click to update to switch to Secure Custom Fields. Where sites have chosen to have plugin auto-updates from&nbsp;<a target=\"_blank\" href=\"https://wordpress.org/\" rel=\"noreferrer noopener\">WordPress.org</a>&nbsp;enabled, this update process will auto-switch them from Advanced Custom Fields to Secure Custom Fields.</p>\n\n\n\n<p>This update is as minimal as possible to fix the security issue. Going forward, Secure Custom Fields is now a non-commercial plugin, and if any developers want to get involved in maintaining and improving it, please get in touch.</p>\n\n\n\n<p>Similar situations have happened before, but not at this scale. This is a rare and unusual situation brought on by WP Engine&#8217;s legal attacks, we do not anticipate this happening for other plugins.</p>\n\n\n\n<p>WP Engine has <a href=\"https://www.advancedcustomfields.com/blog/installing-and-upgrading-to-the-latest-version-of-acf/\">posted instructions for how to use their version of Advanced Custom Fields that uses their own update server</a>, so you have that option, though the WordPress Security Team does not recommend it until they fix the security issues. You can uninstall Advanced Custom Fields and <a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">activate Secure Custom Fields from the plugin directory</a> and be just fine.</p>\n\n\n\n<p>There is separate, but not directly related news that <a href=\"https://www.wpgraphql.com/2024/10/07/wpgraphql-becomes-a-canonical-plugin-my-move-to-automattic\">Jason Bahl has left WP Engine to work for Automattic and will be making WPGraphQL a canonical community plugin</a>. We expect others will follow as well.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Oct 2024 18:26:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Gutenberg Times: Testing WordPress 6.7, Gutenberg 19.4, responsive Navigation Block â€” Weekend Edition #307\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=30296\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://gutenbergtimes.com/testing-wordpress-6-7-gutenberg-19-4-responsive-navigation-block-weekend-edition-307/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18121:\"<p>Hi there! </p>\n\n\n\n<p>Greetings from WordCamp Karlsruhe! A great new WordCamp in Germany, with talks in German. I am writing this from the Karlsruhe venue. The video team is busy uploading the recordings to WordPress TV and has already published the sessions almost in real time.  <a href=\"https://wordpress.tv/event/wordcamp-karlsruhe-2024/\">When you read this, all talks will be online.</a></p>\n\n\n\n<p>It has been a great way to get grounded after the last two weeks and talk with with long-time friends and make new ones. in the WordPress Community.  Huge Thank you to the organizers, volunteers, speakers, sponsors, and attendees for a wonderful event. </p>\n\n\n\n<p>And now we continue with our usual programming. Enjoy the updates and have a great weekend! </p>\n\n\n\n<p>Yours, ðŸ’•<br /><em>Birgit</em></p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/testing-wordpress-6-7-gutenberg-19-4-responsive-navigation-block-weekend-edition-307/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/testing-wordpress-6-7-gutenberg-19-4-responsive-navigation-block-weekend-edition-307/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/testing-wordpress-6-7-gutenberg-19-4-responsive-navigation-block-weekend-edition-307/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</a></li></ol>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>The <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-2/\">WordPress 6.7 Beta 2</a> ready for testing! The final release is scheduled for November 12, 2024. The WordPress Test team has some instructions on what and how you can assist in testing the new version. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">Help Test WordPress 6.7</a>. </p>\n\n\n\n<a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\"><img width=\"652\" height=\"374\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/early-6.7-highlight-grid.png?resize=652%2C374&ssl=1\" alt=\"\" class=\"wp-image-30359\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> continued their series of Core Editor Improvement post with<a href=\"https://make.wordpress.org/core/2024/10/08/core-editor-improvement-new-features-and-flows-for-font-management/\"> New features and flows for Font Management</a>. They highlighted enhanced flows for typography, including better font selection, more intuitive settings, and improved accessibility features. The updates aim to streamline the user experience, making it easier for users to customize text styles and sizes. Overall, these enhancements focus on providing greater control over typography in block-based layouts, aligning with user feedback and needs.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Gutenberg 19.4 is now live. It&#8217;s stoke full of bug fixes from the first two weeks of WordPress 6.7 beta testing. Besides those, release lead <strong>Carlos Bravo</strong> highlighted in his post <a href=\"https://make.wordpress.org/core/2024/10/09/whats-new-in-gutenberg-15-9-31-may-2/\"><strong>Whatâ€™s new in Gutenberg 19.4? (9 Oct)</strong></a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/10/09/whats-new-in-gutenberg-15-9-31-may-2/#new-write-design-modes\">New Write / Design modes.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/09/whats-new-in-gutenberg-15-9-31-may-2/#public-block-bindings\">Block Bindings Editor APIs are public</a></li>\n</ul>\n\n\n\n<a href=\"https://make.wordpress.org/core/2024/10/09/whats-new-in-gutenberg-15-9-31-may-2/\"><img width=\"652\" height=\"367\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/gb-19-4-write-design-2048x1152-1.png?resize=652%2C367&ssl=1\" alt=\"\" class=\"wp-image-30395\" /></a>\n\n\n\n<p><strong>Anne Katzeff</strong>, theme developer from Boston, and I caught up on the Gutenberg Changelog episode 109. Besides covering the Gutenberg 19.4 changelog and other announcements, and we talked through <a href=\"https://www.askdesign.biz/blog/2024/01/building-my-first-wordpress-block-theme-part-1/\">Katzeff&#8217;s experience on building a block theme.</a> As always, the episode will arrive at your favorite podcast app over the weekend. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>ðŸŽ™ï¸ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-110-gutenberg-19-5-wordpress-6-7-create-block-theme-plugin/\">Gutenberg Changelog #110 â€“ Gutenberg 19.5, WordPress 6.7, Create Block Theme Plugin and a Thousand Block Themes at the Repository</a> with Joni Halabi </p>\n\n\n\n<img width=\"652\" height=\"184\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/Screenshot-2024-10-25-at-17.17.35.png?resize=652%2C184&ssl=1\" alt=\"\" class=\"wp-image-30608\" />\n</div></div>\n\n\n\n<p><strong>Joen Asmussen</strong> listed in his <strong><a href=\"https://make.wordpress.org/design/2024/10/07/design-share-65-sep-23-oct-4/\">Design Share #65 (Sep 23-Oct 4)</a> </strong>the various projects the WordPress design team has been working on: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Using Data Views to manage navigation menus</li>\n\n\n\n<li>Exploring different treatments for the&nbsp;Featured image&nbsp;control</li>\n\n\n\n<li>Favorites in Data views</li>\n\n\n\n<li>Reorganizing the&nbsp;block&nbsp;transform menu</li>\n\n\n\n<li>Contextual ordering controls in data views</li>\n\n\n\n<li>ListboxControl component</li>\n\n\n\n<li>Component Audit</li>\n</ul>\n\n\n\n<a href=\"https://make.wordpress.org/design/2024/10/07/design-share-65-sep-23-oct-4/\"><img width=\"652\" height=\"451\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/transform.webp?resize=652%2C451&ssl=1\" alt=\"\" class=\"wp-image-30400\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nick Diego</strong> published <a href=\"https://developer.wordpress.org/news/2024/10/10/whats-new-for-developers-october-2024/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Whatâ€™s new for developers? (October 2024)</strong></a>. With WordPress 6.7 just around the corner, stay up-to-date on the latest developer news from the past month, including major updates to WordPress Playground.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>FrÃ¤nk Klein</strong> published a Case Study in <a href=\"https://wpdevelopment.courses/articles/my-peak-challenge-case-study/\"><strong>How <em>My Peak Challenge</em> boosted conversion rates and engagement with a block-based website</strong></a> and share the approach of converting a site to a block-based theme. &#8220;When it came to WordPress, the agency relied on Elementor in the past. However, the poor performance and user experience led PerezCarreno &amp; Coindreau to rethink their approach. And give Full-Site Editing a try.&#8221; he wrote.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Dave Smith</strong>, core-contributor, released a stand-alone plugin, <strong><a href=\"https://wordpress.org/plugins/getdave-responsive-navigation-block/\">Responsive Navigation Block</a>.</strong> It comes with two variations of the Navigation block for desktop and mobile you can style using the styles controls. of the block editor. Via the plugin&#8217;s settings page you and update breakpoint size and unit. <em><a href=\"https://www.youtube.com/watch?v=R5kzAaEsDMg\">Dave also published a video about his new plugin</a>. </em></p>\n\n\n\n<p>On YouTube, <strong>Jamie Marsland </strong>published a little tutorial on how to use this new plugin: <a href=\"https://www.youtube.com/watch?v=0lKBhwFqAds\"><strong>WordPress Mobile Menus Fixed in 3 Minutes!</strong></a></p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On <strong>October 22 at 20:00 UTC</strong>, <strong>Wes Theron</strong> invites you to join him for the online tutorial: <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/303497771/?eventOrigin=group_events_list\"><strong>Creating a portfolio site with a block theme and patterns</strong></a>. &#8220;This will show you how to leverage an extensive patterns library to save time and build your site from a solid foundation.&#8221;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>There are now<strong> <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">993 Block Themes</a></strong><a href=\"https://wordpress.org/themes/tags/full-site-editing/\"> </a>listed in the WordPress Theme Directory. The latest additions are:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/themes/podbase/\">Podbase</a> and <a href=\"https://wordpress.org/themes/adonay/\">Adonay</a> by <a href=\"https://github.com/Automattic/themes\">Automattic</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/coach-mentor/\">Coach Mentor</a> by <a href=\"https://superbthemes.com/\">Superb Themes</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/creazione-fse/\">Creazione FSE</a> by <a href=\"https://gracethemes.com/\">Grace Themes</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/photolancer/\">Photolancer</a> by <a href=\"https://cozythemes.com/\">CozyThemes</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/drweb/\">Drweb</a> by <a href=\"https://realtimethemes.com/\">Real Time Themes</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/kids-learning-toys/\">Kids Learning Toys</a> by <a href=\"https://www.ovationthemes.com/\">Ovation Themes</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/alpha-brunch-cafe/\">Alpha Brunch Cafe</a> by <a href=\"https://profiles.wordpress.org/abuturab/\">Abu Turab</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/maxiblocks-go/\">MaxiBlocks Go</a> by <a href=\"https://profiles.wordpress.org/ckp267/\">Christiaan Pieterse</a></li>\n</ul>\n\n\n\n<a href=\"https://wordpress.org/themes/tags/full-site-editing/\"><img width=\"652\" height=\"434\" tabindex=\"0\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/10/Screenshot-2024-10-12-at-16.12.11.png?resize=652%2C434&ssl=1\" alt=\"\" class=\"wp-image-30402\" /></a>\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2024&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly.â€‚The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a>&nbsp;|&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</h2>\n\n\n\n<p>In  a webinar for Cloudways, I shared <a href=\"https://www.youtube.com/watch?v=DURhjdY6R8U\"><strong>How to use Create-Block scaffolding tool for creating blocks</strong></a> and demo&#8217;s the basic examples of building a copyright block. I followed the example of the Block Editor Handbook: <a href=\"https://developer.wordpress.org/block-editor/getting-started/tutorial/\">Tutorial: Build your first block</a>. The slidedeck also <a href=\"https://docs.google.com/presentation/d/1XCgATXz0bsM5BZ9TsMHAy3uTeQxmfGBaOw3l4Ihzj14/edit#slide=id.g306224f485d_0_125\">provides a ton of resources</a> on block development with articles from the WordPress Developer Blog. </p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you depend on <a href=\"https://www.wpgraphql.com/\"><strong>WPGraphQL</strong></a> for your headless WordPress instance, rejoice as Jason Bahl has joined Automattic and is <a href=\"https://www.wpgraphql.com/2024/10/07/wpgraphql-becomes-a-canonical-plugin-my-move-to-automattic\">back full-time working on it as a canonical plugin for WordPress</a>. </p>\n\n\n\n<p><strong>Jyolsna JE</strong> at WPTavern picked up the story: <a href=\"https://wptavern.com/wpgraphql-to-become-a-canonical-plugin-as-its-creator-joins-automattic\"><strong>WPGraphQL to Become a Canonical Plugin as its Creator Joins Automattic</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <strong>Developer Hours</strong> are now live-streaming on YouTube. On October 15, 2024, at 15:00 UTC you can discuss <a href=\"https://www.youtube.com/live/6lBIkf3xNDw\"><strong>How to Simplify Client Editing in WordPress</strong></a> with Jamie Marsland and Nick Diego. &#8220;Youâ€™ll learn practical techniques like using locked patterns, enabling content-only editing, disabling specific blocks, configuring theme.json, adjusting Editor settings, and restricting block functionality. Weâ€™ll also discuss the current limitations and how you can contribute to the future of WordPress to better support your clients and non-technical users.&#8221; They wrote in their description. </p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest live stream, <strong>Ryan Welcher</strong> was <a href=\"https://www.youtube.com/watch?v=NIDS4PFUHBI\"><strong>looking at the Block Bindings API coming in WordPress 6.7</strong></a>, exploring the now public APIs stable editor APIs. A dev note is in the works and will come out with the Fieldguide later this month. For a preview, you can consult the PR <a href=\"https://github.com/WordPress/gutenberg/pull/65713\">Block Bindings: Open the stable editor APIs&nbsp;#65713</a> for some insights, too. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Featured Image:</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Oct 2024 09:14:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Gravatar: The Non-Technical Founderâ€™s Guide to Building a Robust Social Network\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://blog.gravatar.com/2024/10/11/create-a-social-network/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25215:\"<p>We believe that the days of a few large social networks are over, and the future is many, more niche platforms.</p>\n\n\n\n<p>Users are increasingly concerned about privacy and moderation policies on major social media apps. This shift has sparked interest in newer, more focused social networks that cater to specific interests or communities.</p>\n\n\n\n<p>Creating a social media platform isn&#8217;t just for tech giants anymore. Whether you&#8217;re a seasoned entrepreneur or a visionary with a unique idea, there are various approaches to bringing your social network to life. This guide explores different methods and provides a checklist of essential elements for launching your app.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Laying the Groundwork for Your Social Network</strong></h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Defining Your Vision and Unique Selling Proposition (USP)</strong></h3>\n\n\n\n<p>Your vision sets the foundation for your social network. It should address a specific need or gap in the market while aligning with your personal or company values. Here are some examples:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Long-term goal:</strong> &#8220;Create a platform that connects pet owners for playdates and advice sharing.&#8221;</li>\n\n\n\n<li><strong>Potential pivot:</strong> &#8220;Expand from pet owners to include pet service providers like vets and groomers.&#8221;</li>\n\n\n\n<li><strong>Value alignment:</strong> &#8220;Promote responsible pet ownership and animal welfare.&#8221;</li>\n</ul>\n\n\n\n<p>Your USP is what sets your platform apart. It could be a unique feature, target audience, or approach to content. Examples include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Unique feature:</strong> &#8220;AI-powered pet breed identification from photos.&#8221;</li>\n\n\n\n<li><strong>Target audience:</strong> &#8220;Focus on exotic pet owners, an underserved niche.&#8221;</li>\n\n\n\n<li><strong>Content approach:</strong> &#8220;User-generated care guides verified by veterinarians.&#8221;</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Market Research and Competitor Analysis</strong></h3>\n\n\n\n<p>Thorough market research involves both quantitative and qualitative methods:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Quantitative: </strong>Online surveys about pet ownership habits and social media usage.</li>\n\n\n\n<li><strong>Qualitative: </strong>Focus groups with pet owners to understand their needs and frustrations.</li>\n\n\n\n<li><strong>Cultural considerations:</strong> Pet ownership norms in different countries or regions.</li>\n</ul>\n\n\n\n<p>Identify market gaps by exploring current trends. For example, you might find that while there are many general pet forums, there&#8217;s no dedicated platform for aquarium enthusiasts.</p>\n\n\n\n<p>For competitor analysis, examine existing pet-related social networks:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Strengths: </strong>Large user base, extensive pet care articles.</li>\n\n\n\n<li><strong>Weaknesses: </strong>Limited features for local connections and generic content.</li>\n\n\n\n<li><strong>Business model:</strong> Advertising revenue, premium memberships.</li>\n</ul>\n\n\n\n<p>Use a SWOT (Strengths, Weaknesses, Opportunities, and Threats) analysis to compare your idea against competitors:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Strengths: </strong>Niche focus, unique features.</li>\n\n\n\n<li><strong>Weaknesses: </strong>Smaller initial user base, limited resources.</li>\n\n\n\n<li><strong>Opportunities: </strong>Growing pet ownership trends and increasing demand for specialized information.</li>\n\n\n\n<li><strong>Threats: </strong>Potential for larger networks to add similar features.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Creating User Personas</strong></h3>\n\n\n\n<p>Develop multiple personas representing different user segments. For example:</p>\n\n\n\n<table class=\"has-fixed-layout\"><tbody><tr><td colspan=\"2\"><strong>Sarah, 28, first-time dog owner</strong></td></tr><tr><td><strong>Demographics</strong></td><td>Young professional, urban dweller.</td></tr><tr><td><strong>Psychographics</strong></td><td>Seeks advice, values convenience.</td></tr><tr><td><strong>Goals</strong></td><td>Find local dog parks, connect with experienced owners.</td></tr><tr><td><strong>Frustrations</strong></td><td>Overwhelmed by conflicting online advice.</td></tr></tbody></table>\n\n\n\n<p><br />Consider creating an anti-persona to understand who you&#8217;re not targeting and focus your features and marketing efforts on actual pet owners.<br /></p>\n\n\n\n<table class=\"has-fixed-layout\"><tbody><tr><td colspan=\"2\"><strong>Emma, 60, non-pet owner</strong></td></tr><tr><td><strong>Demographics</strong></td><td>60, retired, small-town resident.</td></tr><tr><td><strong>Psychographics</strong></td><td>Values a low-maintenance, pet-free lifestyle.</td></tr><tr><td><strong>Goals</strong></td><td>Enjoys travel and hobbies, avoids pet responsibilities.</td></tr><tr><td><strong>Frustrations</strong></td><td>Finds pet care burdensome, dislikes animals in public spaces</td></tr></tbody></table>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Outlining Core Features and Functionality</strong></h3>\n\n\n\n<p>Start with must-have features for your Minimum Viable Product (MVP). Use the MoSCoW method to prioritize:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Must have:</strong> User profiles, pet profiles, and friend connections.</li>\n\n\n\n<li><strong>Should have:</strong> Photo sharing, direct messaging.</li>\n\n\n\n<li><strong>Could have: </strong>Event planning for pet meetups.</li>\n\n\n\n<li><strong>Won&#8217;t have (for MVP):</strong> Marketplace for pet products.</li>\n</ul>\n\n\n\n<p>Technical complexity and resource requirements will inevitably have an impact on the features you get started with. For instance, implementing a real-time chat feature might require more resources than a basic messaging system. The good news is that as long as you priortize UX at every stage of your network, itâ€™s fine to roll out more advanced features later!&nbsp;</p>\n\n\n\n<p>Finally, <strong>plan for scalability from the start.</strong> Design your database structure to accommodate future growth, such as adding new pet types or expanding to international markets. Letting your users know whatâ€™s coming through a roadmap is a great way to keep them engaged or interested even though your network might be at early stages.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Essential Elements of a Social Media Platform</strong></h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>User Authentication and Security</strong></h3>\n\n\n\n<p>You need <a href=\"https://blog.gravatar.com/2024/07/26/user-authentication-methods/\">reliable authentication and security measures</a> to protect user data and build trust. Consider implementing:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Multiple authentication methods:</strong>\n<ul class=\"wp-block-list\">\n<li>Email and password.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<img tabindex=\"0\" width=\"2289\" height=\"1145\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/pap_graphic.png\" alt=\"Password Authentication Protocol example\" class=\"wp-image-2277\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>Phone number verification.</li>\n\n\n\n<li><a href=\"https://blog.gravatar.com/2024/05/09/single-sign-on-solutions/\">Single sign-on</a> (e.g., Sign in with <a href=\"https://www.google.co.uk/\">Google</a>, <a href=\"https://www.facebook.com/\">Facebook</a>, or <a href=\"https://www.apple.com/\">Apple</a>).</li>\n</ul>\n\n\n\n<img tabindex=\"0\" width=\"1500\" height=\"1500\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/signin_iag.png\" alt=\"Single Sign On example\" class=\"wp-image-2279\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Two-Factor Authentication (2FA):</strong>\n<ul class=\"wp-block-list\">\n<li>SMS codes.</li>\n\n\n\n<li>Authenticator apps (like <a href=\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&hl=en\">Google Authenticator</a> or <a href=\"https://authy.com/\">Authy</a>).</li>\n\n\n\n<li><a href=\"https://blog.gravatar.com/2024/05/04/authentication-protocols/\">Biometric verification</a> (fingerprint or face recognition).</li>\n</ul>\n</li>\n</ul>\n\n\n\n<img tabindex=\"0\" width=\"660\" height=\"371\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/biometric-verification.png?w=660\" alt=\"Biometric verification\" class=\"wp-image-2280\" />\n\n\n\n<p>Ensure compliance with data protection regulations like <a href=\"https://gdpr-info.eu/\">GDPR</a> and <a href=\"https://oag.ca.gov/privacy/ccpa\">CCPA</a>. This includes:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Clear privacy policies.</li>\n\n\n\n<li>User consent for data collection.</li>\n\n\n\n<li>Options for users to download or delete their data.</li>\n</ul>\n\n\n\n<p>Regularly conduct security audits and penetration testing to identify and address vulnerabilities.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>User Profiles and Account Management</strong></h3>\n\n\n\n<p>Create comprehensive yet <a href=\"https://blog.gravatar.com/2024/06/05/user-profile-page-examples/\">flexible user profiles</a>:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Basic information:</strong> Name, username, profile picture.</li>\n\n\n\n<li><strong>Optional fields:</strong> Bio, location, interests.</li>\n\n\n\n<li><strong>Pet-specific info (for a pet-focused network): </strong>Pet types, breeds, ages.</li>\n</ul>\n\n\n\n<p>Offer granular privacy settings:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Control who can see profile information.</li>\n\n\n\n<li>Options to make certain posts public or private.</li>\n</ul>\n\n\n\n<p>Consider implementing verification systems for specific user types, such as certified pet trainers or veterinarians.</p>\n\n\n\n<p><img src=\"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f4a1.png\" alt=\"ðŸ’¡\" class=\"wp-smiley\" /> If youâ€™re looking for an excellent profile management tool to integrate into your social networking platform, <a href=\"https://gravatar.com/\">Gravatar</a> allows users to create and manage their online identities across multiple platforms, saving development time and ensuring profile consistency.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Content Creation and Sharing</strong></h3>\n\n\n\n<p>Support various content types to keep your platform engaging:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Text posts (with character limits appropriate for your audience).</li>\n\n\n\n<li>Images and photo albums.</li>\n\n\n\n<li>Videos (consider length limits based on your server capacity).</li>\n\n\n\n<li>Links (with preview capabilities).</li>\n\n\n\n<li>Polls or quizzes.</li>\n</ul>\n\n\n\n<p>Implement content moderation tools:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Automated filters for inappropriate content.</li>\n\n\n\n<li>User reporting systems.</li>\n\n\n\n<li>Human moderation for complex cases.</li>\n</ul>\n\n\n\n<p>Address copyright issues by implementing <a href=\"https://copyrightalliance.org/education/copyright-law-explained/the-digital-millennium-copyright-act-dmca/dmca-notice-takedown-process/\">DMCA takedown procedures</a> and educating users about copyright laws.</p>\n\n\n\n<p>Optimize for mobile:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Easy photo/video uploads from mobile devices.</li>\n\n\n\n<li>Mobile-friendly content creation interfaces.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Social Interactions</strong></h3>\n\n\n\n<p>Design intuitive features for connecting and interacting:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Friend/follow actions:\n<ul class=\"wp-block-list\">\n<li><em>Add Friend</em> or <em>Follow</em> buttons on profiles.</li>\n\n\n\n<li>Suggestions for new connections based on mutual friends or interests.</li>\n</ul>\n</li>\n\n\n\n<li>Privacy controls:\n<ul class=\"wp-block-list\">\n<li>Blocking and muting options.</li>\n\n\n\n<li>Control over who can send messages or comment on posts.</li>\n</ul>\n</li>\n\n\n\n<li>Engagement features:\n<ul class=\"wp-block-list\">\n<li>Likes, reactions (e.g., love, laugh, support).</li>\n\n\n\n<li><a href=\"https://blog.gravatar.com/2024/07/11/enable-comments-in-wordpress/\">Comments with threading for conversations</a>.</li>\n\n\n\n<li>Sharing options (within the platform and to external sites).</li>\n</ul>\n</li>\n\n\n\n<li>Groups and communities:\n<ul class=\"wp-block-list\">\n<li>Public and private group options.</li>\n\n\n\n<li>Group roles (admin, moderator, member).</li>\n\n\n\n<li>Group-specific content feeds.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>News Feeds and Content Discovery</strong></h3>\n\n\n\n<p>Create an engaging and personalized content experience:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Algorithmic feed:</strong>\n<ul class=\"wp-block-list\">\n<li>Balance between chronological order and relevance.</li>\n\n\n\n<li>Machine learning for personalized recommendations.</li>\n</ul>\n</li>\n\n\n\n<li><strong>Discovery features:</strong>\n<ul class=\"wp-block-list\">\n<li>&#8220;Explore&#8221; or &#8220;Trending&#8221; sections.</li>\n\n\n\n<li>Hashtag systems for content categorization.</li>\n</ul>\n</li>\n\n\n\n<li><strong>Ethical considerations:</strong>\n<ul class=\"wp-block-list\">\n<li>Transparency about how content is ranked.</li>\n\n\n\n<li>Options to see a chronological feed to avoid filter bubbles.</li>\n</ul>\n</li>\n\n\n\n<li><strong>User control:</strong>\n<ul class=\"wp-block-list\">\n<li>Ability to mute certain topics or users.</li>\n\n\n\n<li>&#8220;See less like this&#8221; options for fine-tuning preferences.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Notifications and Alerts</strong></h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Types of notifications:</strong>\n<ul class=\"wp-block-list\">\n<li>New friend requests or followers.</li>\n\n\n\n<li>Likes, comments, and mentions.</li>\n\n\n\n<li>Direct messages.</li>\n\n\n\n<li>Group activity updates.</li>\n</ul>\n</li>\n\n\n\n<li><strong>Delivery methods:</strong>\n<ul class=\"wp-block-list\">\n<li>In-app notifications.</li>\n\n\n\n<li>Push notifications for mobile devices.</li>\n\n\n\n<li>Email digests (daily or weekly summaries).</li>\n</ul>\n</li>\n\n\n\n<li><strong>User control:</strong>\n<ul class=\"wp-block-list\">\n<li>Granular settings for each notification type.</li>\n\n\n\n<li><em>Do Not Disturb</em> modes or scheduled quiet times.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Development Approaches: Choosing the Right Path</strong></h2>\n\n\n\n<table class=\"has-fixed-layout\"><tbody><tr><td><strong>Approach</strong></td><td><strong>Pros</strong></td><td><strong>Cons</strong></td><td><strong>Best For</strong></td><td><strong>Examples</strong></td></tr><tr><td><strong>No-code Solutions</strong></td><td>Rapid prototyping and iteration. Lower initial development costs. Accessible to non-technical founders.</td><td>Limited customization options. Potential performance issues at scale. Dependency on the no-code platform&#8217;s future.</td><td>MVPs, small-scale projects, validation of concepts.</td><td><a href=\"https://wordpress.com/\">WordPress</a> + <a href=\"https://buddypress.org/\">BuddyPress</a><a href=\"https://bubble.io/\">Bubble</a><a href=\"https://www.adalo.com/\">Adalo</a>&nbsp;<a href=\"https://draftbit.com/\">Draftbit</a></td></tr><tr><td><strong>App Templates and White-Label Solutions</strong></td><td>Faster time-to-market with pre-built features. Essential social network functionality included. More cost-effective than full custom development.</td><td>Less unique in terms of features and design. May include unnecessary features. Potential licensing costs and restrictions.</td><td>Entrepreneurs seeking a balance between customization and speed. Niche social networks with standard features.</td><td><a href=\"https://socialengine.com/\">SocialEngine</a><a href=\"https://www.ning.com/\">Ning</a><a href=\"https://wordpress.org/plugins/peepso-core/\">PeepSo</a> (WordPress plugin)</td></tr><tr><td><strong>Custom Development</strong></td><td>Full control over features, design, and UX. Better performance and scalability potential. Ownership of all code and IP.</td><td>Higher initial costs. Longer development time. Requires ongoing maintenance and updates.</td><td>Unique social network concepts. Platforms expecting high growth. Projects with specific technical requirements.</td><td>Facebook (initial version)<a href=\"https://www.linkedin.com/\">LinkedIn</a><a href=\"https://www.tiktok.com/\">TikTok</a></td></tr><tr><td><strong>Hybrid Approaches</strong></td><td>Combines benefits of multiple methods. Allows for gradual scaling and customization. Flexibility in development.</td><td>Can be complex to manage. Requires clear planning and architecture. May lead to technical debt if not managed properly.</td><td>Startups with some technical expertise. Projects with evolving requirements. Platforms needing quick launch with future customization.</td><td>Starting with WordPress + BuddyPress, then adding custom featuresUsing a white-label solution with custom front-end</td></tr></tbody></table>\n\n\n\n<p><br />When choosing your approach, consider your technical expertise, budget, timeline, and long-term goals. For example, if you&#8217;re validating a concept, a no-code solution like Bubble might be ideal. For a unique, scalable platform, custom development could be the best choice.</p>\n\n\n\n<p>Hybrid approaches offer flexibility. You might start with a template and gradually replace components with custom code as you grow. Or use microservices architecture to combine off-the-shelf solutions with custom-built features.</p>\n\n\n\n<p>Remember to leverage APIs and third-party services for non-core functionality. For instance, <a href=\"https://akismet.com/\">Akismet</a> for spam protection or <a href=\"https://blog.gravatar.com/2024/06/03/profiles-as-a-service/\">Gravatarâ€™s REST API</a> for user avatars can save development time and improve your platform&#8217;s features.</p>\n\n\n\n<p>Whichever path you choose, focus on creating value for your users and be prepared to adapt your approach as your social network evolves.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Leveraging Gravatar for User Profile Management</strong></h2>\n\n\n\n<img tabindex=\"0\" width=\"1473\" height=\"918\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/gravatar-profiles-as-a-service-1.png\" alt=\"Gravatar â€“ Profile as a Service homepage\" class=\"wp-image-2282\" />\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a> (Globally Recognized Avatar) is a powerful tool for simplifying user profile management in your social network. This service allows users to create and maintain a single online identity across multiple platforms.</p>\n\n\n\n<p>Key benefits of integrating Gravatar:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https://blog.gravatar.com/2024/09/06/onboarding-user-experience/\"><strong>Simplified user onboarding</strong></a><strong>:</strong> Users can instantly import their existing profiles, reducing registration friction.</li>\n\n\n\n<li><strong>Consistent user representation:</strong> Avatars and profile information remain uniform across various platforms.</li>\n\n\n\n<li><strong>Automatic updates: </strong>When users modify their Gravatar profile, changes reflect across all connected platforms.</li>\n\n\n\n<li><strong>Reduced development time:</strong> Eliminates the need to build a complex profile management system from scratch.</li>\n</ol>\n\n\n\n<p>Gravatar&#8217;s universal API integrates easily with various platforms, from <a href=\"https://wordpress.org/\">WordPress</a> sites to custom-coded applications. Popular platforms like <a href=\"https://github.com/\">GitHub</a>, <a href=\"https://slack.com/\">Slack</a>, and <a href=\"https://openai.com/\">OpenAI</a> already use Gravatar, providing a familiar experience for many users.</p>\n\n\n\n<p>Implementation is straightforward:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Sign up for a Gravatar developer account.</li>\n\n\n\n<li>Use the Gravatar API to fetch user profiles based on email addresses.</li>\n\n\n\n<li>Display Gravatar images using a simple URL structure.</li>\n</ul>\n\n\n\n<p>For more details on how to implement Gravatar in your social network, check out the<a href=\"https://docs.gravatar.com/api/profiles/tutorial-user-profile/\"> Gravatar API Documentation</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Ensuring Security and Data Protection</strong></h2>\n\n\n\n<p>Security and data protection are paramount for any social network, so make sure to implement these best practices to safeguard your platform:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use secure authentication methods, including multi-factor authentication.</li>\n\n\n\n<li>Encrypt all data, both in transit and at rest.</li>\n\n\n\n<li>Regularly update and patch your systems to address vulnerabilities.</li>\n\n\n\n<li>Conduct frequent security audits and penetration testing.</li>\n</ul>\n\n\n\n<p>Gravatar is a privacy-forward platform that stores user data securely and allows users to control information sharing, simplifying compliance with global data protection laws with legislation such as the GDPR and CCPA.&nbsp;</p>\n\n\n\n<p>Other compliance measures you should consider are:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Implement clear, accessible privacy policies.</li>\n\n\n\n<li>Obtain explicit user consent for data collection and usage.</li>\n\n\n\n<li>Provide options for users to access, download, and delete their data.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Launching and Growing Your Social Network</strong></h2>\n\n\n\n<p>A successful launch involves several important steps:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Beta testing: </strong>Get a small group of users to test your platform before the official launch. Their feedback will be invaluable for making improvements.</li>\n\n\n\n<li><strong>Gather user feedback:</strong> Create channels for users to easily provide feedback. This could be through in-app forms, email surveys, or user interviews.</li>\n\n\n\n<li><strong>Make iterative improvements:</strong> Use the feedback to continuously improve your platform. Be prepared to pivot if necessary.</li>\n</ol>\n\n\n\n<p>For marketing and user acquisition:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Leverage existing social media platforms to create buzz about your new network.</li>\n\n\n\n<li>Use content marketing to showcase the unique features of your platform.</li>\n\n\n\n<li>Form partnerships with influencers or brands that align with your target audience.</li>\n</ul>\n\n\n\n<p>Community management is the best strategy for retaining users and fostering a positive environment. Engage with your users regularly, moderate content effectively, and create opportunities for people to connect with each other.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Measuring Success and Iterating for Improvement</strong></h2>\n\n\n\n<p>Tracking Key Performance Indicators (KPIs) is crucial for measuring your social network&#8217;s success and guiding improvements. Focus on these essential metrics:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>User growth rate: </strong>Track new sign-ups over time.</li>\n\n\n\n<li><strong>Daily and monthly active users (DAU/MAU):</strong> Measure platform engagement.</li>\n\n\n\n<li><strong>Retention rate: </strong>Monitor how many users return regularly.</li>\n\n\n\n<li><strong>Engagement metrics: </strong>Track likes, comments, shares, and time spent on the platform.</li>\n\n\n\n<li><strong>Churn rate:</strong> Measure the percentage of users who stop using your platform.</li>\n</ul>\n\n\n\n<p>Utilize analytics tools like <a href=\"https://marketingplatform.google.com/about/analytics/\">Google Analytics</a>, <a href=\"https://jetpack.com/\">JetPack</a> (for WordPress), <a href=\"https://mixpanel.com/\">Mixpanel</a>, or custom solutions to gather and analyze this data.</p>\n\n\n\n<p>Then, make sure you implement a continuous improvement cycle:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Collect data: </strong>Regularly gather metrics and user feedback.</li>\n\n\n\n<li><strong>Analyze:</strong> Identify trends, issues, and opportunities in the data.</li>\n\n\n\n<li><strong>Hypothesize: </strong>Develop theories about how to improve based on your analysis.</li>\n\n\n\n<li><strong>Test: </strong>Implement changes on a small scale or with A/B testing.</li>\n\n\n\n<li><strong>Evaluate: </strong>Measure the impact of your changes.</li>\n\n\n\n<li><strong>Iterate: </strong>Refine successful changes and roll them out platform-wide.</li>\n</ul>\n\n\n\n<p>Stay updated on industry trends and competitor offerings to inform your improvement efforts. Remember, successful social networks continuously evolve based on user needs and behaviors.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Next Steps: Turn Your Vision into Reality</strong></h2>\n\n\n\n<p>Creating a new social media platform that offers value to users is entirely possible, with various avenues to get it done. The technical hurdles vary depending on your chosen method, but with the right approach, everything can be accomplished.</p>\n\n\n\n<p>Remember, building a social network is a journey of continuous learning and adaptation. Stay curious, be open to feedback, and don&#8217;t be afraid to iterate on your ideas. Your unique perspective as a non-technical founder can be a valuable asset in creating a platform that truly resonates with users.</p>\n\n\n\n<p>Take advantage of tools like the Gravatar API and all the benefits it brings. Explore the <a href=\"https://docs.gravatar.com/\">Gravatar Profile-as-a-Service documentation</a> to see how easy and convenient everything can be!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Oct 2024 14:54:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Do The Woo Community: Do the Woo Joins WooSesh as a Featured Community Partner Again\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/?post_type=blog&p=86039\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://dothewoo.io/blog/do-the-woo-joins-woosesh-as-a-featured-community-partner-again/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:933:\"<p><a href=\"https://woosesh.com/\">Well, get ready, <strong>WooSesh</strong> is coming October 29th and 30th. </a></p>\n\n\n\n<p>An event we all look forward to every year. And we will once again be their <em>Featured Community Partner</em>.</p>\n\n\n\n<p>For those of you that don&#8217;t know about WooSesh, it&#8217;s <em>the</em> virtual conference for WooCommerce store builders designed to help grow your&nbsp;business. In other words, you, are readers and listeners.</p>\n\n\n\n<p>It&#8217;s free to register and the schedule is amazing. Also, don&#8217;t miss the Do the Woo Recaps both days with our hosts Courtney Robertson, Jonathan Wold, Robbie Adair and Marcus Burnette.</p>\n\n\n\n<p>And make sure you watch for an episode of WordPress Event talk coming next week with founder Brian Richards and BobWP.</p>\n\n\n\n<p>But again, it&#8217;s free. <strong><a href=\"https://woosesh.com/\">So make sure you get your ticket today</a></strong>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Oct 2024 14:42:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 29 Oct 2024 12:22:13 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Tue, 29 Oct 2024 12:00:30 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20220607221029\";}','off'),
(5779186,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1730247733','off'),
(5779187,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1730204533','off'),
(5779188,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1730247733','off'),
(5779189,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/10/wordpress-community-creates-1000-block-themes-in-1000-days/\'>WordPress Community Creates 1,000 Block Themes in 1,000 Days</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-1/\'>WordPress 6.7 Release Candidate 1</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2024/10/kindness-techcrunch/\'>Matt: Kindness and Techcrunch Disrupt</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wp-engine-files-injunction-hearing-set-for-november-26-2024\'>WPTavern: WP Engine Files Injunction, Hearing Set for November 26, 2024</a></li><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/podcast/gutenberg-changelog-110-gutenberg-19-5-wordpress-6-7-create-block-theme-plugin/\'>Gutenberg Times: Gutenberg Changelog #110 â€“ Gutenberg 19.5, WordPress 6.7, Create Block Theme Plugin and a Thousand Block Themes at the Repository</a></li></ul></div>','off'),
(5779269,'_transient_timeout_geoip_31.220.103.147','1730293603','off'),
(5779270,'_transient_geoip_31.220.103.147','US','off'),
(5779274,'_transient_timeout_geoip_74.125.151.69','1730293750','off'),
(5779275,'_transient_geoip_74.125.151.69','US','off'),
(5779277,'_transient_timeout_geoip_209.85.238.171','1730293752','off'),
(5779278,'_transient_geoip_209.85.238.171','US','off'),
(5779279,'_transient_timeout_geoip_74.125.151.70','1730293754','off'),
(5779280,'_transient_geoip_74.125.151.70','US','off'),
(5779282,'_transient_timeout_geoip_209.85.238.170','1730293756','off'),
(5779283,'_transient_geoip_209.85.238.170','US','off'),
(5779298,'_transient_timeout_geoip_66.220.149.5','1730294573','off'),
(5779299,'_transient_geoip_66.220.149.5','US','off'),
(5779301,'_transient_timeout_geoip_69.171.249.1','1730294578','off'),
(5779302,'_transient_geoip_69.171.249.1','US','off'),
(5779343,'_site_transient_timeout_wp_theme_files_patterns-9a91ffd0b1eaac9a7fb79bda516b929c','1730212558','off'),
(5779344,'_site_transient_wp_theme_files_patterns-9a91ffd0b1eaac9a7fb79bda516b929c','a:2:{s:7:\"version\";s:5:\"2.8.1\";s:8:\"patterns\";a:0:{}}','off'),
(5779353,'_transient_timeout_geoip_104.224.1.106','1730297868','off'),
(5779354,'_transient_geoip_104.224.1.106','US','off');
/*!40000 ALTER TABLE `wphu_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_postmeta`
--

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

--
-- Dumping data for table `wphu_postmeta`
--

LOCK TABLES `wphu_postmeta` WRITE;
/*!40000 ALTER TABLE `wphu_postmeta` DISABLE KEYS */;
INSERT INTO `wphu_postmeta` VALUES
(2,3,'_wp_page_template','elementor_header_footer'),
(11,9,'_customize_changeset_uuid','33f78bf8-2ccd-4b8c-8bcd-d8139a2ae6b0'),
(14,12,'_elementor_edit_mode','builder'),
(15,12,'_elementor_template_type','kit'),
(16,12,'_elementor_version','3.21.4'),
(17,12,'_elementor_pro_version','3.21.2'),
(190,43,'_elementor_edit_mode','builder'),
(191,43,'_elementor_template_type','header'),
(194,43,'_elementor_version','3.19.2'),
(195,43,'_elementor_pro_version','3.19.2'),
(197,43,'_edit_lock','1726824728:1'),
(207,43,'_wp_page_template','default'),
(208,43,'_elementor_data','[{\"id\":\"cea6091\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"30\",\"background_background\":\"gradient\",\"background_color\":\"#10A4E3\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"gap\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"motion_fx_scale_direction\":\"in-out\",\"custom_height_header_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"hide_header\":\"yes\",\"scroll_distance_hide_header_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"scroll_distance\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"custom_height_header\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"scroll_distance_hide_header\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color_b\":\"#43E1FF\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"8fe6cb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.548,\"_inline_size_mobile\":90,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":90,\"content_position\":\"center\"},\"elements\":[{\"id\":\"0f65a0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Choice-Logo-Banner-1.png\",\"id\":32196,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image_size\":\"custom\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"link_to\":\"custom\",\"link\":{\"url\":\"www.choiceresources.co.uk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":101.457},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":309.172}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ceb8c31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":62.444,\"_inline_size_mobile\":10,\"_inline_size_tablet\":10,\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\"},\"elements\":[{\"id\":\"7c5aeb4\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menue-2\",\"pointer\":\"background\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"pointer_color_menu_item_hover\":\"#F8049C\",\"pointer_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"toggle_color\":\"#2144B7\",\"toggle_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"stax_visibility_user_role_enabled\":\"yes\",\"stax_visibility_user_role_conditions\":[\"ecl-user\",\"administrator\"],\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color_b\":\"\",\"_background_hover_background\":\"gradient\",\"_background_hover_color_b\":\"\",\"full_width\":\"stretch\",\"background_color_dropdown_item\":\"#10A4E3\",\"background_color_dropdown_item_hover\":\"#F8049C\",\"dropdown_border_border\":\"dotted\",\"dropdown_border_width_mobile\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"dropdown_border_color\":\"#0DCFFF\",\"padding_horizontal_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"toggle_background_color\":\"#10A4E3\",\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"toggle_border_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"toggle_border_radius_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"align_items\":\"right\",\"menu_typography_font_family\":\"Lilita One\",\"color_dropdown_item\":\"#FFFFFF\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Lilita One\",\"stax_visibility_show_hide\":\"yes\",\"border_radius_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":26.297},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false},{\"id\":\"672e01a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.192,\"_inline_size_mobile\":100,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-31\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cdc2940\",\"elType\":\"widget\",\"settings\":{\"icon\":\"cart-solid\",\"hide_empty_indicator\":\"hide\",\"alignment_mobile\":\"right\",\"toggle_button_text_color\":\"#FFFFFF\",\"toggle_button_icon_color\":\"#FFFFFF\",\"toggle_button_border_color\":\"#02010100\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"alignment_tablet\":\"right\",\"_background_background\":\"gradient\",\"_background_color_b\":\"\",\"_background_hover_background\":\"gradient\",\"_background_hover_color_b\":\"\"},\"elements\":[],\"widgetType\":\"woocommerce-menu-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(218,43,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(293,12,'_elementor_page_settings','a:52:{s:13:\"custom_colors\";a:0:{}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6CCD20\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#00FF23\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FFFA21\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Dekko\";s:22:\"typography_font_weight\";s:3:\"500\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Dekko\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Dekko\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Dekko\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:1:{i:0;a:4:{s:3:\"_id\";s:7:\"9aa7437\";s:5:\"title\";s:11:\"New Item #1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Quicksand\";}}s:21:\"default_generic_fonts\";s:10:\"Saserifns-\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Dekko\";s:9:\"site_name\";s:16:\"Choice Resources\";s:16:\"site_description\";s:56:\"Free Printables that share God&#039;s Word with Children\";s:26:\"body_background_background\";s:7:\"classic\";s:21:\"body_background_color\";s:7:\"#D1F7FF\";s:23:\"body_background_color_b\";s:7:\"#F2FF8B\";s:29:\"body_background_gradient_type\";s:6:\"radial\";s:21:\"body_background_image\";a:3:{s:3:\"url\";s:94:\"http://choiceresources.co.uk/wp-content/uploads/2021/03/Yellow-Lemon-Children-Book-Cover-7.png\";s:2:\"id\";i:1141;s:4:\"size\";s:0:\"\";}s:25:\"mobile_browser_background\";s:7:\"#D1F7FF\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:12:\"site_favicon\";a:5:{s:3:\"url\";s:81:\"https://choiceresources.co.uk/wp-content/uploads/2021/03/choice-Logo-Newest-3.png\";s:2:\"id\";i:13545;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:26:\"body_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:15:\"activeItemIndex\";i:1;s:9:\"site_logo\";a:5:{s:3:\"url\";s:81:\"https://choiceresources.co.uk/wp-content/uploads/2021/03/choice-Logo-Newest-3.png\";s:2:\"id\";i:13545;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:22:\"body_background_repeat\";s:9:\"no-repeat\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:20:\"body_background_size\";s:7:\"initial\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:10:\"Lilita One\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:10:\"Lilita One\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:10:\"Lilita One\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:10:\"Lilita One\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:10:\"Lilita One\";s:8:\"h1_color\";s:7:\"#2144B7\";s:8:\"h4_color\";s:7:\"#2144B7\";s:8:\"h3_color\";s:7:\"#2144B7\";s:8:\"h5_color\";s:7:\"#2144B7\";s:8:\"h6_color\";s:7:\"#2144B7\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:10:\"custom_css\";s:2796:\"\r\n.woocommerce.woolentor_current_theme_hello-elementor span.onsale, .woolentor_current_theme_hello-elementor span.onsale, .elementor-widget-woolentor-product-tab span.onsale {\r\n    background-color: #e5248acc;\r\n    border-radius: 3px;\r\n    color: #fff;\r\n    font-size: 14px;\r\n    font-weight: 500;\r\n    left: 15px;\r\n    top: 15px;\r\n    line-height: 1 !important;\r\n    min-height: inherit !important;\r\n    min-width: inherit !important;\r\n    padding: 5px 10px;\r\n    position: absolute;\r\n}\r\n\r\n/*Auto Floating Shapes*/\r\n.auto-moving1{\r\n    animation: linear 20s animationFramesOne infinite;\r\n}\r\n.auto-moving2{\r\n    animation: linear 20s animationFramesTwo infinite;\r\n}\r\n.auto-moving3{\r\n    animation: linear 20s animationFramesThree infinite;\r\n}\r\n.auto-moving4{\r\n    animation: linear 20s animationFramesFour infinite;\r\n}\r\n.auto-moving5{\r\n    animation: linear 20s animationFramesFive infinite;\r\n}\r\n@keyframes animationFramesOne {\r\n    0% {\r\n        transform: translate(0px, 0px) rotate(0deg);\r\n    }\r\n    20% {\r\n        transform: translate(73px, -1px) rotate(36deg);\r\n    }\r\n    40% {\r\n        transform: translate(141px, 72px) rotate(72deg);\r\n    }\r\n    60% {\r\n        transform: translate(83px, 122px) rotate(108deg);\r\n    }\r\n    80% {\r\n        transform: translate(-40px, 72px) rotate(144deg);\r\n    }\r\n    100% {\r\n        transform: translate(0px, 0px) rotate(0deg);\r\n    }\r\n}\r\n@keyframes animationFramesTwo {\r\n    0% {\r\n        transform: translate(0px, 0px) rotate(0deg) scale(1);\r\n    }\r\n    20% {\r\n        transform: translate(73px, -1px) rotate(36deg) scale(0.9);\r\n    }\r\n    40% {\r\n        transform: translate(141px, 72px) rotate(72deg) scale(1);\r\n    }\r\n    60% {\r\n        transform: translate(83px, 122px) rotate(108deg) scale(1.2);\r\n    }\r\n    80% {\r\n        transform: translate(-40px, 72px) rotate(144deg) scale(1.1);\r\n    }\r\n    100% {\r\n        transform: translate(0px, 0px) rotate(0deg) scale(1);\r\n    }\r\n}\r\n@keyframes animationFramesThree {\r\n    0% {\r\n        transform: translate(165px, -179px);\r\n    }\r\n    100% {\r\n        transform: translate(-346px, 617px);\r\n    }\r\n}\r\n@keyframes animationFramesFour {\r\n    0% {\r\n        transform: translate(-300px, 151px) rotate(0deg);\r\n    }\r\n    100% {\r\n        transform: translate(251px, -200px) rotate(180deg);\r\n    }\r\n}\r\n@keyframes animationFramesFive {\r\n    0% {\r\n        transform: translate(61px, -99px) rotate(0deg);\r\n    }\r\n    21% {\r\n        transform: translate(4px, -190px) rotate(38deg);\r\n    }\r\n    41% {\r\n        transform: translate(-139px, -200px) rotate(74deg);\r\n    }\r\n    60% {\r\n        transform: translate(-263px, -164px) rotate(108deg);\r\n    }\r\n    80% {\r\n        transform: translate(-195px, -49px) rotate(144deg);\r\n    }\r\n    100% {\r\n        transform: translate(-1px, 0px) rotate(180deg);\r\n    }\r\n}\r\n\r\n\r\n\r\n\r\n\r\n\";s:29:\"woocommerce_myaccount_page_id\";i:19564;s:8:\"h2_color\";s:7:\"#2144B7\";s:25:\"h6_typography_font_family\";s:10:\"Lilita One\";s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:36:\"woocommerce_purchase_summary_page_id\";b:0;s:24:\"woocommerce_cart_page_id\";s:2:\"27\";s:28:\"woocommerce_checkout_page_id\";s:2:\"28\";s:25:\"woocommerce_terms_page_id\";s:0:\"\";s:24:\"woocommerce_shop_page_id\";s:0:\"\";}'),
(583,12,'_edit_lock','1715068539:1'),
(590,12,'_wp_page_template','default'),
(591,12,'_elementor_data','[]'),
(1321,225,'_menu_item_type','post_type'),
(1322,225,'_menu_item_menu_item_parent','0'),
(1323,225,'_menu_item_object_id','29'),
(1324,225,'_menu_item_object','page'),
(1325,225,'_menu_item_target',''),
(1326,225,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1327,225,'_menu_item_xfn',''),
(1328,225,'_menu_item_url',''),
(1349,228,'_menu_item_type','post_type'),
(1350,228,'_menu_item_menu_item_parent','0'),
(1351,228,'_menu_item_object_id','27'),
(1352,228,'_menu_item_object','page'),
(1353,228,'_menu_item_target',''),
(1354,228,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1355,228,'_menu_item_xfn',''),
(1356,228,'_menu_item_url',''),
(1359,9,'_edit_lock','1715290181:1'),
(3660,9,'_elementor_edit_mode','builder'),
(3661,9,'_elementor_template_type','wp-page'),
(3662,9,'_elementor_version','3.21.4'),
(3663,9,'_elementor_pro_version','3.21.2'),
(3684,9,'_wp_page_template','elementor_header_footer'),
(3685,9,'_elementor_data','[{\"id\":\"dccdf88\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"background_color\":\"#B4E3FF\"},\"elements\":[{\"id\":\"122ffe0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7c2d17f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"ec1bcc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"100\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"c1c60ca\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"7e48c34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"align_mobile\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2abd5a2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1ad9d26\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"woocommerce-product-rating\"},{\"id\":\"df78ce5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need to get in touch?\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aee1939\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Your feedback and enquiries are very important to us, and we are dedicated to responding to your messages as quickly as we can.<\\/p><p>Please allow 3 working days for non-urgent enquiries and 24 hours for urgent enquiries.<\\/p><p>For anything else, connect with us on our social pages using the links below.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":68.333},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":305.703},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ade8b6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Get in touch today\",\"form_fields\":[{\"custom_id\":\"name\",\"placeholder\":\"Name\",\"_id\":\"6a833bf\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"placeholder\":\"Email\",\"_id\":\"c02ad01\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"placeholder\":\"Message\",\"_id\":\"1087517\"},{\"_id\":\"2ef0406\",\"field_type\":\"recaptcha\",\"custom_id\":\"field_2ef0406\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from \\\"Choice Resources\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from \\\"Choice Resources\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"row_gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_background_color\":\"#0DCFFF\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"button_align\":\"center\",\"button_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFFBF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#11BA24\",\"html_typography_typography\":\"custom\",\"server_message\":\"Your submission failed because of a server error.\",\"field_border_color\":\"#004AAD\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":41.373},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":313},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"aaf2cdc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"4038be1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"link\":{\"url\":\"#TOP\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-up\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_css_id\":\"TOP\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_background\":\"gradient\",\"background_color\":\"#02010100\",\"background_color_b\":\"#F2295B00\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"858994d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8705108\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"TOP\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}]'),
(3694,29,'_edit_lock','1691927857:1'),
(3695,29,'_elementor_edit_mode','builder'),
(3696,29,'_elementor_template_type','wp-page'),
(3697,29,'_elementor_version','3.12.1'),
(3698,29,'_elementor_pro_version','3.12.0'),
(3713,29,'_wp_page_template','elementor_header_footer'),
(3714,29,'_elementor_data','[{\"id\":\"abe1dac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"stax_visibility_show_hide\":\"yes\",\"stax_visibility_user_role_enabled\":\"yes\",\"stax_visibility_user_role_conditions\":[\"ecl-user\",\"administrator\"]},\"elements\":[{\"id\":\"fcb7669\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30.873000000000001108446667785756289958953857421875},\"elements\":[],\"isInner\":false},{\"id\":\"248c891\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30.45400000000000062527760746888816356658935546875},\"elements\":[{\"id\":\"1e7ed8d\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[forminator_form id=\\\"20612\\\"]\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false},{\"id\":\"0caa05d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.3370000000000032969182939268648624420166015625},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(4086,577,'_elementor_edit_mode','builder'),
(4087,577,'_elementor_template_type','footer'),
(4090,577,'_elementor_version','3.21.4'),
(4091,577,'_elementor_pro_version','3.21.2'),
(4092,577,'_edit_lock','1721257683:1'),
(4093,577,'_wp_page_template','default'),
(4094,577,'_elementor_data','[{\"id\":\"17d82c6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#43E1FFE6\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":181,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":136,\"sizes\":[]},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"fba2f13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"2437ef2\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"flex-start\",\"flex_align_items\":\"flex-start\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"bd9ae32\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Let\'s keep in touch:\",\"rotate_iteration_delay\":3000,\"alignment_tablet\":\"left\",\"marker_color\":\"#2A7DE1\",\"title_color\":\"#0A51FA\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"words_color\":\"#0A51FA\",\"words_typography_typography\":\"custom\",\"highlighted_text_background_color\":\"#FFFFFF00\",\"highlighted_text_color\":\"#0A51FA\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"3\",\"left\":\"11\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":25.85},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":455.688},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":285},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_color\":\"#0D42C0\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"ec45357\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"width_tablet\":{\"unit\":\"%\",\"size\":101.447},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"flex-start\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"c9367bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":39.53},\"flex_justify_content\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"flex_gap\":{\"column\":\"0\",\"row\":\"1\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"width_mobile\":{\"unit\":\"px\",\"size\":290},\"_element_width_mobile\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":240.375},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"0810d2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join our newsletter and be the first to hear about our&nbsp;<span style=\\\"color: #f8049c;\\\">NEW<\\/span> Activities!<\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":61.035},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"25c6a12\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[mautic type=\\\"form\\\" id=\\\"1\\\"]\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true},{\"id\":\"c3f485d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":39.53},\"flex_justify_content\":\"center\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"_flex_size\":\"none\",\"flex_gap\":{\"column\":\"0\",\"row\":\"1\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"width_mobile\":{\"unit\":\"px\",\"size\":291},\"_element_width_mobile\":\"initial\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":188.234},\"_element_width_tablet\":\"initial\",\"flex_align_items_mobile\":\"center\"},\"elements\":[{\"id\":\"657a7d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Social Links\",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#B4E3FF\",\"icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"position_mobile\":\"left\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"323f0f2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-pinterest\",\"library\":\"fa-brands\"},\"_id\":\"7743ad2\",\"item_icon_color\":\"custom\",\"item_icon_primary_color\":\"#F8049C\"},{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"dfabc7f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"82b8be5\",\"item_icon_color\":\"custom\",\"item_icon_primary_color\":\"#F8049C\"}],\"shape\":\"circle\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":113.532},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"677b566\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Important Info\",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#B4E3FF\",\"icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"position_mobile\":\"left\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e192b2d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-info-circle\",\"library\":\"fa-solid\"},\"title_text\":\"Terms and conditions \",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#0D42C0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Dekko\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/terms-and-conditions\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"title_color\":\"#333333\",\"position_mobile\":\"left\",\"icon_space_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3d5045e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-info-circle\",\"library\":\"fa-solid\"},\"title_text\":\"Refund\\/Returns Policy\",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#0D42C0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Dekko\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/refund-returns\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"title_color\":\"#333333\",\"position_mobile\":\"left\",\"icon_space_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"891decb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-info-circle\",\"library\":\"fa-solid\"},\"title_text\":\"Choice R Privacy Policy\",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#0D42C0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Dekko\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/privacy-policy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"content_vertical_alignment\":\"middle\",\"text_align\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"title_color\":\"#333333\",\"position_mobile\":\"left\",\"icon_space_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"05d74de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":39.53},\"flex_justify_content\":\"center\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"_flex_size\":\"none\",\"flex_gap\":{\"column\":\"0\",\"row\":\"1\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"width_mobile\":{\"unit\":\"px\",\"size\":294},\"_element_width_mobile\":\"initial\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":249.188},\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"_element_width_tablet\":\"initial\",\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\"},\"elements\":[{\"id\":\"4c63678\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Contact:\",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#B4E3FF\",\"icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"position_mobile\":\"left\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"5b83e70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope-open\",\"library\":\"fa-solid\"},\"title_text\":\"info@choiceresources.co.uk\",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#0D42C0\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Dekko\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_color\":\"#333333\",\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4a1f660\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-square-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Contact no. 07950202050\",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#0D42C0\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Dekko\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_color\":\"#333333\",\"position_mobile\":\"left\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"79e7dce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Supports:\",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#B4E3FF\",\"icon_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"position_mobile\":\"left\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"029d123\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"826e12a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-cc-apple-pay\",\"library\":\"fa-brands\"},\"primary_color\":\"#11BA24\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.01},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":79.563}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"e6fc6fb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-cc-paypal\",\"library\":\"fa-brands\"},\"primary_color\":\"#10A4E3\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.01},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":65.594}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5be24a5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-google-pay\",\"library\":\"fa-brands\"},\"primary_color\":\"#F1790F\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":18.01},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":106.719}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b2c31c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2024 All rights reserved<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4125,577,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(6558,27,'_edit_lock','1715283090:1'),
(6559,27,'_elementor_edit_mode','builder'),
(6560,27,'_elementor_template_type','wp-page'),
(6561,27,'_elementor_version','3.21.4'),
(6562,27,'_elementor_pro_version','3.21.2'),
(6577,27,'_wp_page_template','elementor_header_footer'),
(6578,27,'_elementor_data','[{\"id\":\"c113d81\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"background_color\":\"#B4E3FF\"},\"elements\":[{\"id\":\"fbcbe6e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"c96e223\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#43E1FFE6\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":181,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":136,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[{\"id\":\"47dad5f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"94a88be\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"5e9843c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"5c1c490\",\"elType\":\"widget\",\"settings\":{\"update_cart_button_text\":\"Update Cart\",\"apply_coupon_button_text\":\"Apply coupon\",\"totals_section_title\":\"Cart Totals\",\"update_shipping_button_text\":\"Update\",\"checkout_button_text\":\"Proceed to Checkout\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hide_mobile\":\"hidden-mobile\",\"checkout_button_normal_text_color\":\"#FFFFFF\",\"checkout_button_normal_background_background\":\"gradient\",\"checkout_button_normal_background_color\":\"#F8049C\",\"checkout_button_normal_background_color_b\":\"#F8049C\",\"sections_title_color\":\"#0D42C0\",\"sections_titles_typography_typography\":\"custom\",\"sections_titles_typography_font_family\":\"Lilita One\",\"sections_titles_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"sections_titles_typography_font_weight\":\"300\",\"sections_descriptions_typography_typography\":\"custom\",\"sections_descriptions_typography_font_family\":\"Dekko\",\"sections_radio_buttons_typography_typography\":\"custom\",\"sections_radio_buttons_typography_font_family\":\"Dekko\",\"forms_field_typography_typography\":\"custom\",\"forms_field_typography_font_family\":\"Dekko\",\"forms_fields_focus_box_shadow_box_shadow_type\":\"yes\",\"forms_button_typography_typography\":\"custom\",\"forms_button_typography_font_family\":\"Dekko\",\"order_summary_title_color\":\"#0D42C0\",\"order_summary_title_typography_typography\":\"custom\",\"order_summary_title_typography_font_family\":\"Lilita One\",\"order_summary_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"order_summary_title_typography_font_weight\":\"400\",\"order_summary_items_typography_typography\":\"custom\",\"order_summary_items_typography_font_family\":\"Dekko\",\"order_summary_variations_typography_typography\":\"custom\",\"order_summary_variations_typography_font_family\":\"Dekko\",\"totals_typography_typography\":\"custom\",\"totals_typography_font_family\":\"Dekko\",\"checkout_button_typography_typography\":\"custom\",\"checkout_button_typography_font_family\":\"Dekko\",\"sections_descriptions_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sections_radio_buttons_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"forms_button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"order_summary_items_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"order_summary_variations_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"totals_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"checkout_button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"checkout_button_hover_text_color\":\"#FFFFFF\",\"checkout_button_hover_background_background\":\"gradient\",\"checkout_button_hover_background_color\":\"#F8049C\",\"checkout_button_hover_background_color_b\":\"#F8049C\",\"checkout_button_hover_animation\":\"grow\",\"forms_field_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"woocommerce-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6685,28,'_edit_lock','1668648419:1'),
(6686,28,'_elementor_edit_mode','builder'),
(6687,28,'_elementor_template_type','wp-page'),
(6688,28,'_elementor_version','3.6.5'),
(6689,28,'_elementor_pro_version','3.7.1'),
(6704,28,'_wp_page_template','elementor_header_footer'),
(6705,28,'_elementor_data','[{\"id\":\"caa9c65\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3453893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e46035e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1041,\"sizes\":[]},\"uc_background_type\":\"blox_css_snow_bg\",\"blox_css_snow_bg_animation_speed\":50},\"elements\":[{\"id\":\"c65a5ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"267c5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[woocommerce_checkout]<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dae0be4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"custom_css\":\"\\/*Place Order button*\\/\\r\\n\\r\\n#place_order {\\r\\n background-color: rgb(91, 192, 222);\\r\\n background-blend-mode: normal;\\r\\n box-shadow: none;\\r\\n opacity: 1;\\r\\n}\\r\\n\\r\\n\\/*View Cart Place Order Page*\\/\\r\\n\\r\\n.elementor-button.elementor-button--view-cart.elementor-size-md {\\r\\n background-color: rgb(91, 192, 222);\\r\\n background-blend-mode: normal;\\r\\n}\\r\\n\\r\\n.elementor-button.elementor-button--checkout.elementor-size-md {\\r\\n background-color: rgb(91, 192, 222);\\r\\n background-blend-mode: normal;\\r\\n}\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(7653,1057,'_order_key','wc_order_H9FiPuR5X6dJC'),
(7654,1057,'_customer_user','0'),
(7655,1057,'_customer_ip_address','213.205.194.234'),
(7656,1057,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.56'),
(7657,1057,'_created_via','checkout'),
(7658,1057,'_cart_hash','01dd46a56962ad270f4a9703efe4f8a7'),
(7659,1057,'_billing_first_name','amna'),
(7660,1057,'_billing_last_name','Kulongo'),
(7661,1057,'_billing_company','Evergreen Learning'),
(7662,1057,'_billing_address_1','22'),
(7663,1057,'_billing_address_2','Seymour Road Chatham'),
(7664,1057,'_billing_city','Kent'),
(7665,1057,'_billing_state','Chatham'),
(7666,1057,'_billing_postcode','ME5 7AE'),
(7667,1057,'_billing_country','GB'),
(7668,1057,'_billing_email','amnakulongo@gmail.com'),
(7669,1057,'_billing_phone','+447950212299'),
(7670,1057,'_order_currency','GBP'),
(7671,1057,'_cart_discount','0'),
(7672,1057,'_cart_discount_tax','0'),
(7673,1057,'_order_shipping','0.00'),
(7674,1057,'_order_shipping_tax','0'),
(7675,1057,'_order_tax','0'),
(7676,1057,'_order_total','0.00'),
(7677,1057,'_order_version','5.3.0'),
(7678,1057,'_prices_include_tax','no'),
(7679,1057,'_billing_address_index','amna Kulongo Evergreen Learning 22 Seymour Road Chatham Kent Chatham ME5 7AE GB amnakulongo@gmail.com +447950212299'),
(7680,1057,'_shipping_address_index','        '),
(7681,1057,'is_vat_exempt','no'),
(7682,1057,'ce4wp_checkout_consent','0'),
(7683,1057,'_date_paid','1620844449'),
(7684,1057,'_paid_date','2021-05-12 18:34:09'),
(7685,1057,'_download_permissions_granted','yes'),
(7686,1057,'_recorded_sales','yes'),
(7687,1057,'_recorded_coupon_usage_counts','yes'),
(7688,1057,'_order_stock_reduced','yes'),
(7689,1057,'_new_order_email_sent','true'),
(7706,1058,'_order_key','wc_order_sPfztRGod5iQI'),
(7707,1058,'_customer_user','1'),
(7708,1058,'_customer_ip_address','213.205.194.234'),
(7709,1058,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.56'),
(7710,1058,'_created_via','checkout'),
(7711,1058,'_cart_hash','2528305aaed922e63c6131e75b515fd8'),
(7712,1058,'_billing_first_name','Ivan'),
(7713,1058,'_billing_last_name','Kulongo'),
(7714,1058,'_billing_address_1','22 Seymour Road Chatham'),
(7715,1058,'_billing_city','Medway, Kent'),
(7716,1058,'_billing_state','United Kingdom'),
(7717,1058,'_billing_postcode','ME5 7AE'),
(7718,1058,'_billing_country','GB'),
(7719,1058,'_billing_email','ivankulongo@gmail.com'),
(7720,1058,'_billing_phone','+447570544158'),
(7721,1058,'_order_currency','GBP'),
(7722,1058,'_cart_discount','0'),
(7723,1058,'_cart_discount_tax','0'),
(7724,1058,'_order_shipping','0.00'),
(7725,1058,'_order_shipping_tax','0'),
(7726,1058,'_order_tax','0'),
(7727,1058,'_order_total','0.00'),
(7728,1058,'_order_version','5.3.0'),
(7729,1058,'_prices_include_tax','no'),
(7730,1058,'_billing_address_index','Ivan Kulongo  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB ivankulongo@gmail.com +447570544158'),
(7731,1058,'_shipping_address_index','        '),
(7732,1058,'is_vat_exempt','no'),
(7733,1058,'ce4wp_checkout_consent','0'),
(7788,1058,'_date_paid','1620845080'),
(7789,1058,'_paid_date','2021-05-12 18:44:40'),
(7790,1058,'_download_permissions_granted','yes'),
(7792,1058,'_recorded_sales','yes'),
(7793,1058,'_recorded_coupon_usage_counts','yes'),
(7794,1058,'_order_stock_reduced','yes'),
(7795,1058,'_new_order_email_sent','true'),
(7806,1060,'_edit_last','1'),
(7807,1060,'_edit_lock','1670506396:1'),
(7808,1060,'discount_type','percent'),
(7809,1060,'coupon_amount','100'),
(7810,1060,'individual_use','no'),
(7811,1060,'usage_limit','0'),
(7812,1060,'usage_limit_per_user','0'),
(7813,1060,'limit_usage_to_x_items','0'),
(7814,1060,'usage_count','2'),
(7815,1060,'date_expires',NULL),
(7816,1060,'free_shipping','no'),
(7817,1060,'exclude_sale_items','no'),
(7819,1061,'_edit_last','1'),
(7820,1061,'_edit_lock','1681164607:1'),
(7821,1061,'_access_method','purchase'),
(7822,1061,'_members_area_sections','a:5:{i:0;s:21:\"my-membership-content\";i:1;s:22:\"my-membership-products\";i:2;s:23:\"my-membership-discounts\";i:3;s:19:\"my-membership-notes\";i:4;s:21:\"my-membership-details\";}'),
(7826,1060,'_wcs_number_payments',''),
(7827,1062,'_order_key','wc_order_gkLkhvhPpRZrw'),
(7828,1062,'_customer_user','0'),
(7829,1062,'_payment_method','paypal'),
(7830,1062,'_payment_method_title','PayPal'),
(7831,1062,'_customer_ip_address','213.205.194.165'),
(7832,1062,'_customer_user_agent','Mozilla/5.0 (X11; CrOS x86_64 13729.72.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.116 Safari/537.36'),
(7833,1062,'_created_via','checkout'),
(7834,1062,'_cart_hash','2f1e7c5ca6f00f8b32f4340a8d4500e5'),
(7835,1062,'_billing_first_name','Amna'),
(7836,1062,'_billing_last_name','Kulongo'),
(7837,1062,'_billing_address_1','22, SEYMOUR ROAD'),
(7838,1062,'_billing_address_2','LUTON'),
(7839,1062,'_billing_city','CHATHAM'),
(7840,1062,'_billing_state','KENT'),
(7841,1062,'_billing_postcode','ME5 7AE'),
(7842,1062,'_billing_country','GB'),
(7843,1062,'_billing_email','amnakulongo@gmail.com'),
(7844,1062,'_billing_phone','07950212299'),
(7845,1062,'_order_currency','GBP'),
(7846,1062,'_cart_discount','20'),
(7847,1062,'_cart_discount_tax','0'),
(7848,1062,'_order_shipping','0.00'),
(7849,1062,'_order_shipping_tax','0'),
(7850,1062,'_order_tax','0'),
(7851,1062,'_order_total','0.00'),
(7852,1062,'_order_version','5.3.0'),
(7853,1062,'_prices_include_tax','no'),
(7854,1062,'_billing_address_index','Amna Kulongo  22, SEYMOUR ROAD LUTON CHATHAM KENT ME5 7AE GB amnakulongo@gmail.com 07950212299'),
(7855,1062,'_shipping_address_index','        '),
(7857,1062,'ce4wp_checkout_consent','0'),
(7914,1062,'is_vat_exempt','no'),
(7971,1062,'_wcs_lock_order_payment','true'),
(7973,1062,'_date_paid','1620853114'),
(7974,1062,'_paid_date','2021-05-12 20:58:34'),
(7975,1062,'_download_permissions_granted','yes'),
(7977,1062,'_recorded_sales','yes'),
(7978,1062,'_recorded_coupon_usage_counts','yes'),
(7979,1060,'_used_by','2'),
(7980,1062,'_order_stock_reduced','yes'),
(7981,1062,'_new_order_email_sent','true'),
(7998,1066,'_order_key','wc_order_RX3aEdEeDZRz4'),
(7999,1066,'_customer_user','0'),
(8000,1066,'_customer_ip_address','213.205.194.165'),
(8001,1066,'_customer_user_agent','Mozilla/5.0 (X11; CrOS x86_64 13729.72.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.116 Safari/537.36'),
(8002,1066,'_created_via','checkout'),
(8003,1066,'_cart_hash','6cf9321695895deb36602c4f97653e84'),
(8004,1066,'_billing_first_name','Amna'),
(8005,1066,'_billing_last_name','Kulongo'),
(8006,1066,'_billing_address_1','22, SEYMOUR ROAD'),
(8007,1066,'_billing_address_2','LUTON'),
(8008,1066,'_billing_city','CHATHAM'),
(8009,1066,'_billing_state','KENT'),
(8010,1066,'_billing_postcode','ME5 7AE'),
(8011,1066,'_billing_country','GB'),
(8012,1066,'_billing_email','amnakulongo@gmail.com'),
(8013,1066,'_billing_phone','07950212299'),
(8014,1066,'_order_currency','GBP'),
(8015,1066,'_cart_discount','0'),
(8016,1066,'_cart_discount_tax','0'),
(8017,1066,'_order_shipping','0.00'),
(8018,1066,'_order_shipping_tax','0'),
(8019,1066,'_order_tax','0'),
(8020,1066,'_order_total','0.00'),
(8021,1066,'_order_version','5.3.0'),
(8022,1066,'_prices_include_tax','no'),
(8023,1066,'_billing_address_index','Amna Kulongo  22, SEYMOUR ROAD LUTON CHATHAM KENT ME5 7AE GB amnakulongo@gmail.com 07950212299'),
(8024,1066,'_shipping_address_index','        '),
(8025,1066,'is_vat_exempt','no'),
(8026,1066,'ce4wp_checkout_consent','0'),
(8027,1066,'_date_completed','1620855418'),
(8028,1066,'_date_paid','1620855418'),
(8029,1066,'_paid_date','2021-05-12 21:36:58'),
(8030,1066,'_completed_date','2021-05-12 21:36:58'),
(8031,1066,'_download_permissions_granted','yes'),
(8032,1066,'_recorded_sales','yes'),
(8033,1066,'_recorded_coupon_usage_counts','yes'),
(8034,1066,'_order_stock_reduced','yes'),
(8035,1066,'_new_order_email_sent','true'),
(8047,1067,'_edit_lock','1686578566:1'),
(8048,1067,'_edit_last','1'),
(8050,1067,'_wp_page_template','default'),
(8051,1067,'_regular_price','54.99'),
(8052,1067,'total_sales','6'),
(8053,1067,'_tax_status','taxable'),
(8054,1067,'_tax_class',''),
(8055,1067,'_manage_stock','no'),
(8056,1067,'_backorders','no'),
(8057,1067,'_sold_individually','yes'),
(8058,1067,'_virtual','yes'),
(8059,1067,'_downloadable','no'),
(8060,1067,'_download_limit','-1'),
(8061,1067,'_download_expiry','-1'),
(8062,1067,'_stock',NULL),
(8063,1067,'_stock_status','instock'),
(8064,1067,'_wc_average_rating','0'),
(8065,1067,'_wc_review_count','0'),
(8066,1067,'_product_version','8.0.3'),
(8067,1067,'_price','54.99'),
(8068,1067,'_subscription_payment_sync_date','a:2:{s:3:\"day\";i:0;s:5:\"month\";s:2:\"01\";}'),
(8069,1067,'_wc_memberships_use_custom_product_viewing_restricted_message','no'),
(8070,1067,'_wc_memberships_use_custom_product_purchasing_restricted_message','no'),
(8071,1067,'_wc_memberships_force_public','no'),
(8072,1067,'_wc_memberships_exclude_discounts','no'),
(8073,1067,'_subscription_price','54.99'),
(8077,1067,'_subscription_trial_length','0'),
(8078,1067,'_subscription_sign_up_fee',''),
(8079,1067,'_subscription_period','year'),
(8080,1067,'_subscription_period_interval','1'),
(8081,1067,'_subscription_length','0'),
(8082,1067,'_subscription_trial_period','day'),
(8083,1067,'_subscription_limit','active'),
(8084,1067,'_subscription_one_time_shipping','no'),
(8088,1069,'_order_key','wc_order_OdIvJxAvIgubd'),
(8089,1069,'_customer_user','0'),
(8090,1069,'_payment_method','paypal'),
(8091,1069,'_payment_method_title','PayPal'),
(8092,1069,'_customer_ip_address','213.205.194.165'),
(8093,1069,'_customer_user_agent','Mozilla/5.0 (X11; CrOS x86_64 13729.72.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.116 Safari/537.36'),
(8094,1069,'_created_via','checkout'),
(8095,1069,'_cart_hash','e10bd2c65aef8a7fa041008600095248'),
(8096,1069,'_billing_first_name','Amna'),
(8097,1069,'_billing_last_name','Kulongo'),
(8098,1069,'_billing_address_1','22, SEYMOUR ROAD'),
(8099,1069,'_billing_address_2','LUTON'),
(8100,1069,'_billing_city','CHATHAM'),
(8101,1069,'_billing_state','KENT'),
(8102,1069,'_billing_postcode','ME5 7AE'),
(8103,1069,'_billing_country','GB'),
(8104,1069,'_billing_email','amnakulongo@gmail.com'),
(8105,1069,'_billing_phone','07950212299'),
(8106,1069,'_order_currency','GBP'),
(8107,1069,'_cart_discount','40'),
(8108,1069,'_cart_discount_tax','0'),
(8109,1069,'_order_shipping','0.00'),
(8110,1069,'_order_shipping_tax','0'),
(8111,1069,'_order_tax','0'),
(8112,1069,'_order_total','0.00'),
(8113,1069,'_order_version','5.3.0'),
(8114,1069,'_prices_include_tax','no'),
(8115,1069,'_billing_address_index','Amna Kulongo  22, SEYMOUR ROAD LUTON CHATHAM KENT ME5 7AE GB amnakulongo@gmail.com 07950212299'),
(8116,1069,'_shipping_address_index','        '),
(8117,1069,'is_vat_exempt','no'),
(8118,1069,'ce4wp_checkout_consent','0'),
(8176,1069,'_date_paid','1620857543'),
(8177,1069,'_paid_date','2021-05-12 22:12:23'),
(8180,1069,'_wc_memberships_access_granted','a:1:{i:1071;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(8185,1069,'_wc_memberships_access_granted','a:1:{i:1071;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(8190,1069,'_download_permissions_granted','yes'),
(8192,1069,'_recorded_sales','yes'),
(8193,1069,'_recorded_coupon_usage_counts','yes'),
(8194,1060,'_used_by','2'),
(8195,1069,'_order_stock_reduced','yes'),
(8196,1069,'_new_order_email_sent','true'),
(8271,9,'__elementor_forms_snapshot','[{\"id\":\"a79e0a9\",\"name\":\"Get in touch today\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"\"},{\"id\":\"email\",\"type\":\"email\",\"label\":\"\"},{\"id\":\"message\",\"type\":\"textarea\",\"label\":\"\"},{\"id\":\"field_2ef0406\",\"type\":\"recaptcha\",\"label\":false}]},{\"id\":\"b9cdedd\",\"name\":\"Get in touch today\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"\"},{\"id\":\"email\",\"type\":\"email\",\"label\":\"\"},{\"id\":\"message\",\"type\":\"textarea\",\"label\":\"\"},{\"id\":\"field_2ef0406\",\"type\":\"recaptcha\",\"label\":false}]},{\"id\":\"9ade8b6\",\"name\":\"Get in touch today\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"\"},{\"id\":\"email\",\"type\":\"email\",\"label\":\"\"},{\"id\":\"message\",\"type\":\"textarea\",\"label\":\"\"},{\"id\":\"field_2ef0406\",\"type\":\"recaptcha\",\"label\":false}]}]'),
(11124,29,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:7:\"initial\";s:16:\"background_color\";s:7:\"#D1F7FF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),
(11684,9,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:15:\"background_size\";s:5:\"cover\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),
(31239,4047,'_order_key','wc_order_ffMT1Casr6nEa'),
(31240,4047,'_customer_user','1'),
(31241,4047,'_customer_ip_address','148.252.128.251'),
(31242,4047,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 Edg/93.0.961.47'),
(31243,4047,'_created_via','checkout'),
(31244,4047,'_cart_hash','fe464086da203b501edeaa5e5794a6e5'),
(31245,4047,'_billing_first_name','Ivan'),
(31246,4047,'_billing_last_name','Kulongo'),
(31247,4047,'_billing_address_1','22 Seymour Road Chatham'),
(31248,4047,'_billing_city','Medway, Kent'),
(31249,4047,'_billing_state','United Kingdom'),
(31250,4047,'_billing_postcode','ME5 7AE'),
(31251,4047,'_billing_country','GB'),
(31252,4047,'_billing_email','ivankulongo@gmail.com'),
(31253,4047,'_billing_phone','+449000788666554'),
(31254,4047,'_order_currency','GBP'),
(31255,4047,'_cart_discount','0'),
(31256,4047,'_cart_discount_tax','0'),
(31257,4047,'_order_shipping','0'),
(31258,4047,'_order_shipping_tax','0'),
(31259,4047,'_order_tax','0'),
(31260,4047,'_order_total','0.00'),
(31261,4047,'_order_version','5.6.0'),
(31262,4047,'_prices_include_tax','no'),
(31263,4047,'_billing_address_index','Ivan Kulongo  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB ivankulongo@gmail.com +449000788666554'),
(31264,4047,'_shipping_address_index','         '),
(31265,4047,'is_vat_exempt','no'),
(31266,4047,'ce4wp_checkout_consent','0'),
(31267,4047,'_date_paid','1631889659'),
(31268,4047,'_paid_date','2021-09-17 14:40:59'),
(31269,4047,'_download_permissions_granted','yes'),
(31270,4047,'_recorded_sales','yes'),
(31271,4047,'_recorded_coupon_usage_counts','yes'),
(31272,4047,'_order_stock_reduced','yes'),
(31273,4047,'_new_order_email_sent','true'),
(32258,4162,'_order_key','wc_order_dD3fyJODN8VRH'),
(32259,4162,'_customer_user','0'),
(32260,4162,'_customer_ip_address','85.255.234.62'),
(32261,4162,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 Edg/93.0.961.52'),
(32262,4162,'_created_via','checkout'),
(32263,4162,'_cart_hash','1e1a35ab27e03a3d9577b6caf43b907b'),
(32264,4162,'_billing_first_name','Amna'),
(32265,4162,'_billing_last_name','Kulongo'),
(32266,4162,'_billing_company','Evergreen Learning'),
(32267,4162,'_billing_address_1','22'),
(32268,4162,'_billing_address_2','Seymour Road Chatham'),
(32269,4162,'_billing_city','Kent'),
(32270,4162,'_billing_state','Chatham'),
(32271,4162,'_billing_postcode','ME5 7AE'),
(32272,4162,'_billing_country','GB'),
(32273,4162,'_billing_email','amnakulongo@gmail.com'),
(32274,4162,'_billing_phone','+447950212299'),
(32275,4162,'_order_currency','GBP'),
(32276,4162,'_cart_discount','0'),
(32277,4162,'_cart_discount_tax','0'),
(32278,4162,'_order_shipping','0'),
(32279,4162,'_order_shipping_tax','0'),
(32280,4162,'_order_tax','0'),
(32281,4162,'_order_total','0.00'),
(32282,4162,'_order_version','5.6.0'),
(32283,4162,'_prices_include_tax','no'),
(32284,4162,'_billing_address_index','Amna Kulongo Evergreen Learning 22 Seymour Road Chatham Kent Chatham ME5 7AE GB amnakulongo@gmail.com +447950212299'),
(32285,4162,'_shipping_address_index','         '),
(32286,4162,'is_vat_exempt','no'),
(32287,4162,'ce4wp_checkout_consent','0'),
(32288,4162,'_date_paid','1632142814'),
(32289,4162,'_paid_date','2021-09-20 13:00:14'),
(32290,4162,'_download_permissions_granted','yes'),
(32291,4162,'_recorded_sales','yes'),
(32292,4162,'_recorded_coupon_usage_counts','yes'),
(32293,4162,'_order_stock_reduced','yes'),
(32294,4162,'_new_order_email_sent','true'),
(32295,4163,'_order_key','wc_order_WJCIwK794YAQS'),
(32296,4163,'_customer_user','0'),
(32297,4163,'_customer_ip_address','85.255.234.62'),
(32298,4163,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 Edg/93.0.961.52'),
(32299,4163,'_created_via','checkout'),
(32300,4163,'_cart_hash','2570ffabd8a6f8c77ca9abe90d33ef51'),
(32301,4163,'_billing_first_name','Anita'),
(32302,4163,'_billing_last_name','Kulongo'),
(32303,4163,'_billing_address_1','25 Spinney Gardens Dagenham,'),
(32304,4163,'_billing_city','Essex'),
(32305,4163,'_billing_postcode','RM9 5DR'),
(32306,4163,'_billing_country','GB'),
(32307,4163,'_billing_email','ivankulongo@gmail.com'),
(32308,4163,'_billing_phone','098009908980890'),
(32309,4163,'_order_currency','GBP'),
(32310,4163,'_cart_discount','0'),
(32311,4163,'_cart_discount_tax','0'),
(32312,4163,'_order_shipping','0'),
(32313,4163,'_order_shipping_tax','0'),
(32314,4163,'_order_tax','0'),
(32315,4163,'_order_total','0.00'),
(32316,4163,'_order_version','5.6.0'),
(32317,4163,'_prices_include_tax','no'),
(32318,4163,'_billing_address_index','Anita Kulongo  25 Spinney Gardens Dagenham,  Essex  RM9 5DR GB ivankulongo@gmail.com 098009908980890'),
(32319,4163,'_shipping_address_index','         '),
(32320,4163,'is_vat_exempt','no'),
(32321,4163,'ce4wp_checkout_consent','0'),
(32322,4163,'_date_paid','1632143354'),
(32323,4163,'_paid_date','2021-09-20 13:09:14'),
(32324,4163,'_download_permissions_granted','yes'),
(32325,4163,'_recorded_sales','yes'),
(32326,4163,'_recorded_coupon_usage_counts','yes'),
(32327,4163,'_order_stock_reduced','yes'),
(32328,4163,'_new_order_email_sent','true'),
(36912,12,'_elementor_page_assets','a:0:{}'),
(37071,577,'_elementor_page_assets','a:0:{}'),
(38280,43,'_elementor_page_settings','a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#0DCFFF\";s:16:\"background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}}'),
(38291,43,'_elementor_page_assets','a:0:{}'),
(38513,4885,'_menu_item_type','taxonomy'),
(38514,4885,'_menu_item_menu_item_parent','0'),
(38515,4885,'_menu_item_object_id','25'),
(38516,4885,'_menu_item_object','product_cat'),
(38517,4885,'_menu_item_target',''),
(38518,4885,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(38519,4885,'_menu_item_xfn',''),
(38520,4885,'_menu_item_url',''),
(41695,5228,'_elementor_template_type','wp-page'),
(41696,5228,'_elementor_version','3.21.4'),
(41697,5228,'_elementor_pro_version','3.21.2'),
(41698,5228,'_wp_page_template','elementor_header_footer'),
(41699,5228,'_elementor_data','[{\"id\":\"de0b637\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"56ba3fa\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"54e4b23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6fe762e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"04568a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/02\\/Learning-Fun.png\",\"id\":31802,\"alt\":\"<img src=\\\"Learning-Fun.png\\\" alt=\\\"Learning Fun.\\\">\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5016fa7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/02\\/Nature-Fun.png\",\"id\":31804,\"alt\":\"<img src=\\\"Nature-Fun.png\\\" alt=\\\"Nature Fun.\\\">\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_element_id\":\"wordsearches\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dd9f4d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/02\\/Puzzle-Fun.png\",\"id\":31805,\"alt\":\"<img src=\\\"Puzzle-Fun.png\\\" alt=\\\"Puzze Fun.\\\">\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"741c8df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/02\\/Colouring-Fun.png\",\"id\":31806,\"alt\":\"<img src=\\\"Colouring-Fun.png\\\" alt=\\\"Colouring Fun.\\\">\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a74a886\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e7321d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d9c4720\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cb8935a\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fe78014\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":98.258},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top\":\"curve\",\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"06835b0\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dbbb67\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"86235ad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ec294a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ba31ec2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bc0dbad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Story Wordsearches<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#5BCEFF\",\"_background_color_b\":\"#FFFFFF00\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.21)\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.996},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":194.844},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":212.844},\"_flex_size\":\"none\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da519f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Battles-Long-A-sound-2.png\",\"id\":35003,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(25.85940217391305, 116.32121970256384, 176.80000000000004, 0.76)\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7558726\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Available until:<\\/p>\",\"text_color\":\"#F1790F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c2bd394\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download Free\",\"align\":\"center\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wordsearches\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_text_color\":\"#0D42C0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#0D42C0\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"typography_font_weight\":\"300\",\"button_background_hover_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"hover_color\":\"#0D42C0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"deeca38\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"1b04900\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phonics Wordsearches<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#5BCEFF\",\"_background_color_b\":\"#FFFFFF00\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.21)\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.996},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":194.844},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":239.844},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cf9ceb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/The-Run.png\",\"id\":35020,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(25.85940217391305, 116.32121970256384, 176.80000000000004, 0.76)\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":134.903},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1e5c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Available until:<\\/p>\",\"text_color\":\"#F1790F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d4b6122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Bible-colouring-pages-x14.gif\",\"id\":32315,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image_size\":\"full\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(25.85940217391305, 116.32121970256384, 176.80000000000004, 0.76)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7987cc9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download free\",\"align\":\"center\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/biblecolouring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_text_color\":\"#0D42C0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#0D42C0\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"typography_font_weight\":\"300\",\"button_background_hover_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"hover_color\":\"#0D42C0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"95bd6de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"e0665fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trivia Wordsearches<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#5BCEFF\",\"_background_color_b\":\"#FFFFFF00\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.21)\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.996},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":194.844},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":212.844},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"231590a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Natural-Lights.png\",\"id\":35016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(25.85940217391305, 116.32121970256384, 176.80000000000004, 0.76)\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":134.903},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44b3010\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Available until:<\\/p>\",\"text_color\":\"#F1790F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8c9e2dd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download free\",\"align\":\"center\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/writing-tasks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_text_color\":\"#0D42C0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#0D42C0\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"typography_font_weight\":\"300\",\"button_background_hover_color\":\"#FFFFFF\",\"_background_hover_background\":\"classic\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"hover_color\":\"#0D42C0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"440347c\",\"elType\":\"widget\",\"settings\":{\"text\":\"more wordsearches\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6756640\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"9adb894\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"542acdd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Scavenger hunts\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#BB4FFA\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/scavengerhunts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0e0b18a\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":\"1\",\"eael_fg_filter_duration\":500,\"columns\":\"1\",\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"filter_enable\":\"\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"ef6f382\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_item_randomize\":\"yes\",\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Scavenger Hunt\",\"_id\":\"58284d7\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Weather-hunt-1.png\",\"id\":34960,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":true},{\"id\":\"69d4bd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"098003e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Stories\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#F9A70C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_direction\":\"in-out\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"67e6624\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":\"2\",\"eael_fg_filter_duration\":500,\"columns\":\"1\",\"eael_fg_grid_item_height\":\"300\",\"eael_fg_caption_style\":\"card\",\"eael_fg_not_found_text\":\"No Items Found\",\"filter_enable\":\"\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"ef6f382\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_item_randomize\":\"yes\",\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"58284d7\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Phonics-Mixed-AY.png\",\"id\":35017,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Who-is-God.png\",\"id\":35023,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd9facf\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Flowerpot-art-1.png\",\"id\":34929,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_id\":\"2c9d5b4\"}],\"pagination\":\"yes\",\"images_per_page\":\"3\",\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_item_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":true},{\"id\":\"8f5a509\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"f6f8af5\",\"elType\":\"widget\",\"settings\":{\"text\":\"tracing\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e118813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"fd6c8bd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"TOP\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"593b1aa\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":\"2\",\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"330\",\"eael_section_fg_link_icon_new\":{\"value\":\"fas fa-file-download\",\"library\":\"fa-solid\"},\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Ages 3+\",\"_id\":\"58c6838\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"},{\"eael_fg_control\":\"Ages 7+\",\"_id\":\"4f8e687\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"},{\"eael_fg_control\":\"Ages 11+\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"_id\":\"83fad32\",\"eael_fg_control_active_as_default\":\"\"},{\"eael_fg_control\":\"SEND\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"_id\":\"94942f6\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Bible Figurative Language\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_control_name\":\"Ages 11+\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">See more\\u00a0<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Bible-Hyperbole-Colouring.pdf\"},\"_id\":\"16b2554\"},{\"eael_fg_gallery_item_name\":\"Bible Story Colouring Sample\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">See more<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Snake-Mistake.pdf\"},\"_id\":\"84a88c1\"},{\"eael_fg_gallery_item_name\":\"Park Lessons Handwriting\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">See more<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/What-Slides-Say.png\",\"id\":34852,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/What-slides-say.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|What-slides-say.pdf\"},\"_id\":\"547d95b\"},{\"eael_fg_gallery_item_name\":\"Spot the Difference\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_control_name\":\"Ages 3+\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">See more<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Spot-the-Difference.png\",\"id\":34857,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Spot-the-Difference.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Spot-the-Difference.pdf\"},\"_id\":\"7bcd1d1\"},{\"eael_fg_gallery_item_name\":\"Reptile Spellings\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">See more<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Reptile-Spellings.png\",\"id\":34863,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Reptile-spellings.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Reptile-spellings.pdf\"},\"_id\":\"32be54b\"},{\"_id\":\"1246eec\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 11+\",\"eael_fg_gallery_item_name\":\"Tasty Bread Problem Solving\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/tasty-bread.png\",\"id\":34884,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/tasty-bread.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|tasty-bread.pdf\"}},{\"_id\":\"ca5c34f\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Flower Pot Maths\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Flowerpot-art-1.png\",\"id\":34929,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Flowerpot-art.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Flowerpot-art.pdf\"}},{\"_id\":\"c7f25a6\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Space Toys\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Space-Toys.png\",\"id\":34882,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Space-Toys.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Space-Toys.pdf\"}},{\"_id\":\"fde1b35\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Bible Bookmarks\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Light-of-the-World.pdf\"}},{\"_id\":\"5f76694\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 11+\",\"eael_fg_gallery_item_name\":\"Camping Trip Problem Solving\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Camping-trip-1.png\",\"id\":34935,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Camping-trip.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Camping-trip.pdf\"}},{\"_id\":\"0eb4864\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 3+\",\"eael_fg_gallery_item_name\":\"Tractor CVC Words\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Tractor-match-1.png\",\"id\":34944,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Tractor-match.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Tractor-match.pdf\"}},{\"_id\":\"f7743e4\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"SEND\",\"eael_fg_gallery_item_name\":\"Number Words to 6\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/On-the-Move-1.png\",\"id\":34969,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/On-the-Move.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|On-the-Move.pdf\"}},{\"_id\":\"416432d\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"SEND\",\"eael_fg_gallery_item_name\":\"My Name is...\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/My-name-is.png\",\"id\":34877,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/My-name-is.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|My-name-is.pdf\"}},{\"_id\":\"a159931\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"SEND\",\"eael_fg_gallery_item_name\":\"What\'s the time?\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/O-Clock-1.png\",\"id\":34954,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/O-Clock.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|O-Clock.pdf\"}},{\"_id\":\"79112b1\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Weather Hunt\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Weather-hunt-1.png\",\"id\":34960,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Weather-hunt.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Weather-hunt.pdf\"}},{\"_id\":\"c1e57ce\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Character Hunt\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Scavenger-Hunts-Pack.png\",\"id\":34874,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Character-Hunt.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Character-Hunt.pdf\"}},{\"_id\":\"55b1386\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"12 Months Display\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/12-Months-of-the-year-cut-outs.png\",\"id\":34873,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/12-Months-of-the-year-cut-outs.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|12-Months-of-the-year-cut-outs.pdf\"}},{\"_id\":\"fe9b5e1\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"God\'s Word Puzzle\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Gods-World.png\",\"id\":34872,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Gods-World.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Gods-World.pdf\"}},{\"_id\":\"65f90ef\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 11+\",\"eael_fg_gallery_item_name\":\"Internal Organs Wordsearch\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Internal-Organs-Wordsearch.png\",\"id\":34871,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Internal-Organs-Wordsearch.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Internal-Organs-Wordsearch.pdf\"}},{\"_id\":\"231ad50\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 3+\",\"eael_fg_gallery_item_name\":\"My First Body Quiz\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline; color: #ffffff;\\\">See more<\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/My-Body-Quiz-1.png\",\"id\":34994,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/My-Body-Quiz.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|My-Body-Quiz.pdf\"}}],\"pagination\":\"yes\",\"images_per_page\":\"6\",\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\",\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"eael_fg_control_active_bg_color\":\"#0DCFFF\",\"load_more_button_bg_color_normal\":\"#0DCFFF\",\"stax_visibility_show_hide\":\"yes\",\"stax_visibility_condition_type\":\"one\",\"stax_visibility_user_role_conditions\":[\"subscriber\"],\"eael_fg_item_shadow_box_shadow_type\":\"yes\",\"eael_fg_item_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"#ACE8FF\"},\"eael_fg_item_content_bg_color\":\"#0DCFFF\",\"eael_fg_item_content_border_border\":\"none\",\"eael_fg_item_content_border_color\":\"#FFFFFF\",\"eael_fg_item_content_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":30,\"spread\":-100,\"color\":\"\"},\"eael_fg_item_content_title_color\":\"#FFFFFF\",\"eael_fg_item_content_title_hover_color\":\"#004AAD\",\"eael_fg_item_content_title_typography_typography\":\"custom\",\"eael_fg_item_content_title_typography_font_weight\":\"600\",\"eael_fg_item_content_text_typography_typography\":\"custom\",\"eael_fg_item_content_text_typography_font_weight\":\"500\",\"eael_fg_item_content_alignment\":\"center\",\"eael_fg_container_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-12\",\"bottom\":\"-12\",\"left\":\"-12\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_flex_align_self_mobile\":\"stretch\",\"_flex_size_mobile\":\"grow\",\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/03\\/Adam-and-Eve-1-1.png\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"columns_tablet\":\"3\",\"load_more_button_typography_typography\":\"custom\",\"eael_fg_control_padding_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"eael_fg_control_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_fg_control_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"eael_fg_control_typography_typography\":\"custom\",\"eael_fg_control_typography_font_family\":\"Dekko\",\"eael_fg_control_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"eael_fg_control_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"eael_fg_control_typography_font_weight\":\"600\",\"eael_fg_control_typography_text_transform\":\"none\",\"eael_fg_control_typography_font_style\":\"normal\",\"eael_fg_control_normal_text_color\":\"#004AAD\",\"eael_fg_control_normal_border_radius\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"eael_fg_control_shadow_box_shadow_type\":\"yes\",\"eael_fg_control_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 73.99999999999999, 173, 0.25)\"},\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_grid_hover_transition\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"eael_fg_item_cap_bg_color\":\"\",\"eael_fg_bg_color\":\"#FFFFFF\",\"eael_fg_item_border_border\":\"none\",\"eael_fg_item_border_width\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"33\",\"bottom\":\"33\",\"left\":\"33\",\"isLinked\":true},\"eael_fg_item_border_color\":\"#FFFFFF\",\"eael_fg_caption_style\":\"card\",\"eael_fg_container_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":false},\"eael_fg_item_content_title_typography_font_family\":\"Dekko\",\"eael_fg_item_content_text_typography_font_family\":\"Dekko\",\"eael_item_randomize\":\"yes\",\"columns\":\"1\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"},{\"id\":\"c67a66c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"link\":{\"url\":\"#TOP\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-up\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_css_id\":\"TOP\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_background\":\"gradient\",\"background_color\":\"#02010100\",\"background_color_b\":\"#F2295B00\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"25f1ad7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"178085a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"029a8e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Quizzes\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#44E62C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"icon_align\":\"right\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"152070f\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":\"1\",\"eael_fg_filter_duration\":500,\"columns\":\"1\",\"eael_fg_grid_item_height\":\"300\",\"eael_fg_not_found_text\":\"No Items Found\",\"filter_enable\":\"\",\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Gallery Item\",\"_id\":\"ef6f382\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"58284d7\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"79fe6b9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"c3b265c\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"fc799a8\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"9921ad4\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"},{\"eael_fg_gallery_item_name\":\"Gallery Item Name\",\"_id\":\"6481e60\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\"}],\"images_per_page\":6,\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ebef25a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #0d42c0;\\\">Scripture-<\\/span><span style=\\\"color: #0dcfff;\\\">Fun!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43.783},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"53bc005\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Games Bundle<\\/p>\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-78\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":26.943},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":336.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":301},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_weight\":\"300\",\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"6\",\"left\":\"10\",\"isLinked\":false},\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fc5200c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Fruits-Snakes-and-Ladders-1-1.png\",\"id\":35218,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e99497\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Download games bundle <a href=\\\"https:\\/\\/choiceresources.co.uk\\/choice-shop\\/\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #00ccff; text-decoration: underline;\\\">here<\\/span><\\/span><\\/a>:<\\/p>\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":26.943},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":336.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":301},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_weight\":\"300\",\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"6\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5006de7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"27a7631\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content_mobile\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/10\\/Choice-Logo-Banner-4-1.png\",\"id\":30257,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position_mobile\":\"center center\",\"background_repeat\":\"repeat\",\"background_repeat_mobile\":\"no-repeat\",\"background_size\":\"contain\",\"background_size_mobile\":\"cover\",\"background_bg_width\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":579,\"sizes\":[]},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateX_effect\":\"yes\",\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"shape_divider_top\":\"curve\",\"shape_divider_top_color\":\"#B4E3FF\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_negative\":\"yes\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":172,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"boxed_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_gap_mobile\":{\"column\":\"12\",\"row\":\"12\",\"isLinked\":true,\"unit\":\"px\",\"size\":12},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":155,\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":102,\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":211,\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":149,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_title\":\"100s of Free Activities\",\"flex_gap\":{\"column\":\"0\",\"row\":\"11\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"content_width\":\"full\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_above_content\":\"yes\"},\"elements\":[{\"id\":\"2e3b244\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8aa4a62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Hi, <span style=\\\"color: #10a4e3;\\\">Welcome to<\\/span> <\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":43.783},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":291.547}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b9a4da\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#B4E3FFE0\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Mum-website-background-3-1.png\",\"id\":32879,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top\":\"curve\",\"shape_divider_top_color\":\"#44E62C\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":144,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":99.689},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"91f9e2f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"px\",\"size\":721,\"sizes\":[]}},\"elements\":[{\"id\":\"07c7b71\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"8331b18\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"px\",\"size\":721,\"sizes\":[]}},\"elements\":[{\"id\":\"421c88a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24.426},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.41)\"},\"background_color\":\"#FFFFFF24\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"62d6dd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #44e62c;\\\">NATURE <span style=\\\"color: #339966;\\\">explorer<\\/span><\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.782},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":182},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"none\",\"animation_duration\":\"fast\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_color_b\":\"#FFFFFF00\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#44E62C\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8567f9\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/muddy-hands.png\",\"id\":35058,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"53ba869\"},{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"491e141\"}],\"effect\":\"fade\",\"slides_per_view\":\"1\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pagination_color\":\"#23661B\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"6\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":123.564},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":336.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":260},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"46693d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"unlock\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#11BA24\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-lock\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3483133\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24.426},\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_flex_size\":\"none\",\"background_color\":\"#FFFFFF24\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.41)\"},\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"3893dc9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #fdd103;\\\">Ultimate <span style=\\\"color: #ff9900;\\\">PUZZLE<\\/span> FUN<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.782},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":203},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"none\",\"animation_duration\":\"fast\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_color_b\":\"#FFFFFF00\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_color\":\"#44E62C\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5635d6b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Craft-Activities_Puzzles-500-x-500-px.gif\",\"id\":35181,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"53ba869\"},{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"491e141\"}],\"effect\":\"fade\",\"slides_per_view\":\"1\",\"slide_background_color\":\"#0DCFFF\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pagination_color\":\"#7E5B0C\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"6\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":123.564},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":336.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":260},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#F9A70C\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"5a430a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Unlock\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#F9A70C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-lock\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/puzzles\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d3592fb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24.426},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_color\":\"#FFFFFF24\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.41)\"},\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"2b481d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #00ccff;\\\">BUILDING<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.782},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":217},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"none\",\"animation_duration\":\"fast\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_color_b\":\"#FFFFFF00\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_color\":\"#44E62C\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f3abfa1\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Bible-Lego-Challenges-Vid-1.gif\",\"id\":31903,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"53ba869\"},{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"491e141\"}],\"effect\":\"fade\",\"slides_per_view\":\"1\",\"slide_background_color\":\"#0DCFFF\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"pagination_color\":\"#0F85C5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"6\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":123.564},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":336.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":260},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#0DCFFF\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"130\",\"bottom\":\"130\",\"left\":\"130\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"4ba1fb2\",\"elType\":\"widget\",\"settings\":{\"text\":\"unlock\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-lock\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3455af1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":24.426},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_flex_size\":\"none\",\"background_color\":\"#FFFFFF24\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.41)\"},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"4afa6e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff99cc;\\\">ART<\\/span><span style=\\\"color: #0d42c0; background-color: transparent;\\\">\\u00a0<span style=\\\"color: #ff99cc;\\\">&amp; CRAFT<\\/span><\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.782},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":216},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"none\",\"animation_duration\":\"fast\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_background_color_b\":\"#FFFFFF00\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#44E62C\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b175499\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Logo-CR.gif\",\"id\":31907,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"53ba869\"},{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"491e141\"}],\"effect\":\"fade\",\"slides_per_view\":\"1\",\"slide_background_color\":\"#0DCFFF\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pagination_color\":\"#A2215B\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"6\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":123.564},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":336.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":260},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#F8049C\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"a3d7c6b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Unlock\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#F8049C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-lock\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/drawing\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3259e54\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"9badcc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">Looking\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">for<\\/span>\\u00a0<\\/p><p><span style=\\\"color: #f9a70c;\\\">something <\\/span><span style=\\\"color: #11ba24;\\\">new?<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"25\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":47.899},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":476.203},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":286},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dff168b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy Animated Number Friends Comics:<\\/p>\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":55.519},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":381.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":279},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"40\",\"bottom\":\"23\",\"left\":\"40\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_mask_shape\":\"flower\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_animation\":\"none\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"_background_color_b\":\"#FFFFFF00\",\"_background_gradient_type\":\"radial\",\"_mask_size\":\"cover\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_font_weight\":\"300\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0DCFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"135af09\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/ISS3Rcyfv34\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Fives-Marvellous-Adventures.png\",\"id\":35068,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"aspect_ratio\":\"43\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.541},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":306.078},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"6b8fe49\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch all\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@choiceresourcesvideos\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1224e14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Comics also available <a href=\\\"https:\\/\\/choiceresources.co.uk\\/choice-shop\\/\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #00ccff; text-decoration: underline;\\\">here<\\/span><\\/span><\\/a>:<\\/p>\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":26.943},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":336.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":175},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_weight\":\"300\",\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"6\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b207f6f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d54e6bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">also\\u00a0<\\/span><span style=\\\"color: #11ba24;\\\">like:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"55c4ab5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Unlimited Access<\\/span><\\/strong> to ALL Art &amp; Craft for 12 months!<\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33c50ae\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"a0a5ae2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Was:<\\/strong> <span style=\\\"color: #ff0000;\\\">\\u00a345<\\/span> <strong>Now:<\\/strong> <span style=\\\"color: #339966;\\\">\\u00a322.50<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d6cd7d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get discount offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8bad374\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"64b718e\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2024 Printables\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"344847b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"185f409\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e6af1b9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9388347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">And before you go...<\\/p>\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":26.943},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":336.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":249},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_weight\":\"300\",\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"6\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12e224b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"10 Bible Promises for You!\",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#0D42C0\",\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":40.76},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":522.688},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":333},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"solid\",\"_border_color\":\"#0D42C000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"rotate_mobile\":{\"unit\":\"deg\",\"size\":0}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e17e257\",\"elType\":\"widget\",\"settings\":{\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin\":{\"unit\":\"px\",\"top\":\"-43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rating\"},{\"id\":\"26797f5\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"Promise of God\'s Presence:\",\"description\":\"\\\"I will never leave you nor forsake you.\\\"\",\"button_text\":\"Hebrews 13:5\",\"background_color\":\"#B9FFA400\",\"_id\":\"fa5565c\"},{\"heading\":\"Promise of God\'s Peace:\",\"description\":\"\\\"Peace I leave with you; my peace I give you.\\\"\",\"button_text\":\"John 14:27\",\"background_color\":\"#FFED7400\",\"_id\":\"c1a85a3\"},{\"heading\":\"Promise of Eternal Life:\",\"description\":\" \\\"Whoever believes in him shall not perish but have eternal life.\\\" \",\"button_text\":\"John 3:16\",\"background_color\":\"#B6EFFF00\",\"_id\":\"8a73576\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"contain\"},{\"heading\":\"Promise of God\'s Provision:\",\"description\":\"\\\"And my God will meet all your needs according to the riches of his glory in Christ Jesus.\\\"\",\"button_text\":\"Philippians 4:19\",\"background_color\":\"#B6EFFF00\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"contain\",\"_id\":\"9af4dcc\"},{\"heading\":\"Promise of Wisdom: \",\"description\":\"\\\"If any of you lacks wisdom, you should ask God, who gives generously to all without finding fault, and it will be given to you.\\\"\",\"button_text\":\"James 1:5\",\"background_color\":\"#B6EFFF00\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"contain\",\"_id\":\"f2cf432\"},{\"heading\":\"Promise of Strength:\",\"description\":\"\\\"I can do all this through Christ who gives me strength.\\\" \",\"button_text\":\"Philippians 4:13\",\"background_color\":\"#B6EFFF00\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"contain\",\"_id\":\"e78c88e\"},{\"heading\":\"Promise of Guidance:\",\"description\":\" \\\"I will instruct you and teach you in the way you should go; I will counsel you with my loving eye on you.\\\"\",\"button_text\":\"Psalm 32:8\",\"background_color\":\"#B6EFFF00\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"contain\",\"_id\":\"086d48c\"},{\"heading\":\"Promise of God\'s Faithfulness\",\"description\":\"\\\"The Lord is faithful, and he will strengthen you and protect you from the evil one.\\\" - \",\"button_text\":\"2 Thessalonians 3:3\",\"background_color\":\"#B6EFFF00\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"contain\",\"_id\":\"68a5e46\"},{\"heading\":\"Promise of Healing:\",\"description\":\"\\\"He heals the brokenhearted and binds up their wounds.\\\" - \",\"button_text\":\"Psalm 147:3\",\"background_color\":\"#B6EFFF00\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"contain\",\"_id\":\"289c49e\"},{\"heading\":\"Promise of Forgiveness:\",\"description\":\"\\\"If we confess our sins, he is faithful and just and will forgive us our sins and purify us from all unrighteousness.\\\"\",\"button_text\":\"1 John 1:9\",\"background_color\":\"#B6EFFF00\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"contain\",\"_id\":\"f516476\"}],\"slides_height_mobile\":{\"unit\":\"px\",\"size\":263,\"sizes\":[]},\"transition\":\"fade\",\"content_animation\":\"\",\"content_max_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"content_max_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"heading_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"heading_color\":\"#0D42C0\",\"description_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"description_color\":\"#0D42C0\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"button_background_color\":\"#0DCFFF\",\"arrows_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"arrows_color\":\"#DADADA\",\"dots_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"dots_size_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"dots_color_inactive\":\"#F8049C\",\"dots_color\":\"#F9A70C\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.865},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":445.688},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":285},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_border_color\":\"#0DCFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}]'),
(41700,5228,'_oembed_a389cbbd4bc075b6e575697abcb57ec2','<iframe title=\"Hezekiah Walker - God Favoured Me (Short Version)\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/gfiYd_p4o2o?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(41701,5228,'_oembed_time_a389cbbd4bc075b6e575697abcb57ec2','1617083522'),
(41702,5228,'_oembed_0ad7fa37ae9e178699f65e1b119d8606','<iframe title=\"Five Little Ducks | Learn with Little Baby Bum | Nursery Rhymes for Babies | ABCs and 123s\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/tFoUuFq3vHw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(41703,5228,'_oembed_time_0ad7fa37ae9e178699f65e1b119d8606','1617089844'),
(41704,5228,'_oembed_fd84dc34aa3a066d883157b283570cb2','<iframe title=\"Adam And Eve - The First Sin - Bible For Kids\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/t6S42sz-mHs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(41705,5228,'_oembed_time_fd84dc34aa3a066d883157b283570cb2','1617111625'),
(41706,5228,'_oembed_0ff1404e231980fc921b1a8d9d55616b','<iframe title=\"Adam And Eve - The First Sin - Bible For Kids\" width=\"1170\" height=\"658\" src=\"https://www.youtube.com/embed/t6S42sz-mHs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(41707,5228,'_oembed_time_0ff1404e231980fc921b1a8d9d55616b','1617636465'),
(41708,5228,'_elementor_page_settings','a:11:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#B4E3FF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:45;s:5:\"sizes\";a:0:{}}s:17:\"background_repeat\";s:6:\"repeat\";}'),
(41709,5228,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(41710,5228,'_wc_memberships_force_public','no'),
(41711,5228,'_wc_memberships_use_custom_page_content_restricted_message','no'),
(41715,5228,'_dp_original','57'),
(41716,5228,'_edit_lock','1726821981:1'),
(41717,5228,'_edit_last','1'),
(44099,29,'_elementor_page_assets','a:0:{}'),
(44206,27,'_elementor_page_settings','a:4:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background99-6.png\";s:2:\"id\";i:5344;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:16:\"background_color\";s:7:\"#B4E3FF\";}'),
(44215,27,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(44290,28,'_elementor_page_assets','a:0:{}'),
(44306,28,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:4:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}}'),
(45551,1067,'_wc_trash_meta_time','1650908729'),
(46084,9,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(46678,5791,'_order_key','wc_order_XKJhY6qNbWMIh'),
(46679,5791,'_customer_user','0'),
(46680,5791,'_payment_method','paypal'),
(46681,5791,'_payment_method_title','PayPal'),
(46682,5791,'_customer_ip_address','194.87.216.247'),
(46683,5791,'_customer_user_agent','Go-http-client/1.1'),
(46684,5791,'_created_via','checkout'),
(46685,5791,'_cart_hash','d5cf726c5e68ebd408fc490dcdc210d1'),
(46686,5791,'_billing_first_name','bbbbb'),
(46687,5791,'_billing_last_name','bbbbb'),
(46688,5791,'_billing_company','bbbbb'),
(46689,5791,'_billing_address_1','74 Eastbourne Rd'),
(46690,5791,'_billing_city','ROBOROUGH'),
(46691,5791,'_billing_postcode','EX14 5HN'),
(46692,5791,'_billing_country','GB'),
(46693,5791,'_billing_email','ajlkvybfymn@mail.com'),
(46694,5791,'_billing_phone','078 1369 7987'),
(46695,5791,'_order_currency','GBP'),
(46696,5791,'_cart_discount','0'),
(46697,5791,'_cart_discount_tax','0'),
(46698,5791,'_order_shipping','0'),
(46699,5791,'_order_shipping_tax','0'),
(46700,5791,'_order_tax','0'),
(46701,5791,'_order_total','2.99'),
(46702,5791,'_order_version','6.5.1'),
(46703,5791,'_prices_include_tax','no'),
(46704,5791,'_billing_address_index','bbbbb bbbbb bbbbb 74 Eastbourne Rd  ROBOROUGH  EX14 5HN GB ajlkvybfymn@mail.com 078 1369 7987'),
(46705,5791,'_shipping_address_index','         '),
(46706,5791,'is_vat_exempt','no'),
(46707,5791,'ce4wp_checkout_consent','0'),
(46709,5792,'_order_key','wc_order_46eB6Draa7qQe'),
(46710,5792,'_customer_user','0'),
(46711,5792,'_customer_ip_address','213.205.194.165'),
(46712,5792,'_customer_user_agent','Mozilla/5.0 (X11; CrOS x86_64 13729.72.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.116 Safari/537.36'),
(46713,5792,'_created_via','subscription'),
(46714,5792,'_billing_email','amnakulongo@gmail.com'),
(46715,5792,'_order_currency','GBP'),
(46716,5792,'_cart_discount','0'),
(46717,5792,'_cart_discount_tax','0'),
(46718,5792,'_order_shipping','0.00'),
(46719,5792,'_order_shipping_tax','0'),
(46720,5792,'_order_tax','0'),
(46721,5792,'_order_total','40.00'),
(46722,5792,'_order_version','5.6.2'),
(46723,5792,'_prices_include_tax','no'),
(46724,5792,'_billing_address_index','Amna Kulongo  22, SEYMOUR ROAD LUTON CHATHAM KENT ME5 7AE GB amnakulongo@gmail.com 07950212299'),
(46725,5792,'_shipping_address_index','         '),
(46726,5792,'is_vat_exempt','no'),
(46727,5792,'ce4wp_checkout_consent','0'),
(46728,5792,'_paypal_subscription_id','I-25EC8E72X6G3'),
(46729,5792,'_paypal_first_ipn_ignored_for_pdt','true'),
(46730,5792,'_billing_first_name','Amna'),
(46731,5792,'_billing_last_name','Kulongo'),
(46732,5792,'_billing_address_1','22, SEYMOUR ROAD'),
(46733,5792,'_billing_address_2','LUTON'),
(46734,5792,'_billing_city','CHATHAM'),
(46735,5792,'_billing_state','KENT'),
(46736,5792,'_billing_postcode','ME5 7AE'),
(46737,5792,'_billing_country','GB'),
(46738,5792,'_billing_phone','07950212299'),
(46739,5792,'_subscription_renewal','1070'),
(54836,6711,'_wp_attached_file','2022/06/12-scaled.jpg'),
(54837,6711,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1357;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2022/06/12-scaled.jpg\";s:8:\"filesize\";i:66846;s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6269;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1701;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:14:\"12-399x564.jpg\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10360;}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"12-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"12-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"12-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:15:\"12-768x1086.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"12-1086x1536.jpg\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:6:{s:4:\"file\";s:14:\"12-300x424.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:424;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7303;s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:14:\"12-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10550;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:14:\"12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1753;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:6:\"12.jpg\";}'),
(60532,1061,'_product_ids','a:1:{i:0;i:1067;}'),
(60548,7396,'_order_key','wc_order_X6Upojdv7Dlg9'),
(60549,7396,'_customer_user','1'),
(60550,7396,'_payment_method','paypal'),
(60551,7396,'_payment_method_title','PayPal'),
(60552,7396,'_customer_ip_address','213.205.194.98'),
(60553,7396,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(60554,7396,'_created_via','checkout'),
(60555,7396,'_cart_hash','8b69b0d9e575744123d4bf42ec9588aa'),
(60556,7396,'_billing_first_name','John'),
(60557,7396,'_billing_last_name','Doe'),
(60558,7396,'_billing_address_1','22 Seymour Road Chatham'),
(60559,7396,'_billing_city','Medway, Kent'),
(60560,7396,'_billing_state','United Kingdom'),
(60561,7396,'_billing_postcode','ME5 7AE'),
(60562,7396,'_billing_country','GB'),
(60563,7396,'_billing_email','sb-yaqqh16326906@business.example.com'),
(60564,7396,'_billing_phone','01218677084'),
(60565,7396,'_order_currency','GBP'),
(60566,7396,'_cart_discount','0'),
(60567,7396,'_cart_discount_tax','0'),
(60568,7396,'_order_shipping','0'),
(60569,7396,'_order_shipping_tax','0'),
(60570,7396,'_order_tax','0'),
(60571,7396,'_order_total','1.00'),
(60572,7396,'_order_version','5.6.2'),
(60573,7396,'_prices_include_tax','no'),
(60574,7396,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-yaqqh16326906@business.example.com 01218677084'),
(60575,7396,'_shipping_address_index','         '),
(60577,7396,'ce4wp_checkout_consent','0'),
(60579,7396,'is_vat_exempt','no'),
(60580,7396,'Payment type','instant'),
(60581,7396,'_transaction_id','9LY427811F619804E'),
(60582,7396,'_paypal_status','pending'),
(60583,7396,'_recorded_sales','yes'),
(60584,7396,'_recorded_coupon_usage_counts','yes'),
(60585,7396,'_order_stock_reduced','yes'),
(60586,7396,'_new_order_email_sent','true'),
(60587,7396,'_edit_lock','1654205204:1'),
(60588,7396,'_edit_last','1'),
(60589,7396,'_date_completed','1654201938'),
(60590,7396,'_date_paid','1654201938'),
(60591,7396,'_paid_date','2022-06-02 20:32:18'),
(60592,7396,'_completed_date','2022-06-02 20:32:18'),
(60593,7396,'_download_permissions_granted','yes'),
(60595,7397,'_order_key','wc_order_gBhQJhQ7P4NLz'),
(60596,7397,'_customer_user','1'),
(60597,7397,'_payment_method','paypal'),
(60598,7397,'_payment_method_title','PayPal'),
(60599,7397,'_customer_ip_address','213.205.194.98'),
(60600,7397,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(60601,7397,'_created_via','checkout'),
(60602,7397,'_cart_hash','5c173c5472723d1b70d075a1a9af8bb2'),
(60603,7397,'_billing_first_name','John'),
(60604,7397,'_billing_last_name','Doe'),
(60605,7397,'_billing_address_1','22 Seymour Road Chatham'),
(60606,7397,'_billing_city','Medway, Kent'),
(60607,7397,'_billing_state','United Kingdom'),
(60608,7397,'_billing_postcode','ME5 7AE'),
(60609,7397,'_billing_country','GB'),
(60610,7397,'_billing_email','sb-duv47d3572858@personal.example.com'),
(60611,7397,'_billing_phone','0353179971'),
(60612,7397,'_order_currency','GBP'),
(60613,7397,'_cart_discount','0'),
(60614,7397,'_cart_discount_tax','0'),
(60615,7397,'_order_shipping','0'),
(60616,7397,'_order_shipping_tax','0'),
(60617,7397,'_order_tax','0'),
(60618,7397,'_order_total','198.00'),
(60619,7397,'_order_version','5.6.2'),
(60620,7397,'_prices_include_tax','no'),
(60621,7397,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(60622,7397,'_shipping_address_index','         '),
(60624,7397,'ce4wp_checkout_consent','0'),
(60681,7397,'is_vat_exempt','no'),
(60738,7400,'_order_key','wc_order_bHNxG9LYTrtaa'),
(60739,7400,'_customer_user','0'),
(60740,7400,'_payment_method','paypal'),
(60741,7400,'_payment_method_title','PayPal'),
(60742,7400,'_customer_ip_address','213.205.194.98'),
(60743,7400,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(60744,7400,'_created_via','checkout'),
(60745,7400,'_cart_hash','d5cf726c5e68ebd408fc490dcdc210d1'),
(60746,7400,'_billing_first_name','John'),
(60747,7400,'_billing_last_name','Doe'),
(60748,7400,'_billing_address_1','20 Hatfield Road'),
(60749,7400,'_billing_city','Dagenham'),
(60750,7400,'_billing_state','Essex'),
(60751,7400,'_billing_postcode','RM9 6JR'),
(60752,7400,'_billing_country','GB'),
(60753,7400,'_billing_email','sb-duv47d3572858@personal.example.com'),
(60754,7400,'_billing_phone','0353179971'),
(60755,7400,'_order_currency','GBP'),
(60756,7400,'_cart_discount','0'),
(60757,7400,'_cart_discount_tax','0'),
(60758,7400,'_order_shipping','0'),
(60759,7400,'_order_shipping_tax','0'),
(60760,7400,'_order_tax','0'),
(60761,7400,'_order_total','2.99'),
(60762,7400,'_order_version','6.5.1'),
(60763,7400,'_prices_include_tax','no'),
(60764,7400,'_billing_address_index','John Doe  20 Hatfield Road  Dagenham Essex RM9 6JR GB sb-duv47d3572858@personal.example.com 0353179971'),
(60765,7400,'_shipping_address_index','         '),
(60766,7400,'is_vat_exempt','no'),
(60767,7400,'ce4wp_checkout_consent','0'),
(60768,7401,'_order_key','wc_order_vzli04wttpSS3'),
(60769,7401,'_customer_user','1'),
(60770,7401,'_payment_method','paypal'),
(60771,7401,'_payment_method_title','PayPal'),
(60772,7401,'_customer_ip_address','213.205.194.98'),
(60773,7401,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(60774,7401,'_created_via','checkout'),
(60775,7401,'_cart_hash','5c173c5472723d1b70d075a1a9af8bb2'),
(60776,7401,'_billing_first_name','John'),
(60777,7401,'_billing_last_name','Doe'),
(60778,7401,'_billing_address_1','22 Seymour Road Chatham'),
(60779,7401,'_billing_city','Medway, Kent'),
(60780,7401,'_billing_state','United Kingdom'),
(60781,7401,'_billing_postcode','ME5 7AE'),
(60782,7401,'_billing_country','GB'),
(60783,7401,'_billing_email','sb-duv47d3572858@personal.example.com'),
(60784,7401,'_billing_phone','0353179971'),
(60785,7401,'_order_currency','GBP'),
(60786,7401,'_cart_discount','0'),
(60787,7401,'_cart_discount_tax','0'),
(60788,7401,'_order_shipping','0'),
(60789,7401,'_order_shipping_tax','0'),
(60790,7401,'_order_tax','0'),
(60791,7401,'_order_total','198.00'),
(60792,7401,'_order_version','5.6.2'),
(60793,7401,'_prices_include_tax','no'),
(60794,7401,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(60795,7401,'_shipping_address_index','         '),
(60797,7401,'ce4wp_checkout_consent','0'),
(60854,7401,'is_vat_exempt','no'),
(60911,7401,'_paypal_subscription_id','B-0GC126888M6260839'),
(60913,7401,'_transaction_id','6LK35360X9701671S'),
(60914,7401,'_date_paid','1654203051'),
(60915,7401,'_paid_date','2022-06-02 20:50:51'),
(60918,7401,'_wc_memberships_access_granted','a:1:{i:7404;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(60923,7401,'_wc_memberships_access_granted','a:1:{i:7404;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(60928,7401,'_download_permissions_granted','yes'),
(60930,7401,'_recorded_sales','yes'),
(60931,7401,'_recorded_coupon_usage_counts','yes'),
(60932,7401,'_order_stock_reduced','yes'),
(60933,7401,'_new_order_email_sent','true'),
(60941,7406,'_order_key','wc_order_B0PssDJUySGYk'),
(60942,7406,'_customer_user','1'),
(60943,7406,'_payment_method','paypal'),
(60944,7406,'_payment_method_title','PayPal'),
(60945,7406,'_customer_ip_address','213.205.194.8'),
(60946,7406,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(60947,7406,'_created_via','checkout'),
(60948,7406,'_cart_hash','8b69b0d9e575744123d4bf42ec9588aa'),
(60949,7406,'_billing_first_name','John'),
(60950,7406,'_billing_last_name','Doe'),
(60951,7406,'_billing_address_1','22 Seymour Road Chatham'),
(60952,7406,'_billing_city','Medway, Kent'),
(60953,7406,'_billing_state','United Kingdom'),
(60954,7406,'_billing_postcode','ME5 7AE'),
(60955,7406,'_billing_country','GB'),
(60956,7406,'_billing_email','sb-duv47d3572858@personal.example.com'),
(60957,7406,'_billing_phone','0353179971'),
(60958,7406,'_order_currency','GBP'),
(60959,7406,'_cart_discount','0'),
(60960,7406,'_cart_discount_tax','0'),
(60961,7406,'_order_shipping','0'),
(60962,7406,'_order_shipping_tax','0'),
(60963,7406,'_order_tax','0'),
(60964,7406,'_order_total','1.00'),
(60965,7406,'_order_version','5.6.2'),
(60966,7406,'_prices_include_tax','no'),
(60967,7406,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(60968,7406,'_shipping_address_index','         '),
(60969,7406,'is_vat_exempt','no'),
(60970,7406,'ce4wp_checkout_consent','0'),
(60971,7406,'Payment type','instant'),
(60972,7406,'_transaction_id','80R026929J020360M'),
(60973,7406,'_paypal_status','pending'),
(60974,7406,'_recorded_sales','yes'),
(60975,7406,'_recorded_coupon_usage_counts','yes'),
(60976,7406,'_order_stock_reduced','yes'),
(60977,7406,'_new_order_email_sent','true'),
(60978,7407,'_order_key','wc_order_cFLteMkiVFk3h'),
(60979,7407,'_customer_user','1'),
(60980,7407,'_payment_method','paypal'),
(60981,7407,'_payment_method_title','PayPal'),
(60982,7407,'_customer_ip_address','213.205.194.8'),
(60983,7407,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(60984,7407,'_created_via','checkout'),
(60985,7407,'_cart_hash','5c173c5472723d1b70d075a1a9af8bb2'),
(60986,7407,'_billing_first_name','John'),
(60987,7407,'_billing_last_name','Doe'),
(60988,7407,'_billing_address_1','22 Seymour Road Chatham'),
(60989,7407,'_billing_city','Medway, Kent'),
(60990,7407,'_billing_state','United Kingdom'),
(60991,7407,'_billing_postcode','ME5 7AE'),
(60992,7407,'_billing_country','GB'),
(60993,7407,'_billing_email','sb-duv47d3572858@personal.example.com'),
(60994,7407,'_billing_phone','0353179971'),
(60995,7407,'_order_currency','GBP'),
(60996,7407,'_cart_discount','0'),
(60997,7407,'_cart_discount_tax','0'),
(60998,7407,'_order_shipping','0'),
(60999,7407,'_order_shipping_tax','0'),
(61000,7407,'_order_tax','0'),
(61001,7407,'_order_total','198.00'),
(61002,7407,'_order_version','6.5.1'),
(61003,7407,'_prices_include_tax','no'),
(61004,7407,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(61005,7407,'_shipping_address_index','         '),
(61006,7407,'is_vat_exempt','no'),
(61007,7407,'ce4wp_checkout_consent','0'),
(61089,7411,'_order_key','wc_order_qYAiV4svpnCvF'),
(61090,7411,'_customer_user','0'),
(61091,7411,'_payment_method','paypal'),
(61092,7411,'_payment_method_title','PayPal'),
(61093,7411,'_customer_ip_address','213.205.194.18'),
(61094,7411,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(61095,7411,'_created_via','checkout'),
(61096,7411,'_cart_hash','bfc689ba0682f02a22620e0f97395250'),
(61097,7411,'_billing_first_name','Joe'),
(61098,7411,'_billing_last_name','Doe'),
(61099,7411,'_billing_address_1','22, SEYMOUR ROAD'),
(61100,7411,'_billing_address_2','LUTON'),
(61101,7411,'_billing_city','CHATHAM'),
(61102,7411,'_billing_state','Kent'),
(61103,7411,'_billing_postcode','ME5 7AE'),
(61104,7411,'_billing_country','GB'),
(61105,7411,'_billing_email','sb-duv47d3572858@personal.example.com'),
(61106,7411,'_billing_phone','0353179971'),
(61107,7411,'_order_currency','GBP'),
(61108,7411,'_cart_discount','0'),
(61109,7411,'_cart_discount_tax','0'),
(61110,7411,'_order_shipping','0'),
(61111,7411,'_order_shipping_tax','0'),
(61112,7411,'_order_tax','0'),
(61113,7411,'_order_total','99.00'),
(61114,7411,'_order_version','5.6.2'),
(61115,7411,'_prices_include_tax','no'),
(61116,7411,'_billing_address_index','Joe Doe  22, SEYMOUR ROAD LUTON CHATHAM Kent ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(61117,7411,'_shipping_address_index','         '),
(61118,7411,'is_vat_exempt','no'),
(61119,7411,'ce4wp_checkout_consent','0'),
(61176,7411,'_paypal_subscription_id','B-0GC126888M6260839'),
(61178,7411,'_transaction_id','4GN37217R6930305H'),
(61179,7411,'_date_paid','1654213653'),
(61180,7411,'_paid_date','2022-06-02 23:47:33'),
(61183,7411,'_wc_memberships_access_granted','a:1:{i:7413;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(61188,7411,'_wc_memberships_access_granted','a:1:{i:7413;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(61193,7411,'_download_permissions_granted','yes'),
(61195,7411,'_recorded_sales','yes'),
(61196,7411,'_recorded_coupon_usage_counts','yes'),
(61197,7411,'_order_stock_reduced','yes'),
(61198,7411,'_new_order_email_sent','true'),
(61256,7421,'_order_key','wc_order_8bTVESbOMZdrh'),
(61257,7421,'_customer_user','0'),
(61258,7421,'_customer_ip_address','213.205.194.18'),
(61259,7421,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(61260,7421,'_created_via','checkout'),
(61261,7421,'_cart_hash','b4641d1d7a142351671a923004018548'),
(61262,7421,'_billing_first_name','Amna'),
(61263,7421,'_billing_last_name','Kulongo'),
(61264,7421,'_billing_company','Ognol UK Limited'),
(61265,7421,'_billing_address_1','22 Seymour Road'),
(61266,7421,'_billing_address_2','LUTON'),
(61267,7421,'_billing_city','Chatham'),
(61268,7421,'_billing_state','Medway'),
(61269,7421,'_billing_postcode','ME5 7AE'),
(61270,7421,'_billing_country','GB'),
(61271,7421,'_billing_email','amnakulongo@gmail.com'),
(61272,7421,'_billing_phone','0782873017'),
(61273,7421,'_order_currency','GBP'),
(61274,7421,'_cart_discount','0'),
(61275,7421,'_cart_discount_tax','0'),
(61276,7421,'_order_shipping','0'),
(61277,7421,'_order_shipping_tax','0'),
(61278,7421,'_order_tax','0'),
(61279,7421,'_order_total','0.00'),
(61280,7421,'_order_version','5.6.2'),
(61281,7421,'_prices_include_tax','no'),
(61282,7421,'_billing_address_index','Amna Kulongo Ognol UK Limited 22 Seymour Road LUTON Chatham Medway ME5 7AE GB amnakulongo@gmail.com 0782873017'),
(61283,7421,'_shipping_address_index','         '),
(61284,7421,'is_vat_exempt','no'),
(61285,7421,'ce4wp_checkout_consent','0'),
(61340,7421,'_date_paid','1654215363'),
(61341,7421,'_paid_date','2022-06-03 00:16:03'),
(61344,7421,'_wc_memberships_access_granted','a:1:{i:7423;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(61349,7421,'_wc_memberships_access_granted','a:1:{i:7423;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(61354,7421,'_download_permissions_granted','yes'),
(61356,7421,'_recorded_sales','yes'),
(61357,7421,'_recorded_coupon_usage_counts','yes'),
(61358,7421,'_order_stock_reduced','yes'),
(61359,7421,'_new_order_email_sent','true'),
(61391,7427,'_order_key','wc_order_LqDRrIVZASjt6'),
(61392,7427,'_customer_user','0'),
(61393,7427,'_customer_ip_address','213.205.194.18'),
(61394,7427,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(61395,7427,'_created_via','checkout'),
(61396,7427,'_cart_hash','b4641d1d7a142351671a923004018548'),
(61397,7427,'_billing_first_name','Amna'),
(61398,7427,'_billing_last_name','Kulongo'),
(61399,7427,'_billing_address_1','22, SEYMOUR ROAD'),
(61400,7427,'_billing_address_2','LUTON'),
(61401,7427,'_billing_city','CHATHAM'),
(61402,7427,'_billing_state','Kent'),
(61403,7427,'_billing_postcode','ME5 7AE'),
(61404,7427,'_billing_country','GB'),
(61405,7427,'_billing_email','amnakulongo@gmail.com'),
(61406,7427,'_billing_phone','07950212299'),
(61407,7427,'_order_currency','GBP'),
(61408,7427,'_cart_discount','0'),
(61409,7427,'_cart_discount_tax','0'),
(61410,7427,'_order_shipping','0'),
(61411,7427,'_order_shipping_tax','0'),
(61412,7427,'_order_tax','0'),
(61413,7427,'_order_total','0.00'),
(61414,7427,'_order_version','5.6.2'),
(61415,7427,'_prices_include_tax','no'),
(61416,7427,'_billing_address_index','Amna Kulongo  22, SEYMOUR ROAD LUTON CHATHAM Kent ME5 7AE GB amnakulongo@gmail.com 07950212299'),
(61417,7427,'_shipping_address_index','         '),
(61418,7427,'is_vat_exempt','no'),
(61419,7427,'ce4wp_checkout_consent','0'),
(61474,7427,'_date_paid','1654215949'),
(61475,7427,'_paid_date','2022-06-03 00:25:49'),
(61478,7427,'_wc_memberships_access_granted','a:1:{i:7429;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(61483,7427,'_wc_memberships_access_granted','a:1:{i:7429;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(61488,7427,'_download_permissions_granted','yes'),
(61490,7427,'_recorded_sales','yes'),
(61491,7427,'_recorded_coupon_usage_counts','yes'),
(61492,7427,'_order_stock_reduced','yes'),
(61493,7427,'_new_order_email_sent','true'),
(61735,7456,'_menu_item_type','taxonomy'),
(61736,7456,'_menu_item_menu_item_parent','0'),
(61737,7456,'_menu_item_object_id','25'),
(61738,7456,'_menu_item_object','product_cat'),
(61739,7456,'_menu_item_target',''),
(61740,7456,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(61741,7456,'_menu_item_xfn',''),
(61742,7456,'_menu_item_url',''),
(61816,4885,'_wp_old_date','2022-01-09'),
(62669,7558,'_edit_lock','1654538908:1'),
(62670,7558,'_edit_last','1'),
(62671,7558,'_wc_memberships_force_public','no'),
(62672,7558,'_wc_memberships_use_custom_page_content_restricted_message','no'),
(62673,7558,'_elementor_edit_mode','builder'),
(62674,7558,'_elementor_template_type','wp-page'),
(62675,7558,'_elementor_version','3.6.5'),
(62676,7558,'_elementor_pro_version','3.7.1'),
(62685,7558,'_wp_page_template','default'),
(62686,7558,'_elementor_data','[{\"id\":\"d76e605\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]}},\"elements\":[{\"id\":\"0c10e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"00e7fd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b86de6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"align\":\"center\",\"align_mobile\":\"center\",\"content_position_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_mobile\":\"hidden-mobile\",\"_inline_size\":null},\"elements\":[{\"id\":\"35e6ba0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Cart\",\"selected_icon\":{\"value\":\"far fa-dot-circle\",\"library\":\"fa-regular\"},\"_id\":\"b385e6b\"}],\"icon_color\":\"#FF914D\",\"icon_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text_color\":\"#1A1E23\",\"text_indent\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bfae206\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#DEE0E3\",\"gap\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9ddb9c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Information\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_id\":\"b385e6b\"}],\"icon_color\":\"#869498\",\"icon_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text_color\":\"#869498\",\"text_indent\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"0295324\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#DEE0E3\",\"gap\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52cd299\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Finish\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_id\":\"b385e6b\"}],\"icon_color\":\"#869498\",\"icon_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text_color\":\"#869498\",\"text_indent\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"da0d220\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/banner4.png\",\"id\":7554,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"left\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91af975\",\"elType\":\"widget\",\"settings\":{\"element\":\"woocommerce_cart\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"custom_css\":\"\\/* mobile Proceed to checkout colour*\\/\\n.checkout-button.button.alt.wc-forward {\\n background-color: rgb(91, 192, 222);\\n background-blend-mode: normal;\\n}\\n\\n\\/*Mobile proceed to checkout text colour*\\/\\n.woocommerce-cart-form:nth-child(2) > .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents:nth-child(1) > tbody:nth-child(2) > .woocommerce-cart-form__cart-item.cart_item:nth-child(1) > .product-name:nth-child(3) > a:nth-child(1) {\\n color: rgb(91, 192, 222);\\n}\\n\\n.woocommerce-cart-form:nth-child(2) > .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents:nth-child(1) > tbody:nth-child(2) > .woocommerce-cart-form__cart-item.cart_item:nth-child(2) > .product-name:nth-child(3) > a:nth-child(1) {\\n color: rgb(91, 192, 222);\\n}\\n\\n.woocommerce-cart-form:nth-child(2) > .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents:nth-child(1) > tbody:nth-child(2) > .woocommerce-cart-form__cart-item.cart_item:nth-child(3) > .product-name:nth-child(3) > a:nth-child(1) {\\n color: rgb(91, 192, 222);\\n}\\n\\/*View Cart start buttons colours*\\/\\n\\n.elementor-button.elementor-button--view-cart.elementor-size-md {\\n background-color: rgb(91, 192, 222);\\n background-blend-mode: normal;\\n}\\n\\n.elementor-button.elementor-button--checkout.elementor-size-md {\\n background-color: rgb(91, 192, 222);\\n background-blend-mode: normal;\\n}\\n\\n.elementor-menu-cart__product.woocommerce-cart-form__cart-item.cart_item {\\n color: rgb(91, 192, 222);\\n}\\n\\n\"},\"elements\":[],\"widgetType\":\"wc-elements\"},{\"id\":\"7231ed5\",\"elType\":\"widget\",\"settings\":{\"update_cart_button_text\":\"Update Cart\",\"apply_coupon_button_text\":\"Apply coupon\",\"totals_section_title\":\"Cart Totals\",\"update_shipping_button_text\":\"Update\",\"checkout_button_text\":\"Proceed to Checkout\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"woocommerce-cart\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02aa04a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35fc880\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(62693,7558,'_elementor_page_assets','a:0:{}'),
(63436,7645,'_order_key','wc_order_atsIP1XqGWN9i'),
(63437,7645,'_customer_user','1'),
(63438,7645,'_payment_method','paypal'),
(63439,7645,'_payment_method_title','PayPal'),
(63440,7645,'_customer_ip_address','213.205.194.172'),
(63441,7645,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(63442,7645,'_created_via','checkout'),
(63443,7645,'_cart_hash','8b757863cc773ffc4bb5cda96158968d'),
(63444,7645,'_billing_first_name','John'),
(63445,7645,'_billing_last_name','Doe'),
(63446,7645,'_billing_address_1','22 Seymour Road Chatham'),
(63447,7645,'_billing_city','Medway, Kent'),
(63448,7645,'_billing_state','United Kingdom'),
(63449,7645,'_billing_postcode','ME5 7AE'),
(63450,7645,'_billing_country','GB'),
(63451,7645,'_billing_email','sb-duv47d3572858@personal.example.com'),
(63452,7645,'_billing_phone','0353179971'),
(63453,7645,'_order_currency','GBP'),
(63454,7645,'_cart_discount','0'),
(63455,7645,'_cart_discount_tax','0'),
(63456,7645,'_order_shipping','0'),
(63457,7645,'_order_shipping_tax','0'),
(63458,7645,'_order_tax','0'),
(63459,7645,'_order_total','32.93'),
(63460,7645,'_order_version','6.5.1'),
(63461,7645,'_prices_include_tax','no'),
(63462,7645,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(63463,7645,'_shipping_address_index','         '),
(63465,7645,'ce4wp_checkout_consent','0'),
(63579,7645,'is_vat_exempt','no'),
(63580,7645,'Payment type','instant'),
(63581,7645,'_transaction_id','8RG29414JN260221C'),
(63582,7645,'_paypal_status','pending'),
(63583,7645,'_recorded_sales','yes'),
(63584,7645,'_recorded_coupon_usage_counts','yes'),
(63585,7645,'_order_stock_reduced','yes'),
(63586,7645,'_new_order_email_sent','true'),
(63992,7701,'_order_key','wc_order_j71uXh0RHYbhc'),
(63993,7701,'_customer_user','1'),
(63994,7701,'_payment_method','paypal'),
(63995,7701,'_payment_method_title','PayPal'),
(63996,7701,'_customer_ip_address','213.205.194.172'),
(63997,7701,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(63998,7701,'_created_via','checkout'),
(63999,7701,'_cart_hash','d2d17109035d06a0b25a395288e411da'),
(64000,7701,'_billing_first_name','John'),
(64001,7701,'_billing_last_name','Doe'),
(64002,7701,'_billing_address_1','22 Seymour Road Chatham'),
(64003,7701,'_billing_city','Medway, Kent'),
(64004,7701,'_billing_state','United Kingdom'),
(64005,7701,'_billing_postcode','ME5 7AE'),
(64006,7701,'_billing_country','GB'),
(64007,7701,'_billing_email','sb-duv47d3572858@personal.example.com'),
(64008,7701,'_billing_phone','0353179971'),
(64009,7701,'_order_currency','GBP'),
(64010,7701,'_cart_discount','0'),
(64011,7701,'_cart_discount_tax','0'),
(64012,7701,'_order_shipping','0'),
(64013,7701,'_order_shipping_tax','0'),
(64014,7701,'_order_tax','0'),
(64015,7701,'_order_total','6.99'),
(64016,7701,'_order_version','6.5.1'),
(64017,7701,'_prices_include_tax','no'),
(64018,7701,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(64019,7701,'_shipping_address_index','         '),
(64020,7701,'is_vat_exempt','no'),
(64021,7701,'ce4wp_checkout_consent','0'),
(64022,7701,'Payment type','instant'),
(64023,7701,'_transaction_id','2B2317167E643290X'),
(64024,7701,'_paypal_status','pending'),
(64025,7701,'_recorded_sales','yes'),
(64026,7701,'_recorded_coupon_usage_counts','yes'),
(64027,7701,'_order_stock_reduced','yes'),
(64028,7701,'_new_order_email_sent','true'),
(64029,7702,'_order_key','wc_order_eoPeLFXvjTiGD'),
(64030,7702,'_customer_user','1'),
(64031,7702,'_payment_method','paypal'),
(64032,7702,'_payment_method_title','PayPal'),
(64033,7702,'_customer_ip_address','213.205.194.168'),
(64034,7702,'_customer_user_agent','Mozilla/5.0 (Linux; Android 12; SM-G780G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.87 Mobile Safari/537.36'),
(64035,7702,'_created_via','checkout'),
(64036,7702,'_cart_hash','22e181d1eff873ed9886b68a86451157'),
(64037,7702,'_billing_first_name','John'),
(64038,7702,'_billing_last_name','Doe'),
(64039,7702,'_billing_address_1','22 Seymour Road Chatham'),
(64040,7702,'_billing_city','Medway, Kent'),
(64041,7702,'_billing_state','United Kingdom'),
(64042,7702,'_billing_postcode','ME5 7AE'),
(64043,7702,'_billing_country','GB'),
(64044,7702,'_billing_email','sb-duv47d3572858@personal.example.com'),
(64045,7702,'_billing_phone','0353179971'),
(64046,7702,'_order_currency','GBP'),
(64047,7702,'_cart_discount','0'),
(64048,7702,'_cart_discount_tax','0'),
(64049,7702,'_order_shipping','0'),
(64050,7702,'_order_shipping_tax','0'),
(64051,7702,'_order_tax','0'),
(64052,7702,'_order_total','1.98'),
(64053,7702,'_order_version','6.5.1'),
(64054,7702,'_prices_include_tax','no'),
(64055,7702,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(64056,7702,'_shipping_address_index','         '),
(64057,7702,'is_vat_exempt','no'),
(64058,7702,'ce4wp_checkout_consent','0'),
(64059,7702,'Payment type','instant'),
(64060,7702,'_transaction_id','0Y883883E0325064J'),
(64061,7702,'_paypal_status','pending'),
(64062,7702,'_recorded_sales','yes'),
(64063,7702,'_recorded_coupon_usage_counts','yes'),
(64064,7702,'_order_stock_reduced','yes'),
(64065,7702,'_new_order_email_sent','true'),
(64937,7931,'_order_key','wc_order_cySXycKAFATFU'),
(64938,7931,'_customer_user','1'),
(64939,7931,'_payment_method','paypal'),
(64940,7931,'_payment_method_title','PayPal'),
(64941,7931,'_customer_ip_address','85.255.237.96'),
(64942,7931,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(64943,7931,'_created_via','checkout'),
(64944,7931,'_cart_hash','f803d01d1eda47bbe90db0b111e3d5be'),
(64945,7931,'_billing_first_name','John'),
(64946,7931,'_billing_last_name','Doe'),
(64947,7931,'_billing_address_1','22 Seymour Road Chatham'),
(64948,7931,'_billing_city','Medway, Kent'),
(64949,7931,'_billing_state','United Kingdom'),
(64950,7931,'_billing_postcode','ME5 7AE'),
(64951,7931,'_billing_country','GB'),
(64952,7931,'_billing_email','sb-duv47d3572858@personal.example.com'),
(64953,7931,'_billing_phone','0353179971'),
(64954,7931,'_order_currency','GBP'),
(64955,7931,'_cart_discount','0'),
(64956,7931,'_cart_discount_tax','0'),
(64957,7931,'_order_shipping','0'),
(64958,7931,'_order_shipping_tax','0'),
(64959,7931,'_order_tax','0'),
(64960,7931,'_order_total','13.98'),
(64961,7931,'_order_version','6.5.1'),
(64962,7931,'_prices_include_tax','no'),
(64963,7931,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(64964,7931,'_shipping_address_index','         '),
(64966,7931,'ce4wp_checkout_consent','0'),
(64967,7931,'is_vat_exempt','no'),
(64968,7931,'Payment type','instant'),
(64969,7931,'_transaction_id','722080737E468072G'),
(64970,7931,'_paypal_status','pending'),
(64971,7931,'_recorded_sales','yes'),
(64972,7931,'_recorded_coupon_usage_counts','yes'),
(64973,7931,'_order_stock_reduced','yes'),
(64974,7931,'_new_order_email_sent','true'),
(64975,7932,'_order_key','wc_order_bWp5DSEEMIfW4'),
(64976,7932,'_customer_user','1'),
(64977,7932,'_payment_method','paypal'),
(64978,7932,'_payment_method_title','PayPal'),
(64979,7932,'_customer_ip_address','85.255.237.96'),
(64980,7932,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(64981,7932,'_created_via','checkout'),
(64982,7932,'_cart_hash','d2d17109035d06a0b25a395288e411da'),
(64983,7932,'_billing_first_name','John'),
(64984,7932,'_billing_last_name','Doe'),
(64985,7932,'_billing_address_1','22 Seymour Road Chatham'),
(64986,7932,'_billing_city','Medway, Kent'),
(64987,7932,'_billing_state','United Kingdom'),
(64988,7932,'_billing_postcode','ME5 7AE'),
(64989,7932,'_billing_country','GB'),
(64990,7932,'_billing_email','sb-duv47d3572858@personal.example.com'),
(64991,7932,'_billing_phone','0353179971'),
(64992,7932,'_order_currency','GBP'),
(64993,7932,'_cart_discount','0'),
(64994,7932,'_cart_discount_tax','0'),
(64995,7932,'_order_shipping','0'),
(64996,7932,'_order_shipping_tax','0'),
(64997,7932,'_order_tax','0'),
(64998,7932,'_order_total','6.99'),
(64999,7932,'_order_version','6.5.1'),
(65000,7932,'_prices_include_tax','no'),
(65001,7932,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(65002,7932,'_shipping_address_index','         '),
(65003,7932,'is_vat_exempt','no'),
(65004,7932,'ce4wp_checkout_consent','0'),
(65005,7932,'Payment type','instant'),
(65006,7932,'_transaction_id','9JW13183XJ104461Y'),
(65007,7932,'_paypal_status','pending'),
(65008,7932,'_recorded_sales','yes'),
(65009,7932,'_recorded_coupon_usage_counts','yes'),
(65010,7932,'_order_stock_reduced','yes'),
(65011,7932,'_new_order_email_sent','true'),
(65109,7944,'_order_key','wc_order_urvvb1oJQoBpl'),
(65110,7944,'_customer_user','1'),
(65111,7944,'_payment_method','paypal'),
(65112,7944,'_payment_method_title','PayPal'),
(65113,7944,'_customer_ip_address','85.255.237.96'),
(65114,7944,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(65115,7944,'_created_via','checkout'),
(65116,7944,'_cart_hash','6e5804c89b0cf1f7bc209300bdf05750'),
(65117,7944,'_billing_first_name','John'),
(65118,7944,'_billing_last_name','Doe'),
(65119,7944,'_billing_address_1','22 Seymour Road Chatham'),
(65120,7944,'_billing_city','Medway, Kent'),
(65121,7944,'_billing_state','United Kingdom'),
(65122,7944,'_billing_postcode','ME5 7AE'),
(65123,7944,'_billing_country','GB'),
(65124,7944,'_billing_email','sb-duv47d3572858@personal.example.com'),
(65125,7944,'_billing_phone','0353179971'),
(65126,7944,'_order_currency','GBP'),
(65127,7944,'_cart_discount','0'),
(65128,7944,'_cart_discount_tax','0'),
(65129,7944,'_order_shipping','0'),
(65130,7944,'_order_shipping_tax','0'),
(65131,7944,'_order_tax','0'),
(65132,7944,'_order_total','3.99'),
(65133,7944,'_order_version','6.5.1'),
(65134,7944,'_prices_include_tax','no'),
(65135,7944,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(65136,7944,'_shipping_address_index','         '),
(65137,7944,'is_vat_exempt','no'),
(65138,7944,'ce4wp_checkout_consent','0'),
(65139,7944,'Payment type','instant'),
(65140,7944,'_transaction_id','2L497244PK691151R'),
(65141,7944,'_paypal_status','pending'),
(65142,7944,'_recorded_sales','yes'),
(65143,7944,'_recorded_coupon_usage_counts','yes'),
(65144,7944,'_order_stock_reduced','yes'),
(65145,7944,'_new_order_email_sent','true'),
(65186,7949,'_order_key','wc_order_RinbH6XF5ul40'),
(65187,7949,'_customer_user','1'),
(65188,7949,'_payment_method','paypal'),
(65189,7949,'_payment_method_title','PayPal'),
(65190,7949,'_customer_ip_address','85.255.237.96'),
(65191,7949,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(65192,7949,'_created_via','checkout'),
(65193,7949,'_cart_hash','d5cf726c5e68ebd408fc490dcdc210d1'),
(65194,7949,'_billing_first_name','John'),
(65195,7949,'_billing_last_name','Doe'),
(65196,7949,'_billing_address_1','22 Seymour Road Chatham'),
(65197,7949,'_billing_city','Medway, Kent'),
(65198,7949,'_billing_state','United Kingdom'),
(65199,7949,'_billing_postcode','ME5 7AE'),
(65200,7949,'_billing_country','GB'),
(65201,7949,'_billing_email','sb-duv47d3572858@personal.example.com'),
(65202,7949,'_billing_phone','0353179971'),
(65203,7949,'_order_currency','GBP'),
(65204,7949,'_cart_discount','0'),
(65205,7949,'_cart_discount_tax','0'),
(65206,7949,'_order_shipping','0'),
(65207,7949,'_order_shipping_tax','0'),
(65208,7949,'_order_tax','0'),
(65209,7949,'_order_total','2.99'),
(65210,7949,'_order_version','6.5.1'),
(65211,7949,'_prices_include_tax','no'),
(65212,7949,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(65213,7949,'_shipping_address_index','         '),
(65214,7949,'is_vat_exempt','no'),
(65215,7949,'ce4wp_checkout_consent','0'),
(65216,7949,'Payment type','instant'),
(65217,7949,'_transaction_id','6UU78275RL7529607'),
(65218,7949,'_paypal_status','pending'),
(65219,7949,'_recorded_sales','yes'),
(65220,7949,'_recorded_coupon_usage_counts','yes'),
(65221,7949,'_order_stock_reduced','yes'),
(65222,7949,'_new_order_email_sent','true'),
(65304,7959,'_order_key','wc_order_JSI6E6SDkQZBQ'),
(65305,7959,'_customer_user','1'),
(65306,7959,'_payment_method','paypal'),
(65307,7959,'_payment_method_title','PayPal'),
(65308,7959,'_customer_ip_address','85.255.237.96'),
(65309,7959,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(65310,7959,'_created_via','checkout'),
(65311,7959,'_cart_hash','d5cf726c5e68ebd408fc490dcdc210d1'),
(65312,7959,'_billing_first_name','John'),
(65313,7959,'_billing_last_name','Doe'),
(65314,7959,'_billing_address_1','22 Seymour Road Chatham'),
(65315,7959,'_billing_city','Medway, Kent'),
(65316,7959,'_billing_state','United Kingdom'),
(65317,7959,'_billing_postcode','ME5 7AE'),
(65318,7959,'_billing_country','GB'),
(65319,7959,'_billing_email','sb-duv47d3572858@personal.example.com'),
(65320,7959,'_billing_phone','0353179971'),
(65321,7959,'_order_currency','GBP'),
(65322,7959,'_cart_discount','0'),
(65323,7959,'_cart_discount_tax','0'),
(65324,7959,'_order_shipping','0'),
(65325,7959,'_order_shipping_tax','0'),
(65326,7959,'_order_tax','0'),
(65327,7959,'_order_total','2.99'),
(65328,7959,'_order_version','6.5.1'),
(65329,7959,'_prices_include_tax','no'),
(65330,7959,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB sb-duv47d3572858@personal.example.com 0353179971'),
(65331,7959,'_shipping_address_index','         '),
(65332,7959,'is_vat_exempt','no'),
(65333,7959,'ce4wp_checkout_consent','0'),
(65334,7959,'Payment type','instant'),
(65335,7959,'_transaction_id','9E437082UJ329250S'),
(65336,7959,'_paypal_status','pending'),
(65337,7959,'_recorded_sales','yes'),
(65338,7959,'_recorded_coupon_usage_counts','yes'),
(65339,7959,'_order_stock_reduced','yes'),
(65340,7959,'_new_order_email_sent','true'),
(65374,7962,'wcf-steps','a:1:{i:0;a:3:{s:2:\"id\";i:8077;s:5:\"title\";s:15:\"Global Checkout\";s:4:\"type\";s:8:\"checkout\";}}'),
(65781,8077,'wcf-flow-id','7962'),
(65782,8077,'wcf-step-type','checkout'),
(65783,8077,'cartflows_imported_step','yes'),
(65784,8077,'_wp_page_template','cartflows-canvas'),
(65785,8077,'wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"IN\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:3:\"PIN\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}'),
(65786,8077,'wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"IN\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:3:\"PIN\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}'),
(65787,8077,'_wp_old_slug','checkout-woo'),
(65788,8077,'wcf-remove-product-field','no'),
(65789,8077,'wcf-animate-browser-tab','no'),
(65790,8077,'wcf-animate-browser-tab-title','___Don&#39;t miss out the offer___'),
(65791,8077,'_elementor_edit_mode','builder'),
(65792,8077,'_elementor_template_type','wp-post'),
(65793,8077,'_elementor_version','3.5.6'),
(65794,8077,'_astra_content_layout_flag','disabled'),
(65795,8077,'site-post-title','disabled'),
(65796,8077,'ast-title-bar-display','disabled'),
(65797,8077,'ast-featured-img','disabled'),
(65798,8077,'site-content-layout','page-builder'),
(65799,8077,'site-sidebar-layout','no-sidebar'),
(65800,8077,'wcf-pro-dynamic-css-version','1654153534'),
(65801,8077,'wcf-dynamic-css-version','1707927940'),
(65802,8077,'_elementor_data','a:4:{i:0;a:5:{s:2:\"id\";s:7:\"a4d1693\";s:8:\"settings\";a:38:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"960\";s:5:\"sizes\";a:0:{}}s:3:\"gap\";s:2:\"no\";s:16:\"content_position\";s:6:\"middle\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"24\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"48\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";s:0:\"\";}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:1:\"1\";}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"16\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"24\";s:5:\"right\";s:2:\"24\";s:6:\"bottom\";s:2:\"24\";s:4:\"left\";s:2:\"24\";s:8:\"isLinked\";s:1:\"1\";}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"24\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:2:\"24\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";s:0:\"\";}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}s:16:\"clouds_image_one\";a:2:{s:2:\"id\";i:8078;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/1-31.png\";}s:16:\"clouds_image_two\";a:2:{s:2:\"id\";i:8079;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/2-31.png\";}s:18:\"clouds_image_three\";a:2:{s:2:\"id\";i:8080;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/3-31.png\";}s:17:\"clouds_image_four\";a:2:{s:2:\"id\";i:8081;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/4-31.png\";}s:23:\"wave_animation_wave_top\";a:2:{s:2:\"id\";i:8082;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-top-31.png\";}s:26:\"wave_animation_wave_middle\";a:2:{s:2:\"id\";i:8083;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-mid-31.png\";}s:26:\"wave_animation_wave_bottom\";a:2:{s:2:\"id\";i:8084;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-bot-31.png\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"6fd5473\";s:8:\"settings\";a:22:{s:12:\"_column_size\";s:3:\"100\";s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}}s:8:\"elements\";a:4:{i:0;a:6:{s:2:\"id\";s:7:\"6d0f154\";s:8:\"settings\";a:20:{s:5:\"image\";a:2:{s:2:\"id\";s:4:\"7706\";s:3:\"url\";s:89:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/global-checkout-template-logo.svg\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:12:\"align_mobile\";s:6:\"center\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"32\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"16\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"96\";s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:7:\"492a1a9\";s:8:\"settings\";a:20:{s:5:\"title\";s:20:\"You are almost there\";s:11:\"title_color\";s:7:\"#1A1E23\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"40\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"24\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"-0.5\";s:5:\"sizes\";a:0:{}}s:5:\"align\";s:6:\"center\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:7:\"b5b23b6\";s:8:\"settings\";a:21:{s:5:\"title\";s:78:\"Adipiscing bibendum id a condimentum risus nec sed malesuada ut etiam egestas.\";s:11:\"header_size\";s:1:\"p\";s:11:\"title_color\";s:7:\"#566376\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.6\";s:5:\"sizes\";a:0:{}}s:15:\"_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:5:\"align\";s:6:\"center\";s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:7:\"7141542\";s:8:\"settings\";a:24:{s:9:\"icon_list\";a:3:{i:0;a:4:{s:4:\"text\";s:20:\"SSL secured checkout\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:17:\"fas fa-shield-alt\";s:7:\"library\";s:8:\"fa-solid\";}s:3:\"_id\";s:7:\"5e9a798\";s:4:\"link\";a:4:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}i:1;a:4:{s:4:\"text\";s:22:\"24/7 support available\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:16:\"fas fa-life-ring\";s:7:\"library\";s:8:\"fa-solid\";}s:3:\"_id\";s:7:\"374952d\";s:4:\"link\";a:4:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}i:2;a:4:{s:4:\"text\";s:14:\"Payment option\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:18:\"fas fa-credit-card\";s:7:\"library\";s:8:\"fa-solid\";}s:3:\"_id\";s:7:\"c236b18\";s:4:\"link\";a:4:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}}s:13:\"space_between\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"48\";s:5:\"sizes\";a:0:{}}s:20:\"space_between_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:10:\"icon_color\";s:7:\"#869498\";s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:10:\"text_color\";s:7:\"#869498\";s:26:\"icon_typography_typography\";s:6:\"custom\";s:27:\"icon_typography_font_family\";s:5:\"Inter\";s:25:\"icon_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:4:\"view\";s:6:\"inline\";s:10:\"icon_align\";s:6:\"center\";s:20:\"space_between_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"40\";s:5:\"sizes\";a:0:{}}s:34:\"icon_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:1:\"2\";s:5:\"sizes\";a:0:{}}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:9:\"icon-list\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";s:0:\"\";s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";s:0:\"\";s:6:\"elType\";s:7:\"section\";}i:1;a:5:{s:2:\"id\";s:7:\"d33eb2e\";s:8:\"settings\";a:37:{s:3:\"gap\";s:2:\"no\";s:16:\"background_color\";s:7:\"#F8F6F8\";s:12:\"border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"4\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:3:\"104\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";s:0:\"\";}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"24\";s:6:\"bottom\";s:2:\"48\";s:4:\"left\";s:2:\"24\";s:8:\"isLinked\";s:0:\"\";}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"8\";s:6:\"bottom\";s:2:\"40\";s:4:\"left\";s:1:\"8\";s:8:\"isLinked\";s:0:\"\";}s:21:\"background_background\";s:8:\"gradient\";s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:18:\"background_color_b\";s:7:\"#FFFFFF\";s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}s:16:\"clouds_image_one\";a:2:{s:2:\"id\";i:8092;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/1-33.png\";}s:16:\"clouds_image_two\";a:2:{s:2:\"id\";i:8093;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/2-33.png\";}s:18:\"clouds_image_three\";a:2:{s:2:\"id\";i:8094;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/3-33.png\";}s:17:\"clouds_image_four\";a:2:{s:2:\"id\";i:8095;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/4-33.png\";}s:23:\"wave_animation_wave_top\";a:2:{s:2:\"id\";i:8096;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-top-33.png\";}s:26:\"wave_animation_wave_middle\";a:2:{s:2:\"id\";i:8097;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-mid-33.png\";}s:26:\"wave_animation_wave_bottom\";a:2:{s:2:\"id\";i:8098;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-bot-33.png\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"eecc3cc\";s:8:\"settings\";a:36:{s:12:\"_column_size\";s:3:\"100\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:13:\"border_border\";s:5:\"solid\";s:12:\"border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";s:1:\"1\";}s:12:\"border_color\";s:7:\"#DEE0E3\";s:26:\"box_shadow_box_shadow_type\";s:3:\"yes\";s:21:\"box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";s:1:\"0\";s:8:\"vertical\";s:2:\"64\";s:4:\"blur\";s:2:\"80\";s:6:\"spread\";s:3:\"-40\";s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.12)\";}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"32\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"48\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";s:0:\"\";}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"32\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:2:\"24\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";s:0:\"\";}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"24\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"12\";s:5:\"right\";s:2:\"12\";s:6:\"bottom\";s:2:\"12\";s:4:\"left\";s:2:\"12\";s:8:\"isLinked\";s:1:\"1\";}s:20:\"border_radius_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:1:\"8\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:1:\"8\";s:8:\"isLinked\";s:1:\"1\";}s:7:\"z_index\";s:1:\"1\";s:14:\"z_index_tablet\";s:1:\"1\";s:14:\"z_index_mobile\";s:1:\"1\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"b1e1ba0\";s:8:\"settings\";a:37:{s:3:\"gap\";s:2:\"no\";s:16:\"content_position\";s:6:\"bottom\";s:13:\"border_border\";s:5:\"solid\";s:12:\"border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:12:\"border_color\";s:7:\"#DEE0E3\";s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"24\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"32\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"16\";s:6:\"bottom\";s:2:\"32\";s:4:\"left\";s:2:\"16\";s:8:\"isLinked\";s:0:\"\";}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"12\";s:6:\"bottom\";s:2:\"24\";s:4:\"left\";s:2:\"12\";s:8:\"isLinked\";s:0:\"\";}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}s:16:\"clouds_image_one\";a:2:{s:2:\"id\";i:8085;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/1-32.png\";}s:16:\"clouds_image_two\";a:2:{s:2:\"id\";i:8086;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/2-32.png\";}s:18:\"clouds_image_three\";a:2:{s:2:\"id\";i:8087;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/3-32.png\";}s:17:\"clouds_image_four\";a:2:{s:2:\"id\";i:8088;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/4-32.png\";}s:23:\"wave_animation_wave_top\";a:2:{s:2:\"id\";i:8089;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-top-32.png\";}s:26:\"wave_animation_wave_middle\";a:2:{s:2:\"id\";i:8090;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-mid-32.png\";}s:26:\"wave_animation_wave_bottom\";a:2:{s:2:\"id\";i:8091;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-bot-32.png\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"542cb1f\";s:8:\"settings\";a:25:{s:12:\"_column_size\";s:3:\"100\";s:5:\"align\";s:6:\"center\";s:12:\"align_mobile\";s:6:\"center\";s:23:\"content_position_mobile\";s:6:\"center\";s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}}s:8:\"elements\";a:5:{i:0;a:6:{s:2:\"id\";s:7:\"b856c46\";s:8:\"settings\";a:24:{s:9:\"icon_list\";a:1:{i:0;a:4:{s:4:\"text\";s:4:\"Cart\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:13:\"far fa-circle\";s:7:\"library\";s:10:\"fa-regular\";}s:3:\"_id\";s:7:\"b385e6b\";s:4:\"link\";a:4:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}}s:10:\"icon_color\";s:7:\"#869498\";s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:10:\"text_color\";s:7:\"#869498\";s:11:\"text_indent\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"4\";s:5:\"sizes\";a:0:{}}s:26:\"icon_typography_typography\";s:6:\"custom\";s:27:\"icon_typography_font_family\";s:5:\"Inter\";s:25:\"icon_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"icon_typography_font_weight\";s:3:\"600\";s:14:\"_element_width\";s:4:\"auto\";s:23:\"_element_vertical_align\";s:6:\"center\";s:16:\"icon_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:32:\"icon_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"13\";s:5:\"sizes\";a:0:{}}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:9:\"icon-list\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:7:\"32ca4db\";s:8:\"settings\";a:23:{s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"24\";s:5:\"sizes\";a:0:{}}s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#DEE0E3\";s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"4\";s:5:\"sizes\";a:0:{}}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"12\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"12\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_element_width\";s:4:\"auto\";s:23:\"_element_vertical_align\";s:6:\"center\";s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"12\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"12\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"8\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"8\";s:8:\"isLinked\";s:0:\"\";}s:4:\"icon\";a:2:{s:5:\"value\";s:11:\"fas fa-star\";s:7:\"library\";s:8:\"fa-solid\";}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"divider\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:7:\"ffcf7ae\";s:8:\"settings\";a:24:{s:9:\"icon_list\";a:1:{i:0;a:4:{s:4:\"text\";s:11:\"Information\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:17:\"far fa-dot-circle\";s:7:\"library\";s:10:\"fa-regular\";}s:3:\"_id\";s:7:\"b385e6b\";s:4:\"link\";a:4:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}}s:10:\"icon_color\";s:7:\"#994BFB\";s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:10:\"text_color\";s:7:\"#1A1E23\";s:11:\"text_indent\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"4\";s:5:\"sizes\";a:0:{}}s:26:\"icon_typography_typography\";s:6:\"custom\";s:27:\"icon_typography_font_family\";s:5:\"Inter\";s:25:\"icon_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"icon_typography_font_weight\";s:3:\"600\";s:14:\"_element_width\";s:4:\"auto\";s:23:\"_element_vertical_align\";s:6:\"center\";s:16:\"icon_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:32:\"icon_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"13\";s:5:\"sizes\";a:0:{}}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:9:\"icon-list\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:7:\"e0d63c5\";s:8:\"settings\";a:23:{s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"80\";s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"24\";s:5:\"sizes\";a:0:{}}s:4:\"text\";s:7:\"Divider\";s:5:\"color\";s:7:\"#DEE0E3\";s:3:\"gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"4\";s:5:\"sizes\";a:0:{}}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"12\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"12\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_element_width\";s:4:\"auto\";s:23:\"_element_vertical_align\";s:6:\"center\";s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"12\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"12\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"8\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"8\";s:8:\"isLinked\";s:0:\"\";}s:4:\"icon\";a:2:{s:5:\"value\";s:11:\"fas fa-star\";s:7:\"library\";s:8:\"fa-solid\";}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"divider\";s:6:\"elType\";s:6:\"widget\";}i:4;a:6:{s:2:\"id\";s:7:\"086ed42\";s:8:\"settings\";a:24:{s:9:\"icon_list\";a:1:{i:0;a:4:{s:4:\"text\";s:6:\"Finish\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:13:\"far fa-circle\";s:7:\"library\";s:10:\"fa-regular\";}s:3:\"_id\";s:7:\"b385e6b\";s:4:\"link\";a:4:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}}s:10:\"icon_color\";s:7:\"#869498\";s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:10:\"text_color\";s:7:\"#869498\";s:11:\"text_indent\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"4\";s:5:\"sizes\";a:0:{}}s:26:\"icon_typography_typography\";s:6:\"custom\";s:27:\"icon_typography_font_family\";s:5:\"Inter\";s:25:\"icon_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"icon_typography_font_weight\";s:3:\"600\";s:14:\"_element_width\";s:4:\"auto\";s:23:\"_element_vertical_align\";s:6:\"center\";s:16:\"icon_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:32:\"icon_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"13\";s:5:\"sizes\";a:0:{}}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:9:\"icon-list\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";s:1:\"1\";s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";s:1:\"1\";s:6:\"elType\";s:7:\"section\";}i:1;a:5:{s:2:\"id\";s:7:\"5d4294e\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:30:{s:20:\"global_primary_color\";s:7:\"#994BFB\";s:17:\"global_text_color\";s:7:\"#566376\";s:28:\"global_typography_typography\";s:6:\"custom\";s:29:\"global_typography_font_family\";s:5:\"Inter\";s:18:\"heading_text_color\";s:7:\"#1A1E23\";s:29:\"heading_typography_typography\";s:6:\"custom\";s:30:\"heading_typography_font_family\";s:5:\"Inter\";s:28:\"heading_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:30:\"heading_typography_font_weight\";s:3:\"600\";s:32:\"input_text_typography_typography\";s:6:\"custom\";s:33:\"input_text_typography_font_family\";s:5:\"Inter\";s:29:\"buttons_typography_typography\";s:6:\"custom\";s:30:\"buttons_typography_font_family\";s:5:\"Inter\";s:28:\"buttons_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:35:\"buttons_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:30:\"buttons_typography_font_weight\";s:3:\"700\";s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:15:\"_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"40\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";s:0:\"\";}s:24:\"payment_section_bg_color\";s:7:\"#F8F6F8\";s:21:\"payment_info_bg_color\";s:7:\"#FFFFFF\";s:9:\"note_text\";s:50:\"Get Your FREE copy of CartFlows in just few steps.\";s:19:\"step_one_title_text\";s:8:\"Shipping\";s:23:\"step_one_sub_title_text\";s:17:\"Where to ship it?\";s:19:\"step_two_title_text\";s:7:\"Payment\";s:23:\"step_two_sub_title_text\";s:13:\"Of your order\";s:23:\"offer_button_title_text\";s:28:\"For Special Offer Click Here\";s:26:\"offer_button_subtitle_text\";s:23:\"Yes! I want this offer!\";s:11:\"input_skins\";s:12:\"modern-label\";s:34:\"global_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:35:\"heading_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:13:\"checkout-form\";}}s:7:\"isInner\";s:0:\"\";s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";s:0:\"\";s:6:\"elType\";s:7:\"section\";}i:2;a:5:{s:2:\"id\";s:7:\"8f3b499\";s:8:\"settings\";a:34:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1080\";s:5:\"sizes\";a:0:{}}s:3:\"gap\";s:2:\"no\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"40\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"40\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";s:1:\"1\";}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"48\";s:5:\"right\";s:2:\"24\";s:6:\"bottom\";s:2:\"48\";s:4:\"left\";s:2:\"24\";s:8:\"isLinked\";s:0:\"\";}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"40\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:2:\"40\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";s:0:\"\";}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}s:16:\"clouds_image_one\";a:2:{s:2:\"id\";i:8106;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/1-35.png\";}s:16:\"clouds_image_two\";a:2:{s:2:\"id\";i:8107;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/2-35.png\";}s:18:\"clouds_image_three\";a:2:{s:2:\"id\";i:8108;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/3-35.png\";}s:17:\"clouds_image_four\";a:2:{s:2:\"id\";i:8109;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/4-35.png\";}s:23:\"wave_animation_wave_top\";a:2:{s:2:\"id\";i:8110;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-top-35.png\";}s:26:\"wave_animation_wave_middle\";a:2:{s:2:\"id\";i:8111;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-mid-35.png\";}s:26:\"wave_animation_wave_bottom\";a:2:{s:2:\"id\";i:8112;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-bot-35.png\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"2e61709\";s:8:\"settings\";a:21:{s:12:\"_column_size\";s:3:\"100\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}}s:8:\"elements\";a:2:{i:0;a:6:{s:2:\"id\";s:7:\"bcd356c\";s:8:\"settings\";a:22:{s:5:\"title\";s:26:\"Frequently asked questions\";s:11:\"title_color\";s:7:\"#1A1E23\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"32\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"28\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"-0.5\";s:5:\"sizes\";a:0:{}}s:5:\"align\";s:6:\"center\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"16\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:5:{s:2:\"id\";s:7:\"2de361b\";s:8:\"settings\";a:31:{s:3:\"gap\";s:2:\"no\";s:9:\"structure\";s:2:\"20\";s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"32\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}s:16:\"clouds_image_one\";a:2:{s:2:\"id\";i:8099;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/1-34.png\";}s:16:\"clouds_image_two\";a:2:{s:2:\"id\";i:8100;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/2-34.png\";}s:18:\"clouds_image_three\";a:2:{s:2:\"id\";i:8101;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/3-34.png\";}s:17:\"clouds_image_four\";a:2:{s:2:\"id\";i:8102;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/4-34.png\";}s:23:\"wave_animation_wave_top\";a:2:{s:2:\"id\";i:8103;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-top-34.png\";}s:26:\"wave_animation_wave_middle\";a:2:{s:2:\"id\";i:8104;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-mid-34.png\";}s:26:\"wave_animation_wave_bottom\";a:2:{s:2:\"id\";i:8105;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-bot-34.png\";}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"abd2c82\";s:8:\"settings\";a:25:{s:12:\"_column_size\";s:2:\"50\";s:21:\"space_between_widgets\";s:2:\"32\";s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:7:\"5bd52bb\";s:8:\"settings\";a:32:{s:13:\"selected_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:10:\"title_text\";s:39:\"Viverra tempor eget consectetur congue?\";s:16:\"description_text\";s:113:\"In ullamcorper eleifend mi sed egestas aenean nibh egestas porta enim posuere sem condimentum faucibus phasellus.\";s:10:\"title_size\";s:3:\"div\";s:10:\"text_align\";s:4:\"left\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"8\";s:5:\"sizes\";a:0:{}}s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:5:\"Inter\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"24\";s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:5:\"Inter\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"32\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_border_border\";s:5:\"solid\";s:13:\"_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"_border_color\";s:9:\"#0000001A\";s:39:\"description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:17:\"description_color\";s:7:\"#566376\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:8:\"icon-box\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:7:\"bd514a9\";s:8:\"settings\";a:32:{s:13:\"selected_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:10:\"title_text\";s:40:\"Cursus in orci tortor venenatis euismod?\";s:16:\"description_text\";s:183:\"Tortor sit in molestie convallis auctor fermentum dolor, aliquam sagittis nullam elementum pharetra neque viverra enim felis lectus risus mattis nec egestas interdum sit in odio elit.\";s:10:\"title_size\";s:3:\"div\";s:10:\"text_align\";s:4:\"left\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"8\";s:5:\"sizes\";a:0:{}}s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:5:\"Inter\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"24\";s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:5:\"Inter\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"32\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_border_border\";s:5:\"solid\";s:13:\"_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"_border_color\";s:9:\"#0000001A\";s:39:\"description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:17:\"description_color\";s:7:\"#566376\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:8:\"icon-box\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:7:\"ed07381\";s:8:\"settings\";a:32:{s:13:\"selected_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:10:\"title_text\";s:37:\"Elit metus felis id nullam vulputate?\";s:16:\"description_text\";s:162:\"Mollis nibh tristique molestie massa ultricies nunc, nunc vitae, cras ornare odio imperdiet eros scelerisque urna eget vitae nulla volutpat erat risus magna nisi.\";s:10:\"title_size\";s:3:\"div\";s:10:\"text_align\";s:4:\"left\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"8\";s:5:\"sizes\";a:0:{}}s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:5:\"Inter\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"24\";s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:5:\"Inter\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"32\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_border_border\";s:5:\"solid\";s:13:\"_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"_border_color\";s:9:\"#0000001A\";s:39:\"description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:17:\"description_color\";s:7:\"#566376\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:8:\"icon-box\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";s:1:\"1\";s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:7:\"85b521a\";s:8:\"settings\";a:24:{s:12:\"_column_size\";s:2:\"50\";s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";s:0:\"\";}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"32\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";s:0:\"\";}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:7:\"b1ada9b\";s:8:\"settings\";a:32:{s:13:\"selected_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:10:\"title_text\";s:32:\"Tincidunt elementum non posuere?\";s:16:\"description_text\";s:154:\"Pellentesque velit id congue pellentesque aliquam quisque sem elit vestibulum amet sed hac et in aliquet pellentesque faucibus amet sed duis vel neque sed\";s:10:\"title_size\";s:3:\"div\";s:10:\"text_align\";s:4:\"left\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"8\";s:5:\"sizes\";a:0:{}}s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:5:\"Inter\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"24\";s:5:\"sizes\";a:0:{}}s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:5:\"Inter\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"32\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_border_border\";s:5:\"solid\";s:13:\"_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"_border_color\";s:9:\"#0000001A\";s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:39:\"description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:17:\"description_color\";s:7:\"#566376\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:8:\"icon-box\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:7:\"28e5563\";s:8:\"settings\";a:32:{s:13:\"selected_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:10:\"title_text\";s:39:\"Viverra tempor eget consectetur congue?\";s:16:\"description_text\";s:99:\"Pulvinar sagittis, in ut vitae diam ultrices vitae, tortor mi, ut neque iaculis ipsum risus rhoncus\";s:10:\"title_size\";s:3:\"div\";s:10:\"text_align\";s:4:\"left\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"8\";s:5:\"sizes\";a:0:{}}s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:5:\"Inter\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"24\";s:5:\"sizes\";a:0:{}}s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:5:\"Inter\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"32\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_border_border\";s:5:\"solid\";s:13:\"_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"_border_color\";s:9:\"#0000001A\";s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:39:\"description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:17:\"description_color\";s:7:\"#566376\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:8:\"icon-box\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:7:\"e7dfd0f\";s:8:\"settings\";a:32:{s:13:\"selected_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:10:\"title_text\";s:40:\"Cursus in orci tortor venenatis euismod?\";s:16:\"description_text\";s:109:\"Egestas ornare lacus sed ultricies diam egestas velit magna nulla pellentesque mattis ornare in elementum nam\";s:10:\"title_size\";s:3:\"div\";s:10:\"text_align\";s:4:\"left\";s:18:\"title_bottom_space\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"8\";s:5:\"sizes\";a:0:{}}s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:5:\"Inter\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"24\";s:5:\"sizes\";a:0:{}}s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:3:\"1.2\";s:5:\"sizes\";a:0:{}}s:33:\"description_typography_typography\";s:6:\"custom\";s:34:\"description_typography_font_family\";s:5:\"Inter\";s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"32\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:14:\"_border_border\";s:5:\"solid\";s:13:\"_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:13:\"_border_color\";s:9:\"#0000001A\";s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:39:\"description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";s:3:\"600\";s:17:\"description_color\";s:7:\"#566376\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:8:\"icon-box\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";s:1:\"1\";s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";s:1:\"1\";s:6:\"elType\";s:7:\"section\";}}s:7:\"isInner\";s:0:\"\";s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";s:0:\"\";s:6:\"elType\";s:7:\"section\";}i:3;a:5:{s:2:\"id\";s:7:\"917b189\";s:8:\"settings\";a:36:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1080\";s:5:\"sizes\";a:0:{}}s:3:\"gap\";s:2:\"no\";s:16:\"content_position\";s:6:\"middle\";s:12:\"border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:12:\"border_color\";s:7:\"#DEE0E3\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"40\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"40\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";s:1:\"1\";}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"24\";s:5:\"right\";s:2:\"24\";s:6:\"bottom\";s:2:\"24\";s:4:\"left\";s:2:\"24\";s:8:\"isLinked\";s:1:\"1\";}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}s:16:\"clouds_image_one\";a:2:{s:2:\"id\";i:8113;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/1-36.png\";}s:16:\"clouds_image_two\";a:2:{s:2:\"id\";i:8114;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/2-36.png\";}s:18:\"clouds_image_three\";a:2:{s:2:\"id\";i:8115;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/3-36.png\";}s:17:\"clouds_image_four\";a:2:{s:2:\"id\";i:8116;s:3:\"url\";s:64:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/4-36.png\";}s:23:\"wave_animation_wave_top\";a:2:{s:2:\"id\";i:8117;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-top-36.png\";}s:26:\"wave_animation_wave_middle\";a:2:{s:2:\"id\";i:8118;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-mid-36.png\";}s:26:\"wave_animation_wave_bottom\";a:2:{s:2:\"id\";i:8119;s:3:\"url\";s:71:\"http://choiceresources.co.uk/wp-content/uploads/2022/06/wave-bot-36.png\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"07c3ed0\";s:8:\"settings\";a:22:{s:12:\"_column_size\";s:3:\"100\";s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"16\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:28:\"background_slideshow_gallery\";a:0:{}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:34:\"background_hover_slideshow_gallery\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_overlay_slideshow_gallery\";a:0:{}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:42:\"background_overlay_hover_slideshow_gallery\";a:0:{}}s:8:\"elements\";a:2:{i:0;a:6:{s:2:\"id\";s:7:\"c309dbf\";s:8:\"settings\";a:26:{s:4:\"view\";s:6:\"inline\";s:9:\"icon_list\";a:3:{i:0;a:4:{s:4:\"text\";s:14:\"Refund policy \";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:3:\"_id\";s:7:\"5e9a798\";s:4:\"link\";a:4:{s:3:\"url\";s:1:\"#\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}}i:1;a:4:{s:4:\"text\";s:14:\"Privacy policy\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:4:\"link\";a:4:{s:3:\"url\";s:1:\"#\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}s:3:\"_id\";s:7:\"4e2c037\";}i:2;a:4:{s:4:\"text\";s:16:\"Terms of service\";s:13:\"selected_icon\";a:2:{s:5:\"value\";s:0:\"\";s:7:\"library\";s:0:\"\";}s:4:\"link\";a:4:{s:3:\"url\";s:1:\"#\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";s:17:\"custom_attributes\";s:0:\"\";}s:3:\"_id\";s:7:\"7f8d50c\";}}s:13:\"space_between\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"32\";s:5:\"sizes\";a:0:{}}s:20:\"space_between_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"20\";s:5:\"sizes\";a:0:{}}s:10:\"icon_align\";s:6:\"center\";s:17:\"icon_align_mobile\";s:6:\"center\";s:10:\"icon_color\";s:7:\"#4959FF\";s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"16\";s:5:\"sizes\";a:0:{}}s:10:\"text_color\";s:7:\"#566376\";s:16:\"text_color_hover\";s:7:\"#1A1E23\";s:26:\"icon_typography_typography\";s:6:\"custom\";s:27:\"icon_typography_font_family\";s:5:\"Inter\";s:25:\"icon_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:32:\"icon_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"13\";s:5:\"sizes\";a:0:{}}s:34:\"icon_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:1:\"2\";s:5:\"sizes\";a:0:{}}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:9:\"icon-list\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:7:\"f2b9c8c\";s:8:\"settings\";a:22:{s:5:\"title\";s:38:\"Â© 2022 Yoursite. All rights reserved.\";s:11:\"header_size\";s:1:\"p\";s:12:\"align_mobile\";s:6:\"center\";s:11:\"title_color\";s:7:\"#869498\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"14\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"13\";s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:1:\"1\";s:5:\"sizes\";a:0:{}}s:15:\"_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";s:0:\"\";}s:5:\"align\";s:6:\"center\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";s:0:\"\";s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";s:0:\"\";s:6:\"elType\";s:7:\"section\";}}'),
(65803,8077,'_elementor_page_assets','a:0:{}'),
(65804,8077,'_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}'),
(65805,8077,'wcf-product-options-data','a:1:{s:8:\"0fb4jy4q\";a:6:{s:11:\"add_to_cart\";s:3:\"yes\";s:12:\"product_name\";s:30:\"SEO Foundation E-Book (#35953)\";s:15:\"product_subtext\";s:0:\"\";s:16:\"enable_highlight\";s:2:\"no\";s:14:\"highlight_text\";s:0:\"\";s:9:\"unique_id\";s:8:\"0fb4jy4q\";}}'),
(65806,8077,'wcf-enable-product-options','no'),
(65807,8077,'wcf-product-options','force-all'),
(65808,8077,'wcf-enable-product-variation','no'),
(65809,8077,'wcf-product-variation-options','inline'),
(65810,8077,'wcf-enable-product-quantity','no'),
(65811,8077,'wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}'),
(65812,8077,'enable-to-import','1'),
(65813,8077,'_thumbnail_id','53787'),
(65815,8077,'wcf-order-review-show-product-images','yes'),
(65816,8077,'wcf-checkout-place-order-button-lock','yes'),
(65817,8077,'wcf-checkout-place-order-button-price-display','yes'),
(65818,8077,'wcf-google-autoaddress','no'),
(65819,8077,'wcf-pro-dynamic-css','.wcf-product-option-wrap {}\n\n	#wcf-quick-view-content{\n		font-family: ;\n	}\n	#wcf-quick-view-content .summary-content .product_title{\n		color: ;\n		font-family: ;\n	    font-weight: ;\n	}\n	#wcf-quick-view-content .summary-content .variations select {\n		color: ;\n		background: ;\n		border-color: ;\n		padding-top: px;\n		padding-bottom: px;\n		padding-left: px;\n		padding-right: px;\n		min-height: ;\n		font-family: ;\n	    font-weight: ;\n	}\n	#wcf-quick-view-content .summary-content .single_variation_wrap .woocommerce-variation-add-to-cart button{\n		color: ;\n		background: ;\n		padding-top: px;\n		padding-bottom: px;\n		padding-left: px;\n		padding-right: px;\n		border-color: ;\n		min-height: ;\n		font-family: ;\n	    font-weight: ;\n	}\n	#wcf-quick-view-content .summary-content a{\n		color: ;\n	}\n	#wcf-quick-view-content .summary-content .woocommerce-product-rating .star-rating, \n	#wcf-quick-view-content .summary-content .woocommerce-product-rating .comment-form-rating .stars a, \n	#wcf-quick-view-content .summary-content .woocommerce-product-rating .star-rating::before{\n	    color: ;\n	}\n	.wcf-bump-order-wrap.wcf-before-checkout .wcf-bump-order-field-wrap input[type=checkbox]:checked:before, wcf-bump-order-wrap.wcf-after-customer .wcf-bump-order-field-wrap input[type=checkbox]:checked:before, wcf-bump-order-wrap.wcf-before-checkout .wcf-bump-order-field-wrap input[type=checkbox]:checked:before, wcf-product-option-wrap .wcf-qty-row div [type=\'checkbox\']:checked:before {\n		color: ;\n	}\n	.wcf-product-option-wrap .wcf-qty-row input[type=radio]:checked:before{\n		background-color:;\n	}\n	.wcf-bump-order-wrap.wcf-before-checkout .wcf-bump-order-field-wrap input[type=checkbox]:focus,\n	.wcf-bump-order-wrap.wcf-after-customer .wcf-bump-order-field-wrap input[type=checkbox]:focus,\n	.wcf-bump-order-wrap.wcf-before-checkout .wcf-bump-order-field-wrap input[type=checkbox]:focus,\n	.wcf-embed-checkout-form .wcf-product-option-wrap .wcf-qty-row div [type=\'checkbox\']:focus,\n	.wcf-embed-checkout-form .wcf-product-option-wrap .wcf-qty-row div [type=\'radio\']:checked:focus,\n	.wcf-embed-checkout-form .wcf-product-option-wrap .wcf-qty-row div [type=\'radio\']:not(:checked):focus{\n		border-color: ;\n		box-shadow: 0 0 2px rgba( , , , .8);\n	}\n	.woocommerce-checkout #your_products_heading{\n		color: ;\n		font-family: ;\n	    font-weight: ;\n	}\n\n	img.emoji, img.wp-smiley {}\n	'),
(65820,8077,'wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n			}'),
(65952,8121,'wcf-flow-id','8120'),
(65953,8121,'wcf-step-type','checkout'),
(65954,8120,'wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:8121;s:5:\"title\";s:17:\"Store Checkout 02\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:8122;s:5:\"title\";s:27:\"Store Checkout Thank You 02\";s:4:\"type\";s:8:\"thankyou\";}}'),
(65955,8121,'cartflows_imported_step','yes'),
(65956,8121,'_wp_page_template','default'),
(65957,8121,'wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"IN\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:3:\"PIN\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}'),
(65958,8121,'wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"IN\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:3:\"PIN\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}'),
(65959,8121,'_wp_old_slug','checkout-woo'),
(65960,8121,'wcf-remove-product-field','no'),
(65961,8121,'wcf-animate-browser-tab','no'),
(65962,8121,'wcf-animate-browser-tab-title','___Don&#39;t miss out the offer___'),
(65963,8121,'_elementor_edit_mode','builder'),
(65964,8121,'_elementor_template_type','wp-post'),
(65965,8121,'_elementor_version','3.21.4'),
(65966,8121,'_astra_content_layout_flag','disabled'),
(65967,8121,'site-post-title','disabled'),
(65968,8121,'ast-title-bar-display','disabled'),
(65969,8121,'ast-featured-img','disabled'),
(65970,8121,'site-content-layout','page-builder'),
(65971,8121,'site-sidebar-layout','no-sidebar'),
(65972,8121,'wcf-pro-dynamic-css-version','1654153534'),
(65973,8121,'wcf-dynamic-css-version','1707927940'),
(65974,8121,'_elementor_data','[{\"id\":\"591bdc9\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"background_color\":\"#B4E3FF\"},\"elements\":[{\"id\":\"43830eb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d33eb2e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_color\":\"#F8F6F8\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"104\",\"left\":\"40\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"48\",\"left\":\"24\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"40\",\"left\":\"8\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":\"80\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"80\",\"sizes\":[]},\"clouds_image_one\":{\"id\":8179,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/1-39-1.png\"},\"clouds_image_two\":{\"id\":8180,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/2-39-1.png\"},\"clouds_image_three\":{\"id\":8181,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/3-39-1.png\"},\"clouds_image_four\":{\"id\":8182,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/4-39-1.png\"},\"wave_animation_wave_top\":{\"id\":8183,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/wave-top-39-1.png\"},\"wave_animation_wave_middle\":{\"id\":8184,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/wave-mid-39-1.png\"},\"wave_animation_wave_bottom\":{\"id\":8185,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/wave-bot-39-1.png\"},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#D1F7FF00\",\"background_overlay_color_b\":\"\",\"blox_css_snow_bg_animation_speed\":50,\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"none\"},\"elements\":[{\"id\":\"eecc3cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#DEE0E3\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"64\",\"blur\":\"80\",\"spread\":\"-40\",\"color\":\"rgba(0, 0, 0, 0.12)\"},\"padding\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"40\",\"bottom\":\"48\",\"left\":\"40\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"20\",\"bottom\":\"24\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":\"1\"},\"z_index\":\"1\",\"z_index_tablet\":\"1\",\"z_index_mobile\":\"1\",\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"578c359\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3fb0658\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"align\":\"center\",\"align_mobile\":\"center\",\"content_position_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_mobile\":\"hidden-mobile\",\"_inline_size\":null},\"elements\":[{\"id\":\"cba1542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Cart\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_id\":\"b385e6b\"}],\"icon_color\":\"#60A0FF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text_color\":\"#60A0FF\",\"text_indent\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Dekko\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2f6c9db\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#60A0FF\",\"gap\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"34e31ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Information\",\"selected_icon\":{\"value\":\"far fa-dot-circle\",\"library\":\"fa-regular\"},\"_id\":\"b385e6b\"}],\"icon_color\":\"#FF914D\",\"icon_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text_color\":\"#1A1E23\",\"text_indent\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Dekko\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"fef069c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#60A0FF\",\"gap\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4f7b0f0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Finish\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_id\":\"b385e6b\"}],\"icon_color\":\"#60A0FF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text_color\":\"#60A0FF\",\"text_indent\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Dekko\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"de92c18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/banner4.png\",\"id\":7554,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"left\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"15b0818\",\"elType\":\"widget\",\"settings\":{\"global_primary_color\":\"#10A4E3\",\"global_text_color\":\"#566376\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Dekko\",\"heading_text_color\":\"#0D42C0\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Lilita One\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"heading_typography_font_weight\":\"300\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Dekko\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Dekko\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"buttons_typography_font_weight\":\"700\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"payment_section_bg_color\":\"#F8F6F8\",\"payment_info_bg_color\":\"#FFFFFF\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"input_skins\":\"modern-label\",\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"33\",\"bottom\":\"33\",\"left\":\"33\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),
(65975,8121,'_elementor_page_assets','a:0:{}'),
(65976,8121,'_elementor_page_settings','a:5:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:9:\"#D1F7FF00\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:16:\"background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:5:\"cover\";}'),
(65977,8121,'wcf-product-options-data','a:1:{s:8:\"0fb4jy4q\";a:6:{s:11:\"add_to_cart\";s:3:\"yes\";s:12:\"product_name\";s:30:\"SEO Foundation E-Book (#35953)\";s:15:\"product_subtext\";s:0:\"\";s:16:\"enable_highlight\";s:2:\"no\";s:14:\"highlight_text\";s:0:\"\";s:9:\"unique_id\";s:8:\"0fb4jy4q\";}}'),
(65978,8121,'wcf-enable-product-options','no'),
(65979,8121,'wcf-product-options','force-all'),
(65980,8121,'wcf-enable-product-variation','no'),
(65981,8121,'wcf-product-variation-options','inline'),
(65982,8121,'wcf-enable-product-quantity','no'),
(65983,8121,'wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}'),
(65984,8121,'enable-to-import','1'),
(65985,8121,'_thumbnail_id','53787'),
(65987,8121,'wcf-order-review-show-product-images','yes'),
(65988,8121,'wcf-checkout-place-order-button-lock','yes'),
(65989,8121,'wcf-checkout-place-order-button-price-display','yes'),
(65990,8121,'wcf-google-autoaddress','no'),
(65991,8121,'wcf-pro-dynamic-css','.wcf-product-option-wrap {}\n\n	#wcf-quick-view-content{\n		font-family: ;\n	}\n	#wcf-quick-view-content .summary-content .product_title{\n		color: ;\n		font-family: ;\n	    font-weight: ;\n	}\n	#wcf-quick-view-content .summary-content .variations select {\n		color: ;\n		background: ;\n		border-color: ;\n		padding-top: px;\n		padding-bottom: px;\n		padding-left: px;\n		padding-right: px;\n		min-height: ;\n		font-family: ;\n	    font-weight: ;\n	}\n	#wcf-quick-view-content .summary-content .single_variation_wrap .woocommerce-variation-add-to-cart button{\n		color: ;\n		background: ;\n		padding-top: px;\n		padding-bottom: px;\n		padding-left: px;\n		padding-right: px;\n		border-color: ;\n		min-height: ;\n		font-family: ;\n	    font-weight: ;\n	}\n	#wcf-quick-view-content .summary-content a{\n		color: ;\n	}\n	#wcf-quick-view-content .summary-content .woocommerce-product-rating .star-rating, \n	#wcf-quick-view-content .summary-content .woocommerce-product-rating .comment-form-rating .stars a, \n	#wcf-quick-view-content .summary-content .woocommerce-product-rating .star-rating::before{\n	    color: ;\n	}\n	.wcf-bump-order-wrap.wcf-before-checkout .wcf-bump-order-field-wrap input[type=checkbox]:checked:before, wcf-bump-order-wrap.wcf-after-customer .wcf-bump-order-field-wrap input[type=checkbox]:checked:before, wcf-bump-order-wrap.wcf-before-checkout .wcf-bump-order-field-wrap input[type=checkbox]:checked:before, wcf-product-option-wrap .wcf-qty-row div [type=\'checkbox\']:checked:before {\n		color: ;\n	}\n	.wcf-product-option-wrap .wcf-qty-row input[type=radio]:checked:before{\n		background-color:;\n	}\n	.wcf-bump-order-wrap.wcf-before-checkout .wcf-bump-order-field-wrap input[type=checkbox]:focus,\n	.wcf-bump-order-wrap.wcf-after-customer .wcf-bump-order-field-wrap input[type=checkbox]:focus,\n	.wcf-bump-order-wrap.wcf-before-checkout .wcf-bump-order-field-wrap input[type=checkbox]:focus,\n	.wcf-embed-checkout-form .wcf-product-option-wrap .wcf-qty-row div [type=\'checkbox\']:focus,\n	.wcf-embed-checkout-form .wcf-product-option-wrap .wcf-qty-row div [type=\'radio\']:checked:focus,\n	.wcf-embed-checkout-form .wcf-product-option-wrap .wcf-qty-row div [type=\'radio\']:not(:checked):focus{\n		border-color: ;\n		box-shadow: 0 0 2px rgba( , , , .8);\n	}\n	.woocommerce-checkout #your_products_heading{\n		color: ;\n		font-family: ;\n	    font-weight: ;\n	}\n\n	img.emoji, img.wp-smiley {}\n	'),
(65992,8121,'wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n			}'),
(65993,8122,'wcf-flow-id','8120'),
(65994,8122,'wcf-step-type','thankyou'),
(65995,8122,'cartflows_imported_step','yes'),
(65996,8122,'_wp_page_template','default'),
(65997,8122,'_wp_old_slug','thank-you-woo'),
(65998,8122,'wcf-show-overview-section','yes'),
(65999,8122,'wcf-show-details-section','yes'),
(66000,8122,'wcf-show-billing-section','yes'),
(66001,8122,'wcf-show-shipping-section','yes'),
(66002,8122,'wcf-show-tq-redirect-section','no'),
(66003,8122,'_elementor_edit_mode','builder'),
(66004,8122,'_elementor_template_type','wp-post'),
(66005,8122,'_elementor_version','3.21.4'),
(66006,8122,'_astra_content_layout_flag','disabled'),
(66007,8122,'site-post-title','disabled'),
(66008,8122,'ast-title-bar-display','disabled'),
(66009,8122,'ast-featured-img','disabled'),
(66010,8122,'site-content-layout','page-builder'),
(66011,8122,'site-sidebar-layout','no-sidebar'),
(66012,8122,'wcf-dynamic-css',''),
(66013,8122,'wcf-dynamic-css-version','1707927940'),
(66014,8122,'_elementor_data','[{\"id\":\"c8d91fb\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"background_color\":\"#B4E3FF\"},\"elements\":[{\"id\":\"d69f6bd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d490292\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"background_color\":\"#10A4E3\",\"background_color_stop\":{\"unit\":\"%\",\"size\":\"80\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":\"80\",\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"64\",\"left\":\"40\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"48\",\"left\":\"24\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":\"\"},\"clouds_image_one\":{\"id\":8214,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/1-44.png\"},\"clouds_image_two\":{\"id\":8215,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/2-44.png\"},\"clouds_image_three\":{\"id\":8216,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/3-44.png\"},\"clouds_image_four\":{\"id\":8217,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/4-44.png\"},\"wave_animation_wave_top\":{\"id\":8218,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/wave-top-44.png\"},\"wave_animation_wave_middle\":{\"id\":8219,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/wave-mid-44.png\"},\"wave_animation_wave_bottom\":{\"id\":8220,\"url\":\"http:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/wave-bot-44.png\"},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#66C9DD00\",\"background_overlay_color_b\":\"\",\"blox_css_snow_bg_animation_speed\":50,\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_top_color\":\"#43E1FF\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[{\"id\":\"29ce87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#DEE0E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":\"1\"},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"64\",\"blur\":\"80\",\"spread\":\"-40\",\"color\":\"rgba(0, 0, 0, 0.12)\"},\"padding\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"48\",\"bottom\":\"48\",\"left\":\"48\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"24\",\"left\":\"20\",\"isLinked\":\"\"},\"z_index\":\"1\",\"z_index_tablet\":\"1\",\"z_index_mobile\":\"1\",\"background_overlay_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7d21d4c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fec9dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"align\":\"center\",\"align_mobile\":\"center\",\"content_position_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_mobile\":\"hidden-mobile\",\"_inline_size\":null},\"elements\":[{\"id\":\"5654a9e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Cart\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_id\":\"b385e6b\"}],\"icon_color\":\"#60A0FF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text_color\":\"#60A0FF\",\"text_indent\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Dekko\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"0f35e14\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#60A0FF\",\"gap\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c1572d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Information\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_id\":\"b385e6b\"}],\"icon_color\":\"#60A0FF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text_color\":\"#60A0FF\",\"text_indent\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Dekko\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ec9d9a4\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":\"80\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#60A0FF\",\"gap\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d86000\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Finish\",\"selected_icon\":{\"value\":\"far fa-dot-circle\",\"library\":\"fa-regular\"},\"_id\":\"b385e6b\"}],\"icon_color\":\"#FF914D\",\"icon_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text_color\":\"#1A1E23\",\"text_indent\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Dekko\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"461df0e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1228,\"sizes\":[]}},\"elements\":[{\"id\":\"84932d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cd50b\",\"elType\":\"widget\",\"settings\":{\"thankyou_text\":\"Your order has been successful\",\"heading_spacing\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"sections_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_align\":\"left\",\"heading_color\":\"#0D42C0\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Lilita One\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"section_heading_color\":\"#1A1E23\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Dekko\",\"section_heading_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"section_text_color\":\"#566376\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Inter\",\"section_all_background_color_background\":\"classic\",\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"heading_typography_font_weight\":\"300\",\"section_all_background_color_color\":\"#FFFFFF\",\"section_order_review_typography_typography\":\"custom\",\"section_order_review_typography_font_family\":\"Dekko\",\"section_order_review_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"section_downloads_heading_typography_typography\":\"custom\",\"section_downloads_heading_typography_font_family\":\"Dekko\",\"section_order_details_heading_typography_typography\":\"custom\",\"section_order_details_heading_typography_font_family\":\"Lilita One\",\"section_order_details_heading_typography_font_weight\":\"400\",\"section_order_details_heading_color\":\"#0D42C0\",\"section_order_details_text_typography_typography\":\"custom\",\"section_order_details_text_typography_font_family\":\"Dekko\",\"section_order_details_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"section_customer_details_heading_typography_typography\":\"custom\",\"section_customer_details_heading_typography_font_family\":\"Lilita One\",\"section_customer_details_heading_typography_font_weight\":\"400\",\"section_customer_details_heading_color\":\"#0D42C0\",\"section_customer_details_text_typography_typography\":\"custom\",\"section_customer_details_text_typography_font_family\":\"Dekko\",\"section_customer_details_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"33\",\"bottom\":\"33\",\"left\":\"33\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"order-details-form\"},{\"id\":\"d4859e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"continue shopping\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/choice-shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),
(66015,8122,'_elementor_page_assets','a:0:{}'),
(66016,8122,'_elementor_page_settings','a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#B4E3FF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),
(66017,8122,'enable-to-import','1'),
(66018,8122,'_thumbnail_id','53789'),
(66365,8121,'wcf-field-google-font-url',''),
(66366,8121,'_edit_lock','1715283265:1'),
(66397,8121,'_elementor_pro_version','3.21.2'),
(66450,8243,'_order_key','wc_order_Kksb8LROnjr1Z'),
(66451,8243,'_customer_user','1'),
(66452,8243,'_payment_method','paypal'),
(66453,8243,'_payment_method_title','PayPal'),
(66454,8243,'_customer_ip_address','85.255.237.96'),
(66455,8243,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(66456,8243,'_created_via','checkout'),
(66457,8243,'_cart_hash','d2d17109035d06a0b25a395288e411da'),
(66458,8243,'_billing_first_name','John'),
(66459,8243,'_billing_last_name','Doe'),
(66460,8243,'_billing_address_1','22 Seymour Road Chatham'),
(66461,8243,'_billing_city','Medway, Kent'),
(66462,8243,'_billing_state','United Kingdom'),
(66463,8243,'_billing_postcode','ME5 7AE'),
(66464,8243,'_billing_country','GB'),
(66465,8243,'_billing_email','ivankulongo@gmail.com'),
(66466,8243,'_billing_phone','0353179971'),
(66467,8243,'_order_currency','GBP'),
(66468,8243,'_cart_discount','0'),
(66469,8243,'_cart_discount_tax','0'),
(66470,8243,'_order_shipping','0'),
(66471,8243,'_order_shipping_tax','0'),
(66472,8243,'_order_tax','0'),
(66473,8243,'_order_total','6.99'),
(66474,8243,'_order_version','6.5.1'),
(66475,8243,'_prices_include_tax','no'),
(66476,8243,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB ivankulongo@gmail.com 0353179971'),
(66477,8243,'_shipping_address_index','         '),
(66479,8243,'ce4wp_checkout_consent','0'),
(66480,8243,'_wcf_flow_id','8120'),
(66481,8243,'_wcf_checkout_id','8121'),
(66483,8243,'is_vat_exempt','no'),
(66485,8122,'wcf-field-google-font-url',''),
(66486,8243,'Payment type','instant'),
(66487,8243,'_transaction_id','6YH57284U31593531'),
(66488,8243,'_paypal_status','pending'),
(66489,8243,'_recorded_sales','yes'),
(66490,8243,'_recorded_coupon_usage_counts','yes'),
(66491,8243,'_order_stock_reduced','yes'),
(66492,8243,'_new_order_email_sent','true'),
(66493,8122,'_edit_lock','1715283371:1'),
(66533,8122,'_elementor_pro_version','3.21.2'),
(66654,8259,'_order_key','wc_order_wUKYFoK6tfjNC'),
(66655,8259,'_customer_user','1'),
(66656,8259,'_payment_method','paypal'),
(66657,8259,'_payment_method_title','PayPal'),
(66658,8259,'_customer_ip_address','213.205.194.30'),
(66659,8259,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(66660,8259,'_created_via','checkout'),
(66661,8259,'_cart_hash','3c0ecc5f781d19234551e3ebc6296995'),
(66662,8259,'_billing_first_name','John'),
(66663,8259,'_billing_last_name','Doe'),
(66664,8259,'_billing_address_1','22 Seymour Road Chatham'),
(66665,8259,'_billing_city','Medway, Kent'),
(66666,8259,'_billing_state','United Kingdom'),
(66667,8259,'_billing_postcode','ME5 7AE'),
(66668,8259,'_billing_country','GB'),
(66669,8259,'_billing_email','ivankulongo@gmail.com'),
(66670,8259,'_billing_phone','0353179971'),
(66671,8259,'_order_currency','GBP'),
(66672,8259,'_cart_discount','0'),
(66673,8259,'_cart_discount_tax','0'),
(66674,8259,'_order_shipping','0'),
(66675,8259,'_order_shipping_tax','0'),
(66676,8259,'_order_tax','0'),
(66677,8259,'_order_total','8.98'),
(66678,8259,'_order_version','6.5.1'),
(66679,8259,'_prices_include_tax','no'),
(66680,8259,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB ivankulongo@gmail.com 0353179971'),
(66681,8259,'_shipping_address_index','         '),
(66682,8259,'is_vat_exempt','no'),
(66683,8259,'ce4wp_checkout_consent','0'),
(66684,8259,'_wcf_flow_id','8120'),
(66685,8259,'_wcf_checkout_id','8121'),
(66812,8272,'_order_key','wc_order_H6gztI33MVX1V'),
(66813,8272,'_customer_user','1'),
(66814,8272,'_payment_method','paypal'),
(66815,8272,'_payment_method_title','PayPal'),
(66816,8272,'_customer_ip_address','85.255.237.96'),
(66817,8272,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(66818,8272,'_created_via','checkout'),
(66819,8272,'_cart_hash','376f0674ea05e2e8c4ab038eb43b7c5a'),
(66820,8272,'_billing_first_name','John'),
(66821,8272,'_billing_last_name','Doe'),
(66822,8272,'_billing_address_1','22 Seymour Road Chatham'),
(66823,8272,'_billing_city','Medway, Kent'),
(66824,8272,'_billing_state','United Kingdom'),
(66825,8272,'_billing_postcode','ME5 7AE'),
(66826,8272,'_billing_country','GB'),
(66827,8272,'_billing_email','ivankulongo@gmail.com'),
(66828,8272,'_billing_phone','0353179971'),
(66829,8272,'_order_currency','GBP'),
(66830,8272,'_cart_discount','0'),
(66831,8272,'_cart_discount_tax','0'),
(66832,8272,'_order_shipping','0'),
(66833,8272,'_order_shipping_tax','0'),
(66834,8272,'_order_tax','0'),
(66835,8272,'_order_total','11.98'),
(66836,8272,'_order_version','6.5.1'),
(66837,8272,'_prices_include_tax','no'),
(66838,8272,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB ivankulongo@gmail.com 0353179971'),
(66839,8272,'_shipping_address_index','         '),
(66840,8272,'is_vat_exempt','no'),
(66841,8272,'ce4wp_checkout_consent','0'),
(66842,8272,'_wcf_flow_id','8120'),
(66843,8272,'_wcf_checkout_id','8121'),
(66845,8272,'Payment type','instant'),
(66846,8272,'_transaction_id','10C766605S995992D'),
(66847,8272,'_paypal_status','pending'),
(66848,8272,'_recorded_sales','yes'),
(66849,8272,'_recorded_coupon_usage_counts','yes'),
(66850,8272,'_order_stock_reduced','yes'),
(66851,8272,'_new_order_email_sent','true'),
(66873,8275,'_order_key','wc_order_2ytPMuhBaVtYq'),
(66874,8275,'_customer_user','1'),
(66875,8275,'_payment_method','paypal'),
(66876,8275,'_payment_method_title','PayPal'),
(66877,8275,'_customer_ip_address','85.255.237.96'),
(66878,8275,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(66879,8275,'_created_via','checkout'),
(66880,8275,'_cart_hash','d2d17109035d06a0b25a395288e411da'),
(66881,8275,'_billing_first_name','John'),
(66882,8275,'_billing_last_name','Doe'),
(66883,8275,'_billing_address_1','22 Seymour Road Chatham'),
(66884,8275,'_billing_city','Medway, Kent'),
(66885,8275,'_billing_state','United Kingdom'),
(66886,8275,'_billing_postcode','ME5 7AE'),
(66887,8275,'_billing_country','GB'),
(66888,8275,'_billing_email','ivankulongo@gmail.com'),
(66889,8275,'_billing_phone','0353179971'),
(66890,8275,'_order_currency','GBP'),
(66891,8275,'_cart_discount','0'),
(66892,8275,'_cart_discount_tax','0'),
(66893,8275,'_order_shipping','0'),
(66894,8275,'_order_shipping_tax','0'),
(66895,8275,'_order_tax','0'),
(66896,8275,'_order_total','6.99'),
(66897,8275,'_order_version','6.5.1'),
(66898,8275,'_prices_include_tax','no'),
(66899,8275,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB ivankulongo@gmail.com 0353179971'),
(66900,8275,'_shipping_address_index','         '),
(66901,8275,'is_vat_exempt','no'),
(66902,8275,'ce4wp_checkout_consent','0'),
(66903,8275,'_wcf_flow_id','8120'),
(66904,8275,'_wcf_checkout_id','8121'),
(66906,8275,'Payment type','instant'),
(66907,8275,'_transaction_id','9N205392HX788923S'),
(66908,8275,'_paypal_status','pending'),
(66909,8275,'_recorded_sales','yes'),
(66910,8275,'_recorded_coupon_usage_counts','yes'),
(66911,8275,'_order_stock_reduced','yes'),
(66912,8275,'_new_order_email_sent','true'),
(66990,7558,'_elementor_controls_usage','a:7:{s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:3;s:11:\"text_indent\";i:3;s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;s:27:\"icon_typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:1;s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"wc-elements\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_product\";a:1:{s:7:\"element\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:16:\"woocommerce-cart\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}}'),
(66992,8284,'_order_key','wc_order_UVdsovID7NwVp'),
(66993,8284,'_customer_user','1'),
(66994,8284,'_payment_method','paypal'),
(66995,8284,'_payment_method_title','PayPal'),
(66996,8284,'_customer_ip_address','85.255.237.96'),
(66997,8284,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(66998,8284,'_created_via','checkout'),
(66999,8284,'_cart_hash','84a58f9b64316ac188ff9f50b5b55897'),
(67000,8284,'_billing_first_name','John'),
(67001,8284,'_billing_last_name','Doe'),
(67002,8284,'_billing_address_1','22 Seymour Road Chatham'),
(67003,8284,'_billing_city','Medway, Kent'),
(67004,8284,'_billing_state','United Kingdom'),
(67005,8284,'_billing_postcode','ME5 7AE'),
(67006,8284,'_billing_country','GB'),
(67007,8284,'_billing_email','ivankulongo@gmail.com'),
(67008,8284,'_billing_phone','0353179971'),
(67009,8284,'_order_currency','GBP'),
(67010,8284,'_cart_discount','0'),
(67011,8284,'_cart_discount_tax','0'),
(67012,8284,'_order_shipping','0'),
(67013,8284,'_order_shipping_tax','0'),
(67014,8284,'_order_tax','0'),
(67015,8284,'_order_total','17.97'),
(67016,8284,'_order_version','6.5.1'),
(67017,8284,'_prices_include_tax','no'),
(67018,8284,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB ivankulongo@gmail.com 0353179971'),
(67019,8284,'_shipping_address_index','         '),
(67020,8284,'is_vat_exempt','no'),
(67021,8284,'ce4wp_checkout_consent','0'),
(67022,8284,'_wcf_flow_id','8120'),
(67023,8284,'_wcf_checkout_id','8121'),
(67025,8284,'Payment type','instant'),
(67026,8284,'_transaction_id','81B911371D884645A'),
(67027,8284,'_paypal_status','pending'),
(67028,8284,'_recorded_sales','yes'),
(67029,8284,'_recorded_coupon_usage_counts','yes'),
(67030,8284,'_order_stock_reduced','yes'),
(67031,8284,'_new_order_email_sent','true'),
(67032,8285,'_order_key','wc_order_wngoAOkADjm0H'),
(67033,8285,'_customer_user','1'),
(67034,8285,'_payment_method','paypal'),
(67035,8285,'_payment_method_title','PayPal'),
(67036,8285,'_customer_ip_address','85.255.237.96'),
(67037,8285,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(67038,8285,'_created_via','checkout'),
(67039,8285,'_cart_hash','51ece52046a24a75849db7d7ed805b9c'),
(67040,8285,'_billing_first_name','John'),
(67041,8285,'_billing_last_name','Doe'),
(67042,8285,'_billing_address_1','22 Seymour Road Chatham'),
(67043,8285,'_billing_city','Medway, Kent'),
(67044,8285,'_billing_state','United Kingdom'),
(67045,8285,'_billing_postcode','ME5 7AE'),
(67046,8285,'_billing_country','GB'),
(67047,8285,'_billing_email','ivankulongo@gmail.com'),
(67048,8285,'_billing_phone','0353179971'),
(67049,8285,'_order_currency','GBP'),
(67050,8285,'_cart_discount','0'),
(67051,8285,'_cart_discount_tax','0'),
(67052,8285,'_order_shipping','0'),
(67053,8285,'_order_shipping_tax','0'),
(67054,8285,'_order_tax','0'),
(67055,8285,'_order_total','11.98'),
(67056,8285,'_order_version','6.5.1'),
(67057,8285,'_prices_include_tax','no'),
(67058,8285,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB ivankulongo@gmail.com 0353179971'),
(67059,8285,'_shipping_address_index','         '),
(67060,8285,'is_vat_exempt','no'),
(67061,8285,'ce4wp_checkout_consent','0'),
(67062,8285,'_wcf_flow_id','8120'),
(67063,8285,'_wcf_checkout_id','8121'),
(67064,8285,'Payment type','instant'),
(67065,8285,'_transaction_id','07G23391NF159133T'),
(67066,8285,'_paypal_status','pending'),
(67067,8285,'_recorded_sales','yes'),
(67068,8285,'_recorded_coupon_usage_counts','yes'),
(67069,8285,'_order_stock_reduced','yes'),
(67070,8285,'_new_order_email_sent','true'),
(67082,8287,'_order_key','wc_order_LGqWxTCnVxNBc'),
(67083,8287,'_customer_user','1'),
(67084,8287,'_payment_method','paypal'),
(67085,8287,'_payment_method_title','PayPal'),
(67086,8287,'_customer_ip_address','85.255.237.96'),
(67087,8287,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(67088,8287,'_created_via','checkout'),
(67089,8287,'_cart_hash','ce9095378b8babcf50708711733476da'),
(67090,8287,'_billing_first_name','John'),
(67091,8287,'_billing_last_name','Doe'),
(67092,8287,'_billing_address_1','22 Seymour Road Chatham'),
(67093,8287,'_billing_city','Medway, Kent'),
(67094,8287,'_billing_state','United Kingdom'),
(67095,8287,'_billing_postcode','ME5 7AE'),
(67096,8287,'_billing_country','GB'),
(67097,8287,'_billing_email','ivankulongo@gmail.com'),
(67098,8287,'_billing_phone','0353179971'),
(67099,8287,'_order_currency','GBP'),
(67100,8287,'_cart_discount','0'),
(67101,8287,'_cart_discount_tax','0'),
(67102,8287,'_order_shipping','0'),
(67103,8287,'_order_shipping_tax','0'),
(67104,8287,'_order_tax','0'),
(67105,8287,'_order_total','2.99'),
(67106,8287,'_order_version','6.5.1'),
(67107,8287,'_prices_include_tax','no'),
(67108,8287,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB ivankulongo@gmail.com 0353179971'),
(67109,8287,'_shipping_address_index','         '),
(67110,8287,'is_vat_exempt','no'),
(67111,8287,'ce4wp_checkout_consent','0'),
(67112,8287,'_wcf_flow_id','8120'),
(67113,8287,'_wcf_checkout_id','8121'),
(67470,8331,'_edit_lock','1670547597:1'),
(67471,8331,'_edit_last','1'),
(67472,8331,'_wc_memberships_force_public','no'),
(67473,8331,'_wc_memberships_use_custom_page_content_restricted_message','no'),
(67474,8331,'_elementor_edit_mode','builder'),
(67475,8331,'_elementor_template_type','wp-page'),
(67476,8331,'_elementor_version','3.9.0'),
(67477,8331,'_elementor_pro_version','3.7.1'),
(67478,8331,'_wp_page_template','default'),
(67479,8331,'_elementor_data','[{\"id\":\"c43951a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#10A4E3\",\"background_color_b\":\"#40B1E1\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/Home-Page-Background-2-9.png\",\"id\":10017,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"633f472\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#A2F08B\"},\"elements\":[{\"id\":\"b1a5382\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign-up!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Imprima\",\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_color\":\"#0C57BD\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b698a2f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2022\\/06\\/Home-Page-Background-2-9.png\",\"id\":10017,\"alt\":\"\",\"source\":\"library\"},\"content_width\":{\"unit\":\"px\",\"size\":784,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_color\":\"#B4E3FF\",\"uc_background_type\":\"blox_css_snow_bg\",\"blox_css_snow_bg_animation_speed\":50},\"elements\":[{\"id\":\"ea31a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#A1E0F2BD\",\"background_color_b\":\"\"},\"elements\":[{\"id\":\"c072257\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_type\":\"form\",\"form_id\":\"19539\",\"poll_id\":\"\",\"quiz_id\":\"\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"wp-widget-forminator_widget\"},{\"id\":\"482d240\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),
(67480,8331,'_elementor_page_assets','a:0:{}'),
(67652,8354,'_order_key','wc_order_Vh0UYq4Zfmdl5'),
(67653,8354,'_customer_user','0'),
(67654,8354,'_payment_method','paypal'),
(67655,8354,'_payment_method_title','PayPal'),
(67656,8354,'_customer_ip_address','148.252.128.113'),
(67657,8354,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(67658,8354,'_created_via','checkout'),
(67659,8354,'_cart_hash','d2d17109035d06a0b25a395288e411da'),
(67660,8354,'_billing_first_name','John'),
(67661,8354,'_billing_last_name','Doe'),
(67662,8354,'_billing_address_1','22, SEYMOUR ROAD'),
(67663,8354,'_billing_address_2','LUTON'),
(67664,8354,'_billing_city','CHATHAM'),
(67665,8354,'_billing_state','Kent'),
(67666,8354,'_billing_postcode','ME5 7AE'),
(67667,8354,'_billing_country','GB'),
(67668,8354,'_billing_email','amnakulongo@gmail.com'),
(67669,8354,'_billing_phone','0353179971'),
(67670,8354,'_order_currency','GBP'),
(67671,8354,'_cart_discount','0'),
(67672,8354,'_cart_discount_tax','0'),
(67673,8354,'_order_shipping','0'),
(67674,8354,'_order_shipping_tax','0'),
(67675,8354,'_order_tax','0'),
(67676,8354,'_order_total','6.99'),
(67677,8354,'_order_version','6.5.1'),
(67678,8354,'_prices_include_tax','no'),
(67679,8354,'_billing_address_index','John Doe  22, SEYMOUR ROAD LUTON CHATHAM Kent ME5 7AE GB amnakulongo@gmail.com 0353179971'),
(67680,8354,'_shipping_address_index','         '),
(67682,8354,'ce4wp_checkout_consent','0'),
(67683,8354,'_wcf_flow_id','8120'),
(67684,8354,'_wcf_checkout_id','8121'),
(67685,8354,'is_vat_exempt','no'),
(67687,8354,'Payment type','instant'),
(67688,8354,'_transaction_id','9D005872WA635740F'),
(67689,8354,'_paypal_status','pending'),
(67690,8354,'_recorded_sales','yes'),
(67691,8354,'_recorded_coupon_usage_counts','yes'),
(67692,8354,'_order_stock_reduced','yes'),
(67693,8354,'_new_order_email_sent','true'),
(67935,8380,'_order_key','wc_order_A4jUqWmZYcCKF'),
(67936,8380,'_customer_user','1'),
(67937,8380,'_payment_method','paypal'),
(67938,8380,'_payment_method_title','PayPal'),
(67939,8380,'_customer_ip_address','85.255.235.167'),
(67940,8380,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(67941,8380,'_created_via','checkout'),
(67942,8380,'_cart_hash','ebdde6f26a0a58b5d23a757717eac077'),
(67943,8380,'_billing_first_name','John'),
(67944,8380,'_billing_last_name','Doe'),
(67945,8380,'_billing_address_1','22 Seymour Road Chatham'),
(67946,8380,'_billing_city','Medway, Kent'),
(67947,8380,'_billing_state','United Kingdom'),
(67948,8380,'_billing_postcode','ME5 7AE'),
(67949,8380,'_billing_country','GB'),
(67950,8380,'_billing_email','ivankulongo@gmail.com'),
(67951,8380,'_billing_phone','0353179971'),
(67952,8380,'_order_currency','GBP'),
(67953,8380,'_cart_discount','0'),
(67954,8380,'_cart_discount_tax','0'),
(67955,8380,'_order_shipping','0'),
(67956,8380,'_order_shipping_tax','0'),
(67957,8380,'_order_tax','0'),
(67958,8380,'_order_total','9.98'),
(67959,8380,'_order_version','6.5.1'),
(67960,8380,'_prices_include_tax','no'),
(67961,8380,'_billing_address_index','John Doe  22 Seymour Road Chatham  Medway, Kent United Kingdom ME5 7AE GB ivankulongo@gmail.com 0353179971'),
(67962,8380,'_shipping_address_index','         '),
(67963,8380,'is_vat_exempt','no'),
(67964,8380,'ce4wp_checkout_consent','0'),
(67965,8380,'_wcf_flow_id','8120'),
(67966,8380,'_wcf_checkout_id','8121'),
(67967,8380,'Payment type','instant'),
(67968,8380,'_transaction_id','32T46814V4549104F'),
(67969,8380,'_paypal_status','pending'),
(67970,8380,'_recorded_sales','yes'),
(67971,8380,'_recorded_coupon_usage_counts','yes'),
(67972,8380,'_order_stock_reduced','yes'),
(67973,8380,'_new_order_email_sent','true'),
(68061,8392,'_order_key','wc_order_lLiOSDJEQ7VVi'),
(68062,8392,'_customer_user','1'),
(68063,8392,'_payment_method','paypal'),
(68064,8392,'_payment_method_title','PayPal'),
(68065,8392,'_customer_ip_address','85.255.235.167'),
(68066,8392,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(68067,8392,'_created_via','checkout'),
(68068,8392,'_cart_hash','d2d17109035d06a0b25a395288e411da'),
(68069,8392,'_billing_first_name','John'),
(68070,8392,'_billing_last_name','Doe'),
(68071,8392,'_billing_address_1','22, SEYMOUR ROAD'),
(68072,8392,'_billing_address_2','LUTON'),
(68073,8392,'_billing_city','CHATHAM'),
(68074,8392,'_billing_state','Kent'),
(68075,8392,'_billing_postcode','ME5 7AE'),
(68076,8392,'_billing_country','GB'),
(68077,8392,'_billing_email','amnakulongo@gmail.com'),
(68078,8392,'_billing_phone','0353179971'),
(68079,8392,'_order_currency','GBP'),
(68080,8392,'_cart_discount','0'),
(68081,8392,'_cart_discount_tax','0'),
(68082,8392,'_order_shipping','0'),
(68083,8392,'_order_shipping_tax','0'),
(68084,8392,'_order_tax','0'),
(68085,8392,'_order_total','6.99'),
(68086,8392,'_order_version','6.5.1'),
(68087,8392,'_prices_include_tax','no'),
(68088,8392,'_billing_address_index','John Doe  22, SEYMOUR ROAD LUTON CHATHAM Kent ME5 7AE GB amnakulongo@gmail.com 0353179971'),
(68089,8392,'_shipping_address_index','         '),
(68090,8392,'is_vat_exempt','no'),
(68091,8392,'_wcf_flow_id','8120'),
(68092,8392,'_wcf_checkout_id','8121'),
(68093,8392,'Payment type','instant'),
(68094,8392,'_transaction_id','7M802104GM901235N'),
(68095,8392,'_paypal_status','pending'),
(68096,8392,'_recorded_sales','yes'),
(68097,8392,'_recorded_coupon_usage_counts','yes'),
(68098,8392,'_order_stock_reduced','yes'),
(68099,8392,'_new_order_email_sent','true'),
(68715,8627,'forminator_form_meta','a:6:{s:6:\"fields\";a:0:{}s:8:\"settings\";a:40:{s:8:\"formName\";s:14:\"Reset Password\";s:17:\"pagination-header\";s:3:\"nav\";s:7:\"version\";s:6:\"1.16.2\";s:10:\"validation\";s:9:\"on_submit\";s:18:\"akismet-protection\";s:1:\"1\";s:11:\"enable-ajax\";s:4:\"true\";s:9:\"autoclose\";s:4:\"true\";s:20:\"submission-indicator\";s:4:\"show\";s:14:\"paginationData\";a:2:{s:24:\"pagination-header-design\";s:4:\"show\";s:17:\"pagination-header\";s:3:\"nav\";}s:9:\"form-type\";s:7:\"default\";s:20:\"submission-behaviour\";s:18:\"behaviour-thankyou\";s:16:\"thankyou-message\";s:57:\"Thank you for contacting us, we will be in touch shortly.\";s:10:\"submitData\";a:2:{s:18:\"custom-submit-text\";s:12:\"Send Message\";s:27:\"custom-invalid-form-message\";s:53:\"Error: Your form is not valid, please fix the errors!\";}s:17:\"validation-inline\";s:1:\"1\";s:11:\"form-expire\";s:9:\"no_expire\";s:22:\"cform-title-text-align\";s:4:\"left\";s:26:\"cform-subtitle-custom-font\";s:0:\"\";s:25:\"cform-subtitle-text-align\";s:4:\"left\";s:23:\"cform-input-custom-font\";s:0:\"\";s:23:\"cform-radio-custom-font\";s:0:\"\";s:29:\"cform-multiselect-custom-font\";s:0:\"\";s:26:\"cform-dropdown-custom-font\";s:0:\"\";s:26:\"cform-calendar-custom-font\";s:0:\"\";s:24:\"cform-button-custom-font\";s:0:\"\";s:26:\"cform-timeline-custom-font\";s:0:\"\";s:28:\"cform-pagination-custom-font\";s:0:\"\";s:19:\"payment_require_ssl\";s:0:\"\";s:15:\"submission-file\";s:6:\"delete\";s:7:\"form_id\";i:8627;s:17:\"store_submissions\";s:1:\"1\";s:17:\"form-border-style\";s:5:\"solid\";s:12:\"form-padding\";s:6:\"custom\";s:11:\"form-border\";s:6:\"custom\";s:12:\"fields-style\";s:4:\"open\";s:10:\"form-style\";s:7:\"default\";s:15:\"indicator-label\";s:13:\"Submitting...\";s:16:\"form-padding-top\";s:3:\"-76\";s:18:\"form-border-radius\";s:0:\"\";s:14:\"use-custom-css\";s:0:\"\";s:17:\"form-padding-left\";s:4:\"-103\";}s:9:\"client_id\";N;s:22:\"integration_conditions\";a:0:{}s:9:\"behaviors\";a:1:{i:0;a:10:{s:4:\"slug\";s:18:\"behavior-1234-4567\";s:5:\"label\";s:0:\"\";s:14:\"autoclose-time\";i:5;s:9:\"autoclose\";s:4:\"true\";s:6:\"newtab\";s:7:\"sametab\";s:16:\"thankyou-message\";s:57:\"Thank you for contacting us, we will be in touch shortly.\";s:22:\"email-thankyou-message\";s:0:\"\";s:23:\"manual-thankyou-message\";s:0:\"\";s:20:\"submission-behaviour\";s:18:\"behaviour-thankyou\";s:12:\"redirect-url\";s:0:\"\";}}s:13:\"notifications\";a:1:{i:0;a:7:{s:4:\"slug\";s:22:\"notification-1234-4567\";s:5:\"label\";s:11:\"Admin Email\";s:16:\"email-recipients\";s:7:\"default\";s:10:\"recipients\";s:21:\"ivankulongo@gmail.com\";s:13:\"email-subject\";s:47:\"New Form Entry #{submission_id} for {form_name}\";s:12:\"email-editor\";s:111:\"You have a new website form submission: <br/> {all_fields} <br/>---<br/> This message was sent from {site_url}.\";s:16:\"email-attachment\";s:4:\"true\";}}}'),
(68716,8628,'_edit_lock','1654698117:1'),
(68717,8628,'_edit_last','1'),
(68718,8628,'_wc_memberships_force_public','no'),
(68719,8628,'_wc_memberships_use_custom_page_content_restricted_message','no'),
(68720,8628,'_elementor_edit_mode','builder'),
(68721,8628,'_elementor_template_type','wp-page'),
(68722,8628,'_elementor_version','3.6.5'),
(68723,8628,'_elementor_pro_version','3.7.1'),
(68732,8628,'_wp_page_template','default'),
(68733,8628,'_elementor_data','[{\"id\":\"7306a82\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e657e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"54e9727\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[reset_password]\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),
(68740,8628,'_elementor_page_assets','a:0:{}'),
(68934,225,'_wp_old_date','2021-03-30'),
(68935,228,'_wp_old_date','2021-03-30'),
(68939,8654,'mailchimp_woocommerce_campaign_id',''),
(68940,8654,'mailchimp_woocommerce_landing_site','https://choiceresources.co.uk/wc-api/WC_Gateway_Paypal/'),
(68941,8654,'_order_key','wc_order_hKOqcAJmFgFsW'),
(68942,8654,'_customer_user','1'),
(68943,8654,'_payment_method','paypal'),
(68944,8654,'_payment_method_title','PayPal'),
(68945,8654,'_customer_ip_address','85.255.235.167'),
(68946,8654,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(68947,8654,'_created_via','checkout'),
(68948,8654,'_cart_hash','d2d17109035d06a0b25a395288e411da'),
(68949,8654,'_billing_first_name','John'),
(68950,8654,'_billing_last_name','Doe'),
(68951,8654,'_billing_address_1','22, SEYMOUR ROAD'),
(68952,8654,'_billing_address_2','LUTON'),
(68953,8654,'_billing_city','CHATHAM'),
(68954,8654,'_billing_state','Kent'),
(68955,8654,'_billing_postcode','ME5 7AE'),
(68956,8654,'_billing_country','GB'),
(68957,8654,'_billing_email','ivankulongo@gmail.com'),
(68958,8654,'_billing_phone','0353179971'),
(68959,8654,'_order_currency','GBP'),
(68960,8654,'_cart_discount','0'),
(68961,8654,'_cart_discount_tax','0'),
(68962,8654,'_order_shipping','0'),
(68963,8654,'_order_shipping_tax','0'),
(68964,8654,'_order_tax','0'),
(68965,8654,'_order_total','6.99'),
(68966,8654,'_order_version','6.5.1'),
(68967,8654,'_prices_include_tax','no'),
(68968,8654,'_billing_address_index','John Doe  22, SEYMOUR ROAD LUTON CHATHAM Kent ME5 7AE GB ivankulongo@gmail.com 0353179971'),
(68969,8654,'_shipping_address_index','         '),
(68970,8654,'is_vat_exempt','no'),
(68971,8654,'_wcf_flow_id','8120'),
(68972,8654,'_wcf_checkout_id','8121'),
(68973,8654,'mailchimp_woocommerce_is_subscribed','1'),
(68974,8654,'Payment type','instant'),
(68975,8654,'_transaction_id','56683288WJ7627258'),
(68976,8654,'_paypal_status','pending'),
(68977,8654,'_recorded_sales','yes'),
(68978,8654,'_recorded_coupon_usage_counts','yes'),
(68979,8654,'_order_stock_reduced','yes'),
(68980,8654,'_new_order_email_sent','true'),
(68981,8655,'mailchimp_woocommerce_campaign_id',''),
(68982,8655,'mailchimp_woocommerce_landing_site','https://choiceresources.co.uk/wc-api/WC_Gateway_Paypal/'),
(68983,8655,'_order_key','wc_order_ClyFLdFS8wU6Q'),
(68984,8655,'_customer_user','1'),
(68985,8655,'_payment_method','paypal'),
(68986,8655,'_payment_method_title','PayPal'),
(68987,8655,'_customer_ip_address','85.255.235.167'),
(68988,8655,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(68989,8655,'_created_via','checkout'),
(68990,8655,'_cart_hash','23cb5bac38696fee86ad7153b5f35e4f'),
(68991,8655,'_billing_first_name','Ivan'),
(68992,8655,'_billing_last_name','Kulongo'),
(68993,8655,'_billing_address_1','20 Hatfield Road'),
(68994,8655,'_billing_city','Dagenham'),
(68995,8655,'_billing_state','Essex'),
(68996,8655,'_billing_postcode','RM9 6JR'),
(68997,8655,'_billing_country','GB'),
(68998,8655,'_billing_email','Ivankulongo@gmail.com'),
(68999,8655,'_billing_phone','782873017'),
(69000,8655,'_order_currency','GBP'),
(69001,8655,'_cart_discount','0'),
(69002,8655,'_cart_discount_tax','0'),
(69003,8655,'_order_shipping','0'),
(69004,8655,'_order_shipping_tax','0'),
(69005,8655,'_order_tax','0'),
(69006,8655,'_order_total','4.99'),
(69007,8655,'_order_version','6.5.1'),
(69008,8655,'_prices_include_tax','no'),
(69009,8655,'_billing_address_index','Ivan Kulongo  20 Hatfield Road  Dagenham Essex RM9 6JR GB Ivankulongo@gmail.com 782873017'),
(69010,8655,'_shipping_address_index','         '),
(69011,8655,'is_vat_exempt','no'),
(69012,8655,'_wcf_flow_id','8120'),
(69013,8655,'_wcf_checkout_id','8121'),
(69014,8655,'mailchimp_woocommerce_is_subscribed','1'),
(69015,8655,'Payment type','instant'),
(69016,8655,'_transaction_id','56W66873FJ7959052'),
(69017,8655,'_paypal_status','pending'),
(69018,8655,'_recorded_sales','yes'),
(69019,8655,'_recorded_coupon_usage_counts','yes'),
(69020,8655,'_order_stock_reduced','yes'),
(69021,8655,'_new_order_email_sent','true'),
(70408,8819,'_elementor_is_screenshot','1'),
(70409,8819,'_wp_attached_file','elementor/screenshots/Elementor-post-screenshot_8696_2022-06-10-11-27-03_4874f6e1.png'),
(71207,5228,'_elementor_edit_mode','builder'),
(73018,5791,'mailchimp_woocommerce_campaign_id',''),
(73019,5791,'mailchimp_woocommerce_landing_site',''),
(73020,7400,'mailchimp_woocommerce_campaign_id',''),
(73021,7400,'mailchimp_woocommerce_landing_site',''),
(73022,7407,'mailchimp_woocommerce_campaign_id',''),
(73023,7407,'mailchimp_woocommerce_landing_site',''),
(80291,8077,'wcf-field-google-font-url',''),
(84860,10606,'_menu_item_type','custom'),
(84861,10606,'_menu_item_menu_item_parent','10633'),
(84862,10606,'_menu_item_object_id','10606'),
(84863,10606,'_menu_item_object','custom'),
(84864,10606,'_menu_item_target',''),
(84865,10606,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(84866,10606,'_menu_item_xfn',''),
(84867,10606,'_menu_item_url','https://choiceresources.co.uk/activities/'),
(85049,10628,'_menu_item_type','custom'),
(85050,10628,'_menu_item_menu_item_parent','10633'),
(85051,10628,'_menu_item_object_id','10628'),
(85052,10628,'_menu_item_object','custom'),
(85053,10628,'_menu_item_target',''),
(85054,10628,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85055,10628,'_menu_item_xfn',''),
(85056,10628,'_menu_item_url','https://choiceresources.co.uk/activities/'),
(85058,10629,'_menu_item_type','custom'),
(85059,10629,'_menu_item_menu_item_parent','10633'),
(85060,10629,'_menu_item_object_id','10629'),
(85061,10629,'_menu_item_object','custom'),
(85062,10629,'_menu_item_target',''),
(85063,10629,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85064,10629,'_menu_item_xfn',''),
(85065,10629,'_menu_item_url','https://choiceresources.co.uk/activities/'),
(85067,10630,'_menu_item_type','custom'),
(85068,10630,'_menu_item_menu_item_parent','10633'),
(85069,10630,'_menu_item_object_id','10630'),
(85070,10630,'_menu_item_object','custom'),
(85071,10630,'_menu_item_target',''),
(85072,10630,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85073,10630,'_menu_item_xfn',''),
(85074,10630,'_menu_item_url','https://choiceresources.co.uk/activities/'),
(85076,10631,'_menu_item_type','custom'),
(85077,10631,'_menu_item_menu_item_parent','10633'),
(85078,10631,'_menu_item_object_id','10631'),
(85079,10631,'_menu_item_object','custom'),
(85080,10631,'_menu_item_target',''),
(85081,10631,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85082,10631,'_menu_item_xfn',''),
(85083,10631,'_menu_item_url','https://choiceresources.co.uk/activities/'),
(85085,10632,'_menu_item_type','custom'),
(85086,10632,'_menu_item_menu_item_parent','10634'),
(85087,10632,'_menu_item_object_id','10632'),
(85088,10632,'_menu_item_object','custom'),
(85089,10632,'_menu_item_target',''),
(85090,10632,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85091,10632,'_menu_item_xfn',''),
(85092,10632,'_menu_item_url','https://choiceresources.co.uk/abc-feelings-phonics/'),
(85094,10633,'_menu_item_type','custom'),
(85095,10633,'_menu_item_menu_item_parent','0'),
(85096,10633,'_menu_item_object_id','10633'),
(85097,10633,'_menu_item_object','custom'),
(85098,10633,'_menu_item_target',''),
(85099,10633,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85100,10633,'_menu_item_xfn',''),
(85101,10633,'_menu_item_url','https://choiceresources.co.uk/printables/'),
(85103,10634,'_menu_item_type','custom'),
(85104,10634,'_menu_item_menu_item_parent','0'),
(85105,10634,'_menu_item_object_id','10634'),
(85106,10634,'_menu_item_object','custom'),
(85107,10634,'_menu_item_target',''),
(85108,10634,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85109,10634,'_menu_item_xfn',''),
(85110,10634,'_menu_item_url','https://choiceresources.co.uk/abc-feelings-phonics/'),
(85112,10635,'_menu_item_type','custom'),
(85113,10635,'_menu_item_menu_item_parent','10634'),
(85114,10635,'_menu_item_object_id','10635'),
(85115,10635,'_menu_item_object','custom'),
(85116,10635,'_menu_item_target',''),
(85117,10635,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85118,10635,'_menu_item_xfn',''),
(85119,10635,'_menu_item_url','https://choiceresources.co.uk/alphabet-tracing/'),
(85121,10636,'_menu_item_type','custom'),
(85122,10636,'_menu_item_menu_item_parent','10634'),
(85123,10636,'_menu_item_object_id','10636'),
(85124,10636,'_menu_item_object','custom'),
(85125,10636,'_menu_item_target',''),
(85126,10636,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85127,10636,'_menu_item_xfn',''),
(85128,10636,'_menu_item_url','https://choiceresources.co.uk/alphabet-charts/'),
(85195,10644,'_menu_item_type','custom'),
(85196,10644,'_menu_item_menu_item_parent','0'),
(85197,10644,'_menu_item_object_id','10644'),
(85198,10644,'_menu_item_object','custom'),
(85199,10644,'_menu_item_target',''),
(85200,10644,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85201,10644,'_menu_item_xfn',''),
(85202,10644,'_menu_item_url','https://choiceresources.co.uk/bible-verse-crafts/'),
(85204,10645,'_menu_item_type','custom'),
(85205,10645,'_menu_item_menu_item_parent','10644'),
(85206,10645,'_menu_item_object_id','10645'),
(85207,10645,'_menu_item_object','custom'),
(85208,10645,'_menu_item_target',''),
(85209,10645,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85210,10645,'_menu_item_xfn',''),
(85211,10645,'_menu_item_url','https://choiceresources.co.uk/bible-verse-crafts/'),
(85213,10646,'_menu_item_type','custom'),
(85214,10646,'_menu_item_menu_item_parent','0'),
(85215,10646,'_menu_item_object_id','10646'),
(85216,10646,'_menu_item_object','custom'),
(85217,10646,'_menu_item_target',''),
(85218,10646,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85219,10646,'_menu_item_xfn',''),
(85220,10646,'_menu_item_url','https://choiceresources.co.uk/bible-4-in-a-row/'),
(85241,10649,'_menu_item_type','custom'),
(85242,10649,'_menu_item_menu_item_parent','0'),
(85243,10649,'_menu_item_object_id','10649'),
(85244,10649,'_menu_item_object','custom'),
(85245,10649,'_menu_item_target',''),
(85246,10649,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85247,10649,'_menu_item_xfn',''),
(85248,10649,'_menu_item_url','https://choiceresources.co.uk/bible-story-counting-2/'),
(85250,10650,'_menu_item_type','custom'),
(85251,10650,'_menu_item_menu_item_parent','10649'),
(85252,10650,'_menu_item_object_id','10650'),
(85253,10650,'_menu_item_object','custom'),
(85254,10650,'_menu_item_target',''),
(85255,10650,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85256,10650,'_menu_item_xfn',''),
(85257,10650,'_menu_item_url','https://choiceresources.co.uk/easy-read-comics/'),
(85259,10651,'_menu_item_type','custom'),
(85260,10651,'_menu_item_menu_item_parent','0'),
(85261,10651,'_menu_item_object_id','10651'),
(85262,10651,'_menu_item_object','custom'),
(85263,10651,'_menu_item_target',''),
(85264,10651,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85265,10651,'_menu_item_xfn',''),
(85266,10651,'_menu_item_url','https://choiceresources.co.uk/bible-lessions/'),
(85286,10654,'_menu_item_type','custom'),
(85287,10654,'_menu_item_menu_item_parent','10633'),
(85288,10654,'_menu_item_object_id','10654'),
(85289,10654,'_menu_item_object','custom'),
(85290,10654,'_menu_item_target',''),
(85291,10654,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85292,10654,'_menu_item_xfn',''),
(85293,10654,'_menu_item_url','https://choiceresources.co.uk/wordsearches/'),
(85295,10655,'_menu_item_type','custom'),
(85296,10655,'_menu_item_menu_item_parent','10633'),
(85297,10655,'_menu_item_object_id','10655'),
(85298,10655,'_menu_item_object','custom'),
(85299,10655,'_menu_item_target',''),
(85300,10655,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85301,10655,'_menu_item_xfn',''),
(85302,10655,'_menu_item_url','https://choiceresources.co.uk/crosswords/'),
(85322,10658,'_menu_item_type','custom'),
(85323,10658,'_menu_item_menu_item_parent','0'),
(85324,10658,'_menu_item_object_id','10658'),
(85325,10658,'_menu_item_object','custom'),
(85326,10658,'_menu_item_target',''),
(85327,10658,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85328,10658,'_menu_item_xfn',''),
(85329,10658,'_menu_item_url','https://choiceresources.co.uk/makaton-printable/'),
(85331,10659,'_menu_item_type','custom'),
(85332,10659,'_menu_item_menu_item_parent','10658'),
(85333,10659,'_menu_item_object_id','10659'),
(85334,10659,'_menu_item_object','custom'),
(85335,10659,'_menu_item_target',''),
(85336,10659,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85337,10659,'_menu_item_xfn',''),
(85338,10659,'_menu_item_url','https://choiceresources.co.uk/makaton-printable/'),
(85340,10660,'_menu_item_type','custom'),
(85341,10660,'_menu_item_menu_item_parent','10658'),
(85342,10660,'_menu_item_object_id','10660'),
(85343,10660,'_menu_item_object','custom'),
(85344,10660,'_menu_item_target',''),
(85345,10660,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(85346,10660,'_menu_item_xfn',''),
(85347,10660,'_menu_item_url','https://choiceresources.co.uk/makaton-printable/'),
(85411,10606,'_wp_old_date','2022-06-15'),
(85814,577,'_oembed_11839fd0c0b2d57b6408a2362d10dbac','<blockquote class=\"wp-embedded-content\" data-secret=\"aNnN44uMAd\"><a href=\"https://choiceresources.co.uk/about-us-2/\">About us</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;About us&#8221; &#8212; Choice Resources\" src=\"https://choiceresources.co.uk/about-us-2/embed/#?secret=LbFSiDorqV#?secret=aNnN44uMAd\" data-secret=\"aNnN44uMAd\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),
(85815,577,'_oembed_time_11839fd0c0b2d57b6408a2362d10dbac','1655375011'),
(86049,8259,'mailchimp_woocommerce_campaign_id',''),
(86050,8259,'mailchimp_woocommerce_landing_site',''),
(86051,8287,'mailchimp_woocommerce_campaign_id',''),
(86052,8287,'mailchimp_woocommerce_landing_site',''),
(93399,10633,'_wp_old_date','2022-06-16'),
(93400,10606,'_wp_old_date','2022-06-16'),
(93401,10628,'_wp_old_date','2022-06-16'),
(93402,10629,'_wp_old_date','2022-06-16'),
(93403,10630,'_wp_old_date','2022-06-16'),
(93404,10631,'_wp_old_date','2022-06-16'),
(93405,10634,'_wp_old_date','2022-06-16'),
(93406,10632,'_wp_old_date','2022-06-16'),
(93407,10635,'_wp_old_date','2022-06-16'),
(93408,10636,'_wp_old_date','2022-06-16'),
(93416,10644,'_wp_old_date','2022-06-16'),
(93417,10645,'_wp_old_date','2022-06-16'),
(93418,10646,'_wp_old_date','2022-06-16'),
(93421,10649,'_wp_old_date','2022-06-16'),
(93422,10650,'_wp_old_date','2022-06-16'),
(93423,10651,'_wp_old_date','2022-06-16'),
(93426,10654,'_wp_old_date','2022-06-16'),
(93427,10655,'_wp_old_date','2022-06-16'),
(93430,10658,'_wp_old_date','2022-06-16'),
(93431,10659,'_wp_old_date','2022-06-16'),
(93432,10660,'_wp_old_date','2022-06-16'),
(94844,10633,'_wp_old_date','2022-06-29'),
(94845,10606,'_wp_old_date','2022-06-29'),
(94846,10628,'_wp_old_date','2022-06-29'),
(94847,10629,'_wp_old_date','2022-06-29'),
(94848,10630,'_wp_old_date','2022-06-29'),
(94849,10631,'_wp_old_date','2022-06-29'),
(94850,10634,'_wp_old_date','2022-06-29'),
(94851,10632,'_wp_old_date','2022-06-29'),
(94852,10635,'_wp_old_date','2022-06-29'),
(94853,10636,'_wp_old_date','2022-06-29'),
(94861,10644,'_wp_old_date','2022-06-29'),
(94862,10645,'_wp_old_date','2022-06-29'),
(94863,10646,'_wp_old_date','2022-06-29'),
(94866,10649,'_wp_old_date','2022-06-29'),
(94867,10650,'_wp_old_date','2022-06-29'),
(94868,10651,'_wp_old_date','2022-06-29'),
(94871,10654,'_wp_old_date','2022-06-29'),
(94872,10655,'_wp_old_date','2022-06-29'),
(94875,10658,'_wp_old_date','2022-06-29'),
(94876,10659,'_wp_old_date','2022-06-29'),
(94877,10660,'_wp_old_date','2022-06-29'),
(95170,10633,'_wp_old_date','2022-06-30'),
(95171,10606,'_wp_old_date','2022-06-30'),
(95172,10628,'_wp_old_date','2022-06-30'),
(95173,10629,'_wp_old_date','2022-06-30'),
(95174,10630,'_wp_old_date','2022-06-30'),
(95175,10631,'_wp_old_date','2022-06-30'),
(95176,10654,'_wp_old_date','2022-06-30'),
(95177,10655,'_wp_old_date','2022-06-30'),
(95178,10634,'_wp_old_date','2022-06-30'),
(95179,10632,'_wp_old_date','2022-06-30'),
(95180,10635,'_wp_old_date','2022-06-30'),
(95181,10636,'_wp_old_date','2022-06-30'),
(95182,10644,'_wp_old_date','2022-06-30'),
(95183,10645,'_wp_old_date','2022-06-30'),
(95184,10646,'_wp_old_date','2022-06-30'),
(95185,10649,'_wp_old_date','2022-06-30'),
(95186,10650,'_wp_old_date','2022-06-30'),
(95187,10651,'_wp_old_date','2022-06-30'),
(95188,10658,'_wp_old_date','2022-06-30'),
(95189,10659,'_wp_old_date','2022-06-30'),
(95190,10660,'_wp_old_date','2022-06-30'),
(112875,14375,'_menu_item_type','taxonomy'),
(112876,14375,'_menu_item_menu_item_parent','0'),
(112877,14375,'_menu_item_object_id','25'),
(112878,14375,'_menu_item_object','product_cat'),
(112879,14375,'_menu_item_target',''),
(112880,14375,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(112881,14375,'_menu_item_xfn',''),
(112882,14375,'_menu_item_url',''),
(115835,8819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:4:\"file\";s:85:\"elementor/screenshots/Elementor-post-screenshot_8696_2022-06-10-11-27-03_4874f6e1.png\";s:8:\"filesize\";i:578829;s:5:\"sizes\";a:3:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:71:\"Elementor-post-screenshot_8696_2022-06-10-11-27-03_4874f6e1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59940;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:71:\"Elementor-post-screenshot_8696_2022-06-10-11-27-03_4874f6e1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9867;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:71:\"Elementor-post-screenshot_8696_2022-06-10-11-27-03_4874f6e1-399x499.png\";s:5:\"width\";i:399;s:6:\"height\";i:499;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120221;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(117062,14865,'_mc4wp_settings','a:9:{s:5:\"lists\";a:1:{i:0;s:10:\"49270b5bc0\";}s:15:\"required_fields\";s:11:\"EMAIL,FNAME\";s:12:\"double_optin\";s:1:\"1\";s:15:\"update_existing\";s:1:\"0\";s:17:\"replace_interests\";s:1:\"1\";s:15:\"subscriber_tags\";s:0:\"\";s:18:\"hide_after_success\";s:1:\"0\";s:8:\"redirect\";s:0:\"\";s:3:\"css\";s:1:\"0\";}'),
(117075,14865,'text_subscribed','Thank you, your sign-up request was successful! Please check your email inbox to confirm.'),
(117076,14865,'text_invalid_email','Please provide a valid email address.'),
(117077,14865,'text_required_field_missing','Please fill in the required fields.'),
(117078,14865,'text_already_subscribed','Given email address is already subscribed, thank you!'),
(117079,14865,'text_error','Oops. Something went wrong. Please try again later.'),
(117080,14865,'text_unsubscribed','You were successfully unsubscribed.'),
(117081,14865,'text_not_subscribed','Given email address is not subscribed.'),
(117082,14865,'text_no_lists_selected','Please select at least one list.'),
(117083,14865,'text_updated','Thank you, your records have been updated!'),
(122005,577,'_elementor_page_settings','a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:5:\"cover\";}'),
(135211,5228,'_oembed_65a06d6106a78078a463c8f06f8688e8','{{unknown}}'),
(135987,5228,'_oembed_654c59df61b1851e63bacbf029765e21','{{unknown}}'),
(139057,1067,'_wp_old_slug','1-year-100-worksheet-discount-membership-plan__trashed'),
(139058,1067,'_fz_country_restriction_type','all'),
(139059,1067,'_restricted_countries','a:0:{}'),
(139060,1067,'woolentor_total_stock_quantity',''),
(139061,1067,'_saleflash_text',''),
(139062,1067,'cartflows_redirect_flow_id',''),
(139063,1067,'cartflows_add_to_cart_text',''),
(139097,1067,'woolentor_views_count_product','89'),
(139098,17406,'mailchimp_woocommerce_campaign_id',''),
(139099,17406,'mailchimp_woocommerce_landing_site','https://choiceresources.co.uk/wc-api/wcs_paypal/?action=create_billing_agreement&token=EC-94N53790Y1060952V&PayerID=NXXL8TNCTCLM2'),
(139100,17406,'_order_key','wc_order_pkcv7XqVUjLwi'),
(139101,17406,'_customer_user','1'),
(139102,17406,'_payment_method','paypal'),
(139103,17406,'_payment_method_title','PayPal'),
(139104,17406,'_customer_ip_address','85.255.233.67'),
(139105,17406,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36'),
(139106,17406,'_created_via','checkout'),
(139107,17406,'_cart_hash','9ed453dc4629356c9de1a1e224549cdf'),
(139108,17406,'_billing_first_name','Ivan'),
(139109,17406,'_billing_last_name','Kulongo'),
(139110,17406,'_billing_address_1','20 Hatfield Road'),
(139111,17406,'_billing_city','Dagenham'),
(139112,17406,'_billing_state','Essex'),
(139113,17406,'_billing_postcode','RM9 6JR'),
(139114,17406,'_billing_country','GB'),
(139115,17406,'_billing_email','ivankulongo@gmail.com'),
(139116,17406,'_billing_phone','782873017'),
(139117,17406,'_order_currency','GBP'),
(139118,17406,'_cart_discount','0'),
(139119,17406,'_cart_discount_tax','0'),
(139120,17406,'_order_shipping','0'),
(139121,17406,'_order_shipping_tax','0'),
(139122,17406,'_order_tax','0'),
(139123,17406,'_order_total','69.99'),
(139124,17406,'_order_version','6.5.1'),
(139125,17406,'_prices_include_tax','no'),
(139126,17406,'_billing_address_index','Ivan Kulongo  20 Hatfield Road  Dagenham Essex RM9 6JR GB ivankulongo@gmail.com 782873017'),
(139127,17406,'_shipping_address_index','         '),
(139128,17406,'is_vat_exempt','no'),
(139129,17406,'_wcf_flow_id','8120'),
(139130,17406,'_wcf_checkout_id','8121'),
(139131,17406,'mailchimp_woocommerce_is_subscribed','1'),
(139223,17406,'_paypal_subscription_id','B-0GC126888M6260839'),
(139225,17406,'_transaction_id','16402744X4953772G'),
(139226,17406,'_date_paid','1668638912'),
(139227,17406,'_paid_date','2022-11-16 22:48:32'),
(139228,17406,'_download_permissions_granted','yes'),
(139230,17406,'_recorded_sales','yes'),
(139231,17406,'_recorded_coupon_usage_counts','yes'),
(139232,17406,'_order_stock_reduced','yes'),
(139233,17406,'_new_order_email_sent','true'),
(139478,17435,'mailchimp_woocommerce_campaign_id',''),
(139479,17435,'mailchimp_woocommerce_landing_site','https://choiceresources.co.uk/wc-api/wcs_paypal/?action=create_billing_agreement&token=EC-57P12408PJ274644B&PayerID=NXXL8TNCTCLM2'),
(139480,17435,'_order_key','wc_order_Iim4dczM8Wccd'),
(139481,17435,'_customer_user','1'),
(139482,17435,'_payment_method','paypal'),
(139483,17435,'_payment_method_title','PayPal'),
(139484,17435,'_customer_ip_address','85.255.233.67'),
(139485,17435,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36'),
(139486,17435,'_created_via','checkout'),
(139487,17435,'_cart_hash','9ed453dc4629356c9de1a1e224549cdf'),
(139488,17435,'_billing_first_name','Ivan'),
(139489,17435,'_billing_last_name','Kulongo'),
(139490,17435,'_billing_address_1','20 Hatfield Road'),
(139491,17435,'_billing_city','Dagenham'),
(139492,17435,'_billing_state','Essex'),
(139493,17435,'_billing_postcode','RM9 6JR'),
(139494,17435,'_billing_country','GB'),
(139495,17435,'_billing_email','ivankulongo@gmail.com'),
(139496,17435,'_billing_phone','782873017'),
(139497,17435,'_order_currency','GBP'),
(139498,17435,'_cart_discount','0'),
(139499,17435,'_cart_discount_tax','0'),
(139500,17435,'_order_shipping','0'),
(139501,17435,'_order_shipping_tax','0'),
(139502,17435,'_order_tax','0'),
(139503,17435,'_order_total','69.99'),
(139504,17435,'_order_version','6.5.1'),
(139505,17435,'_prices_include_tax','no'),
(139506,17435,'_billing_address_index','Ivan Kulongo  20 Hatfield Road  Dagenham Essex RM9 6JR GB ivankulongo@gmail.com 782873017'),
(139507,17435,'_shipping_address_index','         '),
(139508,17435,'is_vat_exempt','no'),
(139509,17435,'_wcf_flow_id','8120'),
(139510,17435,'_wcf_checkout_id','8121'),
(139511,17435,'mailchimp_woocommerce_is_subscribed','1'),
(139512,17436,'_order_key','wc_order_ZYZEheDGZXAWp'),
(139513,17436,'_order_currency','GBP'),
(139514,17436,'_prices_include_tax','no'),
(139515,17436,'_created_via','checkout'),
(139516,17436,'_billing_period','year'),
(139517,17436,'_billing_interval','1'),
(139518,17436,'_customer_user','1'),
(139519,17436,'_order_version','8.0.3'),
(139520,17436,'_schedule_start','2022-11-16 23:16:38'),
(139521,17436,'_subscription_renewal_order_ids_cache','a:1:{i:0;i:30893;}'),
(139522,17436,'_shipping_first_name',''),
(139523,17436,'_shipping_last_name',''),
(139524,17436,'_shipping_company',''),
(139525,17436,'_shipping_address_1',''),
(139526,17436,'_shipping_address_2',''),
(139527,17436,'_shipping_city',''),
(139528,17436,'_shipping_state',''),
(139529,17436,'_shipping_postcode',''),
(139530,17436,'_shipping_country',''),
(139531,17436,'_billing_first_name','Ivan'),
(139532,17436,'_billing_last_name','Kulongo'),
(139533,17436,'_billing_company',''),
(139534,17436,'_billing_address_1','20 Hatfield Road'),
(139535,17436,'_billing_address_2',''),
(139536,17436,'_billing_city','Dagenham'),
(139537,17436,'_billing_state','Essex'),
(139538,17436,'_billing_postcode','RM9 6JR'),
(139539,17436,'_billing_country','GB'),
(139540,17436,'_billing_email','ivankulongo@gmail.com'),
(139541,17436,'_billing_phone','782873017'),
(139542,17436,'_subscription_resubscribe_order_ids_cache','a:0:{}'),
(139543,17436,'_subscription_switch_order_ids_cache','a:0:{}'),
(139544,17436,'_schedule_trial_end','0'),
(139545,17436,'_schedule_next_payment','2024-11-16 23:17:18'),
(139546,17436,'_schedule_cancelled','0'),
(139547,17436,'_schedule_end','0'),
(139548,17436,'_schedule_payment_retry','0'),
(139549,17436,'mailchimp_woocommerce_campaign_id',''),
(139550,17436,'mailchimp_woocommerce_landing_site','https://choiceresources.co.uk/my-account/'),
(139551,17436,'is_vat_exempt','no'),
(139552,17436,'_wcf_flow_id','8120'),
(139553,17436,'_wcf_checkout_id','8121'),
(139554,17436,'mailchimp_woocommerce_is_subscribed','1'),
(139555,17436,'_suspension_count','0'),
(139556,17436,'_cancelled_email_sent',''),
(139557,17436,'_requires_manual_renewal','false'),
(139558,17436,'_trial_period',''),
(139559,17436,'_subscription_switch_data',''),
(139560,17436,'_payment_method','paypal'),
(139561,17436,'_payment_method_title','PayPal'),
(139562,17436,'_customer_ip_address','85.255.233.67'),
(139563,17436,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36'),
(139564,17436,'_cart_discount','0'),
(139565,17436,'_cart_discount_tax','0'),
(139566,17436,'_order_shipping','0'),
(139567,17436,'_order_shipping_tax','0'),
(139568,17436,'_order_tax','0'),
(139569,17436,'_order_total','69.99'),
(139570,17436,'_billing_address_index','Ivan Kulongo  20 Hatfield Road  Dagenham Essex RM9 6JR GB ivankulongo@gmail.com 782873017'),
(139571,17436,'_shipping_address_index','         '),
(139572,17435,'_paypal_subscription_id','B-0GC126888M6260839'),
(139573,17436,'_paypal_subscription_id','B-0GC126888M6260839'),
(139574,17435,'_transaction_id','2R42254528425644R'),
(139575,17435,'_date_paid','1668640617'),
(139576,17435,'_paid_date','2022-11-16 23:16:57'),
(139577,17437,'_product_id','1067'),
(139578,17437,'_order_id','17435'),
(139579,17435,'_wc_memberships_access_granted','a:1:{i:17437;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(139580,17437,'_start_date','2022-11-16 00:00:00'),
(139582,17437,'_end_date','2023-11-17 04:33:07'),
(139584,17435,'_wc_memberships_access_granted','a:1:{i:17437;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(139586,17437,'_has_installment_plan','17436'),
(139589,17435,'_download_permissions_granted','yes'),
(139590,17436,'_download_permissions_granted','1'),
(139591,17435,'_recorded_sales','yes'),
(139592,17435,'_recorded_coupon_usage_counts','yes'),
(139593,17435,'_order_stock_reduced','yes'),
(139594,17435,'_new_order_email_sent','true'),
(139596,1061,'_access_length','1 years'),
(139597,1061,'_subscription_installment_plan','yes'),
(139598,1061,'_subscription_access_length','1 years'),
(139871,17437,'_edit_lock','1668648539:1'),
(139965,28,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:6:\"layout\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_background_uc\";a:2:{s:18:\"uc_background_type\";i:1;s:32:\"blox_css_snow_bg_animation_speed\";i:1;}}}}}'),
(139968,17436,'end_date_pre_cancellation','0'),
(139969,17436,'trial_end_pre_cancellation','0'),
(139972,17436,'_old_payment_method','paypal'),
(139973,17436,'_old_payment_method_title','PayPal'),
(142206,5228,'_oembed_d8a902ecbc03dc2fe0324894482b1d67','<iframe title=\"Bible Phonics- Feelings Theme\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/CfLHJTZPCxw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(142207,5228,'_oembed_time_d8a902ecbc03dc2fe0324894482b1d67','1668786849'),
(142208,5228,'_oembed_428e14405851dd4679ab9c68b73cdb5a','<iframe title=\"Desert Treasure\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/QKGJKiLX-g4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(142209,5228,'_oembed_time_428e14405851dd4679ab9c68b73cdb5a','1668786849'),
(156016,19321,'_edit_lock','1670506249:1'),
(156017,19321,'_edit_last','1'),
(156018,19321,'discount_type','sign_up_fee'),
(156019,19321,'coupon_amount','5'),
(156020,19321,'individual_use','yes'),
(156021,19321,'usage_limit','1'),
(156022,19321,'usage_limit_per_user','1'),
(156023,19321,'limit_usage_to_x_items','0'),
(156024,19321,'usage_count','0'),
(156025,19321,'date_expires',NULL),
(156026,19321,'free_shipping','no'),
(156027,19321,'exclude_sale_items','no'),
(156028,19321,'minimum_amount','15'),
(156029,19321,'_wcs_number_payments',''),
(156030,19322,'_edit_lock','1670506665:1'),
(156031,19322,'_edit_last','1'),
(156032,19322,'discount_type','percent'),
(156033,19322,'coupon_amount','15'),
(156034,19322,'individual_use','yes'),
(156035,19322,'usage_limit','1'),
(156036,19322,'usage_limit_per_user','1'),
(156037,19322,'limit_usage_to_x_items','0'),
(156038,19322,'usage_count','0'),
(156039,19322,'date_expires',NULL),
(156040,19322,'free_shipping','no'),
(156041,19322,'exclude_sale_items','no'),
(156042,19322,'_wcs_number_payments',''),
(156086,3,'_edit_lock','1715290147:1'),
(156087,3,'_edit_last','1'),
(156088,3,'_wc_memberships_force_public','no'),
(156089,3,'_wc_memberships_use_custom_page_content_restricted_message','no'),
(156090,3,'_elementor_edit_mode','builder'),
(156091,3,'_elementor_template_type','wp-page'),
(156092,3,'_elementor_version','3.21.4'),
(156093,3,'_elementor_pro_version','3.21.2'),
(156104,3,'_elementor_data','[{\"id\":\"854e77c\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"background_color\":\"#B4E3FF\"},\"elements\":[{\"id\":\"1c2359e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"2292b6d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\"},\"elements\":[{\"id\":\"1532950\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"100\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"c3cd91e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"aca458f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"woocommerce-product-rating\"},{\"id\":\"8c918bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Policy\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40ad72c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">This Privacy Policy describes the policies of Ognol UK Limited, 22 seymour road,, Kent ME5 7AE, United Kingdom of Great Britain and Northern Ireland (the), email: info@choiceresources.co.uk, phone: 07570544158 on the collection, use and disclosure of your information that we collect when you use our website ( https:\\/\\/choiceresources.co.uk ). (the \\u201cService\\u201d). By accessing or using the Service, you are consenting to the collection, use and disclosure of your information in accordance with this Privacy Policy. If you do not consent to the same, please do not access or use the Service.<\\/p><p class=\\\"privacy-policy-p\\\">We may modify this Privacy Policy at any time without any prior notice to you and will post the revised Privacy Policy on the Service. The revised Policy will be effective 180 days from when the revised Policy is posted in the Service and your continued access or use of the Service after such time will constitute your acceptance of the revised Privacy Policy. We therefore recommend that you periodically review this page.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0384723\",\"elType\":\"widget\",\"settings\":{\"title\":\"1. Information we collect:\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abe7824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">We will collect and process the following personal information about you:<\\/p><ol class=\\\"privacy-policy-ol\\\"><li>Name<\\/li><li>Email<\\/li><li>Mobile<\\/li><li>Date of Birth<\\/li><li>Address<\\/li><li>Payment Info<\\/li><li>Gender<\\/li><\\/ol>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"372bf7f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"text-align: var(--text-align); background-color: rgba(255, 255, 255, 0);\\\">Updated: May 9, 2024.<\\/span><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"680b392\",\"elType\":\"widget\",\"settings\":{\"title\":\"2. How we collect your information:\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"569bae9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">We collect\\/receive information about you in the following manner:<\\/p><ol class=\\\"privacy-policy-ol\\\"><li>When a user fills up the registration form or otherwise submits personal information<\\/li><li>Interacts with the website<\\/li><li>From public sources<\\/li><\\/ol>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c0864d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"3. How we use your information:\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b0d30f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">We will use the information that we collect about you for the following purposes:<\\/p><ol class=\\\"privacy-policy-ol\\\"><li>Marketing\\/ Promotional<\\/li><li>Creating user account<\\/li><li>Testimonials<\\/li><li>Customer feedback collection<\\/li><li>Enforce T&amp;C<\\/li><li>Processing payment<\\/li><li>Support<\\/li><li>Administration info<\\/li><li>Targeted advertising<\\/li><li>Manage customer order<\\/li><li>Site protection<\\/li><li>User to user comments<\\/li><li>Dispute resolution<\\/li><li>Manage user account<\\/li><\\/ol><p>If we want to use your information for any other purpose, we will ask you for consent and will use your information only on receiving your consent and then, only for the purpose(s) for which grant consent unless we are required to do otherwise by law.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8b62659\",\"elType\":\"widget\",\"settings\":{\"title\":\"4. How we share your information:\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc6c3e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">We will not transfer your personal information to any third party without seeking your consent, except in limited circumstances as described below:<\\/p><p>1. Analytics. We require such third party\\u2019s to use the personal information we transfer to them only for the purpose for which it was transferred and not to retain it for longer than is required for fulfilling the said purpose.<\\/p><p class=\\\"privacy-policy-p\\\">We may also disclose your personal information for the following: (1) to comply with applicable law, regulation, court order or other legal process; (2) to enforce your agreements with us, including this Privacy Policy; or (3) to respond to claims that your use of the Service violates any third-party rights. If the Service or our company is merged or acquired with another company, your information will be one of the assets that is transferred to the new owner.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a2efc79\",\"elType\":\"widget\",\"settings\":{\"title\":\"5. Retention of your information:\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b1ec4ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">We will retain your personal information with us for 30 days after user terminates account or for as long as we need it to fulfill the purposes for which it was collected as detailed in this Privacy Policy. We may need to retain certain information for longer periods such as record-keeping \\/ reporting in accordance with applicable law or for other legitimate reasons like enforcement of legal rights, fraud prevention, etc. Residual anonymous information and aggregate information, neither of which identifies you (directly or indirectly), may be stored indefinitely.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fc7c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"6. Your Rights:\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a8302dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">Depending on the law that applies, you may have a right to access and rectify or erase your personal data or receive a copy of your personal data, restrict or object to the active processing of your data, ask us to share (port) your personal information to another entity, withdraw any consent you provided to us to process your data, a right to lodge a complaint with a statutory authority and such other rights as may be relevant under applicable laws. To exercise these rights, you can write to us at info@choiceresources.co.uk. We will respond to your request in accordance with applicable law.<\\/p><p class=\\\"privacy-policy-p\\\">You may opt-out of direct marketing communications or the profiling we carry out for marketing purposes by writing to us at info@choiceresources.co.uk.<\\/p><p class=\\\"privacy-policy-p\\\">Do note that if you do not allow us to collect or process the required personal information or withdraw the consent to process the same for the required purposes, you may not be able to access or use the services for which your information was sought.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ba4bf27\",\"elType\":\"widget\",\"settings\":{\"title\":\"7. Cookies Etc.\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e9ff846\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">To learn more about how we use these and your choices in relation to these tracking technologies, please refer to our\\u00a0<a href=\\\"https:\\/\\/choiceresources.co.uk\\/cookie-policy\\/\\\">Cookie Policy.<\\/a><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8917633\",\"elType\":\"widget\",\"settings\":{\"title\":\"8. Security\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6138bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">The security of your information is important to us and we will use reasonable security measures to prevent the loss, misuse or unauthorized alteration of your information under our control. However, given the inherent risks, we cannot guarantee absolute security and consequently, we cannot ensure or warrant the security of any information you transmit to us and you do so at your own risk.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b666f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"9. Third Party Links & Use Of Your Information:\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e7792e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">Our Service may contain links to other websites that are not operated by us. This Privacy Policy does not address the privacy policy and other practices of any third parties, including any third party operating any website or service that may be accessible via a link on the Service. We strongly advise you to review the privacy policy of every site you visit. We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bdfbc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"10. Grievance \\/ Data Protection Officer:\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15cb1ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">f you have any queries or concerns about the processing of your information that is available with us, you may email our Grievance Officer at Ognol UK Limited, 22 seymour road, Kent ME5 7AE, email: info@choiceresources.co.uk. We will address your concerns in accordance with applicable law.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a936cf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">Privacy Policy generated with\\u00a0<a href=\\\"https:\\/\\/www.cookieyes.com\\/?utm_source=PP&amp;utm_medium=footer&amp;utm_campaign=UW\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CookieYes<\\/a>.<\\/p><p class=\\\"privacy-policy-p\\\">Updated: May 9, 2024.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"dffbe75\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"69b2d70\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"link\":{\"url\":\"#TOP\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-up\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_css_id\":\"TOP\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_background\":\"gradient\",\"background_color\":\"#02010100\",\"background_color_b\":\"#F2295B00\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c59a00e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7284e9b\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"TOP\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}]'),
(156111,3,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(156395,19370,'_elementor_edit_mode','builder'),
(156396,19370,'_elementor_template_type','popup'),
(156397,19370,'_elementor_version','3.12.1'),
(156398,19370,'_elementor_pro_version','3.12.0'),
(156399,19370,'_edit_lock','1683297230:1'),
(156410,19370,'_wp_page_template','default'),
(156411,19370,'_elementor_data','[]'),
(156412,19370,'_elementor_page_assets','a:0:{}'),
(156413,19370,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:3:{s:16:\"scrolling_offset\";i:75;s:9:\"scrolling\";s:3:\"yes\";s:11:\"exit_intent\";s:3:\"yes\";}s:6:\"timing\";a:6:{s:11:\"times_times\";i:2;s:5:\"times\";s:3:\"yes\";s:7:\"sources\";s:3:\"yes\";s:9:\"logged_in\";s:3:\"yes\";s:7:\"devices\";s:3:\"yes\";s:8:\"browsers\";s:3:\"yes\";}}'),
(156507,19370,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(156958,19370,'__elementor_forms_snapshot','[{\"id\":\"057566a\",\"name\":\"New Form\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"First Name\"},{\"id\":\"field_f3d46be\",\"type\":\"text\",\"label\":\"Surname\"},{\"id\":\"email\",\"type\":\"email\",\"label\":\"Email\"},{\"id\":\"field_77409ee\",\"type\":\"acceptance\",\"label\":\"Marketing permissions: We use email to contact our customers about the great offers available on our site, by subscribing you agree for us to contact you by this method. You can unsubscribe at any time by clicking the link in the footer of our emails. For information about our privacy racitices, please visit our website \"}]}]'),
(157891,8077,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:1;s:26:\"_background_video_fallback\";i:1;s:23:\"_background_hover_image\";i:1;s:32:\"_background_hover_video_fallback\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:5:\"align\";i:4;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:2;s:25:\"typography_letter_spacing\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:4;s:26:\"_background_video_fallback\";i:4;s:23:\"_background_hover_image\";i:4;s:32:\"_background_hover_video_fallback\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:5;s:4:\"view\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:2;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:5;s:9:\"icon_size\";i:5;}s:18:\"section_text_style\";a:7:{s:10:\"text_color\";i:5;s:26:\"icon_typography_typography\";i:5;s:27:\"icon_typography_font_family\";i:5;s:25:\"icon_typography_font_size\";i:5;s:11:\"text_indent\";i:3;s:27:\"icon_typography_font_weight\";i:3;s:16:\"text_color_hover\";i:1;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:5;s:26:\"_background_video_fallback\";i:5;s:23:\"_background_hover_image\";i:5;s:32:\"_background_hover_video_fallback\";i:5;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:13:\"section_style\";a:6:{s:16:\"background_image\";i:7;s:25:\"background_video_fallback\";i:7;s:22:\"background_hover_image\";i:7;s:31:\"background_hover_video_fallback\";i:7;s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:7;s:33:\"background_overlay_video_fallback\";i:7;s:30:\"background_overlay_hover_image\";i:7;s:39:\"background_overlay_hover_video_fallback\";i:7;}s:14:\"section_border\";a:6:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_radius\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:1;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:7:\"z_index\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:3;s:3:\"gap\";i:6;s:16:\"content_position\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:3;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;s:16:\"background_image\";i:6;s:25:\"background_video_fallback\";i:6;s:22:\"background_hover_image\";i:6;s:31:\"background_hover_video_fallback\";i:6;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_image\";i:6;s:33:\"background_overlay_video_fallback\";i:6;s:30:\"background_overlay_hover_image\";i:6;s:39:\"background_overlay_hover_video_fallback\";i:6;}s:21:\"section_background_uc\";a:7:{s:16:\"clouds_image_one\";i:6;s:16:\"clouds_image_two\";i:6;s:18:\"clouds_image_three\";i:6;s:17:\"clouds_image_four\";i:6;s:23:\"wave_animation_wave_top\";i:6;s:26:\"wave_animation_wave_middle\";i:6;s:26:\"wave_animation_wave_bottom\";i:6;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:3;s:12:\"border_color\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:2;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:2;s:26:\"_background_video_fallback\";i:2;s:23:\"_background_hover_image\";i:2;s:32:\"_background_hover_video_fallback\";i:2;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:2;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:6;s:10:\"title_text\";i:6;s:16:\"description_text\";i:6;s:10:\"title_size\";i:6;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_align\";i:6;s:18:\"title_bottom_space\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:28:\"title_typography_line_height\";i:6;s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:28:\"title_typography_font_weight\";i:6;s:17:\"description_color\";i:6;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:6;s:13:\"_border_width\";i:6;s:13:\"_border_color\";i:6;}s:19:\"_section_background\";a:4:{s:17:\"_background_image\";i:6;s:26:\"_background_video_fallback\";i:6;s:23:\"_background_hover_image\";i:6;s:32:\"_background_hover_video_fallback\";i:6;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_image\";i:6;}}}}}'),
(157911,19539,'forminator_form_meta','a:6:{s:6:\"fields\";a:6:{i:0;a:11:{s:2:\"id\";s:6:\"text-1\";s:10:\"element_id\";s:6:\"text-1\";s:7:\"form_id\";s:26:\"wrapper-1511347711918-1669\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:11:\"field_label\";s:8:\"Username\";s:11:\"placeholder\";s:14:\"Enter username\";s:10:\"wrapper_id\";s:26:\"wrapper-1511347711918-1669\";s:10:\"conditions\";a:0:{}}i:1;a:28:{s:2:\"id\";s:6:\"name-1\";s:10:\"element_id\";s:6:\"name-1\";s:7:\"form_id\";s:26:\"wrapper-1511789211918-1741\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:4:\"name\";s:7:\"options\";a:0:{}s:4:\"cols\";s:2:\"12\";s:10:\"conditions\";a:0:{}s:10:\"wrapper_id\";s:26:\"wrapper-1511789211918-1741\";s:11:\"field_label\";s:10:\"First Name\";s:11:\"placeholder\";s:13:\"E.g. John Doe\";s:12:\"prefix_label\";s:6:\"Prefix\";s:11:\"fname_label\";s:10:\"First Name\";s:17:\"fname_placeholder\";s:9:\"E.g. John\";s:11:\"mname_label\";s:11:\"Middle Name\";s:17:\"mname_placeholder\";s:10:\"E.g. Smith\";s:11:\"lname_label\";s:9:\"Last Name\";s:17:\"lname_placeholder\";s:8:\"E.g. Doe\";s:6:\"prefix\";s:4:\"true\";s:5:\"fname\";s:4:\"true\";s:5:\"mname\";s:4:\"true\";s:5:\"lname\";s:4:\"true\";s:16:\"required_message\";s:17:\"Name is required.\";s:23:\"prefix_required_message\";s:19:\"Prefix is required.\";s:22:\"fname_required_message\";s:23:\"First Name is required.\";s:22:\"mname_required_message\";s:24:\"Middle Name is required.\";s:22:\"lname_required_message\";s:22:\"Last Name is required.\";s:8:\"required\";s:1:\"1\";}i:2;a:29:{s:2:\"id\";s:6:\"name-2\";s:10:\"element_id\";s:6:\"name-2\";s:7:\"form_id\";s:17:\"wrapper-1464-4071\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:4:\"name\";s:7:\"options\";a:0:{}s:4:\"cols\";s:2:\"12\";s:10:\"conditions\";a:0:{}s:10:\"wrapper_id\";s:17:\"wrapper-1464-4071\";s:11:\"field_label\";s:9:\"Last Name\";s:11:\"placeholder\";s:13:\"E.g. John Doe\";s:12:\"prefix_label\";s:6:\"Prefix\";s:11:\"fname_label\";s:10:\"First Name\";s:17:\"fname_placeholder\";s:9:\"E.g. John\";s:11:\"mname_label\";s:11:\"Middle Name\";s:17:\"mname_placeholder\";s:10:\"E.g. Smith\";s:11:\"lname_label\";s:9:\"Last Name\";s:17:\"lname_placeholder\";s:8:\"E.g. Doe\";s:6:\"prefix\";s:4:\"true\";s:5:\"fname\";s:4:\"true\";s:5:\"mname\";s:4:\"true\";s:5:\"lname\";s:4:\"true\";s:16:\"required_message\";s:17:\"Name is required.\";s:23:\"prefix_required_message\";s:19:\"Prefix is required.\";s:22:\"fname_required_message\";s:23:\"First Name is required.\";s:22:\"mname_required_message\";s:24:\"Middle Name is required.\";s:22:\"lname_required_message\";s:22:\"Last Name is required.\";s:8:\"required\";s:1:\"1\";s:6:\"formid\";s:17:\"wrapper-1464-4071\";}i:3;a:14:{s:2:\"id\";s:7:\"email-1\";s:10:\"element_id\";s:7:\"email-1\";s:7:\"form_id\";s:26:\"wrapper-1511347712118-1739\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:16:\"required_message\";s:43:\"This field is required. Please enter email.\";s:11:\"field_label\";s:5:\"Email\";s:11:\"placeholder\";s:17:\"E.g. john@doe.com\";s:10:\"validation\";s:4:\"true\";s:18:\"validation_message\";s:26:\"This is not a valid email.\";s:10:\"wrapper_id\";s:26:\"wrapper-1511347712118-1739\";s:10:\"conditions\";a:0:{}}i:4;a:20:{s:2:\"id\";s:10:\"password-1\";s:10:\"element_id\";s:10:\"password-1\";s:7:\"form_id\";s:17:\"wrapper-6146-9476\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:8:\"password\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:16:\"required_message\";s:26:\"Your password is required.\";s:11:\"field_label\";s:8:\"Password\";s:11:\"placeholder\";s:19:\"Enter your password\";s:11:\"description\";s:0:\"\";s:22:\"confirm-password-label\";s:16:\"Confirm Password\";s:28:\"confirm-password-placeholder\";s:20:\"Confirm new password\";s:8:\"strength\";s:4:\"none\";s:27:\"strength_validation_message\";s:142:\"Your password doesn\'t meet the minimum strength requirement. We recommend using 8 or more characters with a mix of letters, numbers & symbols.\";s:10:\"validation\";s:4:\"true\";s:18:\"validation_message\";s:27:\"Your passwords don\'t match.\";s:24:\"required_confirm_message\";s:38:\"You must confirm your chosen password.\";s:10:\"wrapper_id\";s:17:\"wrapper-6146-9476\";s:10:\"conditions\";a:0:{}}i:5;a:17:{s:2:\"id\";s:9:\"captcha-1\";s:10:\"element_id\";s:9:\"captcha-1\";s:7:\"form_id\";s:17:\"wrapper-2644-2819\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:7:\"captcha\";s:7:\"options\";a:0:{}s:4:\"cols\";s:2:\"12\";s:10:\"conditions\";a:0:{}s:10:\"wrapper_id\";s:17:\"wrapper-2644-2819\";s:16:\"captcha_provider\";s:9:\"recaptcha\";s:12:\"captcha_type\";s:11:\"v2_checkbox\";s:13:\"hcaptcha_type\";s:11:\"hc_checkbox\";s:15:\"score_threshold\";s:3:\"0.5\";s:13:\"captcha_badge\";s:11:\"bottomright\";s:19:\"hc_invisible_notice\";s:169:\"This site is protected by hCaptcha and its <a href=\"https://hcaptcha.com/privacy\">Privacy Policy</a> and <a href=\"https://hcaptcha.com/terms\">Terms of Service</a> apply.\";s:23:\"recaptcha_error_message\";s:48:\"reCAPTCHA verification failed. Please try again.\";s:22:\"hcaptcha_error_message\";s:47:\"hCaptcha verification failed. Please try again.\";}}s:8:\"settings\";a:128:{s:17:\"pagination-header\";s:3:\"nav\";s:14:\"paginationData\";a:2:{s:24:\"pagination-header-design\";s:4:\"show\";s:17:\"pagination-header\";s:3:\"nav\";}s:8:\"formName\";s:17:\"User Registration\";s:7:\"version\";s:6:\"1.21.0\";s:17:\"form-border-style\";s:4:\"none\";s:12:\"form-padding\";s:0:\"\";s:11:\"form-border\";s:0:\"\";s:12:\"fields-style\";s:4:\"open\";s:10:\"validation\";s:9:\"on_submit\";s:18:\"akismet-protection\";s:1:\"0\";s:10:\"form-style\";s:7:\"default\";s:11:\"enable-ajax\";s:4:\"true\";s:9:\"autoclose\";s:0:\"\";s:20:\"submission-indicator\";s:4:\"show\";s:15:\"indicator-label\";s:13:\"Submitting...\";s:9:\"form-type\";s:12:\"registration\";s:20:\"submission-behaviour\";s:18:\"behaviour-thankyou\";s:16:\"thankyou-message\";s:95:\"Account registration successful. Click <a href=\"{login_url}\">here</a> to login to your account.\";s:22:\"email-thankyou-message\";s:92:\"Account registration successful. Please check your email inbox to activate your new account.\";s:23:\"manual-thankyou-message\";s:155:\"Account registration successful. A website admin must approve your account before you can log in. Youâ€™ll receive an email when your account is activated.\";s:10:\"submitData\";a:2:{s:18:\"custom-submit-text\";s:8:\"Register\";s:27:\"custom-invalid-form-message\";s:53:\"Error: Your form is not valid, please fix the errors!\";}s:17:\"validation-inline\";s:1:\"1\";s:11:\"form-expire\";s:9:\"no_expire\";s:15:\"use-admin-email\";s:4:\"true\";s:16:\"form-padding-top\";s:1:\"0\";s:18:\"form-padding-right\";s:1:\"0\";s:19:\"form-padding-bottom\";s:1:\"0\";s:17:\"form-padding-left\";s:1:\"0\";s:17:\"form-border-width\";s:1:\"0\";s:18:\"form-border-radius\";s:1:\"0\";s:23:\"cform-label-font-family\";s:6:\"Roboto\";s:25:\"cform-label-custom-family\";s:0:\"\";s:21:\"cform-label-font-size\";s:2:\"12\";s:23:\"cform-label-font-weight\";s:4:\"bold\";s:23:\"cform-title-font-family\";s:6:\"Roboto\";s:25:\"cform-title-custom-family\";s:0:\"\";s:21:\"cform-title-font-size\";s:2:\"45\";s:23:\"cform-title-font-weight\";s:6:\"normal\";s:22:\"cform-title-text-align\";s:4:\"left\";s:26:\"cform-subtitle-font-family\";s:6:\"Roboto\";s:26:\"cform-subtitle-custom-font\";s:0:\"\";s:24:\"cform-subtitle-font-size\";s:2:\"18\";s:26:\"cform-subtitle-font-weight\";s:6:\"normal\";s:25:\"cform-subtitle-text-align\";s:4:\"left\";s:23:\"cform-input-font-family\";s:6:\"Roboto\";s:23:\"cform-input-custom-font\";s:0:\"\";s:21:\"cform-input-font-size\";s:2:\"16\";s:23:\"cform-input-font-weight\";s:6:\"normal\";s:23:\"cform-radio-font-family\";s:6:\"Roboto\";s:23:\"cform-radio-custom-font\";s:0:\"\";s:21:\"cform-radio-font-size\";s:2:\"14\";s:23:\"cform-radio-font-weight\";s:6:\"normal\";s:24:\"cform-select-font-family\";s:6:\"Roboto\";s:26:\"cform-select-custom-family\";s:0:\"\";s:22:\"cform-select-font-size\";s:2:\"16\";s:24:\"cform-select-font-weight\";s:6:\"normal\";s:29:\"cform-multiselect-font-family\";s:6:\"Roboto\";s:29:\"cform-multiselect-custom-font\";s:0:\"\";s:27:\"cform-multiselect-font-size\";s:2:\"16\";s:29:\"cform-multiselect-font-weight\";s:6:\"normal\";s:26:\"cform-dropdown-font-family\";s:6:\"Roboto\";s:26:\"cform-dropdown-custom-font\";s:0:\"\";s:24:\"cform-dropdown-font-size\";s:2:\"16\";s:26:\"cform-dropdown-font-weight\";s:6:\"normal\";s:26:\"cform-calendar-font-family\";s:6:\"Roboto\";s:26:\"cform-calendar-custom-font\";s:0:\"\";s:24:\"cform-calendar-font-size\";s:2:\"13\";s:26:\"cform-calendar-font-weight\";s:6:\"normal\";s:24:\"cform-button-font-family\";s:6:\"Roboto\";s:24:\"cform-button-custom-font\";s:0:\"\";s:22:\"cform-button-font-size\";s:2:\"14\";s:24:\"cform-button-font-weight\";s:3:\"500\";s:26:\"cform-timeline-font-family\";s:6:\"Roboto\";s:26:\"cform-timeline-custom-font\";s:0:\"\";s:24:\"cform-timeline-font-size\";s:2:\"12\";s:26:\"cform-timeline-font-weight\";s:6:\"normal\";s:28:\"cform-pagination-font-family\";s:0:\"\";s:28:\"cform-pagination-custom-font\";s:0:\"\";s:26:\"cform-pagination-font-size\";s:2:\"16\";s:28:\"cform-pagination-font-weight\";s:6:\"normal\";s:19:\"payment_require_ssl\";s:5:\"true,\";s:15:\"submission-file\";s:6:\"delete\";s:7:\"options\";a:0:{}s:17:\"site-registration\";s:6:\"enable\";s:28:\"site-registration-name-field\";s:6:\"text-1\";s:29:\"site-registration-title-field\";s:6:\"text-1\";s:28:\"site-registration-role-field\";s:13:\"administrator\";s:17:\"activation-method\";s:5:\"email\";s:16:\"activation-email\";s:7:\"default\";s:27:\"registration-username-field\";s:6:\"text-1\";s:24:\"registration-email-field\";s:7:\"email-1\";s:27:\"registration-password-field\";s:10:\"password-1\";s:22:\"registration-user-role\";s:5:\"fixed\";s:23:\"registration-role-field\";s:8:\"customer\";s:15:\"automatic-login\";s:0:\"\";s:22:\"hide-registration-form\";s:1:\"1\";s:32:\"hidden-registration-form-message\";s:33:\"<p>You are already logged in.</p>\";s:7:\"form_id\";s:5:\"19539\";s:17:\"store_submissions\";s:1:\"1\";s:9:\"form_name\";s:17:\"user-registration\";s:11:\"form_status\";s:7:\"publish\";s:17:\"confirmation-page\";s:2:\"29\";s:13:\"sc_email_link\";s:1:\"1\";s:10:\"sc_message\";s:417:\"<p>Your form has been saved as draft and a resume link has been generated so you can return to the form anytime within {retention_period} days from today. Copy and save the link or enter your email address below to have the link sent to your mail.</p><p>These fields weren\'t saved to your submission draft: Paypal, Stripe, Signature, Password, Captcha, and Upload. Kindly fill them out before submitting the form.</p>\";s:29:\"registration-first-name-field\";s:6:\"name-1\";s:28:\"registration-last-name-field\";s:6:\"name-2\";s:20:\"cform-color-settings\";s:4:\"true\";s:17:\"cform-label-color\";s:7:\"#666666\";s:8:\"input-bg\";s:7:\"#ffffff\";s:17:\"input-placeholder\";s:7:\"#aaaaaa\";s:12:\"input-border\";s:7:\"#666666\";s:14:\"input-hover-bg\";s:7:\"#ffffff\";s:15:\"input-active-bg\";s:7:\"#ffffff\";s:27:\"response-loading-background\";s:7:\"#ffffff\";s:24:\"select-background-static\";s:7:\"#ffffff\";s:23:\"select-background-hover\";s:7:\"#ffffff\";s:18:\"input-active-color\";s:7:\"#333333\";s:19:\"input-border-active\";s:7:\"#666666\";s:18:\"label-helper-color\";s:7:\"#666666\";s:21:\"cform-form-background\";s:19:\"rgba(239,239,239,0)\";s:17:\"cform-form-border\";s:19:\"rgba(255,255,255,0)\";s:17:\"select-icon-hover\";s:7:\"#ffffff\";s:16:\"form-font-family\";s:0:\"\";s:18:\"select-icon-static\";s:7:\"#ffffff\";s:24:\"select-background-active\";s:7:\"#ffffff\";s:32:\"dropdown-option-background-hover\";s:7:\"#ffffff\";s:19:\"dropdown-background\";s:7:\"#ffffff\";s:27:\"response-success-background\";s:21:\"rgba(69,211,140,0.83)\";}s:9:\"client_id\";N;s:22:\"integration_conditions\";a:0:{}s:9:\"behaviors\";a:1:{i:0;a:10:{s:4:\"slug\";s:18:\"behavior-1234-4567\";s:5:\"label\";s:0:\"\";s:14:\"autoclose-time\";s:1:\"5\";s:9:\"autoclose\";s:0:\"\";s:6:\"newtab\";s:7:\"sametab\";s:16:\"thankyou-message\";s:95:\"Account registration successful. Click <a href=\"{login_url}\">here</a> to login to your account.\";s:22:\"email-thankyou-message\";s:92:\"Account registration successful. Please check your email inbox to activate your new account.\";s:23:\"manual-thankyou-message\";s:155:\"Account registration successful. A website admin must approve your account before you can log in. Youâ€™ll receive an email when your account is activated.\";s:20:\"submission-behaviour\";s:18:\"behaviour-thankyou\";s:12:\"redirect-url\";s:0:\"\";}}s:13:\"notifications\";a:3:{i:0;a:12:{s:4:\"slug\";s:22:\"notification-1111-1111\";s:5:\"label\";s:11:\"Admin Email\";s:16:\"email-recipients\";s:7:\"default\";s:10:\"recipients\";s:21:\"ivankulongo@gmail.com\";s:13:\"email-subject\";s:35:\"New User Registration on {site_url}\";s:12:\"email-editor\";s:190:\"New user registration on your site {site_url}: <br /><br /> {all_fields} <br /><br /> Click {submission_url} to view the submission.<br /><br />---<br />This message was sent from {site_url}\";s:26:\"email-subject-method-email\";s:35:\"New User Registration on {site_url}\";s:25:\"email-editor-method-email\";s:190:\"New user registration on your site {site_url}: <br /><br /> {all_fields} <br /><br /> Click {submission_url} to view the submission.<br /><br />---<br />This message was sent from {site_url}\";s:27:\"email-subject-method-manual\";s:51:\"New User Registration on {site_url} needs approval.\";s:26:\"email-editor-method-manual\";s:358:\"New user registration on your site {site_url}: <br /><br /> {all_fields} <br /><br /> The account is still not activated and needs your approval. To activate this account, click the link below.<br />{account_approval_link} <br /><br />Click {submission_url} to view the submission on your website\'s dashboard.<br /><br />This message was sent from {site_url}\";s:4:\"type\";s:12:\"registration\";s:10:\"conditions\";a:0:{}}i:1;a:11:{s:4:\"slug\";s:22:\"notification-1111-1112\";s:5:\"label\";s:23:\"User Confirmation Email\";s:16:\"email-recipients\";s:7:\"default\";s:10:\"recipients\";s:9:\"{email-1}\";s:13:\"email-subject\";s:32:\"Your new account on {site_title}\";s:12:\"email-editor\";s:263:\"Your new account on our site {site_title} is ready to go. Here\'s your details: <br /><br /> {all_fields} <br /><br />Login to your new account <a href=\"https://choiceresources.co.uk/wp-login.php\">here</a>.<br /><br />---<br />This message was sent from {site_url}\";s:26:\"email-subject-method-email\";s:35:\"Activate your account on {site_url}\";s:25:\"email-editor-method-email\";s:284:\"Dear {username} <br /><br />Thank you for signing up on our website. You are one step away from activating your account. We have sent you another email containing a confirmation link. Please click on that link to activate your account.<br /><br />This message was sent from {site_url}\";s:27:\"email-subject-method-manual\";s:49:\"Your new account on {site_title} is under review.\";s:26:\"email-editor-method-manual\";s:242:\"Your new account on {site_title} is under review.<br />You\'ll receive another email once the site admin approves your account. You should be able to login into your account after that.<br /><br />---<br />This message was sent from {site_url}\";s:10:\"conditions\";a:0:{}}i:2;a:10:{s:4:\"slug\";s:22:\"notification-3860-2935\";s:26:\"email-subject-method-email\";s:9:\"Free Gift\";s:5:\"label\";s:10:\"Gift Email\";s:25:\"email-editor-method-email\";s:502:\"<p>Hi,</p>\n<p>Thank you for registering with choiceresources.co.uk, please find below a link to your free Audio and Activity pack.</p>\n<p><a href=\"https://choiceresources.co.uk/elementor-20180/\">The Three Trees + Activity Pack</a></p>\n<p>Regards,</p>\n<p>Customer Service Team</p>\n<p>This message was sent fromÂ <a id=\"LPlnk328664\" href=\"https://choiceresources.co.uk/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" data-auth=\"NotApplicable\" data-linkindex=\"0\">https://choiceresources.co.uk</a></p>\";s:10:\"recipients\";s:9:\"{email-1}\";s:9:\"from-name\";s:21:\"Choiceresources.co.uk\";s:10:\"form-email\";s:26:\"info@choiceresources.co.uk\";s:13:\"replyto-email\";s:0:\"\";s:8:\"cc-email\";s:0:\"\";s:9:\"bcc-email\";s:0:\"\";}}}'),
(157912,19539,'forminator_addon_mailchimp_form_settings_62a21cc936f093.84268957','a:9:{s:12:\"mail_list_id\";s:10:\"49270b5bc0\";s:14:\"mail_list_name\";s:16:\"Ognol UK Limited\";s:20:\"enable_double_opt_in\";s:1:\"0\";s:9:\"tags_data\";a:4:{i:6326129;s:15:\"High Engagement\";i:6326133;s:17:\"Medium Engagement\";i:6326137;s:13:\"No Engagement\";i:6330137;s:7:\"sign_up\";}s:11:\"groups_data\";a:0:{}s:9:\"gdpr_data\";a:1:{s:10:\"6ffad30bf6\";s:5:\"Email\";}s:4:\"tags\";a:0:{}s:4:\"gdpr\";a:1:{s:10:\"6ffad30bf6\";s:5:\"Email\";}s:10:\"fields_map\";a:6:{s:5:\"EMAIL\";s:7:\"email-1\";s:7:\"ADDRESS\";a:6:{s:5:\"addr1\";s:0:\"\";s:5:\"addr2\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:3:\"zip\";s:0:\"\";s:7:\"country\";s:0:\"\";}s:8:\"BIRTHDAY\";s:0:\"\";s:5:\"FNAME\";s:0:\"\";s:5:\"LNAME\";s:0:\"\";s:5:\"PHONE\";s:0:\"\";}}'),
(157948,8331,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:11:\"title_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:16:\"background_image\";i:2;}s:21:\"section_background_uc\";a:2:{s:18:\"uc_background_type\";i:1;s:32:\"blox_css_snow_bg_animation_speed\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:27:\"wp-widget-forminator_widget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),
(158078,43,'_eael_custom_js',''),
(158079,577,'_eael_custom_js',''),
(158081,19370,'_eael_custom_js',''),
(158083,29,'_eael_custom_js',''),
(158108,29,'_eael_widget_elements','a:0:{}'),
(158111,5228,'_eael_custom_js',''),
(158183,29,'_edit_last','1'),
(158194,19564,'_wp_page_template','elementor_header_footer'),
(158195,19564,'_cdp_origin','29'),
(158196,19564,'_cdp_origin_site','-1'),
(158197,19564,'_cdp_origin_title',' My Login #[Counter]'),
(158198,19564,'_cdp_counter','2'),
(158199,19564,'_elementor_edit_mode','builder'),
(158200,19564,'_elementor_template_type','wp-page'),
(158201,19564,'_elementor_version','3.21.4'),
(158202,19564,'_elementor_pro_version','3.21.2'),
(158203,19564,'_wp_page_template','elementor_header_footer'),
(158204,19564,'_elementor_data','[{\"id\":\"3978167\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#43E1FF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b\":\"#43E1FF\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\"},\"elements\":[{\"id\":\"5432542\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"f79e107\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]}},\"elements\":[{\"id\":\"c9aae9c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":71.767},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[{\"id\":\"3ce7540\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE <span style=\\\"color: #ffffff;\\\">Bible Printables<\\/span><\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"none\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"143\",\"bottom\":\"67\",\"left\":\"143\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":520.953}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"33c2ad0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#43E1FFE6\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":181,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":136,\"sizes\":[]},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":99.501},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e13055c\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"1def759\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"4895c76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"eae1ebb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>My Account<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#5BCEFF\",\"_background_color_b\":\"#FFFFFF00\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.21)\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.996},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":194.844},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":212.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fd651f2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"TOP\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48edfe1\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"field_key\":\"dashboard\",\"field_label\":\"Dashboard\",\"tab_name\":\"Dashboard\",\"_id\":\"efd020f\"},{\"field_key\":\"orders\",\"field_label\":\"Orders\",\"tab_name\":\"Orders\",\"_id\":\"980b1b4\"},{\"field_key\":\"downloads\",\"field_label\":\"Downloads\",\"tab_name\":\"Downloads\",\"_id\":\"955e2dc\"},{\"field_key\":\"edit-address\",\"field_label\":\"Addresses\",\"tab_name\":\"Addresses\",\"_id\":\"a12e315\"},{\"field_key\":\"edit-account\",\"field_label\":\"Account Details\",\"tab_name\":\"Account Details\",\"_id\":\"a4750f2\"},{\"field_key\":\"customer-logout\",\"field_label\":\"Logout\",\"tab_name\":\"Log out\",\"_id\":\"7b37aaf\"}],\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"customize_dashboard_check\":\"yes\",\"tabs_content_spacing\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"tabs_position\":\"start\",\"tabs_alignment\":\"start\",\"tabs_normal_box_shadow_box_shadow_type\":\"yes\",\"tabs_normal_box_shadow_box_shadow\":{\"horizontal\":-11,\"vertical\":-6,\"blur\":6,\"spread\":-13,\"color\":\"rgba(0,0,0,0.5)\"},\"tabs_border_type\":\"none\",\"tabs_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"tabs_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[],\"px\":0},\"tabs_divider_weight\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"my_account_sections_background_color\":\"#FFFFFF\",\"section_titles_typography_text_shadow_text_shadow\":{\"horizontal\":-33,\"vertical\":0,\"blur\":51,\"color\":\"rgba(0,0,0,0.3)\"},\"forms_fields_normal_background_background\":\"gradient\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":105.867},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"woocommerce-my-account\"},{\"id\":\"bc3097c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"link\":{\"url\":\"#TOP\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-up\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_css_id\":\"TOP\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_background\":\"gradient\",\"background_color\":\"#02010100\",\"background_color_b\":\"#F2295B00\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"777066d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(158205,19564,'_elementor_page_settings','a:8:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:7:\"initial\";s:16:\"background_color\";s:7:\"#43E1FF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:14:\"eael_custom_js\";s:2:\"\r\n\";s:10:\"hide_title\";s:3:\"yes\";}'),
(158206,19564,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(158209,19564,'_edit_last','1'),
(158220,19564,'_edit_lock','1721219982:1'),
(158221,19564,'_eael_custom_js',''),
(158222,19564,'_eael_widget_elements','a:0:{}'),
(158456,19564,'_wc_memberships_force_public','no'),
(158457,19564,'_wc_memberships_use_custom_page_content_restricted_message','no'),
(158681,8331,'_eael_custom_js',''),
(158769,8121,'_eael_custom_js',''),
(158946,9,'_eael_custom_js',''),
(160194,19814,'_um_custom_fields','a:6:{s:10:\"user_login\";a:15:{s:5:\"title\";s:8:\"Username\";s:7:\"metakey\";s:10:\"user_login\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:8:\"Username\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:15:\"unique_username\";s:9:\"min_chars\";i:3;s:9:\"max_chars\";i:24;s:8:\"position\";i:1;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:10:\"user_email\";a:13:{s:5:\"title\";s:14:\"E-mail Address\";s:7:\"metakey\";s:10:\"user_email\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:14:\"E-mail Address\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"validate\";s:12:\"unique_email\";s:8:\"position\";i:4;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";i:5;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:10:\"first_name\";a:12:{s:5:\"title\";s:10:\"First Name\";s:7:\"metakey\";s:10:\"first_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"First Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";i:2;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:9:\"last_name\";a:12:{s:5:\"title\";s:9:\"Last Name\";s:7:\"metakey\";s:9:\"last_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Last Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";i:3;s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";i:1;s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";i:1;s:4:\"cols\";i:1;s:6:\"origin\";s:9:\"_um_row_1\";}}'),
(160195,19814,'_um_mode','register'),
(160196,19814,'_um_core','register'),
(160197,19814,'_um_register_use_custom_settings','0'),
(160198,19815,'_um_custom_fields','a:3:{s:8:\"username\";a:13:{s:5:\"title\";s:18:\"Username or E-mail\";s:7:\"metakey\";s:8:\"username\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:18:\"Username or E-mail\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:24:\"unique_username_or_email\";s:8:\"position\";s:1:\"1\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";s:1:\"2\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),
(160199,19815,'_um_mode','login'),
(160200,19815,'_um_core','login'),
(160201,19815,'_um_login_use_custom_settings','0'),
(160202,19816,'_um_custom_fields','a:1:{s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),
(160203,19816,'_um_mode','profile'),
(160204,19816,'_um_core','profile'),
(160205,19816,'_um_profile_use_custom_settings','0'),
(160206,19817,'_um_core','members'),
(160207,19817,'_um_template','members'),
(160208,19817,'_um_mode','directory'),
(160209,19817,'_um_view_types','a:1:{i:0;s:4:\"grid\";}'),
(160210,19817,'_um_default_view','grid'),
(160211,19817,'_um_roles','a:0:{}'),
(160212,19817,'_um_has_profile_photo','0'),
(160213,19817,'_um_has_cover_photo','0'),
(160214,19817,'_um_show_these_users',''),
(160215,19817,'_um_exclude_these_users',''),
(160216,19817,'_um_sortby','user_registered_desc'),
(160217,19817,'_um_sortby_custom',''),
(160218,19817,'_um_sortby_custom_label',''),
(160219,19817,'_um_enable_sorting','0'),
(160220,19817,'_um_sorting_fields','a:0:{}'),
(160221,19817,'_um_profile_photo','1'),
(160222,19817,'_um_cover_photos','1'),
(160223,19817,'_um_show_name','1'),
(160224,19817,'_um_show_tagline','0'),
(160225,19817,'_um_tagline_fields','a:0:{}'),
(160226,19817,'_um_show_userinfo','0'),
(160227,19817,'_um_reveal_fields','a:0:{}'),
(160228,19817,'_um_show_social','0'),
(160229,19817,'_um_userinfo_animate','1'),
(160230,19817,'_um_search','0'),
(160231,19817,'_um_roles_can_search','a:0:{}'),
(160232,19817,'_um_filters','0'),
(160233,19817,'_um_roles_can_filter','a:0:{}'),
(160234,19817,'_um_search_fields','a:0:{}'),
(160235,19817,'_um_filters_expanded','0'),
(160236,19817,'_um_filters_is_collapsible','1'),
(160237,19817,'_um_search_filters','a:0:{}'),
(160238,19817,'_um_must_search','0'),
(160239,19817,'_um_max_users',''),
(160240,19817,'_um_profiles_per_page','12'),
(160241,19817,'_um_profiles_per_page_mobile','6'),
(160242,19817,'_um_directory_header','{total_users} Members'),
(160243,19817,'_um_directory_header_single','{total_users} Member'),
(160244,19817,'_um_directory_no_users','We are sorry. We cannot find any users who match your search criteria.'),
(160245,19814,'_edit_lock','1671047736:1'),
(160276,19821,'_um_core','user'),
(160278,19823,'_um_core','register'),
(160279,19824,'_um_core','members'),
(160280,19825,'_um_core','logout'),
(160282,19827,'_um_core','password-reset'),
(160296,19823,'_edit_lock','1671076307:1'),
(160297,19823,'_elementor_edit_mode','builder'),
(160298,19823,'_elementor_template_type','wp-page'),
(160299,19823,'_elementor_version','3.9.0'),
(160300,19823,'_elementor_pro_version','3.7.1'),
(160301,19823,'_eael_custom_js',''),
(160310,19823,'_wp_page_template','default'),
(160311,19823,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),
(160312,19823,'_elementor_data','[{\"id\":\"6ffb50e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2eb1881\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22.626999999999998891553332214243710041046142578125},\"elements\":[],\"isInner\":false},{\"id\":\"6746a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.52799999999999869260136620141565799713134765625},\"elements\":[{\"id\":\"bfadb69\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[forminator_form id=\\\"19539\\\"]\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false},{\"id\":\"98dbcda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.4759999999999990905052982270717620849609375},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),
(160320,19823,'_elementor_page_assets','a:0:{}'),
(160474,8628,'_eael_custom_js',''),
(160588,19861,'_edit_lock','1676652276:1'),
(160589,19861,'_edit_last','1'),
(160590,19861,'_wc_memberships_force_public','no'),
(160591,19861,'_wc_memberships_use_custom_page_content_restricted_message','no'),
(160592,19861,'_elementor_edit_mode','builder'),
(160593,19861,'_elementor_template_type','wp-page'),
(160594,19861,'_elementor_version','3.10.1'),
(160595,19861,'_elementor_pro_version','3.9.2'),
(160604,19861,'_wp_page_template','default'),
(160605,19861,'_elementor_page_settings','a:3:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#52AAFF\";}'),
(160606,19861,'_elementor_data','[{\"id\":\"8dfa1bb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":970,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#10A4E3\",\"uc_background_type\":\"blox_css_snow_bg\",\"blox_css_snow_bg_animation_speed\":50},\"elements\":[{\"id\":\"43632a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#B4E3FF\",\"background_color_b\":\"#B4E3FF\"},\"elements\":[{\"id\":\"c68761f\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"field_key\":\"dashboard\",\"field_label\":\"Dashboard\",\"tab_name\":\"Dashboard\",\"_id\":\"e632ceb\"},{\"field_key\":\"orders\",\"field_label\":\"Orders\",\"tab_name\":\"Orders\",\"_id\":\"4bb84ad\"},{\"field_key\":\"downloads\",\"field_label\":\"Downloads\",\"tab_name\":\"Downloads\",\"_id\":\"135ac57\"},{\"field_key\":\"edit-address\",\"field_label\":\"Addresses\",\"tab_name\":\"Addresses\",\"_id\":\"3c7caec\"},{\"field_key\":\"edit-account\",\"field_label\":\"Account Details\",\"tab_name\":\"Account Details\",\"_id\":\"aff6f90\"},{\"field_key\":\"customer-logout\",\"field_label\":\"Logout\",\"tab_name\":\"Logout\",\"_id\":\"c25e00a\"}],\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"woocommerce-my-account\"}],\"isInner\":false}],\"isInner\":false}]'),
(160614,19861,'_elementor_page_assets','a:0:{}'),
(160615,19861,'_eael_custom_js',''),
(160669,19823,'_elementor_controls_usage','a:3:{s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),
(160834,19904,'_wp_attached_file','2022/12/Logo-logo.png'),
(160835,19904,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2022/12/Logo-logo.png\";s:8:\"filesize\";i:49409;s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"Logo-logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31008;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"Logo-logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6675;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"Logo-logo-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47813;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Logo-logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36804;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Logo-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14469;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(160919,7558,'_eael_custom_js',''),
(161168,3,'_eael_custom_js',''),
(161170,27,'_eael_custom_js',''),
(162939,19370,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),
(163234,19370,'_edit_last','1'),
(164729,20379,'_menu_item_type','custom'),
(164730,20379,'_menu_item_menu_item_parent','0'),
(164731,20379,'_menu_item_object_id','20379'),
(164732,20379,'_menu_item_object','custom'),
(164733,20379,'_menu_item_target',''),
(164734,20379,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(164735,20379,'_menu_item_xfn',''),
(164736,20379,'_menu_item_url','https://choiceresources.co.uk/'),
(166231,20379,'_wp_old_date','2023-01-01'),
(166246,43,'_eael_widget_elements','a:0:{}'),
(166251,20549,'_menu_item_type','custom'),
(166252,20549,'_menu_item_menu_item_parent','0'),
(166253,20549,'_menu_item_object_id','20549'),
(166254,20549,'_menu_item_object','custom'),
(166255,20549,'_menu_item_target',''),
(166256,20549,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(166257,20549,'_menu_item_xfn',''),
(166258,20549,'_menu_item_url','http://www.Choiceresources.co.uk'),
(166336,20549,'_wp_old_date','2023-01-05'),
(166353,20379,'_wp_old_date','2023-01-05'),
(166504,20572,'_menu_item_type','custom'),
(166505,20572,'_menu_item_menu_item_parent','0'),
(166506,20572,'_menu_item_object_id','20572'),
(166507,20572,'_menu_item_object','custom'),
(166508,20572,'_menu_item_target',''),
(166509,20572,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(166510,20572,'_menu_item_xfn',''),
(166511,20572,'_menu_item_url','#'),
(166541,20575,'_menu_item_type','custom'),
(166542,20575,'_menu_item_menu_item_parent','0'),
(166543,20575,'_menu_item_object_id','20575'),
(166544,20575,'_menu_item_object','custom'),
(166545,20575,'_menu_item_target',''),
(166546,20575,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(166547,20575,'_menu_item_xfn',''),
(166548,20575,'_menu_item_url','https://choiceresources.co.uk/account-management/'),
(166618,20581,'_menu_item_type','post_type'),
(166619,20581,'_menu_item_menu_item_parent','0'),
(166620,20581,'_menu_item_object_id','29'),
(166621,20581,'_menu_item_object','page'),
(166622,20581,'_menu_item_target',''),
(166623,20581,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(166624,20581,'_menu_item_xfn',''),
(166625,20581,'_menu_item_url',''),
(166902,20610,'forminator_form_meta','a:6:{s:6:\"fields\";a:2:{i:0;a:10:{s:2:\"id\";s:6:\"text-1\";s:10:\"element_id\";s:6:\"text-1\";s:7:\"form_id\";s:26:\"wrapper-1511347711918-1669\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:11:\"field_label\";s:25:\"Username or Email Address\";s:11:\"placeholder\";s:31:\"Enter username or email address\";s:10:\"wrapper_id\";s:26:\"wrapper-1511347711918-1669\";}i:1;a:14:{s:2:\"id\";s:10:\"password-1\";s:10:\"element_id\";s:10:\"password-1\";s:7:\"form_id\";s:26:\"wrapper-1511347712118-1739\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:8:\"password\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:16:\"required_message\";s:25:\"Your password is required\";s:11:\"field_label\";s:8:\"Password\";s:11:\"placeholder\";s:19:\"Enter your password\";s:11:\"description\";s:146:\"<a href=\"https://choiceresources.co.uk/wp-login.php?action=lostpassword&redirect_to\" title=\"Lost Password\" target=\"_blank\">Lost your password?</a>\";s:22:\"confirm-password-label\";s:16:\"Confirm Password\";s:28:\"confirm-password-placeholder\";s:20:\"Confirm new password\";s:10:\"wrapper_id\";s:26:\"wrapper-1511347712118-1739\";}}s:8:\"settings\";a:94:{s:8:\"formName\";s:10:\"User Login\";s:17:\"pagination-header\";s:3:\"nav\";s:7:\"version\";s:6:\"1.21.0\";s:17:\"form-border-style\";s:4:\"none\";s:12:\"form-padding\";s:0:\"\";s:11:\"form-border\";s:0:\"\";s:12:\"fields-style\";s:4:\"open\";s:10:\"validation\";s:9:\"on_submit\";s:18:\"akismet-protection\";s:1:\"1\";s:10:\"form-style\";s:7:\"default\";s:11:\"enable-ajax\";s:4:\"true\";s:9:\"autoclose\";s:4:\"true\";s:20:\"submission-indicator\";s:4:\"show\";s:15:\"indicator-label\";s:13:\"Submitting...\";s:14:\"paginationData\";a:2:{s:24:\"pagination-header-design\";s:4:\"show\";s:17:\"pagination-header\";s:3:\"nav\";}s:9:\"form-type\";s:5:\"login\";s:20:\"submission-behaviour\";s:18:\"behaviour-redirect\";s:16:\"thankyou-message\";s:57:\"Thank you for contacting us, we will be in touch shortly.\";s:12:\"redirect-url\";s:39:\"https://choiceresources.co.uk/wp-admin/\";s:10:\"submitData\";a:2:{s:18:\"custom-submit-text\";s:5:\"Login\";s:27:\"custom-invalid-form-message\";s:53:\"Error: Your form is not valid, please fix the errors!\";}s:17:\"validation-inline\";s:1:\"1\";s:11:\"form-expire\";s:9:\"no_expire\";s:15:\"use-admin-email\";s:4:\"true\";s:17:\"admin-email-title\";s:0:\"\";s:18:\"admin-email-editor\";s:0:\"\";s:22:\"admin-email-recipients\";a:0:{}s:16:\"user-email-title\";s:0:\"\";s:17:\"user-email-editor\";s:0:\"\";s:16:\"form-padding-top\";s:1:\"0\";s:18:\"form-padding-right\";s:1:\"0\";s:19:\"form-padding-bottom\";s:1:\"0\";s:17:\"form-padding-left\";s:1:\"0\";s:17:\"form-border-width\";s:1:\"0\";s:18:\"form-border-radius\";s:1:\"0\";s:23:\"cform-label-font-family\";s:6:\"Roboto\";s:25:\"cform-label-custom-family\";s:0:\"\";s:21:\"cform-label-font-size\";s:2:\"12\";s:23:\"cform-label-font-weight\";s:4:\"bold\";s:23:\"cform-title-font-family\";s:6:\"Roboto\";s:25:\"cform-title-custom-family\";s:0:\"\";s:21:\"cform-title-font-size\";s:2:\"45\";s:23:\"cform-title-font-weight\";s:6:\"normal\";s:22:\"cform-title-text-align\";s:4:\"left\";s:26:\"cform-subtitle-font-family\";s:6:\"Roboto\";s:26:\"cform-subtitle-custom-font\";s:0:\"\";s:24:\"cform-subtitle-font-size\";s:2:\"18\";s:26:\"cform-subtitle-font-weight\";s:6:\"normal\";s:25:\"cform-subtitle-text-align\";s:4:\"left\";s:23:\"cform-input-font-family\";s:6:\"Roboto\";s:23:\"cform-input-custom-font\";s:0:\"\";s:21:\"cform-input-font-size\";s:2:\"16\";s:23:\"cform-input-font-weight\";s:6:\"normal\";s:23:\"cform-radio-font-family\";s:6:\"Roboto\";s:23:\"cform-radio-custom-font\";s:0:\"\";s:21:\"cform-radio-font-size\";s:2:\"14\";s:23:\"cform-radio-font-weight\";s:6:\"normal\";s:24:\"cform-select-font-family\";s:6:\"Roboto\";s:26:\"cform-select-custom-family\";s:0:\"\";s:22:\"cform-select-font-size\";s:2:\"16\";s:24:\"cform-select-font-weight\";s:6:\"normal\";s:29:\"cform-multiselect-font-family\";s:6:\"Roboto\";s:29:\"cform-multiselect-custom-font\";s:0:\"\";s:27:\"cform-multiselect-font-size\";s:2:\"16\";s:29:\"cform-multiselect-font-weight\";s:6:\"normal\";s:26:\"cform-dropdown-font-family\";s:6:\"Roboto\";s:26:\"cform-dropdown-custom-font\";s:0:\"\";s:24:\"cform-dropdown-font-size\";s:2:\"16\";s:26:\"cform-dropdown-font-weight\";s:6:\"normal\";s:26:\"cform-calendar-font-family\";s:6:\"Roboto\";s:26:\"cform-calendar-custom-font\";s:0:\"\";s:24:\"cform-calendar-font-size\";s:2:\"13\";s:26:\"cform-calendar-font-weight\";s:6:\"normal\";s:24:\"cform-button-font-family\";s:6:\"Roboto\";s:24:\"cform-button-custom-font\";s:0:\"\";s:22:\"cform-button-font-size\";s:2:\"14\";s:24:\"cform-button-font-weight\";s:3:\"500\";s:26:\"cform-timeline-font-family\";s:6:\"Roboto\";s:26:\"cform-timeline-custom-font\";s:0:\"\";s:24:\"cform-timeline-font-size\";s:2:\"12\";s:26:\"cform-timeline-font-weight\";s:6:\"normal\";s:28:\"cform-pagination-font-family\";s:0:\"\";s:28:\"cform-pagination-custom-font\";s:0:\"\";s:26:\"cform-pagination-font-size\";s:2:\"16\";s:28:\"cform-pagination-font-weight\";s:6:\"normal\";s:19:\"payment_require_ssl\";s:5:\"true,\";s:15:\"submission-file\";s:6:\"delete\";s:20:\"login-username-field\";s:6:\"text-1\";s:20:\"login-password-field\";s:10:\"password-1\";s:11:\"remember-me\";s:4:\"true\";s:17:\"remember-me-label\";s:11:\"Remember Me\";s:25:\"remember-me-cookie-number\";s:1:\"2\";s:23:\"remember-me-cookie-type\";s:5:\"weeks\";s:15:\"hide-login-form\";s:1:\"1\";s:25:\"hidden-login-form-message\";s:33:\"<p>You are already logged in.</p>\";}s:9:\"client_id\";N;s:22:\"integration_conditions\";a:0:{}s:9:\"behaviors\";a:1:{i:0;a:10:{s:4:\"slug\";s:18:\"behavior-1234-4567\";s:5:\"label\";s:0:\"\";s:14:\"autoclose-time\";i:5;s:9:\"autoclose\";s:4:\"true\";s:6:\"newtab\";s:7:\"sametab\";s:16:\"thankyou-message\";s:57:\"Thank you for contacting us, we will be in touch shortly.\";s:22:\"email-thankyou-message\";s:0:\"\";s:23:\"manual-thankyou-message\";s:0:\"\";s:20:\"submission-behaviour\";s:18:\"behaviour-redirect\";s:12:\"redirect-url\";s:39:\"https://choiceresources.co.uk/wp-admin/\";}}s:13:\"notifications\";a:0:{}}'),
(166903,20611,'forminator_form_meta','a:6:{s:6:\"fields\";a:2:{i:0;a:10:{s:2:\"id\";s:6:\"text-1\";s:10:\"element_id\";s:6:\"text-1\";s:7:\"form_id\";s:26:\"wrapper-1511347711918-1669\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:11:\"field_label\";s:25:\"Username or Email Address\";s:11:\"placeholder\";s:31:\"Enter username or email address\";s:10:\"wrapper_id\";s:26:\"wrapper-1511347711918-1669\";}i:1;a:14:{s:2:\"id\";s:10:\"password-1\";s:10:\"element_id\";s:10:\"password-1\";s:7:\"form_id\";s:26:\"wrapper-1511347712118-1739\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:8:\"password\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:16:\"required_message\";s:25:\"Your password is required\";s:11:\"field_label\";s:8:\"Password\";s:11:\"placeholder\";s:19:\"Enter your password\";s:11:\"description\";s:146:\"<a href=\"https://choiceresources.co.uk/wp-login.php?action=lostpassword&redirect_to\" title=\"Lost Password\" target=\"_blank\">Lost your password?</a>\";s:22:\"confirm-password-label\";s:16:\"Confirm Password\";s:28:\"confirm-password-placeholder\";s:20:\"Confirm new password\";s:10:\"wrapper_id\";s:26:\"wrapper-1511347712118-1739\";}}s:8:\"settings\";a:94:{s:8:\"formName\";s:10:\"User Login\";s:17:\"pagination-header\";s:3:\"nav\";s:7:\"version\";s:6:\"1.21.0\";s:17:\"form-border-style\";s:4:\"none\";s:12:\"form-padding\";s:0:\"\";s:11:\"form-border\";s:0:\"\";s:12:\"fields-style\";s:4:\"open\";s:10:\"validation\";s:9:\"on_submit\";s:18:\"akismet-protection\";s:1:\"1\";s:10:\"form-style\";s:7:\"default\";s:11:\"enable-ajax\";s:4:\"true\";s:9:\"autoclose\";s:4:\"true\";s:20:\"submission-indicator\";s:4:\"show\";s:15:\"indicator-label\";s:13:\"Submitting...\";s:14:\"paginationData\";a:2:{s:24:\"pagination-header-design\";s:4:\"show\";s:17:\"pagination-header\";s:3:\"nav\";}s:9:\"form-type\";s:5:\"login\";s:20:\"submission-behaviour\";s:18:\"behaviour-redirect\";s:16:\"thankyou-message\";s:57:\"Thank you for contacting us, we will be in touch shortly.\";s:12:\"redirect-url\";s:39:\"https://choiceresources.co.uk/wp-admin/\";s:10:\"submitData\";a:2:{s:18:\"custom-submit-text\";s:5:\"Login\";s:27:\"custom-invalid-form-message\";s:53:\"Error: Your form is not valid, please fix the errors!\";}s:17:\"validation-inline\";s:1:\"1\";s:11:\"form-expire\";s:9:\"no_expire\";s:15:\"use-admin-email\";s:4:\"true\";s:17:\"admin-email-title\";s:0:\"\";s:18:\"admin-email-editor\";s:0:\"\";s:22:\"admin-email-recipients\";a:0:{}s:16:\"user-email-title\";s:0:\"\";s:17:\"user-email-editor\";s:0:\"\";s:16:\"form-padding-top\";s:1:\"0\";s:18:\"form-padding-right\";s:1:\"0\";s:19:\"form-padding-bottom\";s:1:\"0\";s:17:\"form-padding-left\";s:1:\"0\";s:17:\"form-border-width\";s:1:\"0\";s:18:\"form-border-radius\";s:1:\"0\";s:23:\"cform-label-font-family\";s:6:\"Roboto\";s:25:\"cform-label-custom-family\";s:0:\"\";s:21:\"cform-label-font-size\";s:2:\"12\";s:23:\"cform-label-font-weight\";s:4:\"bold\";s:23:\"cform-title-font-family\";s:6:\"Roboto\";s:25:\"cform-title-custom-family\";s:0:\"\";s:21:\"cform-title-font-size\";s:2:\"45\";s:23:\"cform-title-font-weight\";s:6:\"normal\";s:22:\"cform-title-text-align\";s:4:\"left\";s:26:\"cform-subtitle-font-family\";s:6:\"Roboto\";s:26:\"cform-subtitle-custom-font\";s:0:\"\";s:24:\"cform-subtitle-font-size\";s:2:\"18\";s:26:\"cform-subtitle-font-weight\";s:6:\"normal\";s:25:\"cform-subtitle-text-align\";s:4:\"left\";s:23:\"cform-input-font-family\";s:6:\"Roboto\";s:23:\"cform-input-custom-font\";s:0:\"\";s:21:\"cform-input-font-size\";s:2:\"16\";s:23:\"cform-input-font-weight\";s:6:\"normal\";s:23:\"cform-radio-font-family\";s:6:\"Roboto\";s:23:\"cform-radio-custom-font\";s:0:\"\";s:21:\"cform-radio-font-size\";s:2:\"14\";s:23:\"cform-radio-font-weight\";s:6:\"normal\";s:24:\"cform-select-font-family\";s:6:\"Roboto\";s:26:\"cform-select-custom-family\";s:0:\"\";s:22:\"cform-select-font-size\";s:2:\"16\";s:24:\"cform-select-font-weight\";s:6:\"normal\";s:29:\"cform-multiselect-font-family\";s:6:\"Roboto\";s:29:\"cform-multiselect-custom-font\";s:0:\"\";s:27:\"cform-multiselect-font-size\";s:2:\"16\";s:29:\"cform-multiselect-font-weight\";s:6:\"normal\";s:26:\"cform-dropdown-font-family\";s:6:\"Roboto\";s:26:\"cform-dropdown-custom-font\";s:0:\"\";s:24:\"cform-dropdown-font-size\";s:2:\"16\";s:26:\"cform-dropdown-font-weight\";s:6:\"normal\";s:26:\"cform-calendar-font-family\";s:6:\"Roboto\";s:26:\"cform-calendar-custom-font\";s:0:\"\";s:24:\"cform-calendar-font-size\";s:2:\"13\";s:26:\"cform-calendar-font-weight\";s:6:\"normal\";s:24:\"cform-button-font-family\";s:6:\"Roboto\";s:24:\"cform-button-custom-font\";s:0:\"\";s:22:\"cform-button-font-size\";s:2:\"14\";s:24:\"cform-button-font-weight\";s:3:\"500\";s:26:\"cform-timeline-font-family\";s:6:\"Roboto\";s:26:\"cform-timeline-custom-font\";s:0:\"\";s:24:\"cform-timeline-font-size\";s:2:\"12\";s:26:\"cform-timeline-font-weight\";s:6:\"normal\";s:28:\"cform-pagination-font-family\";s:0:\"\";s:28:\"cform-pagination-custom-font\";s:0:\"\";s:26:\"cform-pagination-font-size\";s:2:\"16\";s:28:\"cform-pagination-font-weight\";s:6:\"normal\";s:19:\"payment_require_ssl\";s:5:\"true,\";s:15:\"submission-file\";s:6:\"delete\";s:20:\"login-username-field\";s:6:\"text-1\";s:20:\"login-password-field\";s:10:\"password-1\";s:11:\"remember-me\";s:4:\"true\";s:17:\"remember-me-label\";s:11:\"Remember Me\";s:25:\"remember-me-cookie-number\";s:1:\"2\";s:23:\"remember-me-cookie-type\";s:5:\"weeks\";s:15:\"hide-login-form\";s:1:\"1\";s:25:\"hidden-login-form-message\";s:33:\"<p>You are already logged in.</p>\";}s:9:\"client_id\";N;s:22:\"integration_conditions\";a:0:{}s:9:\"behaviors\";a:1:{i:0;a:10:{s:4:\"slug\";s:18:\"behavior-1234-4567\";s:5:\"label\";s:0:\"\";s:14:\"autoclose-time\";i:5;s:9:\"autoclose\";s:4:\"true\";s:6:\"newtab\";s:7:\"sametab\";s:16:\"thankyou-message\";s:57:\"Thank you for contacting us, we will be in touch shortly.\";s:22:\"email-thankyou-message\";s:0:\"\";s:23:\"manual-thankyou-message\";s:0:\"\";s:20:\"submission-behaviour\";s:18:\"behaviour-redirect\";s:12:\"redirect-url\";s:39:\"https://choiceresources.co.uk/wp-admin/\";}}s:13:\"notifications\";a:0:{}}'),
(166904,20612,'forminator_form_meta','a:6:{s:6:\"fields\";a:2:{i:0;a:11:{s:2:\"id\";s:6:\"text-1\";s:10:\"element_id\";s:6:\"text-1\";s:7:\"form_id\";s:26:\"wrapper-1511347711918-1669\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:11:\"field_label\";s:25:\"Username or Email Address\";s:11:\"placeholder\";s:31:\"Enter username or email address\";s:10:\"wrapper_id\";s:26:\"wrapper-1511347711918-1669\";s:10:\"conditions\";a:0:{}}i:1;a:15:{s:2:\"id\";s:10:\"password-1\";s:10:\"element_id\";s:10:\"password-1\";s:7:\"form_id\";s:26:\"wrapper-1511347712118-1739\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:8:\"password\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:16:\"required_message\";s:25:\"Your password is required\";s:11:\"field_label\";s:8:\"Password\";s:11:\"placeholder\";s:19:\"Enter your password\";s:11:\"description\";s:150:\"<a href=\"https://choiceresources.co.uk/wp-login.php?action=lostpassword&amp;redirect_to\" title=\"Lost Password\" target=\"_blank\">Lost your password?</a>\";s:22:\"confirm-password-label\";s:16:\"Confirm Password\";s:28:\"confirm-password-placeholder\";s:20:\"Confirm new password\";s:10:\"wrapper_id\";s:26:\"wrapper-1511347712118-1739\";s:10:\"conditions\";a:0:{}}}s:8:\"settings\";a:100:{s:17:\"pagination-header\";s:3:\"nav\";s:14:\"paginationData\";a:2:{s:24:\"pagination-header-design\";s:4:\"show\";s:17:\"pagination-header\";s:3:\"nav\";}s:8:\"formName\";s:10:\"User Login\";s:7:\"version\";s:6:\"1.22.1\";s:17:\"form-border-style\";s:4:\"none\";s:12:\"form-padding\";s:0:\"\";s:11:\"form-border\";s:0:\"\";s:12:\"fields-style\";s:4:\"open\";s:10:\"validation\";s:9:\"on_submit\";s:18:\"akismet-protection\";s:1:\"0\";s:10:\"form-style\";s:4:\"none\";s:11:\"enable-ajax\";s:4:\"true\";s:9:\"autoclose\";s:4:\"true\";s:20:\"submission-indicator\";s:4:\"show\";s:15:\"indicator-label\";s:13:\"Submitting...\";s:9:\"form-type\";s:5:\"login\";s:20:\"submission-behaviour\";s:18:\"behaviour-redirect\";s:16:\"thankyou-message\";s:57:\"Thank you for contacting us, we will be in touch shortly.\";s:12:\"redirect-url\";s:39:\"https://choiceresources.co.uk/wp-admin/\";s:10:\"submitData\";a:2:{s:18:\"custom-submit-text\";s:5:\"Login\";s:27:\"custom-invalid-form-message\";s:53:\"Error: Your form is not valid, please fix the errors!\";}s:17:\"validation-inline\";s:1:\"1\";s:11:\"form-expire\";s:9:\"no_expire\";s:15:\"use-admin-email\";s:4:\"true\";s:17:\"admin-email-title\";s:0:\"\";s:18:\"admin-email-editor\";s:0:\"\";s:22:\"admin-email-recipients\";a:0:{}s:16:\"user-email-title\";s:0:\"\";s:17:\"user-email-editor\";s:0:\"\";s:16:\"form-padding-top\";s:1:\"0\";s:18:\"form-padding-right\";s:1:\"0\";s:19:\"form-padding-bottom\";s:1:\"0\";s:17:\"form-padding-left\";s:1:\"0\";s:17:\"form-border-width\";s:1:\"0\";s:18:\"form-border-radius\";s:1:\"0\";s:23:\"cform-label-font-family\";s:6:\"Roboto\";s:25:\"cform-label-custom-family\";s:0:\"\";s:21:\"cform-label-font-size\";s:2:\"12\";s:23:\"cform-label-font-weight\";s:4:\"bold\";s:23:\"cform-title-font-family\";s:6:\"Roboto\";s:25:\"cform-title-custom-family\";s:0:\"\";s:21:\"cform-title-font-size\";s:2:\"45\";s:23:\"cform-title-font-weight\";s:6:\"normal\";s:22:\"cform-title-text-align\";s:4:\"left\";s:26:\"cform-subtitle-font-family\";s:6:\"Roboto\";s:26:\"cform-subtitle-custom-font\";s:0:\"\";s:24:\"cform-subtitle-font-size\";s:2:\"18\";s:26:\"cform-subtitle-font-weight\";s:6:\"normal\";s:25:\"cform-subtitle-text-align\";s:4:\"left\";s:23:\"cform-input-font-family\";s:6:\"Roboto\";s:23:\"cform-input-custom-font\";s:0:\"\";s:21:\"cform-input-font-size\";s:2:\"16\";s:23:\"cform-input-font-weight\";s:6:\"normal\";s:23:\"cform-radio-font-family\";s:6:\"Roboto\";s:23:\"cform-radio-custom-font\";s:0:\"\";s:21:\"cform-radio-font-size\";s:2:\"14\";s:23:\"cform-radio-font-weight\";s:6:\"normal\";s:24:\"cform-select-font-family\";s:6:\"Roboto\";s:26:\"cform-select-custom-family\";s:0:\"\";s:22:\"cform-select-font-size\";s:2:\"16\";s:24:\"cform-select-font-weight\";s:6:\"normal\";s:29:\"cform-multiselect-font-family\";s:6:\"Roboto\";s:29:\"cform-multiselect-custom-font\";s:0:\"\";s:27:\"cform-multiselect-font-size\";s:2:\"16\";s:29:\"cform-multiselect-font-weight\";s:6:\"normal\";s:26:\"cform-dropdown-font-family\";s:6:\"Roboto\";s:26:\"cform-dropdown-custom-font\";s:0:\"\";s:24:\"cform-dropdown-font-size\";s:2:\"16\";s:26:\"cform-dropdown-font-weight\";s:6:\"normal\";s:26:\"cform-calendar-font-family\";s:6:\"Roboto\";s:26:\"cform-calendar-custom-font\";s:0:\"\";s:24:\"cform-calendar-font-size\";s:2:\"13\";s:26:\"cform-calendar-font-weight\";s:6:\"normal\";s:24:\"cform-button-font-family\";s:6:\"Roboto\";s:24:\"cform-button-custom-font\";s:0:\"\";s:22:\"cform-button-font-size\";s:2:\"14\";s:24:\"cform-button-font-weight\";s:3:\"500\";s:26:\"cform-timeline-font-family\";s:6:\"Roboto\";s:26:\"cform-timeline-custom-font\";s:0:\"\";s:24:\"cform-timeline-font-size\";s:2:\"12\";s:26:\"cform-timeline-font-weight\";s:6:\"normal\";s:28:\"cform-pagination-font-family\";s:0:\"\";s:28:\"cform-pagination-custom-font\";s:0:\"\";s:26:\"cform-pagination-font-size\";s:2:\"16\";s:28:\"cform-pagination-font-weight\";s:6:\"normal\";s:19:\"payment_require_ssl\";s:5:\"true,\";s:15:\"submission-file\";s:6:\"delete\";s:20:\"login-username-field\";s:6:\"text-1\";s:20:\"login-password-field\";s:10:\"password-1\";s:11:\"remember-me\";s:4:\"true\";s:17:\"remember-me-label\";s:11:\"Remember Me\";s:25:\"remember-me-cookie-number\";s:1:\"2\";s:23:\"remember-me-cookie-type\";s:5:\"weeks\";s:15:\"hide-login-form\";s:1:\"1\";s:25:\"hidden-login-form-message\";s:33:\"<p>You are already logged in.</p>\";s:7:\"form_id\";s:5:\"20612\";s:17:\"store_submissions\";s:1:\"1\";s:9:\"form_name\";s:10:\"user-login\";s:11:\"form_status\";s:7:\"publish\";s:13:\"sc_email_link\";s:1:\"1\";s:10:\"sc_message\";s:417:\"<p>Your form has been saved as draft and a resume link has been generated so you can return to the form anytime within {retention_period} days from today. Copy and save the link or enter your email address below to have the link sent to your mail.</p><p>These fields weren\'t saved to your submission draft: Paypal, Stripe, Signature, Password, Captcha, and Upload. Kindly fill them out before submitting the form.</p>\";}s:9:\"client_id\";N;s:22:\"integration_conditions\";a:0:{}s:9:\"behaviors\";a:1:{i:0;a:10:{s:4:\"slug\";s:18:\"behavior-1234-4567\";s:5:\"label\";s:0:\"\";s:14:\"autoclose-time\";s:1:\"5\";s:9:\"autoclose\";s:4:\"true\";s:6:\"newtab\";s:7:\"sametab\";s:16:\"thankyou-message\";s:57:\"Thank you for contacting us, we will be in touch shortly.\";s:22:\"email-thankyou-message\";s:0:\"\";s:23:\"manual-thankyou-message\";s:0:\"\";s:20:\"submission-behaviour\";s:18:\"behaviour-redirect\";s:12:\"redirect-url\";s:49:\"https://choiceresources.co.uk/account-management/\";}}s:13:\"notifications\";a:0:{}}'),
(166905,20613,'forminator_form_meta','a:6:{s:6:\"fields\";a:3:{i:0;a:11:{s:2:\"id\";s:6:\"text-1\";s:10:\"element_id\";s:6:\"text-1\";s:7:\"form_id\";s:26:\"wrapper-1511347711918-1669\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:11:\"field_label\";s:25:\"Username or Email Address\";s:11:\"placeholder\";s:31:\"Enter username or email address\";s:10:\"wrapper_id\";s:26:\"wrapper-1511347711918-1669\";s:10:\"conditions\";a:0:{}}i:1;a:15:{s:2:\"id\";s:10:\"password-1\";s:10:\"element_id\";s:10:\"password-1\";s:7:\"form_id\";s:26:\"wrapper-1511347712118-1739\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:8:\"password\";s:4:\"cols\";s:2:\"12\";s:8:\"required\";s:4:\"true\";s:16:\"required_message\";s:25:\"Your password is required\";s:11:\"field_label\";s:8:\"Password\";s:11:\"placeholder\";s:19:\"Enter your password\";s:11:\"description\";s:150:\"<a href=\"https://choiceresources.co.uk/wp-login.php?action=lostpassword&amp;redirect_to\" title=\"Lost Password\" target=\"_blank\">Lost your password?</a>\";s:22:\"confirm-password-label\";s:16:\"Confirm Password\";s:28:\"confirm-password-placeholder\";s:20:\"Confirm new password\";s:10:\"wrapper_id\";s:26:\"wrapper-1511347712118-1739\";s:10:\"conditions\";a:0:{}}i:2;a:18:{s:2:\"id\";s:9:\"captcha-1\";s:10:\"element_id\";s:9:\"captcha-1\";s:7:\"form_id\";s:17:\"wrapper-3840-1351\";s:12:\"parent_group\";s:0:\"\";s:4:\"type\";s:7:\"captcha\";s:7:\"options\";a:0:{}s:4:\"cols\";s:2:\"12\";s:10:\"conditions\";a:0:{}s:10:\"wrapper_id\";s:17:\"wrapper-3840-1351\";s:16:\"captcha_provider\";s:9:\"recaptcha\";s:12:\"captcha_type\";s:11:\"v2_checkbox\";s:13:\"hcaptcha_type\";s:11:\"hc_checkbox\";s:15:\"score_threshold\";s:3:\"0.5\";s:13:\"captcha_badge\";s:11:\"bottomright\";s:19:\"hc_invisible_notice\";s:169:\"This site is protected by hCaptcha and its <a href=\"https://hcaptcha.com/privacy\">Privacy Policy</a> and <a href=\"https://hcaptcha.com/terms\">Terms of Service</a> apply.\";s:23:\"recaptcha_error_message\";s:48:\"reCAPTCHA verification failed. Please try again.\";s:22:\"hcaptcha_error_message\";s:47:\"hCaptcha verification failed. Please try again.\";s:13:\"captcha_theme\";s:5:\"light\";}}s:8:\"settings\";a:100:{s:17:\"pagination-header\";s:3:\"nav\";s:14:\"paginationData\";a:2:{s:24:\"pagination-header-design\";s:4:\"show\";s:17:\"pagination-header\";s:3:\"nav\";}s:8:\"formName\";s:10:\"User Login\";s:7:\"version\";s:6:\"1.22.1\";s:17:\"form-border-style\";s:4:\"none\";s:12:\"form-padding\";s:0:\"\";s:11:\"form-border\";s:0:\"\";s:12:\"fields-style\";s:4:\"open\";s:10:\"validation\";s:9:\"on_submit\";s:18:\"akismet-protection\";s:1:\"0\";s:10:\"form-style\";s:7:\"default\";s:11:\"enable-ajax\";s:4:\"true\";s:9:\"autoclose\";s:4:\"true\";s:20:\"submission-indicator\";s:4:\"show\";s:15:\"indicator-label\";s:13:\"Submitting...\";s:9:\"form-type\";s:5:\"login\";s:20:\"submission-behaviour\";s:18:\"behaviour-redirect\";s:16:\"thankyou-message\";s:57:\"Thank you for contacting us, we will be in touch shortly.\";s:12:\"redirect-url\";s:39:\"https://choiceresources.co.uk/wp-admin/\";s:10:\"submitData\";a:2:{s:18:\"custom-submit-text\";s:5:\"Login\";s:27:\"custom-invalid-form-message\";s:53:\"Error: Your form is not valid, please fix the errors!\";}s:17:\"validation-inline\";s:1:\"1\";s:11:\"form-expire\";s:9:\"no_expire\";s:15:\"use-admin-email\";s:4:\"true\";s:17:\"admin-email-title\";s:0:\"\";s:18:\"admin-email-editor\";s:0:\"\";s:22:\"admin-email-recipients\";a:0:{}s:16:\"user-email-title\";s:0:\"\";s:17:\"user-email-editor\";s:0:\"\";s:16:\"form-padding-top\";s:1:\"0\";s:18:\"form-padding-right\";s:1:\"0\";s:19:\"form-padding-bottom\";s:1:\"0\";s:17:\"form-padding-left\";s:1:\"0\";s:17:\"form-border-width\";s:1:\"0\";s:18:\"form-border-radius\";s:1:\"0\";s:23:\"cform-label-font-family\";s:6:\"Roboto\";s:25:\"cform-label-custom-family\";s:0:\"\";s:21:\"cform-label-font-size\";s:2:\"12\";s:23:\"cform-label-font-weight\";s:4:\"bold\";s:23:\"cform-title-font-family\";s:6:\"Roboto\";s:25:\"cform-title-custom-family\";s:0:\"\";s:21:\"cform-title-font-size\";s:2:\"45\";s:23:\"cform-title-font-weight\";s:6:\"normal\";s:22:\"cform-title-text-align\";s:4:\"left\";s:26:\"cform-subtitle-font-family\";s:6:\"Roboto\";s:26:\"cform-subtitle-custom-font\";s:0:\"\";s:24:\"cform-subtitle-font-size\";s:2:\"18\";s:26:\"cform-subtitle-font-weight\";s:6:\"normal\";s:25:\"cform-subtitle-text-align\";s:4:\"left\";s:23:\"cform-input-font-family\";s:6:\"Roboto\";s:23:\"cform-input-custom-font\";s:0:\"\";s:21:\"cform-input-font-size\";s:2:\"16\";s:23:\"cform-input-font-weight\";s:6:\"normal\";s:23:\"cform-radio-font-family\";s:6:\"Roboto\";s:23:\"cform-radio-custom-font\";s:0:\"\";s:21:\"cform-radio-font-size\";s:2:\"14\";s:23:\"cform-radio-font-weight\";s:6:\"normal\";s:24:\"cform-select-font-family\";s:6:\"Roboto\";s:26:\"cform-select-custom-family\";s:0:\"\";s:22:\"cform-select-font-size\";s:2:\"16\";s:24:\"cform-select-font-weight\";s:6:\"normal\";s:29:\"cform-multiselect-font-family\";s:6:\"Roboto\";s:29:\"cform-multiselect-custom-font\";s:0:\"\";s:27:\"cform-multiselect-font-size\";s:2:\"16\";s:29:\"cform-multiselect-font-weight\";s:6:\"normal\";s:26:\"cform-dropdown-font-family\";s:6:\"Roboto\";s:26:\"cform-dropdown-custom-font\";s:0:\"\";s:24:\"cform-dropdown-font-size\";s:2:\"16\";s:26:\"cform-dropdown-font-weight\";s:6:\"normal\";s:26:\"cform-calendar-font-family\";s:6:\"Roboto\";s:26:\"cform-calendar-custom-font\";s:0:\"\";s:24:\"cform-calendar-font-size\";s:2:\"13\";s:26:\"cform-calendar-font-weight\";s:6:\"normal\";s:24:\"cform-button-font-family\";s:6:\"Roboto\";s:24:\"cform-button-custom-font\";s:0:\"\";s:22:\"cform-button-font-size\";s:2:\"14\";s:24:\"cform-button-font-weight\";s:3:\"500\";s:26:\"cform-timeline-font-family\";s:6:\"Roboto\";s:26:\"cform-timeline-custom-font\";s:0:\"\";s:24:\"cform-timeline-font-size\";s:2:\"12\";s:26:\"cform-timeline-font-weight\";s:6:\"normal\";s:28:\"cform-pagination-font-family\";s:0:\"\";s:28:\"cform-pagination-custom-font\";s:0:\"\";s:26:\"cform-pagination-font-size\";s:2:\"16\";s:28:\"cform-pagination-font-weight\";s:6:\"normal\";s:19:\"payment_require_ssl\";s:5:\"true,\";s:15:\"submission-file\";s:6:\"delete\";s:20:\"login-username-field\";s:6:\"text-1\";s:20:\"login-password-field\";s:10:\"password-1\";s:11:\"remember-me\";s:4:\"true\";s:17:\"remember-me-label\";s:11:\"Remember Me\";s:25:\"remember-me-cookie-number\";s:1:\"2\";s:23:\"remember-me-cookie-type\";s:5:\"weeks\";s:15:\"hide-login-form\";s:1:\"1\";s:25:\"hidden-login-form-message\";s:33:\"<p>You are already logged in.</p>\";s:7:\"form_id\";s:5:\"20613\";s:17:\"store_submissions\";s:1:\"1\";s:9:\"form_name\";s:10:\"user-login\";s:11:\"form_status\";s:7:\"publish\";s:13:\"sc_email_link\";s:1:\"1\";s:10:\"sc_message\";s:417:\"<p>Your form has been saved as draft and a resume link has been generated so you can return to the form anytime within {retention_period} days from today. Copy and save the link or enter your email address below to have the link sent to your mail.</p><p>These fields weren\'t saved to your submission draft: Paypal, Stripe, Signature, Password, Captcha, and Upload. Kindly fill them out before submitting the form.</p>\";}s:9:\"client_id\";N;s:22:\"integration_conditions\";a:0:{}s:9:\"behaviors\";a:1:{i:0;a:10:{s:4:\"slug\";s:18:\"behavior-1234-4567\";s:5:\"label\";s:0:\"\";s:14:\"autoclose-time\";s:1:\"5\";s:9:\"autoclose\";s:4:\"true\";s:6:\"newtab\";s:7:\"sametab\";s:16:\"thankyou-message\";s:57:\"Thank you for contacting us, we will be in touch shortly.\";s:22:\"email-thankyou-message\";s:0:\"\";s:23:\"manual-thankyou-message\";s:0:\"\";s:20:\"submission-behaviour\";s:18:\"behaviour-redirect\";s:12:\"redirect-url\";s:49:\"https://choiceresources.co.uk/account-management/\";}}s:13:\"notifications\";a:0:{}}'),
(167142,20640,'mailchimp_woocommerce_campaign_id',''),
(167143,20640,'mailchimp_woocommerce_landing_site','https://choiceresources.co.uk/checkout/'),
(167144,20640,'_order_key','wc_order_DTtZYJdlS7BrR'),
(167145,20640,'_customer_user','0'),
(167146,20640,'_payment_method','paypal'),
(167147,20640,'_payment_method_title','PayPal'),
(167148,20640,'_customer_ip_address','31.94.28.199'),
(167149,20640,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36'),
(167150,20640,'_created_via','checkout'),
(167151,20640,'_cart_hash','9ed453dc4629356c9de1a1e224549cdf'),
(167152,20640,'_download_permissions_granted','yes'),
(167153,20640,'_recorded_sales','yes'),
(167154,20640,'_recorded_coupon_usage_counts','yes'),
(167155,20640,'_new_order_email_sent','true'),
(167156,20640,'_order_stock_reduced','yes'),
(167157,20640,'_billing_first_name','Ivan'),
(167158,20640,'_billing_last_name','Kulongo'),
(167159,20640,'_billing_address_1','22, SEYMOUR ROAD'),
(167160,20640,'_billing_address_2','LUTON'),
(167161,20640,'_billing_city','CHATHAM'),
(167162,20640,'_billing_state','Kent'),
(167163,20640,'_billing_postcode','ME5 7AE'),
(167164,20640,'_billing_country','GB'),
(167165,20640,'_billing_email','ivankulongo@hotmail.com'),
(167166,20640,'_billing_phone','07570544158'),
(167167,20640,'_order_currency','GBP'),
(167168,20640,'_cart_discount','0'),
(167169,20640,'_cart_discount_tax','0'),
(167170,20640,'_order_shipping','0'),
(167171,20640,'_order_shipping_tax','0'),
(167172,20640,'_order_tax','0'),
(167173,20640,'_order_total','69.99'),
(167174,20640,'_order_version','7.1.1'),
(167175,20640,'_prices_include_tax','no'),
(167176,20640,'_billing_address_index','Ivan Kulongo  22, SEYMOUR ROAD LUTON CHATHAM Kent ME5 7AE GB ivankulongo@hotmail.com 07570544158'),
(167177,20640,'_shipping_address_index','         '),
(167179,20640,'_wcf_flow_id','8120'),
(167180,20640,'_wcf_checkout_id','8121'),
(167181,20640,'mailchimp_woocommerce_is_subscribed','1'),
(167277,20640,'is_vat_exempt','no'),
(167343,20640,'_paypal_subscription_id','B-0GC126888M6260839'),
(167345,20640,'_transaction_id','3AA667145G006493J'),
(167346,20640,'_date_paid','1672970381'),
(167347,20640,'_paid_date','2023-01-06 01:59:41'),
(167350,20640,'_wc_memberships_access_granted','a:1:{i:20646;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(167355,20640,'_wc_memberships_access_granted','a:1:{i:20646;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(167360,8122,'_eael_custom_js',''),
(173992,5228,'_eael_widget_elements','a:2:{s:14:\"filter-gallery\";s:14:\"filter-gallery\";s:20:\"woo-product-carousel\";s:20:\"woo-product-carousel\";}'),
(176815,21684,'_edit_lock','1728232980:1'),
(176816,21684,'_elementor_edit_mode','builder'),
(176817,21684,'_edit_last','1'),
(176818,21684,'_wc_memberships_force_public','no'),
(176819,21684,'_wc_memberships_use_custom_page_content_restricted_message','no'),
(176820,21684,'_elementor_template_type','wp-page'),
(176821,21684,'_elementor_version','3.21.4'),
(176822,21684,'_elementor_pro_version','3.21.2'),
(176823,21684,'_wp_page_template','default'),
(176824,21684,'_elementor_page_settings','a:5:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:5:\"cover\";}'),
(176825,21684,'_elementor_data','[{\"id\":\"c94022d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"flex_align_items\":\"center\",\"boxed_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]}},\"elements\":[{\"id\":\"dc2e906\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30.447},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"flex_gap\":{\"unit\":\"px\",\"size\":17,\"sizes\":[],\"column\":\"17\",\"row\":\"17\",\"isLinked\":true},\"flex_wrap\":\"nowrap\",\"flex_justify_content\":\"flex-start\",\"flex_justify_content_tablet\":\"flex-start\",\"flex_align_items\":\"center\",\"width_tablet\":{\"unit\":\"px\",\"size\":275.562},\"flex_justify_content_mobile\":\"center\",\"flex_gap_tablet\":{\"column\":\"17\",\"row\":\"17\",\"isLinked\":true,\"unit\":\"px\",\"size\":17},\"flex_gap_mobile\":{\"column\":\"17\",\"row\":\"17\",\"isLinked\":true,\"unit\":\"px\",\"size\":17},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"672907c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">Welcome<\\/span> <span style=\\\"color: #10a4e3;\\\">to<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">Choice<\\/span>\\u00a0<span style=\\\"color: #11ba24;\\\">Shop<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"1\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c2cbf8e\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\",\"highlighted_text\":\"15%\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"off All Bundles\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"words_color\":\"#FF9A9A\",\"words_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_stroke_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_flex_size\":\"none\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_color\":\"#EB9215\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":334.547},\"_element_custom_width\":{\"unit\":\"%\",\"size\":91.195},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":216}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"e499e49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-down\",\"library\":\"fa-solid\"},\"title_text\":\"Hover to view discount code\",\"description_text\":\"\",\"position\":\"left\",\"position_mobile\":\"right\",\"primary_color\":\"#FFFFFF\",\"icon_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":323,\"sizes\":[]},\"rotate_mobile\":{\"unit\":\"deg\",\"size\":31},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":109.233},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":308.375},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_align\":\"left\",\"text_align_mobile\":\"right\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_font_family\":\"Dekko\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.36)\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b50d398\",\"elType\":\"widget\",\"settings\":{\"text\":\"Code: 30offCR24\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#11BA24\",\"background_color\":\"#11BA24\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#11BA24\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4925fee\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0242f74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bb33936\",\"elType\":\"widget\",\"settings\":{\"eael_woo_product_gallery_terms_show_all\":\"\",\"eael_woo_product_gallery_terms_all_text\":\"Choice Collection\",\"eael_woo_product_gallery_terms_thumb\":\"\",\"eael_product_gallery_products_count\":9,\"show_load_more_text\":\"Load More\",\"eael_product_gallery_item_typography_typography\":\"custom\",\"eael_product_gallery_item_background\":\"#10A4E3\",\"eael_product_gallery_product_title_color\":\"#0D42C0\",\"eael_product_gallery_product_title_typography_typography\":\"custom\",\"eael_product_gallery_product_title_typography_font_family\":\"Dekko\",\"eael_product_gallery_product_price_color\":\"#0D42C0\",\"eael_product_gallery_product_price_typography_typography\":\"custom\",\"eael_product_gallery_product_price_typography_text_decoration\":\"none\",\"eael_product_gallery_sale_badge_background\":\"#F8049C\",\"eael_product_gallery_buttons_background\":\"#10A4E3\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"eael-woo-product-gallery\"}],\"isInner\":true}],\"isInner\":true}]'),
(176826,21684,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(176855,21684,'_eael_custom_js',''),
(176856,21684,'_eael_widget_elements','a:1:{s:19:\"woo-product-gallery\";s:19:\"woo-product-gallery\";}'),
(176859,21689,'_menu_item_type','post_type'),
(176860,21689,'_menu_item_menu_item_parent','0'),
(176861,21689,'_menu_item_object_id','21684'),
(176862,21689,'_menu_item_object','page'),
(176863,21689,'_menu_item_target',''),
(176864,21689,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(176865,21689,'_menu_item_xfn',''),
(176866,21689,'_menu_item_url',''),
(176868,20549,'_wp_old_date','2023-01-06'),
(176871,20581,'_wp_old_date','2023-01-06'),
(176872,20572,'_wp_old_date','2023-01-06'),
(176882,20379,'_wp_old_date','2023-01-06'),
(176885,20575,'_wp_old_date','2023-01-06'),
(184254,8077,'_eael_custom_js',''),
(185143,22678,'mailchimp_woocommerce_campaign_id',''),
(185144,22678,'mailchimp_woocommerce_landing_site','https://choiceresources.co.uk/'),
(185145,22678,'_order_key','wc_order_Jy0Ng9sQHZOXf'),
(185146,22678,'_customer_user','0'),
(185147,22678,'_payment_method','paypal'),
(185148,22678,'_payment_method_title','PayPal'),
(185149,22678,'_customer_ip_address','213.205.211.210'),
(185150,22678,'_customer_user_agent','Mozilla/5.0 (Linux; Android 13; SM-G780G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Mobile Safari/537.36'),
(185151,22678,'_created_via','checkout'),
(185152,22678,'_cart_hash','190ca9e43085fce8302af9b70337252d'),
(185153,22678,'_download_permissions_granted','no'),
(185154,22678,'_recorded_sales','no'),
(185155,22678,'_recorded_coupon_usage_counts','no'),
(185156,22678,'_new_order_email_sent','false'),
(185157,22678,'_order_stock_reduced','no'),
(185158,22678,'_billing_first_name','Ivan'),
(185159,22678,'_billing_last_name','Kulongo'),
(185160,22678,'_billing_address_1','20'),
(185161,22678,'_billing_address_2','Hatfield Road'),
(185162,22678,'_billing_city','DAGENHAM'),
(185163,22678,'_billing_state','Essex'),
(185164,22678,'_billing_postcode','RM9 6JR'),
(185165,22678,'_billing_country','GB'),
(185166,22678,'_billing_email','amnakulongo@gmail.com'),
(185167,22678,'_billing_phone','07828737017'),
(185168,22678,'_order_currency','GBP'),
(185169,22678,'_cart_discount','0'),
(185170,22678,'_cart_discount_tax','0'),
(185171,22678,'_order_shipping','0'),
(185172,22678,'_order_shipping_tax','0'),
(185173,22678,'_order_tax','0'),
(185174,22678,'_order_total','62.50'),
(185175,22678,'_order_version','7.2.3'),
(185176,22678,'_prices_include_tax','no'),
(185177,22678,'_billing_address_index','Ivan Kulongo  20 Hatfield Road DAGENHAM Essex RM9 6JR GB amnakulongo@gmail.com 07828737017'),
(185178,22678,'_shipping_address_index','         '),
(185179,22678,'is_vat_exempt','no'),
(185180,22678,'_wcf_flow_id','8120'),
(185181,22678,'_wcf_checkout_id','8121'),
(185182,22678,'mailchimp_woocommerce_is_subscribed','1'),
(185254,22681,'mailchimp_woocommerce_campaign_id',''),
(185255,22681,'mailchimp_woocommerce_landing_site','https://choiceresources.co.uk/wc-api/wcs_paypal/?action=create_billing_agreement&token=EC-98X27533RH279720L&PayerID=VE5PDMEXM2GH2'),
(185256,22681,'_order_key','wc_order_tgIbiD3MCs8Fn'),
(185257,22681,'_customer_user','0'),
(185258,22681,'_payment_method','paypal'),
(185259,22681,'_payment_method_title','PayPal'),
(185260,22681,'_customer_ip_address','31.94.30.231'),
(185261,22681,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),
(185262,22681,'_created_via','checkout'),
(185263,22681,'_cart_hash','190ca9e43085fce8302af9b70337252d'),
(185264,22681,'_download_permissions_granted','yes'),
(185265,22681,'_recorded_sales','yes'),
(185266,22681,'_recorded_coupon_usage_counts','yes'),
(185267,22681,'_new_order_email_sent','true'),
(185268,22681,'_order_stock_reduced','yes'),
(185269,22681,'_billing_first_name','Amna'),
(185270,22681,'_billing_last_name','Kulongo'),
(185271,22681,'_billing_address_1','22, SEYMOUR ROAD'),
(185272,22681,'_billing_address_2','LUTON'),
(185273,22681,'_billing_city','CHATHAM'),
(185274,22681,'_billing_state','Kent'),
(185275,22681,'_billing_postcode','ME5 7AE'),
(185276,22681,'_billing_country','GB'),
(185277,22681,'_billing_email','amnakulongo@gmail.com'),
(185278,22681,'_billing_phone','07950212299'),
(185279,22681,'_order_currency','GBP'),
(185280,22681,'_cart_discount','0'),
(185281,22681,'_cart_discount_tax','0'),
(185282,22681,'_order_shipping','0'),
(185283,22681,'_order_shipping_tax','0'),
(185284,22681,'_order_tax','0'),
(185285,22681,'_order_total','62.50'),
(185286,22681,'_order_version','7.2.3'),
(185287,22681,'_prices_include_tax','no'),
(185288,22681,'_billing_address_index','Amna Kulongo  22, SEYMOUR ROAD LUTON CHATHAM Kent ME5 7AE GB amnakulongo@gmail.com 07950212299'),
(185289,22681,'_shipping_address_index','         '),
(185290,22681,'is_vat_exempt','no'),
(185291,22681,'_wcf_flow_id','8120'),
(185292,22681,'_wcf_checkout_id','8121'),
(185293,22681,'mailchimp_woocommerce_is_subscribed','1'),
(185359,22681,'_paypal_subscription_id','B-34D27024V93674520'),
(185361,22681,'_transaction_id','74V26381T18053104'),
(185362,22681,'_date_paid','1674662339'),
(185363,22681,'_paid_date','2023-01-25 15:58:59'),
(185366,22681,'_wc_memberships_access_granted','a:1:{i:22683;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(185371,22681,'_wc_memberships_access_granted','a:1:{i:22683;a:2:{s:15:\"already_granted\";s:3:\"yes\";s:21:\"granting_order_status\";s:10:\"processing\";}}'),
(185384,20549,'_wp_old_date','2023-01-19'),
(185387,21689,'_wp_old_date','2023-01-19'),
(185388,20581,'_wp_old_date','2023-01-19'),
(185389,20572,'_wp_old_date','2023-01-19'),
(199355,24475,'mailchimp_woocommerce_campaign_id',''),
(199356,24475,'mailchimp_woocommerce_landing_site','https://choiceresources.co.uk/wc-api/WC_Gateway_Paypal/'),
(199357,24475,'_order_key','wc_order_sT9eLtz09Q1ni'),
(199358,24475,'_customer_user','75'),
(199359,24475,'_payment_method','paypal'),
(199360,24475,'_payment_method_title','PayPal'),
(199361,24475,'_customer_ip_address','31.94.7.94'),
(199362,24475,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.5481.100 Safari/537.36'),
(199363,24475,'_created_via','checkout'),
(199364,24475,'_cart_hash','6988c7e476f77df3962e1e6c1eb76506'),
(199365,24475,'_download_permissions_granted','no'),
(199366,24475,'_recorded_sales','yes'),
(199367,24475,'_recorded_coupon_usage_counts','yes'),
(199368,24475,'_new_order_email_sent','true'),
(199369,24475,'_order_stock_reduced','yes'),
(199370,24475,'_billing_first_name','Amna'),
(199371,24475,'_billing_last_name','Kulongo'),
(199372,24475,'_billing_address_1','22 Seymour Road'),
(199373,24475,'_billing_city','Chatham'),
(199374,24475,'_billing_postcode','ME5 7AE'),
(199375,24475,'_billing_country','GB'),
(199376,24475,'_billing_email','amnakulongo@gmail.com'),
(199377,24475,'_billing_phone','07950212299'),
(199378,24475,'_shipping_first_name','Amna'),
(199379,24475,'_shipping_last_name','Kulongo'),
(199380,24475,'_shipping_address_1','22 Seymour Road'),
(199381,24475,'_shipping_city','Chatham'),
(199382,24475,'_shipping_postcode','ME5 7AE'),
(199383,24475,'_shipping_country','GB'),
(199384,24475,'_order_currency','GBP'),
(199385,24475,'_cart_discount','0'),
(199386,24475,'_cart_discount_tax','0'),
(199387,24475,'_order_shipping','3.95'),
(199388,24475,'_order_shipping_tax','0'),
(199389,24475,'_order_tax','0'),
(199390,24475,'_order_total','5.94'),
(199391,24475,'_order_version','7.2.3'),
(199392,24475,'_prices_include_tax','no'),
(199393,24475,'_billing_address_index','Amna Kulongo  22 Seymour Road  Chatham  ME5 7AE GB amnakulongo@gmail.com 07950212299'),
(199394,24475,'_shipping_address_index','Amna Kulongo  22 Seymour Road  Chatham  ME5 7AE GB '),
(199395,24475,'is_vat_exempt','no'),
(199396,24475,'_wcf_flow_id','8120'),
(199397,24475,'_wcf_checkout_id','8121'),
(199398,24475,'mailchimp_woocommerce_is_subscribed','1'),
(199399,24475,'Payment type','instant'),
(199400,24475,'_paypal_status','pending'),
(199401,24475,'_transaction_id','2T210393UP572243H'),
(199629,19861,'_elementor_controls_usage','a:3:{s:22:\"woocommerce-my-account\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_menu_icon_content\";a:1:{s:4:\"tabs\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:21:\"section_background_uc\";a:2:{s:18:\"uc_background_type\";i:1;s:32:\"blox_css_snow_bg_animation_speed\";i:1;}}}}}'),
(202154,20549,'_wp_old_date','2023-01-25'),
(202157,21689,'_wp_old_date','2023-01-25'),
(202158,20581,'_wp_old_date','2023-01-25'),
(202159,20572,'_wp_old_date','2023-01-25'),
(202160,20379,'_wp_old_date','2023-01-19'),
(202164,20575,'_wp_old_date','2023-01-19'),
(202189,24827,'_wp_page_template','elementor_header_footer'),
(202190,24827,'_cdp_origin','3'),
(202191,24827,'_cdp_origin_site','-1'),
(202192,24827,'_cdp_origin_title',' Privacy Policy #[Counter]'),
(202193,24827,'_cdp_counter','2'),
(202194,24827,'_wp_page_template','elementor_header_footer'),
(202195,24827,'_elementor_edit_mode','builder'),
(202196,24827,'_elementor_template_type','wp-page'),
(202197,24827,'_elementor_version','3.21.4'),
(202198,24827,'_elementor_pro_version','3.21.2'),
(202199,24827,'_elementor_data','[{\"id\":\"3a7eeae\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"background_color\":\"#B4E3FF\"},\"elements\":[{\"id\":\"77b9cf2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"e5f2b70\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\"},\"elements\":[{\"id\":\"6206973\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"100\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"9b73923\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"d9b70a4\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"woocommerce-product-rating\"},{\"id\":\"fd71117\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cookie Policy\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd315a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What are cookies?\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0de6898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This Cookie Policy explains what cookies are and how we use them, the types of cookies we use i.e, the information we collect using cookies and how that information is used, and how to manage the cookie settings.<\\/p><p>Cookies are small text files that are used to store small pieces of information. They are stored on your device when the website is loaded on your browser. These cookies help us make the website function properly, make it more secure, provide better user experience, and understand how the website performs and to analyze what works and where it needs improvement.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cac38c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How do we use cookies?\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45d0228\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As most of the online services, our website uses first-party and third-party cookies for several purposes. First-party cookies are mostly necessary for the website to function the right way, and they do not collect any of your personally identifiable data.<\\/p><p>The third-party cookies used on our website are mainly for understanding how the website performs, how you interact with our website, keeping our services secure, providing advertisements that are relevant to you, and all in all providing you with a better and improved user experience and help speed up your future interactions with our website.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7355a7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Types of Cookies we use:\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca0881f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Necessary<\\/h3><div class=\\\"cky-category-des\\\"><p>Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.<\\/p><table class=\\\"cky-cookie-audit-table\\\"><tbody><tr><td>cookieyes-consent<\\/td><td>1 year<\\/td><td>CookieYes sets this cookie to remember users\' consent preferences so that their preferences are respected on their subsequent visits to this site. It does not collect or store any personal information of the site visitors.<\\/td><\\/tr><tr><td>elementor<\\/td><td>never<\\/td><td>This cookie is used by the website\'s WordPress theme. It allows the website owner to implement or change the website\'s content in real-time.<\\/td><\\/tr><tr><td>woolentor_viewed_products_list<\\/td><td>5 days<\\/td><td>Woolentor set this cookie to store products in a cart.<\\/td><\\/tr><tr><td>woolentor_already_views_count_product<\\/td><td>session<\\/td><td>Woolentor set this cookie to store product count in cart.<\\/td><\\/tr><tr><td>woocommerce_items_in_cart<\\/td><td>session<\\/td><td>WooCommerce sets this cookie to record if there are any items in the WooCommerce shopping cart.<\\/td><\\/tr><tr><td>woocommerce_cart_hash<\\/td><td>session<\\/td><td>This cookie is set by WooCommerce. The cookie helps WooCommerce determine when cart contents\\/data changes.<\\/td><\\/tr><tr><td>wordpress_test_cookie<\\/td><td>session<\\/td><td>This cookie is used to check if the cookies are enabled on the users\' browser.<\\/td><\\/tr><\\/tbody><\\/table><\\/div><p>\\u00a0<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd1c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Functional<\\/h3><div class=\\\"cky-category-des\\\"><p>Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.<\\/p><table class=\\\"cky-cookie-audit-table\\\"><thead><tr><th>Cookie<\\/th><th>Duration<\\/th><th>Description<\\/th><\\/tr><\\/thead><tbody><tr><td>mailchimp_landing_site<\\/td><td>1 month<\\/td><td>The cookie is set by MailChimp to record which page the user first visited.<\\/td><\\/tr><\\/tbody><\\/table><\\/div>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d8efaeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Analytics<\\/h3><div class=\\\"cky-category-des\\\"><p>Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.<\\/p><table class=\\\"cky-cookie-audit-table\\\"><thead><tr><th>Cookie<\\/th><th>Duration<\\/th><th>Description<\\/th><\\/tr><\\/thead><tbody><tr><td>_gid<\\/td><td>1 day<\\/td><td>Installed by Google Analytics, _gid cookie stores information on how visitors use a website, while also creating an analytics report of the website\'s performance. Some of the data that are collected include the number of visitors, their source, and the pages they visit anonymously.<\\/td><\\/tr><tr><td>_gat_gtag_UA_*<\\/td><td>Less than a minute<\\/td><td>Google Analytics sets this cookie to store a unique user ID.<\\/td><\\/tr><tr><td>_ga_*<\\/td><td>1 year 1 month 4 days<\\/td><td>Google Analytics sets this cookie to store and count page views.<\\/td><\\/tr><tr><td>_ga<\\/td><td>1 year 1 month 4 days<\\/td><td>The _ga cookie, installed by Google Analytics, calculates visitor, session and campaign data and also keeps track of site usage for the site\'s analytics report. The cookie stores information anonymously and assigns a randomly generated number to recognize unique visitors.<\\/td><\\/tr><tr><td>__gads<\\/td><td>1 year 24 days<\\/td><td>The __gads cookie, set by Google, is stored under DoubleClick domain and tracks the number of times users see an advert, measures the success of the campaign and calculates its revenue. This cookie can only be read from the domain they are set on and will not track any data while browsing through other sites.<\\/td><\\/tr><\\/tbody><\\/table><\\/div>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a24ab11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Uncategorized<\\/h3><div class=\\\"cky-category-des\\\"><p>Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.<\\/p><table class=\\\"cky-cookie-audit-table\\\"><thead><tr><th>Cookie<\\/th><th>Duration<\\/th><th>Description<\\/th><\\/tr><\\/thead><tbody><tr><td>conv_person<\\/td><td>1 year 1 month 4 days<\\/td><td>No description available.<\\/td><\\/tr><tr><td>conv_session<\\/td><td>1 year 1 month 4 days<\\/td><td>No description available.<\\/td><\\/tr><tr><td>session<\\/td><td>session<\\/td><td>No description available.<\\/td><\\/tr><tr><td>cookies.js<\\/td><td>session<\\/td><td>No description available.<\\/td><\\/tr><tr><td>wp_woocommerce_session_1db4e2edd19fcea627f3a4e44cf4cd80<\\/td><td>2 days<\\/td><td>No description<\\/td><\\/tr><\\/tbody><\\/table><\\/div>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cf289ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manage cookie preferences\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"650e016\",\"elType\":\"widget\",\"settings\":{\"html\":\"<button class=\\\"cky-banner-element\\\">Change Cookie Preferences<\\/button>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"04ed980\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>You can change your cookie preferences any time by clicking the above link. This will let you revisit the cookie consent banner and change your preferences or withdraw your consent right away.<\\/p><p>In addition to this, different browsers provide different methods to block and delete cookies used by websites. You can change the settings of your browser to block\\/delete the cookies. Listed below are the links to the support documents on how to manage and delete cookies from the major web browsers.<\\/p><p>Chrome:\\u00a0<a href=\\\"https:\\/\\/support.google.com\\/accounts\\/answer\\/32050\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">https:\\/\\/support.google.com\\/accounts\\/answer\\/32050<\\/a><\\/p><p>Safari:\\u00a0<a href=\\\"https:\\/\\/support.apple.com\\/en-in\\/guide\\/safari\\/sfri11471\\/mac\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">https:\\/\\/support.apple.com\\/en-in\\/guide\\/safari\\/sfri11471\\/mac<\\/a><\\/p><p>Firefox:\\u00a0<a href=\\\"https:\\/\\/support.mozilla.org\\/en-US\\/kb\\/clear-cookies-and-site-data-firefox?redirectslug=delete-cookies-remove-info-websites-stored&amp;redirectlocale=en-US\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">https:\\/\\/support.mozilla.org\\/en-US\\/kb\\/clear-cookies-and-site-data-firefox?redirectslug=delete-cookies-remove-info-websites-stored&amp;redirectlocale=en-US<\\/a><\\/p><p>Internet Explorer:\\u00a0<a href=\\\"https:\\/\\/support.microsoft.com\\/en-us\\/topic\\/how-to-delete-cookie-files-in-internet-explorer-bca9446f-d873-78de-77ba-d42645fa52fc\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">https:\\/\\/support.microsoft.com\\/en-us\\/topic\\/how-to-delete-cookie-files-in-internet-explorer-bca9446f-d873-78de-77ba-d42645fa52fc<\\/a><\\/p><p>If you are using any other web browser, please visit your browser\\u2019s official support documents.<\\/p><\\/div><p class=\\\"cookie-policy-p\\\">Cookie Policy Generated By\\u00a0<a href=\\\"https:\\/\\/www.cookieyes.com\\/?utm_source=CP&amp;utm_medium=footer&amp;utm_campaign=UW\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">CookieYes - Cookie Policy Generator<\\/a>.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34d9a13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">To learn more about how we use these and your choices in relation to these tracking technologies, please refer to our\\u00a0<a href=\\\"https:\\/\\/choiceresources.co.uk\\/cookie-policy\\/\\\">Cookie Policy.<\\/a><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d61c7cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"privacy-policy-p\\\">Updated: May 9, 2024.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"65e6305\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"ed765eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"link\":{\"url\":\"#TOP\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-up\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_css_id\":\"TOP\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_background\":\"gradient\",\"background_color\":\"#02010100\",\"background_color_b\":\"#F2295B00\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"20e8655\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6f1a9f4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"TOP\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}]'),
(202200,24827,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(202203,24827,'_edit_last','1'),
(202213,24827,'_edit_lock','1715289460:1'),
(202262,24827,'_elementor_page_settings','a:4:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:8:\"gradient\";s:16:\"background_color\";s:7:\"#10A4E3\";s:18:\"background_color_b\";s:0:\"\";}'),
(202301,24827,'_eael_custom_js',''),
(202440,3,'_elementor_page_settings','a:4:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:8:\"gradient\";s:16:\"background_color\";s:7:\"#10A4E3\";s:18:\"background_color_b\";s:0:\"\";}'),
(202976,24907,'_wp_page_template','elementor_header_footer'),
(202977,24907,'_cdp_origin','3'),
(202978,24907,'_cdp_origin_site','-1'),
(202979,24907,'_cdp_origin_title',' Privacy Policy #[Counter]'),
(202980,24907,'_cdp_counter','3'),
(202981,24907,'_wp_page_template','elementor_header_footer'),
(202982,24907,'_elementor_edit_mode','builder'),
(202983,24907,'_elementor_template_type','wp-page'),
(202984,24907,'_elementor_version','3.21.4'),
(202985,24907,'_elementor_pro_version','3.21.2'),
(202986,24907,'_elementor_data','[{\"id\":\"477bb12\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"background_color\":\"#B4E3FF\"},\"elements\":[{\"id\":\"f7d061e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"e224e28\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"f65d32a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"100\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"81ff555\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca33d4c\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"woocommerce-product-rating\"},{\"id\":\"8f2149f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terms and Conditions \",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a863eee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By visiting and using Choicesresources.co.uk (hereinafter the \\u201cwebsite\\u201d), you accept and agree to be bound by these Terms and Conditions including our Privacy Policy posted on the website and incorporated herein by reference.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p>The term \\u201cyou\\u201d refers to anyone who uses, visits and\\/or views the website. Choiceresources.co.uk a brand name of Ognol UK Limited <span class=\\\"Apple-converted-space\\\">\\u00a0\\u00a0<\\/span>(\\u201ccompany\\u201d, \\u201cI\\u201d, \\u201cwe\\u201d or \\u201cus\\u201d) reserve the right to amend or modify these terms and conditions in its sole discretion at any time without notice and by using the website, you accept those amendments.<span class=\\\"Apple-converted-space\\\">\\u00a0\\u00a0<\\/span>It is your responsibility to periodically check the website for updates.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p><b>Your continued use of the website after posting of any changes to our Terms and Conditions constitutes your acceptance of those changes and updates. You must not access or use the website if you do not wish to be bound by these Terms and Conditions.<\\/b><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3155b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Policy\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d122a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are dedicated to respecting the privacy of your personal information. Your acceptance of our\\u00a0\\u00a0Privacy Policy is expressly incorporated into these Terms and Conditions. Please review our\\u00a0\\u00a0Privacy Policy for more information.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32466de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mandatory Arbitration & Governing Law \",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33d7a23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You expressly waive your right to bring any legal claims, now or in the future arising out of or related to the website and our products\\/services. In the event of any dispute, claim or controversy arising out of or relating to your use of this website, the terms and conditions shall be construed in accordance with the rules and regulations of United Kingdom.\\u00a0<\\/p><p>You agree to consent and submit to the jurisdiction of the United Kingdom\\u00a0 without regard to the principles of conflict of law or where the parties are located at the time a dispute arises.\\u00a0<\\/p><p>You agree to resolve any disputes or claims first through mandatory arbitration in the United Kingdom and shall bear the full cost of arbitration as permitted by law. Your good faith participation in arbitration is a condition precedent to pursuing any other legal or equitable remedies available such as litigation or any other legal procedure. You also agree that in the event a legal claim is initiated after the required arbitration, the prevailing party shall be entitled to recover reasonable attorney\\u2019s fees and other costs associated with the legal action.\\u00a0<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a794\",\"elType\":\"widget\",\"settings\":{\"title\":\"Intellectual Property\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bb021\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All content on this website, including but not limited to text, posts, logos, marks, graphics, files, materials, services, products, videos, audio, applications, computer code, designs, downloads and all other information here (collectively, the \\u201cContent\\u201d) is owned by us and is protected by copyright, trademark and other intellectual property and unfair competition laws with the exception of any content from others that we are lawfully permitted to use.\\u00a0\\u00a0You are granted a limited, revocable license to print or download Content from the website for your own personal, non-commercial, non-transferrable, informational and educational use only while ensuring it\\u2019s not in violation of any copyright, trademark, and intellectual property or proprietary rights.<\\/p><p>You agree not to copy, duplicate, steal, modify, publish, display, distribute, reproduce, store, transmit, post, create derivative works, reverse engineer, sell, rent or license any part of the Content in any way to anyone, without our prior written consent.\\u00a0\\u00a0You agree to abide by the copyright, trademark laws and intellectual property rights and shall be solely responsible for any violations of these terms and conditions.\\u00a0<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4573d22\",\"elType\":\"widget\",\"settings\":{\"title\":\"User Content &amp; Lawful use of the Website\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df1ca60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For any Content or information that you upload, display, post, transmit, send, email or submit to us on the website or on any of our social media sites, you warrant that you are the owner of that Content or have express permission from the owner of those intellectual property rights to use and distribute that Content to us.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p>You grant us and\\/or our officers, employees, successors, shareholders, joint venture partners or anyone else working with us a royalty-free, perpetual, irrevocable, worldwide, non-exclusive right and license to identify you, publish, post, reformat, copy, distribute, display, edit, reproduce any Content provided by you on our website and on any of our social media sites for any purpose. You shall be solely liable for any damages resulting from any infringement of copyrights, trademark or other proprietary rights of any Content or information that you provide to us.<\\/p><p>From time to time, the Content will utilize various plugins or widgets to allow sharing of content via social media channels, email or other methods. Use of these plugins or widgets does not constitute any waiver of this site\\u2019s intellectual property rights. Such use is a limited license to republish the content on the approved social media channels, with full credit to Choiceresources.co.uk.<\\/p><p>You agree not to upload, display, post, transmit, distribute, send, email or submit to us on the website or on any of our social media sites any information or Content that is-<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"color: #0d42c0;\\\"><strong>(a)<\\/strong><\\/span> illegal, violates or infringes upon the rights of others,<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p><strong><span style=\\\"color: #0d42c0;\\\">(b)<\\/span><\\/strong> defamatory, abusive, profane, hateful, vulgar, obscene, libelous, pornographic, threatening,<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p><strong><span style=\\\"color: #0d42c0;\\\">(c)<\\/span><\\/strong> encourages or advocates conduct that would constitute a criminal offense, giving rise to civil liability or otherwise violate any law,<\\/p><p><span style=\\\"color: #0d42c0;\\\"><strong>(d)<\\/strong><\\/span> distribute material including but not limited to spyware, computer virus, any kind of malicious computer software or any other harmful information that is actionable by law,<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"color: #0d42c0;\\\"><strong>(e)<\\/strong> <\\/span>any attempts to gain unauthorized access to any portion or feature of the website, and<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"color: #0d42c0;\\\"><strong>(f)<\\/strong><\\/span> send unsolicited or unauthorized material or cause disruption in the operation of the website. You agree to use the website for lawful purposes only and shall be liable for damages resulting from the violation of any provision contained in these Terms and Conditions.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a8c495e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Third-Party Links\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"922b9d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The website may contain links to third-party websites or resources for your convenience. We may serve as an affiliate for some of these third-party websites by offering or advertising their products or services on the website; however, we do not own or control these third-party websites. Once you click on a third-party link and leave this website, you are no longer bound by our terms and conditions.<\\/p><p>You agree that we are not responsible or liable for the accuracy, content or any information presented on these third-party websites. You assume all risks for using these third-party websites or resources and any transactions between you and these third-party websites are strictly between you and the third party. We shall not be liable for any damages resulting from your use of these third-party websites or resources.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c2c8533\",\"elType\":\"widget\",\"settings\":{\"title\":\"Use of our Paid & Free Products\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"004285f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We may offer free products for you to download and also sell paid courses, programs, physical or digital products and any other related materials (collectively, \\u201cproducts\\u201d) on this website. All our products and\\/or services including all content are protected by copyright pursuant to the UK and international copyright laws. You are granted a limited revocable license to print or download Content from our digital products for your own personal, non-commercial, non-transferrable, informational and educational use only while ensuring it\\u2019s not in violation of any copyright, trademark, and intellectual property or proprietary rights. Copying or storing our content for other than personal use is expressly prohibited without our prior written consent.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p>You acknowledge and agree that you have no right to share, modify, sell, edit, copy, reproduce, create derivative works of, reverse engineer, enhance or in any exploit our products. You cannot sell or redistribute any of our products, whether free or paid ones, without our express written consent.<span class=\\\"Apple-converted-space\\\">\\u00a0\\u00a0<\\/span>You agree to abide by the copyright, trademark laws and intellectual property rights and shall be solely responsible for any violations of these terms and conditions.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0f3d0ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Termination\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d60eb79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We reserve the right in our sole discretion to refuse, remove, restrict your access, revoke and terminate your use of our website including any or all Content published by you or us at any time for any reason, without notice.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c9675\",\"elType\":\"widget\",\"settings\":{\"title\":\"No Refunds\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd30\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All sales of products and\\/or services on this website are final unless otherwise stated on the purchase page.\\u00a0No refunds will be issued unless clearly indicated on your checkout page. We truly believe in giving more than receiving and each of our products and services is designed by keeping this core principle in mind. The prices are intentionally kept reasonably low in price as compared to market value to give you the tools and information you need at an affordable price.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0bb2d97\",\"elType\":\"widget\",\"settings\":{\"title\":\"No Warranties\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fc35afe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ALL CONTENT, INFORMATION, PRODUCTS AND\\/OR SERVICES ON THE WEBSITE ARE \\u201cAS IS\\u201d AND \\u201cAS AVAILABLE\\u201d BASIS WITHOUT ANY REPRESENTATIONS OR WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE, EXPRESS OR IMPLIED TO THE FULL EXTENT PERMISSIBLE BY LAW. COMPANY MAKES NO REPRESENTATIONS OR WARRANTIES AS TO THE CONTENT, INFORMATION, MATERIALS, PRODUCTS AND\\/OR SERVICES PROVIDED ON THIS WEBSITE. COMPANY MAKES NO WARRANTIES THAT THE WEBSITE WILL PERFORM OR OPERATE TO MEET YOUR REQUIREMENTS OR THAT THE INFORMATION PRESENTED HERE WILL BE COMPLETE, CURRENT OR ERROR-FREE. COMPANY DISCLAIMS ALL WARRANTIES, IMPLIED AND EXPRESS FOR ANY PURPOSE TO THE FULL EXTENT PERMITTED BY LAW.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b543acd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Take Down Requests\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8e6719c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From time to time, this site will publish posts with images from other third-party websites. Any such use is intended considered fair use under copyright laws and is fully attributed to the owner. If you believe that your copyrighted work has been used on the Website in a way that constitutes copyright infringement and falls outside of fair use, please send a request to info@choiceresources.co.uk and we will remove the image within 5-7 working days .<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"04b1f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Limitation of Liability\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd1cfcb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You agree that under no circumstances, we and\\/or our officers, employees, successors, shareholders, joint venture partners or anyone else working with us shall be liable for any direct, indirect, incidental, consequential, equitable, special, punitive, exemplary or any other damages resulting from your use of this website including but not limited to all the content, information, products, services and graphics presented here.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p>You expressly agree that your use of the website is at your sole risk and that you are solely responsible for the accuracy of the personal and any information you provide, the outcome of your actions, personal and business results, and for all other use in connection with the website.<\\/p><p>You also expressly agree that we and\\/or our officers, employees, successors, shareholders, joint venture partners or anyone else working with us shall not be liable to you for any damages resulting from 1) any errors or omissions on the website, delay or denial of any products or services, failure of performance of any kind, interruption in the operation and your use of the website, website attacks including computer virus, hacking of information, and any other system failures; 2) any loss of income, use, data, revenue, profits, business or any goodwill related to the website; 3) any theft or unauthorized access by third party of your information from the website regardless of our negligence; and 4) any use or misuse of the information, products and\\/or services offered here.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p>This limitation of liability shall apply whether such liability arises from negligence, breach of contract, tort or any other legal theory of liability. You agree that we provide no express or implied guarantees to you for the content presented here, and you accept that no particular results are being promised to you here.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"567bb3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Indemnification\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0b3052b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You agree to indemnify and hold the Company and\\/or its officers, employees, successors, shareholders, joint venture partners or anyone else working with us harmless from all losses, claims, damages, demands, actions, suits, proceedings or judgments, including costs, expenses and reasonable attorneys\\u2019 fees (\\u201cLiabilities\\u201d) assessed against or otherwise incurred by you arising, in whole or in part, from: (a) actions or omissions, whether done negligently or otherwise, by you, your agents, directors, officers, employees or representatives; (b) all your actions and use of the website including purchasing products and services; (c) violation of any laws, rules, regulations or ordinances by you; or (d) violation of any terms and conditions of this website by you or anyone related to you; e) infringement by you or any other user of your account of any intellectual property or other rights of anyone. The Company will notify you promptly of any such claims or liability and reserves the right to defend such claim, liability or damage at your expense. You shall fully cooperate and provide assistance to us if requested, without any cost, to defend any such claims.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ee8151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Entire Agreement\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"035ec3a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>These Terms and Conditions along with our Privacy Policy\\u00a0 constitute the entire agreement between you and us with respect to this website. It supersedes all prior or contemporaneous communications, discussions, negotiations or proposals we may have had with you whether electronic, oral or written.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p><p>A printed version of this entire agreement including the Privacy Policy\\u00a0 and of any notice given in electronic form shall be admissible in judicial or administrative proceedings with respect to this website to the same extent and given the same effect as other business contracts and documents kept and maintained in printed form.<span class=\\\"Apple-converted-space\\\">\\u00a0<\\/span><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d05c10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Severability\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74a8344\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If any provision in these Terms and Conditions is deemed by a court, regulatory authority or other public or private tribunal of competent jurisdiction to be invalid or unenforceable, such provision is deemed to have been omitted from this Agreement. The remainder of this Agreement remains in full force and effect, and is modified to any extent necessary to give such force and effect to the remaining provisions, but only to such extent.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10f14b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3283614\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For any questions, please contact us at info@choiceresources.co.uk<\\/p><p>Updated: May 9, 2024.<\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"78163de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"68a55c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"link\":{\"url\":\"#TOP\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-up\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_css_id\":\"TOP\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_background\":\"gradient\",\"background_color\":\"#02010100\",\"background_color_b\":\"#F2295B00\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d09b757\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d713d6c\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"TOP\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}]'),
(202987,24907,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(202988,24907,'_elementor_page_settings','a:4:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:8:\"gradient\";s:16:\"background_color\";s:7:\"#10A4E3\";s:18:\"background_color_b\";s:0:\"\";}'),
(203021,24907,'_edit_last','1'),
(203032,24907,'_edit_lock','1715286668:1'),
(203097,24907,'_eael_custom_js',''),
(206677,28,'_eael_custom_js',''),
(206727,20379,'_wp_old_date','2023-03-15'),
(206730,20575,'_wp_old_date','2023-03-15'),
(206731,20549,'_wp_old_date','2023-03-15'),
(206733,21689,'_wp_old_date','2023-03-15'),
(206734,20581,'_wp_old_date','2023-03-15'),
(206735,20572,'_wp_old_date','2023-03-15'),
(211255,20549,'_wp_old_date','2023-03-24'),
(211257,21689,'_wp_old_date','2023-03-24'),
(211258,20581,'_wp_old_date','2023-03-24'),
(211259,20572,'_wp_old_date','2023-03-24'),
(211260,20379,'_wp_old_date','2023-03-24'),
(211263,20575,'_wp_old_date','2023-03-24'),
(213153,20612,'_wp_old_date','2023-01-06'),
(213210,29,'_elementor_controls_usage','a:3:{s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:15:\"stax-visibility\";a:2:{s:31:\"stax_visibility_general_section\";a:1:{s:25:\"stax_visibility_show_hide\";i:1;}s:33:\"stax_visibility_user_role_section\";a:2:{s:33:\"stax_visibility_user_role_enabled\";i:1;s:36:\"stax_visibility_user_role_conditions\";i:1;}}}}}'),
(218360,26651,'_elementor_source','post'),
(218361,26651,'_elementor_edit_mode','builder'),
(218362,26651,'_elementor_template_type','popup'),
(218363,26651,'_elementor_version','3.12.1'),
(218364,26651,'_elementor_pro_version','3.12.0'),
(218365,26651,'_edit_lock','1683308795:1'),
(218408,26651,'_wp_page_template','default'),
(218409,26651,'_elementor_page_settings','a:18:{s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:530;s:5:\"sizes\";a:0:{}}s:19:\"horizontal_position\";s:5:\"right\";s:17:\"vertical_position\";s:6:\"bottom\";s:18:\"entrance_animation\";s:12:\"slideInRight\";s:14:\"exit_animation\";s:12:\"slideInRight\";s:27:\"entrance_animation_duration\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"1\";s:5:\"sizes\";a:0:{}}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F3EF\";s:26:\"box_shadow_box_shadow_type\";s:0:\"\";s:24:\"overlay_background_color\";s:9:\"#000000B3\";s:21:\"close_button_vertical\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}s:23:\"close_button_horizontal\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:3:\"101\";s:5:\"sizes\";a:0:{}}s:18:\"close_button_color\";s:7:\"#FFFFFF\";s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"370\";s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"320\";s:5:\"sizes\";a:0:{}}s:11:\"__globals__\";a:3:{s:16:\"background_color\";s:0:\"\";s:24:\"overlay_background_color\";s:0:\"\";s:18:\"close_button_color\";s:0:\"\";}}'),
(218410,26651,'_elementor_data','[{\"id\":\"7f75f3b1\",\"elType\":\"container\",\"settings\":{\"layout\":\"full_width\",\"flex_gap\":{\"size\":0,\"unit\":\"px\"},\"_title\":\"Popup\",\"flex_direction\":\"column\",\"flex_align_items\":\"stretch\",\"content_width\":\"full\",\"min_height\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"clouds_image_one\":{\"id\":26681,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/1-3.png\"},\"clouds_image_two\":{\"id\":26682,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/2-3.png\"},\"clouds_image_three\":{\"id\":26683,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/3-3.png\"},\"clouds_image_four\":{\"id\":26684,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/4-3.png\"},\"wave_animation_wave_top\":{\"id\":26685,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/wave-top-3.png\"},\"wave_animation_wave_middle\":{\"id\":26686,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/wave-mid-3.png\"},\"wave_animation_wave_bottom\":{\"id\":26687,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/wave-bot-3.png\"}},\"elements\":[{\"id\":\"46b95fb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":26688,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/beige-illustrative-pop-up-market-poster.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d55cf6e\",\"elType\":\"container\",\"settings\":{\"_column_size\":\"100\",\"flex_gap\":{\"size\":30,\"unit\":\"px\"},\"boxed_width\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_gap_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"5\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"clouds_image_one\":{\"id\":26674,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/1-2.png\"},\"clouds_image_two\":{\"id\":26675,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/2-2.png\"},\"clouds_image_three\":{\"id\":26676,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/3-2.png\"},\"clouds_image_four\":{\"id\":26677,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/4-2.png\"},\"wave_animation_wave_top\":{\"id\":26678,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/wave-top-2.png\"},\"wave_animation_wave_middle\":{\"id\":26679,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/wave-mid-2.png\"},\"wave_animation_wave_bottom\":{\"id\":26680,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/wave-bot-2.png\"}},\"elements\":[{\"id\":\"be13b5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div><p>Access all resources and videos by subscribing to our yearly plan today!<\\/p><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Imprima\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.45\",\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":96.8970000000000055706550483591854572296142578125},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_flex_order\":\"start\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9198e5\",\"elType\":\"widget\",\"settings\":{\"product_id\":\"1067\",\"button_type\":\"success\",\"text\":\"Subscribe\",\"align\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_background\":\"gradient\",\"background_color\":\"#F38E05\",\"background_color_b\":\"\",\"_flex_order\":\"end\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_transform_translate_popover\":\"transform\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"wc-add-to-cart\"}],\"isInner\":false}],\"isInner\":false}]'),
(218411,26651,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),
(218412,26651,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:1:{s:16:\"scrolling_offset\";i:90;}s:6:\"timing\";a:0:{}}'),
(218433,26651,'_eael_custom_js',''),
(218986,26651,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:21:\"typography_font_style\";i:1;s:26:\"typography_text_decoration\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:11:\"_flex_order\";i:1;}}}}s:14:\"wc-add-to-cart\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_product\";a:1:{s:10:\"product_id\";i:1;}s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"icon_indent\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:17:\"button_text_color\";i:1;s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:11:\"_flex_order\";i:1;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:28:\"_transform_translateY_effect\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:8:\"flex_gap\";i:2;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:2;s:20:\"flex_justify_content\";i:1;s:16:\"flex_align_items\";i:1;s:13:\"content_width\";i:1;s:10:\"min_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_background_uc\";a:7:{s:16:\"clouds_image_one\";i:2;s:16:\"clouds_image_two\";i:2;s:18:\"clouds_image_three\";i:2;s:17:\"clouds_image_four\";i:2;s:23:\"wave_animation_wave_top\";i:2;s:26:\"wave_animation_wave_middle\";i:2;s:26:\"wave_animation_wave_bottom\";i:2;}}}}}'),
(246967,30257,'_wp_attached_file','2023/10/Choice-Logo-Banner-4-1.png'),
(246968,30257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1563;s:6:\"height\";i:469;s:4:\"file\";s:34:\"2023/10/Choice-Logo-Banner-4-1.png\";s:8:\"filesize\";i:33313;s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"Choice-Logo-Banner-4-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23089;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"Choice-Logo-Banner-4-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5198;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:34:\"Choice-Logo-Banner-4-1-399x120.png\";s:5:\"width\";i:399;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19432;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Choice-Logo-Banner-4-1-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13193;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Choice-Logo-Banner-4-1-1024x307.png\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73501;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Choice-Logo-Banner-4-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:8850;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Choice-Logo-Banner-4-1-768x230.png\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48481;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"Choice-Logo-Banner-4-1-1536x461.png\";s:5:\"width\";i:1536;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132811;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(251187,17437,'_renewal_login_token','a:2:{s:7:\"expires\";i:1702517299;s:5:\"token\";s:32:\"DCKvTnz1t9GM99uJfT7XFltJ930mGXOq\";}'),
(251676,30818,'_elementor_source','post'),
(251677,30818,'_elementor_edit_mode','builder'),
(251678,30818,'_elementor_template_type','popup'),
(251679,30818,'_elementor_version','3.16.3'),
(251680,30818,'_elementor_pro_version','3.16.1'),
(251681,30818,'_edit_lock','1700133739:1'),
(251711,30818,'_wp_page_template','default'),
(251712,30818,'_elementor_page_settings','a:16:{s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:3:\"400\";s:5:\"sizes\";a:0:{}}s:11:\"height_type\";s:13:\"fit_to_screen\";s:6:\"height\";a:3:{s:4:\"unit\";s:2:\"vh\";s:4:\"size\";s:3:\"100\";s:5:\"sizes\";a:0:{}}s:19:\"horizontal_position\";s:5:\"right\";s:18:\"entrance_animation\";s:11:\"fadeInRight\";s:14:\"exit_animation\";s:11:\"fadeInRight\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#16163f\";s:21:\"close_button_vertical\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:3:\"3.3\";s:5:\"sizes\";a:0:{}}s:23:\"close_button_horizontal\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:3:\"6.6\";s:5:\"sizes\";a:0:{}}s:18:\"close_button_color\";s:7:\"#ffffff\";s:9:\"icon_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:2:\"18\";s:5:\"sizes\";a:0:{}}s:13:\"height_mobile\";a:3:{s:4:\"unit\";s:2:\"vh\";s:4:\"size\";s:3:\"100\";s:5:\"sizes\";a:0:{}}s:26:\"horizontal_position_mobile\";s:6:\"center\";s:24:\"vertical_position_mobile\";s:6:\"center\";}'),
(251713,30818,'_elementor_data','[{\"id\":\"1e860749\",\"elType\":\"container\",\"settings\":{\"_title\":\"Information Popup\",\"min_height\":{\"unit\":\"vh\",\"size\":\"100\",\"sizes\":[]},\"flex_align_items\":\"stretch\",\"content_position\":\"middle\",\"flex_direction\":\"column\",\"flex_gap\":{\"size\":20,\"unit\":\"px\",\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"clouds_image_one\":{\"id\":30820,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/1.png\"},\"clouds_image_two\":{\"id\":30821,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/2.png\"},\"clouds_image_three\":{\"id\":30822,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/3.png\"},\"clouds_image_four\":{\"id\":30823,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/4.png\"},\"wave_animation_wave_top\":{\"id\":30824,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/wave-top.png\"},\"wave_animation_wave_middle\":{\"id\":30825,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/wave-mid.png\"},\"wave_animation_wave_bottom\":{\"id\":30826,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/wave-bot.png\"}},\"elements\":[{\"id\":\"66d2287a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30423,\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2021\\/03\\/Choice-Logo-Banner-3.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"link_to\":\"custom\",\"width\":{\"unit\":\"%\",\"size\":\"35\",\"sizes\":[]},\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"2e157e4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"626d5ee1\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"editor\":\"<p>Our goal is to help people in the best way possible. this is a basic principle in every case and cause for success. contact us today for a free consultation.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b973adb\",\"elType\":\"widget\",\"settings\":{\"color\":\"rgba(255,255,255,0.2)\",\"text\":\"Divider\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"160f1625\",\"elType\":\"widget\",\"settings\":{\"title\":\"Practice Areas\",\"title_color\":\"#d3b574\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"align\":\"left\",\"align_tablet\":\"left\",\"typography_text_transform\":\"capitalize\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78a6dc05\",\"elType\":\"widget\",\"settings\":{\"layout\":\"vertical\",\"align_items\":\"left\",\"dropdown\":\"none\",\"full_width\":\"stretch\",\"text_align\":\"center\",\"toggle_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"menu_typography_font_weight\":\"200\",\"menu_typography_text_transform\":\"capitalize\",\"color_menu_item\":\"#ffffff\",\"color_menu_item_hover\":\"#d3b574\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"color_dropdown_item\":\"#16163f\",\"color_dropdown_item_hover\":\"#d3b574\",\"background_color_dropdown_item_hover\":\"rgba(0,0,0,0)\",\"color_dropdown_item_active\":\"#d3b574\",\"background_color_dropdown_item_active\":\"rgba(0,0,0,0)\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_family\":\"Montserrat\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"15\",\"blur\":\"20\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"padding_horizontal_dropdown_item\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"padding_vertical_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"dropdown_top_distance_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"toggle_color\":\"#16163f\",\"toggle_background_color\":\"#ffffff\",\"menu\":\"main-menu\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"5ea277a5\",\"elType\":\"widget\",\"settings\":{\"color\":\"rgba(255,255,255,0.2)\",\"text\":\"Divider\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"125edff0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#d3b574\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"align\":\"left\",\"align_tablet\":\"left\",\"typography_text_transform\":\"capitalize\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e081f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sign up to our newsletter<\\/p>\",\"text_color\":\"#d7d7d9\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"57a240a5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"b1cb9df\",\"rows\":\"4\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"previous_button\":\"\",\"next_button\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"Send\",\"button_align\":\"end\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"35\",\"sizes\":[]},\"field_text_color\":\"#ffffff\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"field_typography_text_transform\":\"capitalize\",\"field_background_color\":\"rgba(255,255,255,0)\",\"field_border_color\":\"rgba(215,215,217,0.5)\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_background_color\":\"rgba(211,181,116,0)\",\"button_text_color\":\"#d3b574\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Montserrat\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"400\",\"button_typography_text_transform\":\"capitalize\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"selected_button_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"button_icon_align\":\"right\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"ivankulongo@gmail.com\",\"email_subject\":\"New message from &quot;Choice Resources&quot;\",\"email_from\":\"email@choiceresources.co.uk\",\"email_from_name\":\"Choice Resources\",\"email_to_2\":\"ivankulongo@gmail.com\",\"email_subject_2\":\"New message from &quot;Choice Resources&quot;\",\"email_from_2\":\"email@choiceresources.co.uk\",\"email_from_name_2\":\"Choice Resources\",\"email_reply_to_2\":\"ivankulongo@gmail.com\",\"server_message\":\"Your submission failed because of a server error.\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}]'),
(251722,30818,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),
(251723,30818,'_eael_custom_js',''),
(251725,30818,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),
(251726,30818,'_elementor_popup_display_settings','a:2:{s:8:\"triggers\";a:0:{}s:6:\"timing\";a:1:{s:7:\"devices\";s:3:\"yes\";}}'),
(251754,30818,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:10:\"image_size\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:2;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:6:{s:6:\"layout\";i:1;s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:10:\"text_align\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:10:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:18:\"menu_space_between\";i:1;}s:22:\"section_style_dropdown\";a:14:{s:19:\"color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:26:\"color_dropdown_item_active\";i:1;s:37:\"background_color_dropdown_item_active\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_family\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;s:35:\"dropdown_box_shadow_box_shadow_type\";i:1;s:30:\"dropdown_box_shadow_box_shadow\";i:1;s:32:\"padding_horizontal_dropdown_item\";i:1;s:30:\"padding_vertical_dropdown_item\";i:1;s:21:\"dropdown_top_distance\";i:1;}s:12:\"style_toggle\";a:2:{s:12:\"toggle_color\";i:1;s:23:\"toggle_background_color\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:3:{s:12:\"button_align\";i:1;s:20:\"selected_button_icon\";i:1;s:17:\"button_icon_align\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:15:\"invalid_message\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:1:{s:10:\"column_gap\";i:1;}s:19:\"section_field_style\";a:9:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:31:\"field_typography_text_transform\";i:1;s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:19:\"button_text_padding\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:10:\"min_height\";i:1;s:16:\"flex_align_items\";i:1;s:14:\"flex_direction\";i:1;s:8:\"flex_gap\";i:1;s:20:\"flex_justify_content\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_background_uc\";a:7:{s:16:\"clouds_image_one\";i:1;s:16:\"clouds_image_two\";i:1;s:18:\"clouds_image_three\";i:1;s:17:\"clouds_image_four\";i:1;s:23:\"wave_animation_wave_top\";i:1;s:26:\"wave_animation_wave_middle\";i:1;s:26:\"wave_animation_wave_bottom\";i:1;}}}}}'),
(252315,17436,'_recorded_sales','no'),
(252316,17436,'_recorded_coupon_usage_counts','no'),
(252317,17436,'_new_order_email_sent','false'),
(252318,17436,'_order_stock_reduced','no'),
(252320,30893,'_order_key','wc_order_3otIrKeJdYzhz'),
(252321,30893,'_customer_user','1'),
(252322,30893,'_customer_ip_address','85.255.233.67'),
(252323,30893,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36'),
(252324,30893,'_created_via','subscription'),
(252325,30893,'_download_permissions_granted','yes'),
(252326,30893,'_recorded_sales','yes'),
(252327,30893,'_recorded_coupon_usage_counts','yes'),
(252328,30893,'_new_order_email_sent','false'),
(252329,30893,'_order_stock_reduced','yes'),
(252330,30893,'_billing_email','ivankulongo@gmail.com'),
(252331,30893,'_order_currency','GBP'),
(252332,30893,'_cart_discount','0'),
(252333,30893,'_cart_discount_tax','0'),
(252334,30893,'_order_shipping','0'),
(252335,30893,'_order_shipping_tax','0'),
(252336,30893,'_order_tax','0'),
(252337,30893,'_order_total','69.99'),
(252338,30893,'_order_version','8.0.3'),
(252339,30893,'_prices_include_tax','no'),
(252340,30893,'_billing_address_index','Ivan Kulongo  20 Hatfield Road  Dagenham Essex RM9 6JR GB ivankulongo@gmail.com 782873017'),
(252341,30893,'_shipping_address_index','         '),
(252342,30893,'mailchimp_woocommerce_campaign_id',''),
(252343,30893,'mailchimp_woocommerce_landing_site','https://choiceresources.co.uk/my-account/'),
(252344,30893,'is_vat_exempt','no'),
(252345,30893,'_wcf_flow_id','8120'),
(252346,30893,'_wcf_checkout_id','8121'),
(252347,30893,'mailchimp_woocommerce_is_subscribed','1'),
(252348,30893,'_paypal_subscription_id','B-0GC126888M6260839'),
(252349,30893,'end_date_pre_cancellation','0'),
(252350,30893,'trial_end_pre_cancellation','0'),
(252351,30893,'_old_payment_method','paypal'),
(252352,30893,'_old_payment_method_title','PayPal'),
(252353,30893,'_billing_first_name','Ivan'),
(252354,30893,'_billing_last_name','Kulongo'),
(252355,30893,'_billing_address_1','20 Hatfield Road'),
(252356,30893,'_billing_city','Dagenham'),
(252357,30893,'_billing_state','Essex'),
(252358,30893,'_billing_postcode','RM9 6JR'),
(252359,30893,'_billing_country','GB'),
(252360,30893,'_billing_phone','782873017'),
(252361,30893,'_subscription_renewal','17436'),
(252362,30893,'_payment_method','paypal'),
(252363,30893,'_payment_method_title','PayPal'),
(252364,30893,'_transaction_id','5SK332042H8541356'),
(252365,30893,'_date_paid','1700176638'),
(252366,30893,'_paid_date','2023-11-16 23:17:18'),
(252368,17437,'_paused_intervals','a:1:{i:1700176635;i:1700176638;}'),
(259017,31665,'_elementor_data','[{\"id\":\"de0b637\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_color\":\"#F9A70C\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/02\\/noah-gif-gif.gif\",\"id\":31532,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#69E0FD\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"127aefb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":37.079},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"flex-start\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"91c99ab\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"56ba3fa\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":90},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10}},\"elements\":[{\"id\":\"489d951\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bible Activity Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"zoomIn\",\"_animation_mobile\":\"none\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(7.000000000000001, 21.000000000000068, 143, 0.84)\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"animation_duration\":\"slow\",\"text_shadow_text_shadow_type\":\"yes\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.883},\"_flex_size\":\"none\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_direction\":\"out-in-out\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fe762e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"04568a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/12\\/Learning-FUN-1.png\",\"id\":31453,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/learning-fun-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5016fa7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/08\\/nature-fun.png\",\"id\":28591,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dd9f4d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/08\\/puzzle-fun.png\",\"id\":28592,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"741c8df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/08\\/Bible-story-fun.png\",\"id\":28589,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"651d1c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#11BA24\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[{\"id\":\"7cfa570\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/Website-labels-5.png\",\"id\":30565,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"635a883\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"gradient\",\"background_color\":\"#FDD10C\",\"background_color_b\":\"#FDF699\",\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1283,\"sizes\":[]},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"47b95d2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30.447},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"flex_justify_content\":\"flex-start\",\"flex_justify_content_tablet\":\"flex-start\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"7f44a3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/Logo-CR.png\",\"id\":30637,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":57.413},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d14819d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover the Power of Faith Today!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f48da4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Over 100+ Fun Activities to Explore<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_font_weight\":\"500\",\"text_color\":\"#0D42C0\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e53e878\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open Activities \",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/library.elementor.com\\/handmade-kids-shop\\/product-category\\/costumes\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e7a52fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/03\\/Noah-Pic.png\",\"id\":25014,\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05f8aea\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":67.063},\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"flex-start\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"287acdb\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"df0113e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"flex-start\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":302.2},\"background_background\":\"classic\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"6de1ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2023 Printables\",\"align_tablet\":\"center\",\"title_color\":\"#F07102\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b34f120\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":73.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ce0ddc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":80.406},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":79.406},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"11041ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.172},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a7dc12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div><p><strong>Choice learning activities<\\/strong> provide a sense of <strong>purpose<\\/strong> and <strong>meaning<\\/strong> to increase <em>motivation<\\/em>, <em>academic skills<\\/em>, and foster a <span style=\\\"text-decoration: underline;\\\">greater understanding<\\/span>\\u00a0of the Gospel of Jesus Christ.<\\/p><\\/div><\\/div>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_font_weight\":\"500\",\"text_color\":\"#0D42C0\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"64\",\"bottom\":\"0\",\"left\":\"64\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"652225c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"fadeacd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile\":{\"unit\":\"px\",\"size\":156},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"7\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"de00518\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/02\\/Colouring-Fun-1.png\",\"id\":31575,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"85f5ff0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Was <del>\\u00a34.50<\\/del> <span style=\\\"color: #ff0000;\\\">Now \\u00a32<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19cc546\",\"elType\":\"widget\",\"settings\":{\"text\":\"get\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4573b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/08\\/Seasons.png\",\"id\":28611,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50714aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Was <del>\\u00a34.50<\\/del> <span style=\\\"color: #ff0000;\\\">Now \\u00a32<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d77b38\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#F9A70C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"539161d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile\":{\"unit\":\"px\",\"size\":156},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"7\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"752ae48\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/02\\/Space-1.png\",\"id\":31576,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50f3639\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Was <del>\\u00a34.50<\\/del> <span style=\\\"color: #ff0000;\\\">Now \\u00a32<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cb0e763\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#F9A70C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c1d251\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/06\\/Prayer-Power.gif\",\"id\":28027,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":136},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e53f67d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Was <del>\\u00a34.50<\\/del> <span style=\\\"color: #ff0000;\\\">Now \\u00a32<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f51ede7\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#F8049C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2c8a11c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile\":{\"unit\":\"px\",\"size\":156},\"_flex_size\":\"none\",\"flex_gap\":{\"column\":\"0\",\"row\":\"7\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"9a5ce5f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/02\\/Puzzles-and-games-1-1.png\",\"id\":31577,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"81d1015\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Was <del>\\u00a34.50<\\/del> <span style=\\\"color: #ff0000;\\\">Now \\u00a32<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2051364\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#11BA24\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f268428\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/App-Squares-to-click-label-buttons.gif\",\"id\":30596,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"264f83b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Was <del>\\u00a34.50<\\/del> <span style=\\\"color: #ff0000;\\\">Now \\u00a32<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f25be29\",\"elType\":\"widget\",\"settings\":{\"text\":\"get\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"41412b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"25\"},\"width_mobile\":{\"unit\":\"px\",\"size\":156},\"_flex_size\":\"none\",\"flex_gap\":{\"column\":\"0\",\"row\":\"7\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"62d9e1d\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/02\\/Birth-of-Jesus-1.png\",\"id\":31578,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dc8c9de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Was <del>\\u00a34.50<\\/del> <span style=\\\"color: #ff0000;\\\">Now \\u00a32<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c798402\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#F8049C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"423523e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/App-Squares-to-click-label-buttons-3.gif\",\"id\":30594,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ac4c2b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Was <del>\\u00a34.50<\\/del> <span style=\\\"color: #ff0000;\\\">Now \\u00a32<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d6b677\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#11BA24\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1a965df\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content_mobile\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/10\\/Choice-Logo-Banner-4-1.png\",\"id\":30257,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position_mobile\":\"center center\",\"background_repeat\":\"repeat\",\"background_repeat_mobile\":\"no-repeat\",\"background_size\":\"contain\",\"background_size_mobile\":\"cover\",\"background_bg_width\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":579,\"sizes\":[]},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateX_effect\":\"yes\",\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"shape_divider_top\":\"curve\",\"shape_divider_top_color\":\"#FFFFFF\",\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_negative\":\"yes\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":155,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]}},\"elements\":[{\"id\":\"1ec953c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1fc8963\",\"elType\":\"widget\",\"settings\":{\"text\":\"Choice challenges\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#105CF1\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"736e84e\",\"elType\":\"widget\",\"settings\":{\"title\":\"A world of Learning!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":35.143},\"_flex_size\":\"none\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":299.672},\"_flex_align_self_mobile\":\"center\",\"_animation_mobile\":\"zoomIn\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"373c88b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d4e0b7e\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/05\\/Mum-website-background-2.png\",\"id\":26699,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"shape_divider_top_color\":\"#FFFFFF\",\"shape_divider_top_negative\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d25a55f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_align_items_mobile\":\"center\"},\"elements\":[{\"id\":\"e5277fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"flex-start\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":104.259},\"boxed_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"d06239c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":26.435},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"75fa2a8\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"wave\",\"before_text\":\"\",\"highlighted_text\":\"Free\",\"rotating_text\":\"NATURE\",\"after_text\":\"Challenges\",\"title_color\":\"#0D42C0\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"words_color\":\"#11BA24\",\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"none\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_background_color_b\":\"#B4E3FF\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"animation_duration\":\"fast\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.782},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":308.938},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"35bf9d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/02\\/Logo-CR-1-1.png\",\"id\":23915,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"flower\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"image_border_color\":\"#11BA24\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"#000000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d7eb6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#11BA24\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a23a4e8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"428abe6\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"space_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ccba165\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"wave\",\"before_text\":\"\",\"highlighted_text\":\"Free\",\"rotating_text\":\"PERSONAL\",\"after_text\":\"Challenges\",\"title_color\":\"#0D42C0\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"words_color\":\"#F9A70C\",\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"none\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_background_color_b\":\"#B4E3FF\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"animation_duration\":\"fast\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":88.927},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":308.938},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"25f51b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/exploring-1.png\",\"id\":30639,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_mask_shape\":\"flower\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#F9A70C\",\"image_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fd04d02\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#F9A70C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b621eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"73d6947\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"space_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"afca1ed\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"wave\",\"before_text\":\"\",\"highlighted_text\":\"Free\",\"rotating_text\":\"BIBLE\",\"after_text\":\"Lego challenges\",\"title_color\":\"#0D42C0\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"words_color\":\"#0DCFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"none\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_background_color_b\":\"#B4E3FF\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"animation_duration\":\"fast\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":83.106},\"_flex_size\":\"none\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":308.938},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"a0a78ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/Logo-CR-1.gif\",\"id\":30999,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_mask_switch\":\"yes\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#10A4E3\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"152\",\"right\":\"152\",\"bottom\":\"152\",\"left\":\"152\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37c6667\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"173bf90\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"9340196\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"wave\",\"before_text\":\"\",\"highlighted_text\":\"Free\",\"rotating_text\":\"CREATIVE\",\"after_text\":\"Challenges\",\"title_color\":\"#0D42C0\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"words_color\":\"#F8049C\",\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"none\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-90,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_background_color_b\":\"#B4E3FF\",\"_background_gradient_type\":\"radial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"animation_duration\":\"fast\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":88.646},\"_flex_size\":\"none\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":308.938},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"d8ad32b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/choice-Logo-Newest-4.png\",\"id\":30985,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_mask_shape\":\"flower\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#F8049C\",\"image_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f57a697\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#F8049C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c3b2888\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#43E1FFE6\",\"shape_divider_top\":\"curve-asymmetrical\",\"shape_divider_top_color\":\"#B4E3FF\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]}},\"elements\":[{\"id\":\"eabd971\",\"elType\":\"widget\",\"settings\":{\"title\":\"Try for FREE!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_weight\":\"500\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"80\",\"bottom\":\"20\",\"left\":\"80\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_color\":\"#0D42C0\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"header_size\":\"h1\",\"_background_color\":\"#FFFFFF\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"8ad5c1d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#B4E3FF\",\"shape_divider_top\":\"opacity-tilt\",\"shape_divider_top_color\":\"#43E1FFE6\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":181,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":136,\"sizes\":[]},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\"},\"elements\":[{\"id\":\"b33b40d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30.447},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"flex-start\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"45e2b6f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47063f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/02\\/Logo-CR-1.png\",\"id\":23908,\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"fadeInDown\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"046de80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Download\",\"align\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"500\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_font_family\":\"Lilita One\",\"_animation\":\"fadeInUp\",\"_transform_translate_popover\":\"transform\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.14)\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"861faf8\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"flip\",\"marker\":\"underline\",\"before_text\":\"\",\"highlighted_text\":\"First\",\"rotating_text\":\"FREE\",\"after_text\":\"Bible Colouring Activities!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"words_color\":\"#F8049C\",\"words_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"fadeInDown\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size_mobile\":\"none\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"animated_text_stroke_text_stroke_type\":\"yes\",\"animated_text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_font_family\":\"Dekko\",\"animated_text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"animated_text_stroke_stroke_color\":\"#FFFFFF\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF00\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"_background_color_b\":\"#FFFFFF00\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":178,\"sizes\":[]},\"_background_gradient_position\":\"bottom left\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true},{\"id\":\"0873ad1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":67.433},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"bd11a86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"748f978\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"1e4101a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Spot the mistakes \\ud83d\\udc40<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"stretch\",\"_animation\":\"none\",\"_background_background\":\"classic\",\"_background_color\":\"#0D42C0\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"391342a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/02\\/Bible-colouring-pages-1.png\",\"id\":23601,\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e64e85\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"selected_icon\":{\"value\":\"fas fa-file-download\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#0D42C0\",\"background_color\":\"#E4FDFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#0D42C0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"Download|Moses-4-1.png\"},\"typography_font_family\":\"Dekko\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2d72e63\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"b792d52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Odd one Out \\ud83e\\udd14<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"stretch\",\"_animation\":\"none\",\"_background_background\":\"classic\",\"_background_color\":\"#0D42C0\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2859296\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/02\\/Bible-colouring-pages-1.png\",\"id\":23601,\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b99638\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"selected_icon\":{\"value\":\"fas fa-file-download\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#0D42C0\",\"background_color\":\"#E4FDFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#0D42C0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"Download|Moses-4-1.png\"},\"typography_font_family\":\"Dekko\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20889ea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"d386855\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Find the Words \\ud83d\\udd0d<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"stretch\",\"_animation\":\"none\",\"_background_background\":\"classic\",\"_background_color\":\"#0D42C0\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28f1cbb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/02\\/Bible-colouring-pages-1.png\",\"id\":23601,\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0316f3f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"selected_icon\":{\"value\":\"fas fa-file-download\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#0D42C0\",\"background_color\":\"#E4FDFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#0D42C0\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"Download|Moses-4-1.png\"},\"typography_font_family\":\"Dekko\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e939f78\",\"elType\":\"widget\",\"settings\":{\"text\":\"see all\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#F8049C\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ecbfd9c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"f62a3f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/11\\/Choice-Logo-Banner-1125-\\u00d7-480px-8.gif\",\"id\":30979,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":52.77},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}]'),
(259328,20379,'_wp_old_date','2023-04-19'),
(259330,20575,'_wp_old_date','2023-04-19'),
(259999,1067,'_eael_post_view_count','14'),
(260045,8077,'_eael_post_view_count','10'),
(260048,8121,'_eael_post_view_count','43'),
(260050,30818,'_eael_post_view_count','7'),
(260425,31886,'_wp_attached_file','2024/03/White-background-hands.png'),
(260426,31886,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:34:\"2024/03/White-background-hands.png\";s:8:\"filesize\";i:74679;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"White-background-hands-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11095;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"White-background-hands-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61500;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"White-background-hands-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"White-background-hands-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41238;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"White-background-hands-1536x1086.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107627;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"White-background-hands-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12913;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:34:\"White-background-hands-399x282.png\";s:5:\"width\";i:399;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16262;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"White-background-hands-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2846;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(260427,31887,'_wp_attached_file','2024/03/Blue-Background-hands.png'),
(260428,31887,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:33:\"2024/03/Blue-Background-hands.png\";s:8:\"filesize\";i:73865;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Blue-Background-hands-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11361;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Blue-Background-hands-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62855;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Blue-Background-hands-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Blue-Background-hands-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41973;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"Blue-Background-hands-1536x1086.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110197;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"Blue-Background-hands-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13124;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"Blue-Background-hands-399x282.png\";s:5:\"width\";i:399;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16587;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"Blue-Background-hands-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2920;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(260504,31903,'_wp_attached_file','2024/03/Bible-Lego-Challenges-Vid-1.gif'),
(260505,31903,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:39:\"2024/03/Bible-Lego-Challenges-Vid-1.gif\";s:8:\"filesize\";i:4297909;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Bible-Lego-Challenges-Vid-1-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:36193;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Bible-Lego-Challenges-Vid-1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:11677;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Bible-Lego-Challenges-Vid-1-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:36193;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:39:\"Bible-Lego-Challenges-Vid-1-399x399.gif\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:61663;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Bible-Lego-Challenges-Vid-1-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6446;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(260512,31907,'_wp_attached_file','2024/03/Logo-CR.gif'),
(260513,31907,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2024/03/Logo-CR.gif\";s:8:\"filesize\";i:2325381;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Logo-CR-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:23711;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Logo-CR-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8244;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"Logo-CR-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:23711;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:19:\"Logo-CR-399x399.gif\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:41169;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"Logo-CR-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:4744;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(261394,577,'_eael_post_view_count','9'),
(261968,32196,'_wp_attached_file','2021/03/Choice-Logo-Banner-1.png'),
(261969,32196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:150;s:4:\"file\";s:32:\"2021/03/Choice-Logo-Banner-1.png\";s:8:\"filesize\";i:9848;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Choice-Logo-Banner-1-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21745;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Choice-Logo-Banner-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:10190;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"Choice-Logo-Banner-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18438;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:32:\"Choice-Logo-Banner-1-399x120.png\";s:5:\"width\";i:399;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31761;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"Choice-Logo-Banner-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9585;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(262645,20379,'_wp_old_date','2024-02-14'),
(262647,20575,'_wp_old_date','2024-02-14'),
(264335,32473,'_wp_page_template','elementor_header_footer'),
(264336,32473,'_cdp_origin','5228'),
(264337,32473,'_cdp_origin_site','-1'),
(264338,32473,'_cdp_origin_title',' Choice Education Landing Page #[Counter]'),
(264339,32473,'_cdp_counter','3'),
(264340,32473,'_elementor_template_type','wp-page'),
(264341,32473,'_elementor_version','3.21.4'),
(264342,32473,'_elementor_pro_version','3.21.2'),
(264343,32473,'_wp_page_template','elementor_header_footer'),
(264344,32473,'_elementor_data','[{\"id\":\"de0b637\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]}},\"elements\":[{\"id\":\"56ba3fa\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":71.767},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[{\"id\":\"0e0c95f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE <span style=\\\"color: #ffffff;\\\">Bible Printables<\\/span><\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"none\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"143\",\"bottom\":\"67\",\"left\":\"143\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":520.953}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8ad5c1d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#43E1FFE6\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":181,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":136,\"sizes\":[]},\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\"},\"elements\":[{\"id\":\"0873ad1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"bd11a86\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"748f978\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"23e6b51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wordsearches<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#5BCEFF\",\"_background_color_b\":\"#FFFFFF00\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.21)\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e7c7d42\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"TOP\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ef7695c\",\"elType\":\"widget\",\"settings\":{\"eael_fg_items_to_show\":\"6\",\"eael_fg_filter_duration\":500,\"eael_fg_grid_item_height\":\"330\",\"eael_section_fg_link_icon_new\":{\"value\":\"fas fa-file-download\",\"library\":\"fa-solid\"},\"eael_fg_all_label_text\":\"All\",\"eael_fg_controls\":[{\"eael_fg_control\":\"Ages 3+\",\"_id\":\"58c6838\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"},{\"eael_fg_control\":\"Ages 7+\",\"_id\":\"4f8e687\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"eael_fg_control_active_as_default\":\"\"},{\"eael_fg_control\":\"Ages 11+\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"_id\":\"83fad32\",\"eael_fg_control_active_as_default\":\"\"},{\"eael_fg_control\":\"SEND\",\"eael_fg_control_custom_id\":\"\",\"eael_fg_custom_label\":\"\",\"_id\":\"94942f6\",\"eael_fg_control_active_as_default\":\"\"}],\"eael_fg_gallery_items\":[{\"eael_fg_gallery_item_name\":\"Bible Stories Long O Sound\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Stories-Long-A-sound.png\",\"id\":35009,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"eael_fg_gallery_img_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|Bible-Stories-Long-O-sound.pdf\"},\"_id\":\"067529d\"},{\"_id\":\"f542b32\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Joshua Stories Long O Sound\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Battles-Long-A-sound-2.png\",\"id\":35003,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"60c6e4e\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Bible Battles Long A Sound\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Battles-Long-A-sound.png\",\"id\":35004,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"ae81263\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Bible Birds\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Birds.png\",\"id\":35005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"2863a6f\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 11+\",\"eael_fg_gallery_item_name\":\"Bible Fruits\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Fruits.png\",\"id\":35006,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"984cf59\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"SEND\",\"eael_fg_gallery_item_name\":\"Bible Heroes\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Heros.png\",\"id\":35007,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"302e0f4\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 11+\",\"eael_fg_gallery_item_name\":\"Bible Prayers\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Prayers.png\",\"id\":35008,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"e7c9db9\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Bible Women\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Women.png\",\"id\":35010,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"790639e\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 3+\",\"eael_fg_gallery_item_name\":\"Fun on a Mat\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Fun-on-a-mat.png\",\"id\":35011,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"51014d1\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 3+\",\"eael_fg_gallery_item_name\":\"In the Bag\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/In-the-Bag.png\",\"id\":35012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"db0eacf\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 3+\",\"eael_fg_gallery_item_name\":\"The Map\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/The-Map.png\",\"id\":35019,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"c6d7bb5\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 3+\",\"eael_fg_gallery_item_name\":\"The Run\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/The-Run.png\",\"id\":35020,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"57441b0\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 3+\",\"eael_fg_gallery_item_name\":\"The Smelly Stop\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/The-Smelly-Stop.png\",\"id\":35021,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"2510585\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 3+\",\"eael_fg_gallery_item_name\":\"Too Hot\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Too-Hot.png\",\"id\":35022,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"aeb1206\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 11+\",\"eael_fg_gallery_item_name\":\"Internal Organs\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Internal-Organs-Wordsearch-1.png\",\"id\":35013,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cbaa91c\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Jacob\'s Life\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Jacobs-Life-oo-ou.png\",\"id\":35014,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6216585\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Jonah\'s Story\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Jonahs-Story.png\",\"id\":35015,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"49e0f86\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Natural Lights\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Natural-Lights.png\",\"id\":35016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"8f34623\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Bible Stories AY sound\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Phonics-Mixed-AY.png\",\"id\":35017,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"255f431\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"Wise Sayings\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Phonics-Psalms-23-AY.png\",\"id\":35018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"08b59e0\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 11+\",\"eael_fg_gallery_item_name\":\"Who is God?\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Who-is-God.png\",\"id\":35023,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"8580db0\",\"eael_fg_gallery_item_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"eael_fg_gallery_control_name\":\"Ages 7+\",\"eael_fg_gallery_item_name\":\"God did this...\",\"fg_item_price\":\"$20.00\",\"fg_item_ratings\":\"5\",\"fg_item_cat\":\"Essential Addons\",\"eael_fg_gallery_item_content\":\"<p><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff; text-decoration: underline;\\\">Get answers<\\/span><\\/span><\\/p>\",\"eael_fg_gallery_img\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/God-did-this-OR.png\",\"id\":35024,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"pagination\":\"yes\",\"images_per_page\":\"6\",\"load_more_text\":\"Load More\",\"nomore_items_text\":\"No more items!\",\"eael_fg_video_item_icon_hover_scale\":\"1.1\",\"fg_sf_placeholder\":\"Search Gallery Item...\",\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"eael_fg_control_active_bg_color\":\"#0DCFFF\",\"load_more_button_bg_color_normal\":\"#0DCFFF\",\"stax_visibility_show_hide\":\"yes\",\"stax_visibility_condition_type\":\"one\",\"stax_visibility_user_role_conditions\":[\"subscriber\"],\"eael_fg_item_shadow_box_shadow_type\":\"yes\",\"eael_fg_item_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"#ACE8FF\"},\"eael_fg_item_content_bg_color\":\"#0DCFFF\",\"eael_fg_item_content_border_border\":\"none\",\"eael_fg_item_content_border_color\":\"#FFFFFF\",\"eael_fg_item_content_shadow_box_shadow\":{\"horizontal\":100,\"vertical\":0,\"blur\":30,\"spread\":-100,\"color\":\"\"},\"eael_fg_item_content_title_color\":\"#FFFFFF\",\"eael_fg_item_content_title_hover_color\":\"#004AAD\",\"eael_fg_item_content_title_typography_typography\":\"custom\",\"eael_fg_item_content_title_typography_font_weight\":\"600\",\"eael_fg_item_content_text_typography_typography\":\"custom\",\"eael_fg_item_content_text_typography_font_weight\":\"500\",\"eael_fg_item_content_alignment\":\"center\",\"eael_fg_container_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-12\",\"bottom\":\"-12\",\"left\":\"-12\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_flex_align_self_mobile\":\"stretch\",\"_flex_size_mobile\":\"grow\",\"eael_fg_gallery_img_link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2023\\/03\\/Adam-and-Eve-1-1.png\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"columns_tablet\":\"3\",\"load_more_button_typography_typography\":\"custom\",\"eael_fg_control_padding_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"eael_fg_control_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_fg_control_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"eael_fg_control_typography_typography\":\"custom\",\"eael_fg_control_typography_font_family\":\"Dekko\",\"eael_fg_control_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"eael_fg_control_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"eael_fg_control_typography_font_weight\":\"600\",\"eael_fg_control_typography_text_transform\":\"none\",\"eael_fg_control_typography_font_style\":\"normal\",\"eael_fg_control_normal_text_color\":\"#004AAD\",\"eael_fg_control_normal_border_radius\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"eael_fg_control_shadow_box_shadow_type\":\"yes\",\"eael_fg_control_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 73.99999999999999, 173, 0.25)\"},\"eael_fg_not_found_text\":\"No Items Found\",\"eael_fg_grid_hover_transition\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"eael_fg_item_cap_bg_color\":\"\",\"eael_fg_bg_color\":\"#FFFFFF\",\"eael_fg_item_border_border\":\"none\",\"eael_fg_item_border_width\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"33\",\"bottom\":\"33\",\"left\":\"33\",\"isLinked\":true},\"eael_fg_item_border_color\":\"#FFFFFF\",\"eael_fg_caption_style\":\"card\",\"eael_fg_container_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":false},\"eael_fg_item_content_title_typography_font_family\":\"Dekko\",\"eael_fg_item_content_text_typography_font_family\":\"Dekko\"},\"elements\":[],\"widgetType\":\"eael-filterable-gallery\"},{\"id\":\"e67a8ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"link\":{\"url\":\"#TOP\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-up\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_css_id\":\"TOP\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_background\":\"gradient\",\"background_color\":\"#02010100\",\"background_color_b\":\"#F2295B00\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ecf098d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"53d0eff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image_mobile\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_gap_mobile\":{\"column\":\"20\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":20},\"flex_align_items\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"a1fb138\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"1761831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #10a4e3;\\\"><a style=\\\"color: #10a4e3;\\\" href=\\\"https:\\/\\/choiceresources.co.uk\\/scavenger-hunts\\\">Scavenger Hunts<\\/a><\\/span><\\/p>\",\"text_color\":\"#25B8E2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"39987a8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"9fa9378\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/choiceresources.co.uk\\/games\\\"><span style=\\\"color: #ff40bf;\\\">Games<\\/span><\\/a><\\/p>\",\"text_color\":\"#FF40BF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29cbe43\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/choiceresources.co.uk\\/stories\\\"><span style=\\\"color: #ffb422;\\\">Stories<\\/span><\\/a><\\/p>\",\"text_color\":\"#FFB422\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e1b518d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"2115412\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Quizzes<\\/p>\",\"text_color\":\"#4CD803\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fdb655\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Maths<\\/p>\",\"text_color\":\"#9855F3\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_scale_effect\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6819026\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tracing<\\/p>\",\"text_color\":\"#25B8E2\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"motion_fx_scale_effect\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a1815ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses for You!\",\"description_text\":\"\",\"position\":\"left\",\"primary_color\":\"#0D42C0\",\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":34.81},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":522.688},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":285},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"solid\",\"_border_color\":\"#0D42C000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3ecd7cd\",\"elType\":\"widget\",\"settings\":{\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin\":{\"unit\":\"px\",\"top\":\"-43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rating\"},{\"id\":\"ede069b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\\"My son loves Choice Resources activities, and I have to admit I enjoy doing the wordsearches and quizzes too!\\\"\",\"name\":\"\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"d33d67f\"},{\"content\":\"\\\"I am so glad I found this site. My children are really enjoying learning with God\'s Word!\\\"\",\"name\":\"\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"f02f92d\"}],\"content_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"content_color\":\"#333333\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Dekko\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"pagination_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pagination_color_inactive\":\"#F8049C\",\"pagination_color\":\"#F9A70C\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":37.865},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":445.688},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":285},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"solid\",\"_border_color\":\"#0DCFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"arrows_color\":\"#DADADA\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(264345,32473,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:83:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/White-background-hands.png\";s:2:\"id\";i:31886;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(264346,32473,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(264347,32473,'_elementor_edit_mode','builder'),
(264401,32473,'_edit_lock','1720603392:1'),
(264429,32480,'_wp_attached_file','2024/04/Noah-background-pic.png'),
(264430,32480,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2024/04/Noah-background-pic.png\";s:8:\"filesize\";i:412163;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Noah-background-pic-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63974;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Noah-background-pic-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:523477;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Noah-background-pic-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31797;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Noah-background-pic-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:317613;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"Noah-background-pic-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1036572;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Noah-background-pic-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104184;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"Noah-background-pic-399x224.png\";s:5:\"width\";i:399;s:6:\"height\";i:224;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102704;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Noah-background-pic-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16048;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(264480,32473,'_eael_custom_js',''),
(264481,32473,'_eael_widget_elements','a:1:{s:14:\"filter-gallery\";s:14:\"filter-gallery\";}'),
(264484,32473,'_edit_last','1'),
(264616,20379,'_wp_old_date','2024-03-22'),
(264617,20575,'_wp_old_date','2024-03-22'),
(265119,12,'_eael_post_view_count','4'),
(265120,43,'_eael_post_view_count','9'),
(265228,43,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:4:\"menu\";i:1;s:7:\"pointer\";i:1;s:10:\"full_width\";i:1;s:11:\"align_items\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:12:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_line_height\";i:1;s:28:\"menu_typography_word_spacing\";i:1;s:15:\"color_menu_item\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:18:\"menu_space_between\";i:1;s:27:\"menu_typography_font_family\";i:1;s:23:\"border_radius_menu_item\";i:1;}s:12:\"style_toggle\";a:4:{s:12:\"toggle_color\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:23:\"toggle_background_color\";i:1;}s:22:\"section_style_dropdown\";a:7:{s:30:\"background_color_dropdown_item\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:22:\"dropdown_border_border\";i:1;s:21:\"dropdown_border_color\";i:1;s:19:\"color_dropdown_item\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_family\";i:1;}}s:15:\"stax-visibility\";a:2:{s:33:\"stax_visibility_user_role_section\";a:2:{s:33:\"stax_visibility_user_role_enabled\";i:1;s:36:\"stax_visibility_user_role_conditions\";i:1;}s:31:\"stax_visibility_general_section\";a:1:{s:25:\"stax_visibility_show_hide\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:4:{s:22:\"_background_background\";i:1;s:19:\"_background_color_b\";i:1;s:28:\"_background_hover_background\";i:1;s:25:\"_background_hover_color_b\";i:1;}s:14:\"_section_style\";a:2:{s:21:\"_element_width_mobile\";i:1;s:10:\"_flex_size\";i:1;}}}}s:21:\"woocommerce-menu-cart\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:25:\"section_menu_icon_content\";a:2:{s:4:\"icon\";i:1;s:20:\"hide_empty_indicator\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_toggle_style\";a:3:{s:24:\"toggle_button_text_color\";i:1;s:24:\"toggle_button_icon_color\";i:1;s:26:\"toggle_button_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:4:{s:22:\"_background_background\";i:1;s:19:\"_background_color_b\";i:1;s:28:\"_background_hover_background\";i:1;s:25:\"_background_hover_color_b\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}s:21:\"section_shape_divider\";a:5:{s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:23:\"shape_divider_top_width\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:24:\"shape_divider_top_height\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:1:{s:25:\"motion_fx_scale_direction\";i:1;}}}}}'),
(265230,43,'_elementor_screenshot_failed','2024-04-03 16:26:57'),
(265657,32731,'_edit_lock','1714001561:1'),
(265658,32731,'_edit_last','1'),
(265659,32731,'_wc_memberships_force_public','no'),
(265660,32731,'_wc_memberships_use_custom_page_content_restricted_message','no'),
(265661,32731,'_elementor_edit_mode','builder'),
(265662,32731,'_elementor_template_type','wp-page'),
(265663,32731,'_elementor_version','3.19.2'),
(265664,32731,'_elementor_pro_version','3.19.2'),
(265665,32731,'_wp_page_template','default'),
(265666,32731,'_elementor_page_settings','a:5:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:17:\"background_repeat\";s:6:\"repeat\";s:22:\"background_size_mobile\";s:5:\"cover\";}'),
(265667,32731,'_elementor_data','[{\"id\":\"51b83f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00ff9c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"9734317\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#43E1FFE6\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":181,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":136,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\"},\"elements\":[{\"id\":\"0183c15\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":97},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"01151f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"fb06b7f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"5721755\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Learning Fun<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#5BCEFF\",\"_background_color_b\":\"#FFFFFF00\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.21)\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.996},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":194.844},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":212.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b32bc9c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"left\",\"layout_mobile\":\"above\",\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Forest-School-Blog-Pics-1-2.png\",\"id\":32585,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Top 10 Bible Lego Challenges\",\"description\":\"10 Creative Lego Blocks Bible Challenges\",\"button\":\"Click Here\",\"min-height\":{\"unit\":\"px\",\"size\":372,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"vertical_position\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Lilita One\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Dekko\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_bg_color\":\"#FFFFFF\",\"title_color\":\"#0D42C0\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Dekko\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":77.154},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/elementor-33258\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b894483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(265668,32731,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),
(265693,32731,'_eael_custom_js',''),
(265797,32751,'_menu_item_type','post_type'),
(265798,32751,'_menu_item_menu_item_parent','0'),
(265799,32751,'_menu_item_object_id','32731'),
(265800,32751,'_menu_item_object','page'),
(265801,32751,'_menu_item_target',''),
(265802,32751,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(265803,32751,'_menu_item_xfn',''),
(265804,32751,'_menu_item_url',''),
(265806,32752,'_menu_item_type','post_type'),
(265807,32752,'_menu_item_menu_item_parent','0'),
(265808,32752,'_menu_item_object_id','21684'),
(265809,32752,'_menu_item_object','page'),
(265810,32752,'_menu_item_target',''),
(265811,32752,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(265812,32752,'_menu_item_xfn',''),
(265813,32752,'_menu_item_url',''),
(265815,20379,'_wp_old_date','2024-04-03'),
(265816,20575,'_wp_old_date','2024-04-03'),
(266033,32782,'_wp_attached_file','2024/04/Phonics-word-builder.png'),
(266034,32782,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"2024/04/Phonics-word-builder.png\";s:8:\"filesize\";i:150324;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Phonics-word-builder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85507;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Phonics-word-builder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:653755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Phonics-word-builder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29558;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Phonics-word-builder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:400295;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"Phonics-word-builder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85507;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:32:\"Phonics-word-builder-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131805;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"Phonics-word-builder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15767;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(266035,32783,'_wp_attached_file','2024/04/About-the-Holy-Spirit-3.png'),
(266036,32783,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:35:\"2024/04/About-the-Holy-Spirit-3.png\";s:8:\"filesize\";i:158976;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"About-the-Holy-Spirit-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97155;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"About-the-Holy-Spirit-3-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:674088;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"About-the-Holy-Spirit-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:32091;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"About-the-Holy-Spirit-3-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:428952;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"About-the-Holy-Spirit-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97155;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"About-the-Holy-Spirit-3-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150804;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"About-the-Holy-Spirit-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16471;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(266037,32784,'_wp_attached_file','2024/04/Fruits-Snakes-and-Ladders.png'),
(266038,32784,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:37:\"2024/04/Fruits-Snakes-and-Ladders.png\";s:8:\"filesize\";i:126783;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80751;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Fruits-Snakes-and-Ladders-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:534926;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28063;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:343853;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80751;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123108;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15575;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(266041,32786,'_wp_attached_file','2024/04/Scripture-Bears.png'),
(266042,32786,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2024/04/Scripture-Bears.png\";s:8:\"filesize\";i:231877;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Scripture-Bears-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110454;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Scripture-Bears-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:816342;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Scripture-Bears-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36531;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Scripture-Bears-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:508652;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"Scripture-Bears-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110454;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"Scripture-Bears-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172837;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Scripture-Bears-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19115;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(266246,32809,'_wp_attached_file','2024/04/Phonics-word-fan-builder.png'),
(266247,32809,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:36:\"2024/04/Phonics-word-fan-builder.png\";s:8:\"filesize\";i:189132;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Phonics-word-fan-builder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85058;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Phonics-word-fan-builder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:637754;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Phonics-word-fan-builder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29134;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Phonics-word-fan-builder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:393656;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"Phonics-word-fan-builder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85058;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:36:\"Phonics-word-fan-builder-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133487;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"Phonics-word-fan-builder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15718;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(266344,32821,'_edit_lock','1722793957:1'),
(266345,32821,'_edit_last','1'),
(266346,32821,'_thumbnail_id','35937'),
(266347,32821,'_wp_page_template','default'),
(266348,32821,'_fz_country_restriction_type','all'),
(266349,32821,'_restricted_countries','a:0:{}'),
(266350,32821,'woolentor_total_stock_quantity',''),
(266351,32821,'_saleflash_text',''),
(266352,32821,'cartflows_redirect_flow_id',''),
(266353,32821,'cartflows_add_to_cart_text',''),
(266354,32821,'total_sales','0'),
(266355,32821,'_tax_status','taxable'),
(266356,32821,'_tax_class',''),
(266357,32821,'_manage_stock','no'),
(266358,32821,'_backorders','no'),
(266359,32821,'_sold_individually','no'),
(266360,32821,'_virtual','no'),
(266361,32821,'_downloadable','yes'),
(266362,32821,'_download_limit','-1'),
(266363,32821,'_download_expiry','-1'),
(266364,32821,'_stock',NULL),
(266365,32821,'_stock_status','instock'),
(266366,32821,'_wc_average_rating','0'),
(266367,32821,'_wc_review_count','0'),
(266368,32821,'_product_version','8.5.2'),
(266369,32821,'_regular_price','4.50'),
(266370,32821,'_sale_price','2'),
(266371,32821,'_price','2'),
(266372,32821,'_wc_memberships_use_custom_product_viewing_restricted_message','no'),
(266373,32821,'_wc_memberships_use_custom_product_purchasing_restricted_message','no'),
(266374,32821,'_wc_memberships_force_public','no'),
(266375,32821,'_wc_memberships_exclude_discounts','no'),
(266376,32823,'_edit_lock','1722788366:1'),
(266377,32823,'_edit_last','1'),
(266378,32823,'_thumbnail_id','32786'),
(266379,32823,'_wp_page_template','default'),
(266380,32823,'_fz_country_restriction_type','all'),
(266381,32823,'_restricted_countries','a:0:{}'),
(266382,32823,'woolentor_total_stock_quantity',''),
(266383,32823,'_saleflash_text',''),
(266384,32823,'cartflows_redirect_flow_id',''),
(266385,32823,'cartflows_add_to_cart_text',''),
(266386,32823,'total_sales','0'),
(266387,32823,'_tax_status','taxable'),
(266388,32823,'_tax_class',''),
(266389,32823,'_manage_stock','no'),
(266390,32823,'_backorders','no'),
(266391,32823,'_sold_individually','no'),
(266392,32823,'_virtual','no'),
(266393,32823,'_downloadable','yes'),
(266394,32823,'_download_limit','-1'),
(266395,32823,'_download_expiry','-1'),
(266396,32823,'_stock',NULL),
(266397,32823,'_stock_status','instock'),
(266398,32823,'_wc_average_rating','0'),
(266399,32823,'_wc_review_count','0'),
(266400,32823,'_product_version','8.5.2'),
(266401,32823,'_regular_price','5.00'),
(266402,32823,'_sale_price','2'),
(266403,32823,'_price','2'),
(266404,32823,'_wc_memberships_use_custom_product_viewing_restricted_message','no'),
(266405,32823,'_wc_memberships_use_custom_product_purchasing_restricted_message','no'),
(266406,32823,'_wc_memberships_force_public','no'),
(266407,32823,'_wc_memberships_exclude_discounts','no'),
(266408,32825,'_edit_lock','1713896743:1'),
(266409,32825,'_edit_last','1'),
(266410,32825,'_thumbnail_id','32782'),
(266411,32825,'_wp_page_template','default'),
(266412,32825,'_fz_country_restriction_type','all'),
(266413,32825,'_restricted_countries','a:0:{}'),
(266414,32825,'woolentor_total_stock_quantity',''),
(266415,32825,'_saleflash_text',''),
(266416,32825,'cartflows_redirect_flow_id',''),
(266417,32825,'cartflows_add_to_cart_text',''),
(266418,32825,'total_sales','0'),
(266419,32825,'_tax_status','taxable'),
(266420,32825,'_tax_class',''),
(266421,32825,'_manage_stock','no'),
(266422,32825,'_backorders','no'),
(266423,32825,'_sold_individually','no'),
(266424,32825,'_virtual','no'),
(266425,32825,'_downloadable','yes'),
(266426,32825,'_download_limit','-1'),
(266427,32825,'_download_expiry','-1'),
(266428,32825,'_stock',NULL),
(266429,32825,'_stock_status','instock'),
(266430,32825,'_wc_average_rating','0'),
(266431,32825,'_wc_review_count','0'),
(266432,32825,'_product_version','8.5.2'),
(266433,32825,'_regular_price','4'),
(266434,32825,'_sale_price','2'),
(266435,32825,'_price','2'),
(266436,32825,'_wc_memberships_use_custom_product_viewing_restricted_message','no'),
(266437,32825,'_wc_memberships_use_custom_product_purchasing_restricted_message','no'),
(266438,32825,'_wc_memberships_force_public','no'),
(266439,32825,'_wc_memberships_exclude_discounts','no'),
(266440,32827,'_edit_lock','1713899277:1'),
(266441,32827,'_edit_last','1'),
(266442,32827,'_thumbnail_id','32784'),
(266443,32827,'_wp_page_template','default'),
(266444,32827,'_fz_country_restriction_type','all'),
(266445,32827,'_restricted_countries','a:0:{}'),
(266446,32827,'woolentor_total_stock_quantity',''),
(266447,32827,'_saleflash_text',''),
(266448,32827,'cartflows_redirect_flow_id',''),
(266449,32827,'cartflows_add_to_cart_text',''),
(266450,32827,'total_sales','22'),
(266451,32827,'_tax_status','taxable'),
(266452,32827,'_tax_class',''),
(266453,32827,'_manage_stock','no'),
(266454,32827,'_backorders','no'),
(266455,32827,'_sold_individually','no'),
(266456,32827,'_virtual','no'),
(266457,32827,'_downloadable','yes'),
(266458,32827,'_download_limit','-1'),
(266459,32827,'_download_expiry','-1'),
(266460,32827,'_stock',NULL),
(266461,32827,'_stock_status','instock'),
(266462,32827,'_wc_average_rating','0'),
(266463,32827,'_wc_review_count','0'),
(266464,32827,'_product_version','8.5.2'),
(266465,32827,'_regular_price','6'),
(266466,32827,'_sale_price','2'),
(266467,32827,'_price','2'),
(266468,32827,'_wc_memberships_use_custom_product_viewing_restricted_message','no'),
(266469,32827,'_wc_memberships_use_custom_product_purchasing_restricted_message','no'),
(266470,32827,'_wc_memberships_force_public','no'),
(266471,32827,'_wc_memberships_exclude_discounts','no'),
(266553,32840,'_wp_attached_file','2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png'),
(266554,32840,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1125;s:6:\"height\";i:480;s:4:\"file\";s:48:\"2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png\";s:8:\"filesize\";i:23805;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19339;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\";s:5:\"width\";i:1024;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83609;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-3-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:14269;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png\";s:5:\"width\";i:768;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59951;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-3-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33920;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png\";s:5:\"width\";i:399;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27337;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-3-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8774;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(266871,32878,'_wp_attached_file','2024/04/Mum-website-background-2-1.png'),
(266872,32878,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:38:\"2024/04/Mum-website-background-2-1.png\";s:8:\"filesize\";i:95596;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-2-1-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15509;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Mum-website-background-2-1-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83452;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-2-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:7246;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-2-1-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55810;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"Mum-website-background-2-1-1536x1086.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146095;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Mum-website-background-2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17529;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-2-1-399x282.png\";s:5:\"width\";i:399;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22422;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4324;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(266874,32879,'_wp_attached_file','2024/04/Mum-website-background-3-1.png'),
(266875,32879,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:38:\"2024/04/Mum-website-background-3-1.png\";s:8:\"filesize\";i:97871;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-3-1-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15694;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Mum-website-background-3-1-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83803;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-3-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:7325;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-3-1-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56111;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"Mum-website-background-3-1-1536x1086.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146245;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Mum-website-background-3-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17717;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-3-1-399x282.png\";s:5:\"width\";i:399;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22597;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-3-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4388;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(268046,32827,'_eael_post_view_count','73'),
(268047,32827,'woolentor_views_count_product','43'),
(268048,32825,'_eael_post_view_count','38'),
(268049,32825,'woolentor_views_count_product','28'),
(268773,33090,'_elementor_is_screenshot','1'),
(268774,33090,'_wp_attached_file','elementor/screenshots/Elementor-post-screenshot_32508_2024-04-24-20-14-51_1a8ad9af.png'),
(268778,33091,'_elementor_is_screenshot','1'),
(268779,33091,'_wp_attached_file','elementor/screenshots/Elementor-post-screenshot_32613_2024-04-24-20-18-54_2280cc5d.png'),
(269515,33174,'_elementor_source','post'),
(269516,33174,'_elementor_edit_mode','builder'),
(269517,33174,'_elementor_template_type','single-post'),
(269518,33174,'_elementor_version','3.19.2'),
(269519,33174,'_elementor_pro_version','3.19.2'),
(269520,33174,'_eael_post_view_count','13'),
(269521,33174,'_edit_lock','1714001593:1'),
(269740,33174,'_wp_page_template','default'),
(269741,33174,'_elementor_page_settings','a:4:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:5:\"cover\";}'),
(269742,33174,'_elementor_data','[{\"id\":\"9e28508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f188ca\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"a00d8ee\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF00\",\"shape_divider_top_color\":\"#43E1FFE6\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":181,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":136,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\"},\"elements\":[{\"id\":\"1904647\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":97},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"e182ceb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"818c58f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ccca021\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.996},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":194.844},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":212.844},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#5BCEFF\",\"_background_color_b\":\"#FFFFFF00\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.21)\"}},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"6e3b4b9\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":993,\"sizes\":[]}},\"elements\":[{\"id\":\"89c3d71\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"aa760a7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"c16709d\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"d7766b0\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"type\":\"time\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"7c354ed\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"type\":\"comments\",\"selected_icon\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"_id\":\"c1b10ed\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"}],\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"post-info\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7772d2e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"}],\"isInner\":true},{\"id\":\"a9851c8\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":65.668},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"post-comments\"},{\"id\":\"08c59af\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"9520561\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(269751,33174,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),
(269752,33174,'_eael_custom_js',''),
(269754,33174,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),
(269871,33174,'_elementor_controls_usage','a:8:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:6;s:11:\"boxed_width\";i:3;s:13:\"content_width\";i:4;s:20:\"flex_justify_content\";i:4;s:16:\"flex_align_items\";i:4;s:5:\"width\";i:3;s:8:\"flex_gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:10:\"_flex_size\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:2;}s:21:\"section_shape_divider\";a:4:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:2;s:23:\"shape_divider_top_width\";i:2;s:24:\"shape_divider_top_height\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:16:\"theme-post-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:9:\"post-info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}}}s:25:\"theme-post-featured-image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:13:\"post-comments\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:5:\"_skin\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:10:\"_flex_size\";i:1;}}}}s:15:\"post-navigation\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:4:\"link\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:12:{s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:11:\"hover_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}}}}}'),
(269875,33258,'_edit_lock','1714001496:1'),
(269877,33258,'_edit_last','1'),
(269878,33258,'_wc_memberships_force_public','no'),
(269879,33258,'_wc_memberships_use_custom_post_content_restricted_message','no'),
(269880,33258,'_elementor_edit_mode','builder'),
(269881,33258,'_elementor_template_type','wp-post'),
(269882,33258,'_elementor_version','3.19.2'),
(269883,33258,'_elementor_pro_version','3.19.2'),
(269884,33258,'_eael_post_view_count','98'),
(269887,33258,'_wp_page_template','default'),
(269888,33258,'_elementor_page_settings','a:4:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:5:\"cover\";}'),
(269889,33258,'_elementor_data','[{\"id\":\"bebd17b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dceed8a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"74fe9d5e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF00\",\"shape_divider_top_color\":\"#43E1FFE6\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":181,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":136,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\"},\"elements\":[{\"id\":\"306a1285\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":97},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"6403d0a8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"529f882a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"3d966bc6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":122.996},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":194.844},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":212.844},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#5BCEFF\",\"_background_color_b\":\"#FFFFFF00\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.21)\"}},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"71279e8\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":993,\"sizes\":[]}},\"elements\":[{\"id\":\"167eb442\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"7ad9cbed\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"_id\":\"c16709d\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"d7766b0\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"type\":\"time\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"7c354ed\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"},{\"type\":\"comments\",\"selected_icon\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"_id\":\"c1b10ed\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"}],\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"post-info\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f1acbca\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"}],\"isInner\":true},{\"id\":\"351afe7f\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"theme_comments\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":65.668},\"_flex_align_self\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"post-comments\"},{\"id\":\"727fcc10\",\"elType\":\"widget\",\"settings\":{\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"post-navigation\"},{\"id\":\"206a539f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(269890,33258,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),
(269924,33258,'_eael_custom_js',''),
(269925,33258,'_elementor_controls_usage','a:8:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:6;s:11:\"boxed_width\";i:3;s:13:\"content_width\";i:4;s:20:\"flex_justify_content\";i:4;s:16:\"flex_align_items\";i:4;s:5:\"width\";i:3;s:8:\"flex_gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:10:\"_flex_size\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:2;}s:21:\"section_shape_divider\";a:4:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:2;s:23:\"shape_divider_top_width\";i:2;s:24:\"shape_divider_top_height\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:16:\"theme-post-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:9:\"post-info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}}}s:25:\"theme-post-featured-image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:13:\"post-comments\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:5:\"_skin\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:10:\"_flex_size\";i:1;}}}}s:15:\"post-navigation\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:4:\"link\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:12:{s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:11:\"hover_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}}}}}'),
(269954,32731,'_elementor_controls_usage','a:5:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:5;s:11:\"boxed_width\";i:2;s:13:\"content_width\";i:3;s:20:\"flex_justify_content\";i:4;s:16:\"flex_align_items\";i:4;s:8:\"flex_gap\";i:1;s:5:\"width\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:10:\"_flex_size\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:2;}s:21:\"section_shape_divider\";a:4:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:2;s:23:\"shape_divider_top_width\";i:2;s:24:\"shape_divider_top_height\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:14:\"call-to-action\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:18:\"section_main_image\";a:4:{s:6:\"layout\";i:1;s:13:\"layout_mobile\";i:1;s:8:\"bg_image\";i:1;s:13:\"bg_image_size\";i:1;}s:15:\"section_content\";a:3:{s:5:\"title\";i:1;s:11:\"description\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:3:{s:9:\"box_style\";a:2:{s:10:\"min-height\";i:1;s:17:\"vertical_position\";i:1;}s:21:\"section_content_style\";a:7:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:33:\"description_typography_typography\";i:1;s:34:\"description_typography_font_family\";i:1;s:32:\"description_typography_font_size\";i:1;s:16:\"content_bg_color\";i:1;s:11:\"title_color\";i:1;}s:12:\"button_style\";a:4:{s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:20:\"button_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:4:\"link\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:12:{s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:11:\"hover_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}}}}}'),
(271230,32823,'_eael_post_view_count','40'),
(271231,32823,'woolentor_views_count_product','28'),
(271243,33415,'_wp_attached_file','2024/05/Choice-Logo-Banner-1125-Ã—-480px-5-1.png'),
(271244,33415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1125;s:6:\"height\";i:480;s:4:\"file\";s:48:\"2024/05/Choice-Logo-Banner-1125-Ã—-480px-5-1.png\";s:8:\"filesize\";i:11695;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-5-1-300x128.png\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6574;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Choice-Logo-Banner-1125-Ã—-480px-5-1-1024x437.png\";s:5:\"width\";i:1024;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30938;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-5-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:3341;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-5-1-768x328.png\";s:5:\"width\";i:768;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21198;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-5-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7922;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-5-1-399x170.png\";s:5:\"width\";i:399;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9040;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:48:\"Choice-Logo-Banner-1125-Ã—-480px-5-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2068;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(271648,32821,'_eael_post_view_count','41'),
(271649,32821,'woolentor_views_count_product','30'),
(273388,33656,'_wp_page_template','elementor_header_footer'),
(273487,33656,'_cdp_origin','32473'),
(273488,33656,'_cdp_origin_site','-1'),
(273489,33656,'_cdp_origin_title',' Wordsearches #[Counter]'),
(273490,33656,'_cdp_counter','9'),
(273491,33656,'_wp_page_template','elementor_header_footer'),
(273492,33656,'_wp_page_template','elementor_header_footer'),
(273493,33656,'_cdp_origin','5228'),
(273494,33656,'_elementor_template_type','wp-page'),
(273495,33656,'_elementor_version','3.21.4'),
(273496,33656,'_elementor_pro_version','3.21.2');
INSERT INTO `wphu_postmeta` VALUES
(273497,33656,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">FREE <\\/span><font color=\\\"#10a4e3\\\">Seasonal<\\/font>&nbsp;<span style=\\\"color: #f9a70c;\\\">Printables<\\/span><span style=\\\"color: #f9a70c;\\\"><span style=\\\"color: #f8049c;\\\">:<\\/span><\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d052ea0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"2a6323d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"3158459\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ad9dc56\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"23c1c57\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4ee5978\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"482f524\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bdc4257\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7105e50\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6520115\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"c32737a\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ba999e3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"f7c71d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01112fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.\\u00a0<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e99a2c3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"fdce697\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cc8569\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"17bad16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.\\u00a0<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d5bcf8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"08e3d52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8984541\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d5f1aaa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"c4edad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f015e5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e5de95a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"79092ad\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}]'),
(273498,33656,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(273499,33656,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(273500,33656,'_elementor_edit_mode','builder'),
(273806,33656,'_edit_last','1'),
(273816,33656,'_edit_lock','1730150245:1'),
(274157,33656,'_eael_widget_elements','a:1:{s:20:\"woo-product-carousel\";s:20:\"woo-product-carousel\";}'),
(274249,33730,'_order_key','wc_order_RNM9zSwKjESdT'),
(274250,33730,'_customer_user','1'),
(274251,33730,'_payment_method','paypal'),
(274252,33730,'_payment_method_title','PayPal'),
(274253,33730,'_customer_ip_address','31.94.14.134'),
(274254,33730,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(274255,33730,'_created_via','checkout'),
(274256,33730,'_cart_hash','5dba4d792e1aa5d1896f7ad47bb03248'),
(274257,33730,'_download_permissions_granted','no'),
(274258,33730,'_recorded_sales','yes'),
(274259,33730,'_recorded_coupon_usage_counts','yes'),
(274260,33730,'_new_order_email_sent','true'),
(274261,33730,'_order_stock_reduced','yes'),
(274262,33730,'_billing_first_name','Ivan'),
(274263,33730,'_billing_last_name','Kulongo'),
(274264,33730,'_billing_address_1','20 Hatfield Road'),
(274265,33730,'_billing_city','Dagenham'),
(274266,33730,'_billing_state','Essex'),
(274267,33730,'_billing_postcode','RM9 6JR'),
(274268,33730,'_billing_country','GB'),
(274269,33730,'_billing_email','ivankulongo@gmail.com'),
(274270,33730,'_billing_phone','782873017'),
(274271,33730,'_shipping_first_name','Ivan'),
(274272,33730,'_shipping_last_name','Kulongo'),
(274273,33730,'_shipping_address_1','20 Hatfield Road'),
(274274,33730,'_shipping_city','Dagenham'),
(274275,33730,'_shipping_state','Essex'),
(274276,33730,'_shipping_postcode','RM9 6JR'),
(274277,33730,'_shipping_country','GB'),
(274278,33730,'_order_currency','GBP'),
(274279,33730,'_cart_discount','0'),
(274280,33730,'_cart_discount_tax','0'),
(274281,33730,'_order_shipping','3.95'),
(274282,33730,'_order_shipping_tax','0'),
(274283,33730,'_order_tax','0'),
(274284,33730,'_order_total','9.95'),
(274285,33730,'_order_version','8.5.2'),
(274286,33730,'_prices_include_tax','no'),
(274287,33730,'_billing_address_index','Ivan Kulongo  20 Hatfield Road  Dagenham Essex RM9 6JR GB ivankulongo@gmail.com 782873017'),
(274288,33730,'_shipping_address_index','Ivan Kulongo  20 Hatfield Road  Dagenham Essex RM9 6JR GB '),
(274289,33730,'is_vat_exempt','no'),
(274290,33730,'_wcf_flow_id','8120'),
(274291,33730,'_wcf_checkout_id','8121'),
(274292,33730,'_wc_order_attribution_source_type','typein'),
(274293,33730,'_wc_order_attribution_utm_source','(direct)'),
(274294,33730,'_wc_order_attribution_session_entry','https://choiceresources.co.uk/'),
(274295,33730,'_wc_order_attribution_session_start_time','2024-05-07 12:02:54'),
(274296,33730,'_wc_order_attribution_session_pages','40'),
(274297,33730,'_wc_order_attribution_session_count','5'),
(274298,33730,'_wc_order_attribution_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(274299,33730,'_wc_order_attribution_device_type','Desktop'),
(274300,33730,'Payment type','instant'),
(274301,33730,'_paypal_status','pending'),
(274302,33730,'_transaction_id','36M256348A7074940'),
(274303,8122,'_eael_post_view_count','12'),
(274305,33731,'_order_key','wc_order_MiO92CLkda6Hz'),
(274306,33731,'_customer_user','0'),
(274307,33731,'_payment_method','paypal'),
(274308,33731,'_payment_method_title','PayPal'),
(274309,33731,'_customer_ip_address','31.94.14.135'),
(274310,33731,'_customer_user_agent','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Mobile Safari/537.36'),
(274311,33731,'_created_via','checkout'),
(274312,33731,'_cart_hash','3f89651837387cb60fa43524548258fd'),
(274313,33731,'_download_permissions_granted','no'),
(274314,33731,'_recorded_sales','no'),
(274315,33731,'_recorded_coupon_usage_counts','no'),
(274316,33731,'_new_order_email_sent','false'),
(274317,33731,'_order_stock_reduced','no'),
(274318,33731,'_billing_first_name','Amna'),
(274319,33731,'_billing_last_name','Kulongo'),
(274320,33731,'_billing_address_1','7 Ireland Close'),
(274321,33731,'_billing_address_2','Beckton'),
(274322,33731,'_billing_city','London'),
(274323,33731,'_billing_postcode','E6 5RF'),
(274324,33731,'_billing_country','GB'),
(274325,33731,'_billing_email','ivankulongo@gmail.com'),
(274326,33731,'_billing_phone','020754129683'),
(274327,33731,'_shipping_first_name','Amna'),
(274328,33731,'_shipping_last_name','Kulongo'),
(274329,33731,'_shipping_address_1','7 Ireland Close'),
(274330,33731,'_shipping_address_2','Beckton'),
(274331,33731,'_shipping_city','London'),
(274332,33731,'_shipping_postcode','E6 5RF'),
(274333,33731,'_shipping_country','GB'),
(274334,33731,'_order_currency','GBP'),
(274335,33731,'_cart_discount','0'),
(274336,33731,'_cart_discount_tax','0'),
(274337,33731,'_order_shipping','3.95'),
(274338,33731,'_order_shipping_tax','0'),
(274339,33731,'_order_tax','0'),
(274340,33731,'_order_total','5.95'),
(274341,33731,'_order_version','8.5.2'),
(274342,33731,'_prices_include_tax','no'),
(274343,33731,'_billing_address_index','Amna Kulongo  7 Ireland Close Beckton London  E6 5RF GB ivankulongo@gmail.com 020754129683'),
(274344,33731,'_shipping_address_index','Amna Kulongo  7 Ireland Close Beckton London  E6 5RF GB '),
(274345,33731,'is_vat_exempt','no'),
(274346,33731,'_wcf_flow_id','8120'),
(274347,33731,'_wcf_checkout_id','8121'),
(274348,33731,'_wc_order_attribution_source_type','referral'),
(274349,33731,'_wc_order_attribution_referrer','android-app://com.google.android.googlequicksearchbox/'),
(274350,33731,'_wc_order_attribution_utm_source','com.google.android.googlequicksearchbox'),
(274351,33731,'_wc_order_attribution_utm_medium','referral'),
(274352,33731,'_wc_order_attribution_utm_content','/'),
(274353,33731,'_wc_order_attribution_session_entry','https://choiceresources.co.uk/'),
(274354,33731,'_wc_order_attribution_session_start_time','2024-05-07 22:53:54'),
(274355,33731,'_wc_order_attribution_session_pages','4'),
(274356,33731,'_wc_order_attribution_session_count','3'),
(274357,33731,'_wc_order_attribution_user_agent','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Mobile Safari/537.36'),
(274358,33731,'_wc_order_attribution_device_type','Mobile'),
(274598,33756,'_wp_attached_file','2024/05/Mum-website-background-5-1.png'),
(274599,33756,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:707;s:4:\"file\";s:38:\"2024/05/Mum-website-background-5-1.png\";s:8:\"filesize\";i:38497;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-5-1-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15812;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-5-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:7289;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-5-1-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57769;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Mum-website-background-5-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17958;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-5-1-399x282.png\";s:5:\"width\";i:399;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22943;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-5-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4392;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(274724,33771,'_wp_attached_file','2024/05/Mum-website-background-7-1.png'),
(274725,33771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:707;s:4:\"file\";s:38:\"2024/05/Mum-website-background-7-1.png\";s:8:\"filesize\";i:38042;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-7-1-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14628;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-7-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:6709;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-7-1-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55224;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Mum-website-background-7-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16749;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-7-1-399x282.png\";s:5:\"width\";i:399;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21282;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Mum-website-background-7-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3985;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(276027,33915,'_order_key','wc_order_gMNOkLz74tNAt'),
(276028,33915,'_customer_user','1'),
(276029,33915,'_payment_method','woocommerce_payments'),
(276030,33915,'_payment_method_title','Visa credit card'),
(276031,33915,'_customer_ip_address','31.94.14.79'),
(276032,33915,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(276033,33915,'_created_via','checkout'),
(276034,33915,'_cart_hash','c663d17d24c91891bd789b04249edf31'),
(276035,33915,'_download_permissions_granted','yes'),
(276036,33915,'_recorded_sales','yes'),
(276037,33915,'_recorded_coupon_usage_counts','yes'),
(276038,33915,'_new_order_email_sent','true'),
(276039,33915,'_order_stock_reduced','yes'),
(276040,33915,'_billing_first_name','Ivan'),
(276041,33915,'_billing_last_name','Kulongo'),
(276042,33915,'_billing_address_1','22 Seymour Road'),
(276043,33915,'_billing_city','Dagenham'),
(276044,33915,'_billing_state','Kent'),
(276045,33915,'_billing_postcode','RM9 5DR'),
(276046,33915,'_billing_country','GB'),
(276047,33915,'_billing_email','ivankulongo@gmail.com'),
(276048,33915,'_billing_phone','782873017'),
(276049,33915,'_shipping_first_name','Ivan'),
(276050,33915,'_shipping_last_name','Kulongo'),
(276051,33915,'_shipping_address_1','22 Seymour Road'),
(276052,33915,'_shipping_city','Dagenham'),
(276053,33915,'_shipping_state','Kent'),
(276054,33915,'_shipping_postcode','RM9 5DR'),
(276055,33915,'_shipping_country','GB'),
(276056,33915,'_order_currency','GBP'),
(276057,33915,'_cart_discount','0'),
(276058,33915,'_cart_discount_tax','0'),
(276059,33915,'_order_shipping','3.95'),
(276060,33915,'_order_shipping_tax','0'),
(276061,33915,'_order_tax','0'),
(276062,33915,'_order_total','15.95'),
(276063,33915,'_order_version','8.5.2'),
(276064,33915,'_prices_include_tax','no'),
(276065,33915,'_billing_address_index','Ivan Kulongo  22 Seymour Road  Dagenham Kent RM9 5DR GB ivankulongo@gmail.com 782873017'),
(276066,33915,'_shipping_address_index','Ivan Kulongo  22 Seymour Road  Dagenham Kent RM9 5DR GB '),
(276067,33915,'is_vat_exempt','no'),
(276068,33915,'_wcf_flow_id','8120'),
(276069,33915,'_wcf_checkout_id','8121'),
(276070,33915,'_wc_order_attribution_source_type','typein'),
(276071,33915,'_wc_order_attribution_utm_source','(direct)'),
(276072,33915,'_wc_order_attribution_session_entry','https://choiceresources.co.uk/'),
(276073,33915,'_wc_order_attribution_session_start_time','2024-05-08 07:27:31'),
(276074,33915,'_wc_order_attribution_session_pages','39'),
(276075,33915,'_wc_order_attribution_session_count','2'),
(276076,33915,'_wc_order_attribution_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(276077,33915,'_wc_order_attribution_device_type','Desktop'),
(276078,33915,'_payment_method_id','pm_1PE9AjC4KoWWGXx7iClduVu9'),
(276079,33915,'_stripe_customer_id','cus_Q4HklBX2wGyAXe'),
(276080,33915,'_wcpay_mode','test'),
(276081,33915,'_intent_id','pi_3PE9AmC4KoWWGXx7155YLaYn'),
(276082,33915,'_charge_id','ch_3PE9AmC4KoWWGXx71iySlEsr'),
(276083,33915,'_intention_status','succeeded'),
(276084,33915,'_wcpay_intent_currency','gbp'),
(276085,33915,'_wcpay_payment_transaction_id','txn_3PE9AmC4KoWWGXx71zQDEmXQ'),
(276086,33915,'_transaction_id','pi_3PE9AmC4KoWWGXx7155YLaYn'),
(276087,33915,'_wcpay_fraud_outcome_status','allow'),
(276088,33915,'_wcpay_fraud_meta_box_type','allow'),
(276089,33915,'_date_paid','1715169637'),
(276090,33915,'_paid_date','2024-05-08 12:00:37'),
(276091,33915,'_wcpay_transaction_fee','0.81'),
(276092,33915,'_new_order_tracking_complete','yes'),
(276470,33956,'_order_key','wc_order_aNar5EOOZsvwE'),
(276471,33956,'_customer_user','0'),
(276472,33956,'_payment_method','woocommerce_payments'),
(276473,33956,'_payment_method_title','Visa credit card'),
(276474,33956,'_customer_ip_address','31.94.14.79'),
(276475,33956,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(276476,33956,'_created_via','checkout'),
(276477,33956,'_cart_hash','74ea19945f50e3aad2dd01e6389395e9'),
(276478,33956,'_download_permissions_granted','yes'),
(276479,33956,'_recorded_sales','yes'),
(276480,33956,'_recorded_coupon_usage_counts','yes'),
(276481,33956,'_new_order_email_sent','true'),
(276482,33956,'_order_stock_reduced','yes'),
(276483,33956,'_billing_first_name','Amna'),
(276484,33956,'_billing_last_name','Kulongo'),
(276485,33956,'_billing_address_1','7 Ireland Close'),
(276486,33956,'_billing_address_2','Beckton'),
(276487,33956,'_billing_city','London'),
(276488,33956,'_billing_postcode','E6 5RF'),
(276489,33956,'_billing_country','GB'),
(276490,33956,'_billing_email','ivankulongo@gmail.com'),
(276491,33956,'_billing_phone','07950212299'),
(276492,33956,'_shipping_first_name','Amna'),
(276493,33956,'_shipping_last_name','Kulongo'),
(276494,33956,'_shipping_address_1','7 Ireland Close'),
(276495,33956,'_shipping_address_2','Beckton'),
(276496,33956,'_shipping_city','London'),
(276497,33956,'_shipping_postcode','E6 5RF'),
(276498,33956,'_shipping_country','GB'),
(276499,33956,'_order_currency','GBP'),
(276500,33956,'_cart_discount','0'),
(276501,33956,'_cart_discount_tax','0'),
(276502,33956,'_order_shipping','3.95'),
(276503,33956,'_order_shipping_tax','0'),
(276504,33956,'_order_tax','0'),
(276505,33956,'_order_total','7.95'),
(276506,33956,'_order_version','8.5.2'),
(276507,33956,'_prices_include_tax','no'),
(276508,33956,'_billing_address_index','Amna Kulongo  7 Ireland Close Beckton London  E6 5RF GB ivankulongo@gmail.com 07950212299'),
(276509,33956,'_shipping_address_index','Amna Kulongo  7 Ireland Close Beckton London  E6 5RF GB '),
(276510,33956,'is_vat_exempt','no'),
(276511,33956,'_wcf_flow_id','8120'),
(276512,33956,'_wcf_checkout_id','8121'),
(276513,33956,'_wc_order_attribution_source_type','typein'),
(276514,33956,'_wc_order_attribution_utm_source','(direct)'),
(276515,33956,'_wc_order_attribution_session_entry','https://choiceresources.co.uk/'),
(276516,33956,'_wc_order_attribution_session_start_time','2024-05-08 11:21:36'),
(276517,33956,'_wc_order_attribution_session_pages','9'),
(276518,33956,'_wc_order_attribution_session_count','2'),
(276519,33956,'_wc_order_attribution_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(276520,33956,'_wc_order_attribution_device_type','Desktop'),
(276521,33956,'_payment_method_id','pm_1PEAHcC4KoWWGXx79Qlc9IES'),
(276522,33956,'_stripe_customer_id','cus_Q4ItIfsk8eFGRq'),
(276523,33956,'_wcpay_mode','test'),
(276524,33956,'_intent_id','pi_3PEAHgC4KoWWGXx70Y1laLYE'),
(276525,33956,'_charge_id','ch_3PEAHgC4KoWWGXx707KN8nvd'),
(276526,33956,'_intention_status','succeeded'),
(276527,33956,'_wcpay_intent_currency','gbp'),
(276528,33956,'_wcpay_payment_transaction_id','txn_3PEAHgC4KoWWGXx706SH4QJn'),
(276529,33956,'_transaction_id','pi_3PEAHgC4KoWWGXx70Y1laLYE'),
(276530,33956,'_wcpay_fraud_outcome_status','allow'),
(276531,33956,'_wcpay_fraud_meta_box_type','allow'),
(276532,33956,'_date_paid','1715173909'),
(276533,33956,'_paid_date','2024-05-08 13:11:49'),
(276534,33956,'_wcpay_transaction_fee','0.53'),
(276536,33956,'_new_order_tracking_complete','yes'),
(276537,33957,'_order_key','wc_order_hQa08ZZSeN6qn'),
(276538,33957,'_customer_user','1'),
(276539,33957,'_payment_method','woocommerce_payments'),
(276540,33957,'_payment_method_title','Visa credit card'),
(276541,33957,'_customer_ip_address','31.94.14.79'),
(276542,33957,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(276543,33957,'_created_via','checkout'),
(276544,33957,'_cart_hash','56831f6de3eb4b436d354c46ed180c06'),
(276545,33957,'_download_permissions_granted','yes'),
(276546,33957,'_recorded_sales','yes'),
(276547,33957,'_recorded_coupon_usage_counts','yes'),
(276548,33957,'_new_order_email_sent','true'),
(276549,33957,'_order_stock_reduced','yes'),
(276550,33957,'_billing_first_name','Ivan'),
(276551,33957,'_billing_last_name','Kulongo'),
(276552,33957,'_billing_address_1','22 Seymour Road'),
(276553,33957,'_billing_city','Dagenham'),
(276554,33957,'_billing_state','Kent'),
(276555,33957,'_billing_postcode','RM9 5DR'),
(276556,33957,'_billing_country','GB'),
(276557,33957,'_billing_email','ivankulongo@gmail.com'),
(276558,33957,'_billing_phone','782873017'),
(276559,33957,'_shipping_first_name','Ivan'),
(276560,33957,'_shipping_last_name','Kulongo'),
(276561,33957,'_shipping_address_1','22 Seymour Road'),
(276562,33957,'_shipping_city','Dagenham'),
(276563,33957,'_shipping_state','Kent'),
(276564,33957,'_shipping_postcode','RM9 5DR'),
(276565,33957,'_shipping_country','GB'),
(276566,33957,'_order_currency','GBP'),
(276567,33957,'_cart_discount','0'),
(276568,33957,'_cart_discount_tax','0'),
(276569,33957,'_order_shipping','3.95'),
(276570,33957,'_order_shipping_tax','0'),
(276571,33957,'_order_tax','0'),
(276572,33957,'_order_total','11.95'),
(276573,33957,'_order_version','8.5.2'),
(276574,33957,'_prices_include_tax','no'),
(276575,33957,'_billing_address_index','Ivan Kulongo  22 Seymour Road  Dagenham Kent RM9 5DR GB ivankulongo@gmail.com 782873017'),
(276576,33957,'_shipping_address_index','Ivan Kulongo  22 Seymour Road  Dagenham Kent RM9 5DR GB '),
(276577,33957,'is_vat_exempt','no'),
(276578,33957,'_wcf_flow_id','8120'),
(276579,33957,'_wcf_checkout_id','8121'),
(276580,33957,'_wc_order_attribution_source_type','typein'),
(276581,33957,'_wc_order_attribution_utm_source','(direct)'),
(276582,33957,'_wc_order_attribution_session_entry','https://choiceresources.co.uk/'),
(276583,33957,'_wc_order_attribution_session_start_time','2024-05-08 07:27:31'),
(276584,33957,'_wc_order_attribution_session_pages','67'),
(276585,33957,'_wc_order_attribution_session_count','2'),
(276586,33957,'_wc_order_attribution_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(276587,33957,'_wc_order_attribution_device_type','Desktop'),
(276588,33957,'_payment_method_id','pm_1PEAJhC4KoWWGXx7LXTSl0RA'),
(276589,33957,'_stripe_customer_id','cus_Q4HklBX2wGyAXe'),
(276590,33957,'_wcpay_mode','test'),
(276591,33957,'_intent_id','pi_3PEAJyC4KoWWGXx70CJyIRpH'),
(276592,33957,'_charge_id','ch_3PEAJyC4KoWWGXx70L05YzRN'),
(276593,33957,'_intention_status','succeeded'),
(276594,33957,'_wcpay_intent_currency','gbp'),
(276595,33957,'_wcpay_payment_transaction_id','txn_3PEAJyC4KoWWGXx70O9JlY7E'),
(276596,33957,'_transaction_id','pi_3PEAJyC4KoWWGXx70CJyIRpH'),
(276597,33957,'_wcpay_fraud_outcome_status','allow'),
(276598,33957,'_wcpay_fraud_meta_box_type','allow'),
(276599,33957,'_date_paid','1715174052'),
(276600,33957,'_paid_date','2024-05-08 13:14:12'),
(276601,33957,'_wcpay_transaction_fee','0.67'),
(276602,33957,'_wcpay_transaction_fee','0.67'),
(276603,33957,'_new_order_tracking_complete','yes'),
(276649,33174,'_elementor_screenshot_failed','2024-05-08 13:28:59'),
(276728,33971,'_elementor_edit_mode','builder'),
(276729,33971,'_elementor_template_type','product'),
(276732,33971,'_elementor_version','3.21.4'),
(276733,33971,'_elementor_pro_version','3.21.2'),
(276734,33971,'_eael_post_view_count','13'),
(276735,33971,'_edit_lock','1721842150:1'),
(276961,33971,'_wp_page_template','default'),
(276962,33971,'_elementor_page_settings','a:3:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}}'),
(276963,33971,'_elementor_data','[{\"id\":\"68f88ad\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"background_color\":\"#B4E3FF\"},\"elements\":[{\"id\":\"6c9a6bd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"18000a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"6e67d48\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"dfaa03b\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"woocommerce-product-images\"}],\"isInner\":true},{\"id\":\"3878a1b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ce1d59\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"woocommerce-product-title-tag\\\" settings=\\\"%7B%22product_id%22%3Afalse%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_color\":\"#0D42C0\"},\"elements\":[],\"widgetType\":\"woocommerce-product-title\"},{\"id\":\"1dcdab9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"woocommerce-product-rating\"},{\"id\":\"da8eb08\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"woocommerce-product-meta\"},{\"id\":\"56a28fd\",\"elType\":\"widget\",\"settings\":{\"price_color\":\"#0D42C0\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"woocommerce-product-price\"},{\"id\":\"55990eb\",\"elType\":\"widget\",\"settings\":{\"text_typography_typography\":\"custom\",\"text_typography_font_family\":\"Dekko\",\"text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"wl-single-product-description\"},{\"id\":\"038e856\",\"elType\":\"widget\",\"settings\":{\"text\":\"Add to Cart\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#F8049C\"},\"elements\":[],\"widgetType\":\"wc-add-to-cart\"}],\"isInner\":true},{\"id\":\"7e1ff2f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"100\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"462d88e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">You&nbsp;<\\/span><span style=\\\"color: #10a4e3;\\\">might&nbsp;<\\/span><span style=\\\"color: #f9a70c;\\\">like...<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":59.042},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":287.891}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a65230\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"46\",\"row\":\"30\",\"isLinked\":false,\"unit\":\"px\",\"size\":46},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"40bc8cd\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"33\",\"bottom\":\"33\",\"left\":\"33\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_box_shadow_box_shadow_type\":\"yes\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":102.182},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"wl-product-related\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(276964,33971,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(276981,33971,'_eael_custom_js',''),
(276983,33971,'_elementor_conditions','a:1:{i:0;s:15:\"include/product\";}'),
(279515,5228,'_oembed_7befe71c04536851b6485e7b012d3f0d','<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),
(279516,5228,'_oembed_time_7befe71c04536851b6485e7b012d3f0d','1715203808'),
(279546,5228,'_oembed_8f8278ad95b05575e3c81d709889ad1e','<iframe title=\"New Home\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/Dhajjm9CdbQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),
(279547,5228,'_oembed_time_8f8278ad95b05575e3c81d709889ad1e','1715203935'),
(280990,34480,'_wp_attached_file','2024/05/Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-1.png'),
(280991,34480,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:63:\"2024/05/Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-1.png\";s:8:\"filesize\";i:187299;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-1-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39329;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-1-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:255633;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-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:25444;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-1-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160971;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:64:\"Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-1-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:488753;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:63:\"Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71540;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:63:\"Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-1-399x224.png\";s:5:\"width\";i:399;s:6:\"height\";i:224;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59902;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:63:\"Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14021;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(282415,577,'_elementor_controls_usage','a:7:{s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:14:\"headline_style\";i:1;s:11:\"before_text\";i:1;s:13:\"rotating_text\";i:1;s:22:\"rotate_iteration_delay\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:33:\"highlighted_text_background_color\";i:1;s:22:\"highlighted_text_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:6:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"section_effects\";a:2:{s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:7:\"_margin\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:6;s:16:\"flex_align_items\";i:7;s:13:\"content_width\";i:6;s:5:\"width\";i:6;s:20:\"flex_justify_content\";i:7;s:8:\"flex_gap\";i:5;s:11:\"boxed_width\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:10:\"_flex_size\";i:6;}}s:5:\"style\";a:3:{s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;}s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:16:\"background_image\";i:1;}s:21:\"section_shape_divider\";a:3:{s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:9;s:10:\"title_text\";i:9;s:16:\"description_text\";i:9;s:4:\"link\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:6:{s:8:\"position\";i:9;s:15:\"position_mobile\";i:9;s:26:\"content_vertical_alignment\";i:3;s:10:\"text_align\";i:3;s:10:\"icon_space\";i:3;s:18:\"title_bottom_space\";i:3;}s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:9;s:9:\"icon_size\";i:9;}s:21:\"section_style_content\";a:4:{s:27:\"title_typography_typography\";i:9;s:28:\"title_typography_font_family\";i:9;s:26:\"title_typography_font_size\";i:9;s:11:\"title_color\";i:5;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:4;s:14:\"_border_radius\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:3;s:21:\"_element_custom_width\";i:3;s:10:\"_flex_size\";i:3;s:21:\"_element_width_tablet\";i:2;s:21:\"_element_width_mobile\";i:1;}}}}}'),
(282509,34645,'_order_key','wc_order_KQMRr4QHYAp21'),
(282510,34645,'_customer_user','1'),
(282511,34645,'_payment_method','woocommerce_payments'),
(282512,34645,'_payment_method_title','Visa credit card'),
(282513,34645,'_customer_ip_address','31.94.25.3'),
(282514,34645,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(282515,34645,'_created_via','checkout'),
(282516,34645,'_cart_hash','56831f6de3eb4b436d354c46ed180c06'),
(282517,34645,'_download_permissions_granted','yes'),
(282518,34645,'_recorded_sales','yes'),
(282519,34645,'_recorded_coupon_usage_counts','yes'),
(282520,34645,'_new_order_email_sent','true'),
(282521,34645,'_order_stock_reduced','yes'),
(282522,34645,'_billing_first_name','Ivan'),
(282523,34645,'_billing_last_name','Kulongo'),
(282524,34645,'_billing_address_1','22 Seymour Road'),
(282525,34645,'_billing_city','Dagenham'),
(282526,34645,'_billing_state','Kent'),
(282527,34645,'_billing_postcode','RM9 5DR'),
(282528,34645,'_billing_country','GB'),
(282529,34645,'_billing_email','ivankulongo@gmail.com'),
(282530,34645,'_billing_phone','782873017'),
(282531,34645,'_shipping_first_name','Ivan'),
(282532,34645,'_shipping_last_name','Kulongo'),
(282533,34645,'_shipping_address_1','22 Seymour Road'),
(282534,34645,'_shipping_city','Dagenham'),
(282535,34645,'_shipping_state','Kent'),
(282536,34645,'_shipping_postcode','RM9 5DR'),
(282537,34645,'_shipping_country','GB'),
(282538,34645,'_order_currency','GBP'),
(282539,34645,'_cart_discount','0'),
(282540,34645,'_cart_discount_tax','0'),
(282541,34645,'_order_shipping','3.95'),
(282542,34645,'_order_shipping_tax','0'),
(282543,34645,'_order_tax','0'),
(282544,34645,'_order_total','11.95'),
(282545,34645,'_order_version','8.5.2'),
(282546,34645,'_prices_include_tax','no'),
(282547,34645,'_billing_address_index','Ivan Kulongo  22 Seymour Road  Dagenham Kent RM9 5DR GB ivankulongo@gmail.com 782873017'),
(282548,34645,'_shipping_address_index','Ivan Kulongo  22 Seymour Road  Dagenham Kent RM9 5DR GB '),
(282549,34645,'is_vat_exempt','no'),
(282550,34645,'_wcf_flow_id','8120'),
(282551,34645,'_wcf_checkout_id','8121'),
(282552,34645,'_wc_order_attribution_source_type','typein'),
(282553,34645,'_wc_order_attribution_utm_source','(direct)'),
(282554,34645,'_wc_order_attribution_session_entry','https://choiceresources.co.uk/'),
(282555,34645,'_wc_order_attribution_session_start_time','2024-05-09 17:44:04'),
(282556,34645,'_wc_order_attribution_session_pages','34'),
(282557,34645,'_wc_order_attribution_session_count','2'),
(282558,34645,'_wc_order_attribution_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(282559,34645,'_wc_order_attribution_device_type','Desktop'),
(282560,34645,'_payment_method_id','pm_1PEcaqC4KoWWGXx7RzglEjFs'),
(282561,34645,'_stripe_customer_id','cus_Q4HklBX2wGyAXe'),
(282562,34645,'_wcpay_mode','test'),
(282563,34645,'_intent_id','pi_3PEcatC4KoWWGXx71YMPYBW3'),
(282564,34645,'_charge_id','ch_3PEcatC4KoWWGXx71kdNev4G'),
(282565,34645,'_intention_status','succeeded'),
(282566,34645,'_wcpay_intent_currency','gbp'),
(282567,34645,'_wcpay_payment_transaction_id','txn_3PEcatC4KoWWGXx710ztNz0R'),
(282568,34645,'_transaction_id','pi_3PEcatC4KoWWGXx71YMPYBW3'),
(282569,34645,'_wcpay_fraud_outcome_status','allow'),
(282570,34645,'_wcpay_fraud_meta_box_type','allow'),
(282571,34645,'_date_paid','1715282732'),
(282572,34645,'_paid_date','2024-05-09 19:25:32'),
(282573,34645,'_wcpay_transaction_fee','0.67'),
(282575,34645,'_new_order_tracking_complete','yes'),
(282617,8121,'_elementor_controls_usage','a:8:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:5:\"width\";i:1;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:1;s:20:\"flex_justify_content\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}s:18:\"section_background\";a:8:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:10:\"_flex_size\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;s:11:\"text_indent\";i:3;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:3;s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;s:27:\"icon_typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:1;s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:7:\"z_index\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;}s:14:\"section_border\";a:6:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:6:{s:16:\"background_color\";i:1;s:21:\"background_background\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:16:\"background_image\";i:1;}s:14:\"section_border\";a:2:{s:12:\"border_width\";i:1;s:13:\"border_border\";i:1;}s:21:\"section_background_uc\";a:8:{s:16:\"clouds_image_one\";i:1;s:16:\"clouds_image_two\";i:1;s:18:\"clouds_image_three\";i:1;s:17:\"clouds_image_four\";i:1;s:23:\"wave_animation_wave_top\";i:1;s:26:\"wave_animation_wave_middle\";i:1;s:26:\"wave_animation_wave_bottom\";i:1;s:32:\"blox_css_snow_bg_animation_speed\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"align\";i:1;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:5:\"style\";a:5:{s:28:\"section_general_style_fields\";a:5:{s:20:\"global_primary_color\";i:1;s:17:\"global_text_color\";i:1;s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:27:\"global_typography_font_size\";i:1;}s:28:\"section_heading_style_fields\";a:5:{s:18:\"heading_text_color\";i:1;s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_family\";i:1;s:28:\"heading_typography_font_size\";i:1;s:30:\"heading_typography_font_weight\";i:1;}s:13:\"input_section\";a:4:{s:32:\"input_text_typography_typography\";i:1;s:33:\"input_text_typography_font_family\";i:1;s:11:\"input_skins\";i:1;s:31:\"input_text_typography_font_size\";i:1;}s:14:\"button_section\";a:4:{s:29:\"buttons_typography_typography\";i:1;s:30:\"buttons_typography_font_family\";i:1;s:28:\"buttons_typography_font_size\";i:1;s:30:\"buttons_typography_font_weight\";i:1;}s:28:\"section_payment_style_fields\";a:2:{s:24:\"payment_section_bg_color\";i:1;s:21:\"payment_info_bg_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}}'),
(282645,27,'_elementor_controls_usage','a:3:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:5:\"width\";i:3;s:11:\"boxed_width\";i:2;s:14:\"flex_direction\";i:5;s:20:\"flex_justify_content\";i:4;s:13:\"content_width\";i:3;s:16:\"flex_align_items\";i:3;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:4:{s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_width\";i:2;s:24:\"shape_divider_top_height\";i:2;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:2;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:2;}s:18:\"section_background\";a:10:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:10:\"_flex_size\";i:3;}}}}s:16:\"woocommerce-cart\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:5:{s:33:\"section_cart_tabs_checkout_button\";a:12:{s:33:\"checkout_button_normal_text_color\";i:1;s:44:\"checkout_button_normal_background_background\";i:1;s:39:\"checkout_button_normal_background_color\";i:1;s:41:\"checkout_button_normal_background_color_b\";i:1;s:37:\"checkout_button_typography_typography\";i:1;s:38:\"checkout_button_typography_font_family\";i:1;s:36:\"checkout_button_typography_font_size\";i:1;s:32:\"checkout_button_hover_text_color\";i:1;s:43:\"checkout_button_hover_background_background\";i:1;s:38:\"checkout_button_hover_background_color\";i:1;s:40:\"checkout_button_hover_background_color_b\";i:1;s:31:\"checkout_button_hover_animation\";i:1;}s:28:\"section_cart_tabs_typography\";a:11:{s:20:\"sections_title_color\";i:1;s:37:\"sections_titles_typography_typography\";i:1;s:38:\"sections_titles_typography_font_family\";i:1;s:36:\"sections_titles_typography_font_size\";i:1;s:38:\"sections_titles_typography_font_weight\";i:1;s:43:\"sections_descriptions_typography_typography\";i:1;s:44:\"sections_descriptions_typography_font_family\";i:1;s:44:\"sections_radio_buttons_typography_typography\";i:1;s:45:\"sections_radio_buttons_typography_font_family\";i:1;s:42:\"sections_descriptions_typography_font_size\";i:1;s:43:\"sections_radio_buttons_typography_font_size\";i:1;}s:23:\"section_cart_tabs_forms\";a:7:{s:33:\"forms_field_typography_typography\";i:1;s:34:\"forms_field_typography_font_family\";i:1;s:45:\"forms_fields_focus_box_shadow_box_shadow_type\";i:1;s:34:\"forms_button_typography_typography\";i:1;s:35:\"forms_button_typography_font_family\";i:1;s:33:\"forms_button_typography_font_size\";i:1;s:32:\"forms_field_typography_font_size\";i:1;}s:18:\"tabs_order_summary\";a:11:{s:25:\"order_summary_title_color\";i:1;s:41:\"order_summary_title_typography_typography\";i:1;s:42:\"order_summary_title_typography_font_family\";i:1;s:40:\"order_summary_title_typography_font_size\";i:1;s:42:\"order_summary_title_typography_font_weight\";i:1;s:41:\"order_summary_items_typography_typography\";i:1;s:42:\"order_summary_items_typography_font_family\";i:1;s:46:\"order_summary_variations_typography_typography\";i:1;s:47:\"order_summary_variations_typography_font_family\";i:1;s:40:\"order_summary_items_typography_font_size\";i:1;s:45:\"order_summary_variations_typography_font_size\";i:1;}s:19:\"section_cart_totals\";a:3:{s:28:\"totals_typography_typography\";i:1;s:29:\"totals_typography_font_family\";i:1;s:27:\"totals_typography_font_size\";i:1;}}}}}'),
(282659,34654,'_order_key','wc_order_VZ6w7mXIed6eU'),
(282660,34654,'_customer_user','1'),
(282661,34654,'_payment_method','woocommerce_payments'),
(282662,34654,'_payment_method_title','Visa credit card'),
(282663,34654,'_customer_ip_address','31.94.25.3'),
(282664,34654,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(282665,34654,'_created_via','checkout'),
(282666,34654,'_cart_hash','ff0701f9c3a3e7ddf5983483719a2c33'),
(282667,34654,'_download_permissions_granted','yes'),
(282668,34654,'_recorded_sales','yes'),
(282669,34654,'_recorded_coupon_usage_counts','yes'),
(282670,34654,'_new_order_email_sent','true'),
(282671,34654,'_order_stock_reduced','yes'),
(282672,34654,'_billing_first_name','Ivan'),
(282673,34654,'_billing_last_name','Kulongo'),
(282674,34654,'_billing_address_1','22 Seymour Road'),
(282675,34654,'_billing_city','Dagenham'),
(282676,34654,'_billing_state','Kent'),
(282677,34654,'_billing_postcode','RM9 5DR'),
(282678,34654,'_billing_country','GB'),
(282679,34654,'_billing_email','ivankulongo@gmail.com'),
(282680,34654,'_billing_phone','782873017'),
(282681,34654,'_shipping_first_name','Ivan'),
(282682,34654,'_shipping_last_name','Kulongo'),
(282683,34654,'_shipping_address_1','22 Seymour Road'),
(282684,34654,'_shipping_city','Dagenham'),
(282685,34654,'_shipping_state','Kent'),
(282686,34654,'_shipping_postcode','RM9 5DR'),
(282687,34654,'_shipping_country','GB'),
(282688,34654,'_order_currency','GBP'),
(282689,34654,'_cart_discount','0'),
(282690,34654,'_cart_discount_tax','0'),
(282691,34654,'_order_shipping','3.95'),
(282692,34654,'_order_shipping_tax','0'),
(282693,34654,'_order_tax','0'),
(282694,34654,'_order_total','9.95'),
(282695,34654,'_order_version','8.5.2'),
(282696,34654,'_prices_include_tax','no'),
(282697,34654,'_billing_address_index','Ivan Kulongo  22 Seymour Road  Dagenham Kent RM9 5DR GB ivankulongo@gmail.com 782873017'),
(282698,34654,'_shipping_address_index','Ivan Kulongo  22 Seymour Road  Dagenham Kent RM9 5DR GB '),
(282699,34654,'is_vat_exempt','no'),
(282700,34654,'_wcf_flow_id','8120'),
(282701,34654,'_wcf_checkout_id','8121'),
(282702,34654,'_wc_order_attribution_source_type','typein'),
(282703,34654,'_wc_order_attribution_utm_source','(direct)'),
(282704,34654,'_wc_order_attribution_session_entry','https://choiceresources.co.uk/'),
(282705,34654,'_wc_order_attribution_session_start_time','2024-05-09 17:44:04'),
(282706,34654,'_wc_order_attribution_session_pages','57'),
(282707,34654,'_wc_order_attribution_session_count','2'),
(282708,34654,'_wc_order_attribution_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36'),
(282709,34654,'_wc_order_attribution_device_type','Desktop'),
(282710,34654,'_payment_method_id','pm_1PEckDC4KoWWGXx79kWXpaZ8'),
(282711,34654,'_stripe_customer_id','cus_Q4HklBX2wGyAXe'),
(282712,34654,'_wcpay_mode','test'),
(282713,34654,'_intent_id','pi_3PEckGC4KoWWGXx71amaejz2'),
(282714,34654,'_charge_id','ch_3PEckGC4KoWWGXx71Mm2haps'),
(282715,34654,'_intention_status','succeeded'),
(282716,34654,'_wcpay_intent_currency','gbp'),
(282717,34654,'_wcpay_payment_transaction_id','txn_3PEckGC4KoWWGXx71AHJOAG3'),
(282718,34654,'_transaction_id','pi_3PEckGC4KoWWGXx71amaejz2'),
(282719,34654,'_wcpay_fraud_outcome_status','allow'),
(282720,34654,'_wcpay_fraud_meta_box_type','allow'),
(282721,34654,'_date_paid','1715283313'),
(282722,34654,'_paid_date','2024-05-09 19:35:13'),
(282723,34654,'_wcpay_transaction_fee','0.6'),
(282725,34654,'_new_order_tracking_complete','yes'),
(282736,8122,'_elementor_controls_usage','a:8:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:5:\"width\";i:1;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:1;s:20:\"flex_justify_content\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}s:18:\"section_background\";a:8:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:10:\"_flex_size\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;s:11:\"text_indent\";i:3;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:3;s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;s:27:\"icon_typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:2;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:1;s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:7:\"z_index\";i:1;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:2;s:3:\"gap\";i:1;s:6:\"layout\";i:1;}}s:5:\"style\";a:5:{s:18:\"section_background\";a:6:{s:16:\"background_color\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;}s:14:\"section_border\";a:1:{s:12:\"border_width\";i:1;}s:21:\"section_background_uc\";a:8:{s:16:\"clouds_image_one\";i:1;s:16:\"clouds_image_two\";i:1;s:18:\"clouds_image_three\";i:1;s:17:\"clouds_image_four\";i:1;s:23:\"wave_animation_wave_top\";i:1;s:26:\"wave_animation_wave_middle\";i:1;s:26:\"wave_animation_wave_bottom\";i:1;s:32:\"blox_css_snow_bg_animation_speed\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;}s:21:\"section_shape_divider\";a:3:{s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:18:\"order-details-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:23:\"section_thankyou_fields\";a:1:{s:13:\"thankyou_text\";i:1;}}s:5:\"style\";a:7:{s:34:\"order_details_form_spacing_styling\";a:2:{s:15:\"heading_spacing\";i:1;s:16:\"sections_spacing\";i:1;}s:34:\"order_details_form_heading_styling\";a:6:{s:13:\"heading_align\";i:1;s:13:\"heading_color\";i:1;s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_family\";i:1;s:28:\"heading_typography_font_size\";i:1;s:30:\"heading_typography_font_weight\";i:1;}s:34:\"order_details_form_general_styling\";a:9:{s:21:\"section_heading_color\";i:1;s:37:\"section_heading_typography_typography\";i:1;s:38:\"section_heading_typography_font_family\";i:1;s:36:\"section_heading_typography_font_size\";i:1;s:18:\"section_text_color\";i:1;s:34:\"section_text_typography_typography\";i:1;s:35:\"section_text_typography_font_family\";i:1;s:39:\"section_all_background_color_background\";i:1;s:34:\"section_all_background_color_color\";i:1;}s:28:\"section_order_review_styling\";a:3:{s:42:\"section_order_review_typography_typography\";i:1;s:43:\"section_order_review_typography_font_family\";i:1;s:41:\"section_order_review_typography_font_size\";i:1;}s:25:\"section_downloads_styling\";a:2:{s:47:\"section_downloads_heading_typography_typography\";i:1;s:48:\"section_downloads_heading_typography_font_family\";i:1;}s:29:\"section_order_details_styling\";a:7:{s:51:\"section_order_details_heading_typography_typography\";i:1;s:52:\"section_order_details_heading_typography_font_family\";i:1;s:52:\"section_order_details_heading_typography_font_weight\";i:1;s:35:\"section_order_details_heading_color\";i:1;s:48:\"section_order_details_text_typography_typography\";i:1;s:49:\"section_order_details_text_typography_font_family\";i:1;s:47:\"section_order_details_text_typography_font_size\";i:1;}s:32:\"section_customer_details_styling\";a:7:{s:54:\"section_customer_details_heading_typography_typography\";i:1;s:55:\"section_customer_details_heading_typography_font_family\";i:1;s:55:\"section_customer_details_heading_typography_font_weight\";i:1;s:38:\"section_customer_details_heading_color\";i:1;s:51:\"section_customer_details_text_typography_typography\";i:1;s:52:\"section_customer_details_text_typography_font_family\";i:1;s:50:\"section_customer_details_text_typography_font_size\";i:1;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:1;s:13:\"selected_icon\";i:1;s:10:\"icon_align\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:17:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:25:\"typography_letter_spacing\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;s:23:\"text_shadow_text_shadow\";i:1;s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:13:\"border_radius\";i:1;s:33:\"button_box_shadow_box_shadow_type\";i:1;s:28:\"button_box_shadow_box_shadow\";i:1;}}}}}'),
(282987,24907,'_elementor_controls_usage','a:7:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:5:\"width\";i:2;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:5;s:20:\"flex_justify_content\";i:3;s:13:\"content_width\";i:2;s:16:\"flex_align_items\";i:2;s:8:\"flex_gap\";i:2;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:4:{s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:10:\"_flex_size\";i:1;}}}}s:26:\"woocommerce-product-rating\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:16;s:11:\"header_size\";i:16;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:16;s:20:\"typography_font_size\";i:16;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:16;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:10:\"text_color\";i:16;s:21:\"typography_typography\";i:16;s:20:\"typography_font_size\";i:16;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:13:\"selected_icon\";i:2;s:11:\"icon_indent\";i:1;s:13:\"button_css_id\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:21:\"background_background\";i:1;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:11:\"hover_color\";i:2;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}}'),
(282988,577,'_elementor_screenshot_failed','2024-05-09 20:13:06'),
(282990,34685,'_wp_page_template','elementor_header_footer'),
(282991,34685,'_cdp_origin','24907'),
(282992,34685,'_cdp_origin_site','-1'),
(282993,34685,'_cdp_origin_title',' Terms and Conditions #[Counter]'),
(282994,34685,'_cdp_counter','2'),
(282995,34685,'_wp_page_template','elementor_header_footer'),
(282996,34685,'_wp_page_template','elementor_header_footer'),
(282997,34685,'_cdp_origin','3'),
(282998,34685,'_elementor_edit_mode','builder'),
(282999,34685,'_elementor_template_type','wp-page'),
(283000,34685,'_elementor_version','3.21.4'),
(283001,34685,'_elementor_pro_version','3.21.2'),
(283002,34685,'_elementor_data','[{\"id\":\"477bb12\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":126,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"background_color\":\"#B4E3FF\"},\"elements\":[{\"id\":\"f7d061e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"e224e28\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"f65d32a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"100\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"81ff555\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca33d4c\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"woocommerce-product-rating\"},{\"id\":\"8f2149f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refund & Returns Policy\",\"header_size\":\"h1\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33d7a23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div><p>All of our products are digital and instantly accessible, hence, we do not offer refunds or returns.<\\/p><\\/div><div><p>We are unable to make adjustments for missed discount codes or provide refunds if you mistakenly purchased a digital product instead of a physical one.<\\/p><\\/div><div><p>Please double-check your order to ensure it meets your needs! For any queries or assistance, contact us at: info@choiceresources.co.uk.<\\/p><\\/div><div><p>Please note: All items in our store are digital, and no physical items will be shipped.<\\/p><\\/div><div><p>We have clearly stated this information throughout the site and in every product description. Regrettably, we cannot offer refunds if this information is overlooked.<\\/p><\\/div><div><p>By placing an order, you agree to these terms entirely. Our refund policy is straightforward: any disputes not related to fraudulent activity or processing errors will result in loss of purchasing rights and potential legal action for damages.<\\/p><\\/div><\\/div>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3283614\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"text-align: var(--text-align); background-color: rgba(255, 255, 255, 0);\\\">Updated: May 9, 2024.<\\/span><\\/p>\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"78163de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"68a55c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"link\":{\"url\":\"#TOP\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-up\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_css_id\":\"TOP\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_background\":\"gradient\",\"background_color\":\"#02010100\",\"background_color_b\":\"#F2295B00\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d09b757\",\"elType\":\"widget\",\"settings\":{\"text\":\"Home\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"size\":\"md\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0DCFFF\",\"button_background_hover_color\":\"#FFFFFF\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"hover_color\":\"#0DCFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":106.586},\"_flex_size\":\"none\",\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-26,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-left\",\"library\":\"fa-regular\"},\"typography_font_family\":\"Dekko\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d713d6c\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"TOP\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}]'),
(283003,34685,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(283004,34685,'_elementor_page_settings','a:4:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:21:\"background_background\";s:8:\"gradient\";s:16:\"background_color\";s:7:\"#10A4E3\";s:18:\"background_color_b\";s:0:\"\";}'),
(283006,12,'_elementor_css','a:6:{s:4:\"time\";i:1715285753;s:5:\"fonts\";a:3:{i:0;s:5:\"Dekko\";i:4;s:9:\"Quicksand\";i:6;s:10:\"Lilita One\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283007,43,'_elementor_css','a:6:{s:4:\"time\";i:1715285753;s:5:\"fonts\";a:1:{i:0;s:10:\"Lilita One\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283009,30818,'_elementor_css','a:6:{s:4:\"time\";i:1715285754;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:8:\"66d2287a\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283010,19370,'_elementor_css','a:6:{s:4:\"time\";i:1715285754;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283012,34685,'_edit_last','1'),
(283022,34685,'_edit_lock','1715289986:1'),
(283056,34685,'_eael_custom_js',''),
(283120,34685,'_elementor_controls_usage','a:7:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:5:\"width\";i:2;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:5;s:20:\"flex_justify_content\";i:3;s:13:\"content_width\";i:2;s:16:\"flex_align_items\";i:2;s:8:\"flex_gap\";i:2;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:4:{s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:10:\"_flex_size\";i:1;}}}}s:26:\"woocommerce-product-rating\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:13:\"selected_icon\";i:2;s:11:\"icon_indent\";i:1;s:13:\"button_css_id\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:21:\"background_background\";i:1;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:11:\"hover_color\";i:2;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}}'),
(283122,24907,'_elementor_css','a:6:{s:4:\"time\";i:1715286606;s:5:\"fonts\";a:1:{i:0;s:5:\"Dekko\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283168,34685,'_elementor_css','a:6:{s:4:\"time\";i:1715287667;s:5:\"fonts\";a:1:{i:0;s:5:\"Dekko\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283329,3,'_elementor_controls_usage','a:7:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:5:\"width\";i:2;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:5;s:20:\"flex_justify_content\";i:3;s:13:\"content_width\";i:2;s:16:\"flex_align_items\";i:2;s:8:\"flex_gap\";i:2;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:4:{s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:10:\"_flex_size\";i:1;}}}}s:26:\"woocommerce-product-rating\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:11;s:11:\"header_size\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:11;s:20:\"typography_font_size\";i:11;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:13;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:10:\"text_color\";i:13;s:21:\"typography_typography\";i:13;s:20:\"typography_font_size\";i:13;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:13:\"selected_icon\";i:2;s:11:\"icon_indent\";i:1;s:13:\"button_css_id\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:21:\"background_background\";i:1;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:11:\"hover_color\";i:2;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}}'),
(283330,3,'_elementor_css','a:6:{s:4:\"time\";i:1715288709;s:5:\"fonts\";a:1:{i:0;s:5:\"Dekko\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283424,24827,'_elementor_controls_usage','a:8:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:5:\"width\";i:2;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:5;s:20:\"flex_justify_content\";i:3;s:13:\"content_width\";i:2;s:16:\"flex_align_items\";i:2;s:8:\"flex_gap\";i:2;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:4:{s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:10:\"_flex_size\";i:1;}}}}s:26:\"woocommerce-product-rating\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:10:\"text_color\";i:9;s:21:\"typography_typography\";i:9;s:20:\"typography_font_size\";i:9;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:13:\"selected_icon\";i:2;s:11:\"icon_indent\";i:1;s:13:\"button_css_id\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:21:\"background_background\";i:1;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:11:\"hover_color\";i:2;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}}'),
(283485,9,'_elementor_controls_usage','a:8:{s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:5:\"width\";i:2;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:5;s:20:\"flex_justify_content\";i:5;s:13:\"content_width\";i:2;s:16:\"flex_align_items\";i:4;s:8:\"flex_gap\";i:2;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:4:{s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:10:\"_flex_size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:21:\"_element_width_mobile\";i:1;s:10:\"_flex_size\";i:1;}}}}s:26:\"woocommerce-product-rating\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:2:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;}s:13:\"section_email\";a:1:{s:13:\"email_subject\";i:1;}s:15:\"section_email_2\";a:1:{s:15:\"email_subject_2\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:15:\"invalid_message\";i:1;}s:15:\"section_buttons\";a:1:{s:12:\"button_align\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:7:\"row_gap\";i:1;s:26:\"html_typography_typography\";i:1;}s:19:\"section_field_style\";a:3:{s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;s:18:\"field_border_color\";i:1;}s:20:\"section_button_style\";a:3:{s:23:\"button_background_color\";i:1;s:20:\"button_border_radius\";i:1;s:28:\"button_typography_typography\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"_section_border\";a:4:{s:14:\"_border_radius\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:13:\"selected_icon\";i:2;s:11:\"icon_indent\";i:1;s:13:\"button_css_id\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:21:\"background_background\";i:1;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:11:\"hover_color\";i:2;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}}'),
(283486,9,'_elementor_css','a:6:{s:4:\"time\";i:1715290140;s:5:\"fonts\";a:1:{i:0;s:5:\"Dekko\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:2;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283487,9,'_edit_last','1'),
(283491,19861,'_elementor_css','a:6:{s:4:\"time\";i:1715290364;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283492,8628,'_elementor_css','a:7:{s:4:\"time\";i:1715290378;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),
(283584,24827,'_elementor_css','a:6:{s:4:\"time\";i:1715291246;s:5:\"fonts\";a:1:{i:0;s:5:\"Dekko\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283586,32731,'_elementor_css','a:6:{s:4:\"time\";i:1715307153;s:5:\"fonts\";a:2:{i:0;s:10:\"Lilita One\";i:2;s:5:\"Dekko\";}s:5:\"icons\";a:1:{i:0;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283587,33258,'_elementor_css','a:6:{s:4:\"time\";i:1715330413;s:5:\"fonts\";a:2:{i:0;s:10:\"Lilita One\";i:1;s:5:\"Dekko\";}s:5:\"icons\";a:1:{i:0;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:8:\"3d966bc6\";i:1;s:7:\"f1acbca\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283588,33174,'_elementor_css','a:6:{s:4:\"time\";i:1715330414;s:5:\"fonts\";a:2:{i:0;s:10:\"Lilita One\";i:1;s:5:\"Dekko\";}s:5:\"icons\";a:1:{i:0;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:2:{i:0;s:7:\"ccca021\";i:1;s:7:\"7772d2e\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283590,27,'_elementor_css','a:6:{s:4:\"time\";i:1715416141;s:5:\"fonts\";a:2:{i:0;s:10:\"Lilita One\";i:1;s:5:\"Dekko\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283594,8121,'_elementor_css','a:6:{s:4:\"time\";i:1715438044;s:5:\"fonts\";a:2:{i:0;s:5:\"Dekko\";i:4;s:10:\"Lilita One\";}s:5:\"icons\";a:1:{i:0;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283595,8077,'_elementor_css','a:6:{s:4:\"time\";i:1715438045;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:10:\"fa-regular\";i:6;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283603,29,'_elementor_css','a:6:{s:4:\"time\";i:1715642091;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283608,8331,'_elementor_css','a:6:{s:4:\"time\";i:1715690741;s:5:\"fonts\";a:1:{i:0;s:7:\"Imprima\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283610,7558,'_elementor_css','a:6:{s:4:\"time\";i:1715704417;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:1:{i:0;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283816,19823,'_elementor_css','a:6:{s:4:\"time\";i:1715785938;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(283829,32786,'_wp_attachment_image_alt',''),
(283830,32809,'_wp_attachment_image_alt',''),
(283833,32782,'_wp_attachment_image_alt',''),
(283834,32784,'_wp_attachment_image_alt',''),
(283835,32783,'_wp_attachment_image_alt',''),
(283836,34480,'_wp_attachment_image_alt',''),
(283838,32196,'_wp_attachment_image_alt',''),
(284087,33656,'_eael_custom_js',''),
(284166,34819,'_wp_attached_file','2024/07/Bible-Hyperbole-Colouring.pdf'),
(284167,34819,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:33:\"Bible-Hyperbole-Colouring-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225670;}s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Bible-Hyperbole-Colouring-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22560;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Bible-Hyperbole-Colouring-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125035;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Bible-Hyperbole-Colouring-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9077;}}s:8:\"filesize\";i:170899;}'),
(284193,34823,'_wp_attached_file','2024/07/Snake-Mistake.png'),
(284194,34823,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2024/07/Snake-Mistake.png\";s:8:\"filesize\";i:67385;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Snake-Mistake-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56458;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Snake-Mistake-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27151;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Snake-Mistake-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75635;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"Snake-Mistake-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140695;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Snake-Mistake-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284229,34828,'_wp_attached_file','2024/07/Bible-Hyperbole-Colouring-1.png'),
(284230,34828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:39:\"2024/07/Bible-Hyperbole-Colouring-1.png\";s:8:\"filesize\";i:53829;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Bible-Hyperbole-Colouring-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Bible-Hyperbole-Colouring-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:22738;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Bible-Hyperbole-Colouring-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63403;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:39:\"Bible-Hyperbole-Colouring-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126346;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Bible-Hyperbole-Colouring-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12397;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284265,34833,'_wp_attached_file','2024/07/Snake-Mistake.pdf'),
(284266,34833,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:21:\"Snake-Mistake-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236772;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Snake-Mistake-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23849;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Snake-Mistake-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130407;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Snake-Mistake-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8854;}}s:8:\"filesize\";i:185392;}'),
(284414,34853,'_wp_attached_file','2024/07/What-slides-say.pdf'),
(284415,34853,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:23:\"What-slides-say-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162874;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"What-slides-say-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16258;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"What-slides-say-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86950;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"What-slides-say-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7437;}}s:8:\"filesize\";i:103423;}'),
(284441,34857,'_wp_attached_file','2024/07/Spot-the-Difference.png'),
(284442,34857,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2024/07/Spot-the-Difference.png\";s:8:\"filesize\";i:34866;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Spot-the-Difference-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31321;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Spot-the-Difference-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15266;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Spot-the-Difference-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37468;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"Spot-the-Difference-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70953;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Spot-the-Difference-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8869;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284452,34859,'_wp_attached_file','2024/07/Spot-the-Difference.pdf'),
(284453,34859,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:27:\"Spot-the-Difference-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139799;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Spot-the-Difference-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17515;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Spot-the-Difference-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79661;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Spot-the-Difference-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8502;}}s:8:\"filesize\";i:2477643;}'),
(284479,34863,'_wp_attached_file','2024/07/Reptile-Spellings.png'),
(284480,34863,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2024/07/Reptile-Spellings.png\";s:8:\"filesize\";i:36441;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Reptile-Spellings-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35016;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Reptile-Spellings-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16272;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Reptile-Spellings-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44359;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"Reptile-Spellings-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84958;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Reptile-Spellings-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8725;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284490,34865,'_wp_attached_file','2024/07/Reptile-spellings.pdf'),
(284491,34865,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:25:\"Reptile-spellings-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158383;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Reptile-spellings-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17885;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Reptile-spellings-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Reptile-spellings-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7653;}}s:8:\"filesize\";i:128970;}'),
(284530,34871,'_wp_attached_file','2024/07/Internal-Organs-Wordsearch.png'),
(284531,34871,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:38:\"2024/07/Internal-Organs-Wordsearch.png\";s:8:\"filesize\";i:49172;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Internal-Organs-Wordsearch-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41371;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Internal-Organs-Wordsearch-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17694;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Internal-Organs-Wordsearch-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49432;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"Internal-Organs-Wordsearch-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104468;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Internal-Organs-Wordsearch-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9518;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284532,34872,'_wp_attached_file','2024/07/Gods-World.png'),
(284533,34872,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2024/07/Gods-World.png\";s:8:\"filesize\";i:52472;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Gods-World-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35057;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Gods-World-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14875;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Gods-World-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43836;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"Gods-World-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90065;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Gods-World-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7883;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284534,34873,'_wp_attached_file','2024/07/12-Months-of-the-year-cut-outs.png'),
(284535,34873,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:42:\"2024/07/12-Months-of-the-year-cut-outs.png\";s:8:\"filesize\";i:37980;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"12-Months-of-the-year-cut-outs-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36124;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"12-Months-of-the-year-cut-outs-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16922;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:42:\"12-Months-of-the-year-cut-outs-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45271;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:42:\"12-Months-of-the-year-cut-outs-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85017;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"12-Months-of-the-year-cut-outs-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9239;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284536,34874,'_wp_attached_file','2024/07/Scavenger-Hunts-Pack.png'),
(284537,34874,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2024/07/Scavenger-Hunts-Pack.png\";s:8:\"filesize\";i:65446;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Scavenger-Hunts-Pack-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47373;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Scavenger-Hunts-Pack-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21149;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"Scavenger-Hunts-Pack-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60890;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:32:\"Scavenger-Hunts-Pack-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121460;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"Scavenger-Hunts-Pack-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10798;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284542,34877,'_wp_attached_file','2024/07/My-name-is.png'),
(284543,34877,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2024/07/My-name-is.png\";s:8:\"filesize\";i:37404;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"My-name-is-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29766;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"My-name-is-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11237;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"My-name-is-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31130;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"My-name-is-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74328;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"My-name-is-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6546;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284544,34878,'_wp_attached_file','2024/07/On-the-Move.png'),
(284545,34878,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2024/07/On-the-Move.png\";s:8:\"filesize\";i:36743;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"On-the-Move-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33626;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"On-the-Move-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14266;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"On-the-Move-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37146;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"On-the-Move-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80043;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"On-the-Move-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284546,34879,'_wp_attached_file','2024/07/Tractor-match.png'),
(284547,34879,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2024/07/Tractor-match.png\";s:8:\"filesize\";i:49761;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Tractor-match-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45077;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Tractor-match-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20647;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Tractor-match-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59010;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"Tractor-match-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111610;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Tractor-match-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10895;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284552,34882,'_wp_attached_file','2024/07/Space-Toys.png'),
(284553,34882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2024/07/Space-Toys.png\";s:8:\"filesize\";i:48767;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Space-Toys-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39704;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Space-Toys-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16787;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Space-Toys-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47997;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"Space-Toys-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101138;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Space-Toys-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8945;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284556,34884,'_wp_attached_file','2024/07/tasty-bread.png'),
(284557,34884,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2024/07/tasty-bread.png\";s:8:\"filesize\";i:45591;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"tasty-bread-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43955;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"tasty-bread-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19687;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"tasty-bread-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54641;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"tasty-bread-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109379;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"tasty-bread-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10691;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284834,34919,'_wp_attached_file','2024/07/Light-of-the-World.png'),
(284835,34919,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"2024/07/Light-of-the-World.png\";s:8:\"filesize\";i:45546;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Light-of-the-World-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44993;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Light-of-the-World-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20735;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"Light-of-the-World-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59147;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"Light-of-the-World-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110659;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Light-of-the-World-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10984;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284846,34921,'_wp_attached_file','2024/07/Light-of-the-World.pdf'),
(284847,34921,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:26:\"Light-of-the-World-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210724;}s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Light-of-the-World-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19898;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Light-of-the-World-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116312;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Light-of-the-World-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7253;}}s:8:\"filesize\";i:194088;}'),
(284873,34925,'_wp_attached_file','2024/07/tasty-bread.pdf'),
(284874,34925,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:19:\"tasty-bread-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194804;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"tasty-bread-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20322;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"tasty-bread-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105428;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"tasty-bread-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8535;}}s:8:\"filesize\";i:126539;}'),
(284900,34929,'_wp_attached_file','2024/07/Flowerpot-art-1.png'),
(284901,34929,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2024/07/Flowerpot-art-1.png\";s:8:\"filesize\";i:52100;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Flowerpot-art-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48250;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Flowerpot-art-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:22107;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"Flowerpot-art-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61131;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"Flowerpot-art-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119938;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Flowerpot-art-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12008;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284911,34931,'_wp_attached_file','2024/07/Flowerpot-art.pdf'),
(284912,34931,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:21:\"Flowerpot-art-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210057;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Flowerpot-art-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22186;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Flowerpot-art-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115067;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Flowerpot-art-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9420;}}s:8:\"filesize\";i:228469;}'),
(284938,34935,'_wp_attached_file','2024/07/Camping-trip-1.png'),
(284939,34935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2024/07/Camping-trip-1.png\";s:8:\"filesize\";i:43511;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Camping-trip-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37193;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Camping-trip-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:15554;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Camping-trip-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43317;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Camping-trip-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93498;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Camping-trip-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8397;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(284940,34936,'_wp_attached_file','2024/07/Camping-trip.pdf'),
(284941,34936,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:20:\"Camping-trip-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183293;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Camping-trip-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18180;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Camping-trip-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101942;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Camping-trip-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7563;}}s:8:\"filesize\";i:195010;}'),
(284967,34940,'_wp_attached_file','2024/07/Space-Toys.pdf'),
(284968,34940,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:18:\"Space-Toys-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196014;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Space-Toys-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19348;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Space-Toys-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109369;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Space-Toys-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7926;}}s:8:\"filesize\";i:116569;}'),
(284994,34944,'_wp_attached_file','2024/07/Tractor-match-1.png'),
(284995,34944,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2024/07/Tractor-match-1.png\";s:8:\"filesize\";i:50527;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Tractor-match-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45472;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Tractor-match-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:20838;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"Tractor-match-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59524;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"Tractor-match-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112919;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Tractor-match-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10923;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285005,34946,'_wp_attached_file','2024/07/Tractor-match.pdf'),
(285006,34946,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:21:\"Tractor-match-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210839;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Tractor-match-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22113;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Tractor-match-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121686;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Tractor-match-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8982;}}s:8:\"filesize\";i:270584;}'),
(285032,34950,'_wp_attached_file','2024/07/My-name-is.pdf'),
(285033,34950,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:18:\"My-name-is-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162034;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"My-name-is-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15853;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"My-name-is-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"My-name-is-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6946;}}s:8:\"filesize\";i:151863;}'),
(285059,34954,'_wp_attached_file','2024/07/O-Clock-1.png'),
(285060,34954,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2024/07/O-Clock-1.png\";s:8:\"filesize\";i:40478;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"O-Clock-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36870;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"O-Clock-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:16395;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"O-Clock-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44168;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"O-Clock-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89954;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"O-Clock-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9042;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285061,34955,'_wp_attached_file','2024/07/O-Clock.pdf'),
(285062,34955,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:15:\"O-Clock-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153879;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"O-Clock-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16451;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"O-Clock-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84408;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"O-Clock-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7267;}}s:8:\"filesize\";i:124117;}'),
(285097,34960,'_wp_attached_file','2024/07/Weather-hunt-1.png'),
(285098,34960,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2024/07/Weather-hunt-1.png\";s:8:\"filesize\";i:44581;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Weather-hunt-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40269;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Weather-hunt-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:17611;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Weather-hunt-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47231;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Weather-hunt-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97592;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Weather-hunt-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9557;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285099,34961,'_wp_attached_file','2024/07/Weather-hunt.pdf'),
(285100,34961,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:20:\"Weather-hunt-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193844;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Weather-hunt-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21373;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Weather-hunt-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107406;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Weather-hunt-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9218;}}s:8:\"filesize\";i:218500;}'),
(285151,34968,'_wp_attached_file','2024/07/On-the-Move.pdf'),
(285152,34968,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:19:\"On-the-Move-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161821;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"On-the-Move-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16801;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"On-the-Move-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90119;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"On-the-Move-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7457;}}s:8:\"filesize\";i:103885;}'),
(285153,34969,'_wp_attached_file','2024/07/On-the-Move-1.png'),
(285154,34969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2024/07/On-the-Move-1.png\";s:8:\"filesize\";i:36177;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"On-the-Move-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32976;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"On-the-Move-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:13480;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"On-the-Move-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35478;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"On-the-Move-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80049;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"On-the-Move-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7630;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285191,34975,'_wp_attached_file','2024/07/Character-Hunt.pdf'),
(285192,34975,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:22:\"Character-Hunt-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215195;}s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Character-Hunt-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20321;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Character-Hunt-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114715;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Character-Hunt-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7928;}}s:8:\"filesize\";i:178638;}'),
(285243,34982,'_wp_attached_file','2024/07/12-Months-of-the-year-cut-outs.pdf'),
(285244,34982,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:38:\"12-Months-of-the-year-cut-outs-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187883;}s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"12-Months-of-the-year-cut-outs-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18688;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"12-Months-of-the-year-cut-outs-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105074;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"12-Months-of-the-year-cut-outs-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7276;}}s:8:\"filesize\";i:228495;}'),
(285270,34986,'_wp_attached_file','2024/07/Gods-World.pdf'),
(285271,34986,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:18:\"Gods-World-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159623;}s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Gods-World-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15405;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Gods-World-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86943;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Gods-World-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6563;}}s:8:\"filesize\";i:138043;}'),
(285297,34990,'_wp_attached_file','2024/07/Internal-Organs-Wordsearch.pdf'),
(285298,34990,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:34:\"Internal-Organs-Wordsearch-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196263;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Internal-Organs-Wordsearch-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19648;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"Internal-Organs-Wordsearch-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108141;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Internal-Organs-Wordsearch-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7781;}}s:8:\"filesize\";i:148957;}'),
(285324,34994,'_wp_attached_file','2024/07/My-Body-Quiz-1.png'),
(285325,34994,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2024/07/My-Body-Quiz-1.png\";s:8:\"filesize\";i:64561;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"My-Body-Quiz-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49619;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"My-Body-Quiz-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:23265;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"My-Body-Quiz-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66430;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"My-Body-Quiz-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125759;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"My-Body-Quiz-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12722;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285335,34996,'_wp_attached_file','2024/07/My-Body-Quiz.pdf'),
(285336,34996,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:20:\"My-Body-Quiz-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211104;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"My-Body-Quiz-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21204;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"My-Body-Quiz-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113896;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"My-Body-Quiz-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9467;}}s:8:\"filesize\";i:706267;}'),
(285387,35003,'_wp_attached_file','2024/07/Bible-Battles-Long-A-sound-2.png'),
(285388,35003,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:40:\"2024/07/Bible-Battles-Long-A-sound-2.png\";s:8:\"filesize\";i:65428;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Bible-Battles-Long-A-sound-2-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52329;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Bible-Battles-Long-A-sound-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24480;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"Bible-Battles-Long-A-sound-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71159;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:40:\"Bible-Battles-Long-A-sound-2-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137621;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"Bible-Battles-Long-A-sound-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13124;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285389,35004,'_wp_attached_file','2024/07/Bible-Battles-Long-A-sound.png'),
(285390,35004,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:38:\"2024/07/Bible-Battles-Long-A-sound.png\";s:8:\"filesize\";i:57024;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Bible-Battles-Long-A-sound-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44884;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Bible-Battles-Long-A-sound-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21048;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Bible-Battles-Long-A-sound-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61014;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"Bible-Battles-Long-A-sound-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116338;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Bible-Battles-Long-A-sound-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11585;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285391,35005,'_wp_attached_file','2024/07/Bible-Birds.png'),
(285392,35005,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2024/07/Bible-Birds.png\";s:8:\"filesize\";i:42120;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Bible-Birds-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31277;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Bible-Birds-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14253;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"Bible-Birds-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39178;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"Bible-Birds-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77554;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"Bible-Birds-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7814;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285393,35006,'_wp_attached_file','2024/07/Bible-Fruits.png'),
(285394,35006,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2024/07/Bible-Fruits.png\";s:8:\"filesize\";i:37396;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Bible-Fruits-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29547;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Bible-Fruits-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13378;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Bible-Fruits-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38316;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"Bible-Fruits-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74192;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Bible-Fruits-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7668;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285395,35007,'_wp_attached_file','2024/07/Bible-Heros.png'),
(285396,35007,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2024/07/Bible-Heros.png\";s:8:\"filesize\";i:42033;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Bible-Heros-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30661;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Bible-Heros-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11859;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"Bible-Heros-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32893;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"Bible-Heros-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77076;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"Bible-Heros-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6549;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285397,35008,'_wp_attached_file','2024/07/Bible-Prayers.png'),
(285398,35008,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2024/07/Bible-Prayers.png\";s:8:\"filesize\";i:50874;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Bible-Prayers-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36721;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Bible-Prayers-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16484;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Bible-Prayers-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46786;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"Bible-Prayers-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90905;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Bible-Prayers-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9003;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285399,35009,'_wp_attached_file','2024/07/Bible-Stories-Long-A-sound.png'),
(285400,35009,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:38:\"2024/07/Bible-Stories-Long-A-sound.png\";s:8:\"filesize\";i:65037;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Bible-Stories-Long-A-sound-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49382;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Bible-Stories-Long-A-sound-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23426;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Bible-Stories-Long-A-sound-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67826;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"Bible-Stories-Long-A-sound-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128479;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Bible-Stories-Long-A-sound-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12875;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285401,35010,'_wp_attached_file','2024/07/Bible-Women.png'),
(285402,35010,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2024/07/Bible-Women.png\";s:8:\"filesize\";i:41614;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Bible-Women-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33409;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Bible-Women-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14700;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"Bible-Women-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40143;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"Bible-Women-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80646;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"Bible-Women-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8288;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285403,35011,'_wp_attached_file','2024/07/Fun-on-a-mat.png'),
(285404,35011,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2024/07/Fun-on-a-mat.png\";s:8:\"filesize\";i:43798;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Fun-on-a-mat-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36125;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Fun-on-a-mat-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15416;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Fun-on-a-mat-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41025;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"Fun-on-a-mat-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89331;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Fun-on-a-mat-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8892;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285405,35012,'_wp_attached_file','2024/07/In-the-Bag.png'),
(285406,35012,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2024/07/In-the-Bag.png\";s:8:\"filesize\";i:45198;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"In-the-Bag-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37007;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"In-the-Bag-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15960;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"In-the-Bag-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42493;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"In-the-Bag-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92269;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"In-the-Bag-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9332;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285407,35013,'_wp_attached_file','2024/07/Internal-Organs-Wordsearch-1.png'),
(285408,35013,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:40:\"2024/07/Internal-Organs-Wordsearch-1.png\";s:8:\"filesize\";i:52345;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Internal-Organs-Wordsearch-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41128;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Internal-Organs-Wordsearch-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:17363;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"Internal-Organs-Wordsearch-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50078;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:40:\"Internal-Organs-Wordsearch-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104663;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"Internal-Organs-Wordsearch-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4801;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285409,35014,'_wp_attached_file','2024/07/Jacobs-Life-oo-ou.png'),
(285410,35014,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2024/07/Jacobs-Life-oo-ou.png\";s:8:\"filesize\";i:58346;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Jacobs-Life-oo-ou-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46470;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Jacobs-Life-oo-ou-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22394;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Jacobs-Life-oo-ou-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64978;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"Jacobs-Life-oo-ou-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122971;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Jacobs-Life-oo-ou-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12181;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285411,35015,'_wp_attached_file','2024/07/Jonahs-Story.png'),
(285412,35015,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2024/07/Jonahs-Story.png\";s:8:\"filesize\";i:44471;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Jonahs-Story-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37262;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Jonahs-Story-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15757;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Jonahs-Story-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43033;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"Jonahs-Story-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90253;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Jonahs-Story-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8895;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285413,35016,'_wp_attached_file','2024/07/Natural-Lights.png'),
(285414,35016,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2024/07/Natural-Lights.png\";s:8:\"filesize\";i:45607;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Natural-Lights-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Natural-Lights-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17528;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Natural-Lights-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46795;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Natural-Lights-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89497;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Natural-Lights-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10075;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285415,35017,'_wp_attached_file','2024/07/Phonics-Mixed-AY.png'),
(285416,35017,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2024/07/Phonics-Mixed-AY.png\";s:8:\"filesize\";i:62695;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Phonics-Mixed-AY-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46955;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Phonics-Mixed-AY-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21920;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Phonics-Mixed-AY-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65072;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"Phonics-Mixed-AY-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122435;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Phonics-Mixed-AY-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11929;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285417,35018,'_wp_attached_file','2024/07/Phonics-Psalms-23-AY.png'),
(285418,35018,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2024/07/Phonics-Psalms-23-AY.png\";s:8:\"filesize\";i:56800;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Phonics-Psalms-23-AY-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42780;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Phonics-Psalms-23-AY-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20075;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"Phonics-Psalms-23-AY-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58712;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:32:\"Phonics-Psalms-23-AY-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111609;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"Phonics-Psalms-23-AY-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11158;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285419,35019,'_wp_attached_file','2024/07/The-Map.png'),
(285420,35019,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2024/07/The-Map.png\";s:8:\"filesize\";i:45404;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"The-Map-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35245;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"The-Map-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15331;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"The-Map-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41163;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:19:\"The-Map-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88929;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"The-Map-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9071;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285421,35020,'_wp_attached_file','2024/07/The-Run.png'),
(285422,35020,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2024/07/The-Run.png\";s:8:\"filesize\";i:43216;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"The-Run-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34003;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"The-Run-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14817;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"The-Run-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38944;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:19:\"The-Run-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84155;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"The-Run-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285423,35021,'_wp_attached_file','2024/07/The-Smelly-Stop.png'),
(285424,35021,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2024/07/The-Smelly-Stop.png\";s:8:\"filesize\";i:48820;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"The-Smelly-Stop-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38801;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"The-Smelly-Stop-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16324;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"The-Smelly-Stop-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43171;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"The-Smelly-Stop-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95699;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"The-Smelly-Stop-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285425,35022,'_wp_attached_file','2024/07/Too-Hot.png'),
(285426,35022,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2024/07/Too-Hot.png\";s:8:\"filesize\";i:40982;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Too-Hot-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34007;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Too-Hot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14911;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"Too-Hot-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39027;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:19:\"Too-Hot-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83911;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"Too-Hot-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285427,35023,'_wp_attached_file','2024/07/Who-is-God.png'),
(285428,35023,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2024/07/Who-is-God.png\";s:8:\"filesize\";i:46879;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Who-is-God-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33635;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Who-is-God-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16512;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Who-is-God-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48150;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"Who-is-God-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85404;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Who-is-God-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9114;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285429,35024,'_wp_attached_file','2024/07/God-did-this-OR.png'),
(285430,35024,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2024/07/God-did-this-OR.png\";s:8:\"filesize\";i:63302;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"God-did-this-OR-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49795;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"God-did-this-OR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24786;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"God-did-this-OR-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72960;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"God-did-this-OR-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130951;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"God-did-this-OR-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13592;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285711,35058,'_wp_attached_file','2024/07/muddy-hands.png'),
(285712,35058,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2024/07/muddy-hands.png\";s:8:\"filesize\";i:109140;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"muddy-hands-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145168;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"muddy-hands-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40144;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"muddy-hands-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145168;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"muddy-hands-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:249902;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"muddy-hands-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19306;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(285789,35068,'_wp_attached_file','2024/07/Fives-Marvellous-Adventures.png'),
(285790,35068,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:540;s:4:\"file\";s:39:\"2024/07/Fives-Marvellous-Adventures.png\";s:8:\"filesize\";i:68783;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Fives-Marvellous-Adventures-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100887;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Fives-Marvellous-Adventures-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31838;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Fives-Marvellous-Adventures-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100887;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:39:\"Fives-Marvellous-Adventures-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160398;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Fives-Marvellous-Adventures-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15848;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(286747,32473,'_elementor_controls_usage','a:8:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:1;s:28:\"text_shadow_text_shadow_type\";i:2;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:6:{s:14:\"_section_style\";a:6:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:8:\"_padding\";i:1;s:21:\"_element_width_tablet\";i:1;}s:15:\"section_effects\";a:6:{s:10:\"_animation\";i:1;s:17:\"_animation_mobile\";i:1;s:18:\"animation_duration\";i:1;s:29:\"motion_fx_motion_fx_scrolling\";i:5;s:22:\"motion_fx_scale_effect\";i:5;s:21:\"motion_fx_scale_speed\";i:5;}s:18:\"_section_transform\";a:9:{s:28:\"_transform_translateX_effect\";i:1;s:35:\"_transform_translateX_effect_tablet\";i:1;s:35:\"_transform_translateX_effect_mobile\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:35:\"_transform_translateY_effect_tablet\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;s:36:\"_transform_scale_effect_hover_mobile\";i:6;s:30:\"_transform_scale_popover_hover\";i:3;s:30:\"_transform_scale_effect_mobile\";i:2;}s:19:\"_section_background\";a:5:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;s:19:\"_background_color_b\";i:2;s:24:\"_background_color_b_stop\";i:1;s:26:\"_background_gradient_angle\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_radius\";i:2;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:1;s:11:\"_mask_shape\";i:1;s:11:\"_mask_image\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:4:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:3;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:2;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:7:{s:23:\"shape_divider_top_width\";i:2;s:24:\"shape_divider_top_height\";i:2;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:3;s:5:\"width\";i:4;s:20:\"flex_justify_content\";i:8;s:16:\"flex_align_items\";i:7;s:8:\"flex_gap\";i:3;s:11:\"boxed_width\";i:2;s:14:\"flex_direction\";i:8;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:3:{s:10:\"_flex_size\";i:3;s:6:\"margin\";i:2;s:7:\"padding\";i:1;}s:15:\"section_effects\";a:1:{s:18:\"animation_duration\";i:1;}s:18:\"_section_transform\";a:6:{s:28:\"_transform_translateX_effect\";i:1;s:35:\"_transform_translateX_effect_tablet\";i:1;s:35:\"_transform_translateX_effect_mobile\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:35:\"_transform_translateY_effect_tablet\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}s:23:\"eael-filterable-gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:7:\"content\";a:4:{s:24:\"eael_section_fg_settings\";a:5:{s:21:\"eael_fg_items_to_show\";i:1;s:24:\"eael_fg_grid_item_height\";i:1;s:29:\"eael_section_fg_link_icon_new\";i:1;s:29:\"eael_fg_grid_hover_transition\";i:1;s:21:\"eael_fg_caption_style\";i:1;}s:32:\"eael_section_fg_control_settings\";a:1:{s:16:\"eael_fg_controls\";i:1;}s:29:\"eael_section_fg_grid_settings\";a:1:{s:21:\"eael_fg_gallery_items\";i:1;}s:18:\"section_pagination\";a:2:{s:10:\"pagination\";i:1;s:15:\"images_per_page\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:5:\"style\";a:6:{s:38:\"eael_section_fg_control_style_settings\";a:12:{s:31:\"eael_fg_control_active_bg_color\";i:1;s:22:\"eael_fg_control_margin\";i:1;s:37:\"eael_fg_control_typography_typography\";i:1;s:38:\"eael_fg_control_typography_font_family\";i:1;s:36:\"eael_fg_control_typography_font_size\";i:1;s:38:\"eael_fg_control_typography_font_weight\";i:1;s:41:\"eael_fg_control_typography_text_transform\";i:1;s:37:\"eael_fg_control_typography_font_style\";i:1;s:33:\"eael_fg_control_normal_text_color\";i:1;s:36:\"eael_fg_control_normal_border_radius\";i:1;s:38:\"eael_fg_control_shadow_box_shadow_type\";i:1;s:33:\"eael_fg_control_shadow_box_shadow\";i:1;}s:29:\"section_loadmore_button_style\";a:2:{s:32:\"load_more_button_bg_color_normal\";i:1;s:38:\"load_more_button_typography_typography\";i:1;}s:35:\"eael_section_fg_item_style_settings\";a:5:{s:35:\"eael_fg_item_shadow_box_shadow_type\";i:1;s:30:\"eael_fg_item_shadow_box_shadow\";i:1;s:26:\"eael_fg_item_border_border\";i:1;s:25:\"eael_fg_item_border_width\";i:1;s:25:\"eael_fg_item_border_color\";i:1;}s:43:\"eael_section_fg_item_content_style_settings\";a:13:{s:29:\"eael_fg_item_content_bg_color\";i:1;s:34:\"eael_fg_item_content_border_border\";i:1;s:33:\"eael_fg_item_content_border_color\";i:1;s:38:\"eael_fg_item_content_shadow_box_shadow\";i:1;s:32:\"eael_fg_item_content_title_color\";i:1;s:38:\"eael_fg_item_content_title_hover_color\";i:1;s:48:\"eael_fg_item_content_title_typography_typography\";i:1;s:49:\"eael_fg_item_content_title_typography_font_weight\";i:1;s:47:\"eael_fg_item_content_text_typography_typography\";i:1;s:48:\"eael_fg_item_content_text_typography_font_weight\";i:1;s:30:\"eael_fg_item_content_alignment\";i:1;s:49:\"eael_fg_item_content_title_typography_font_family\";i:1;s:48:\"eael_fg_item_content_text_typography_font_family\";i:1;}s:30:\"eael_section_fg_style_settings\";a:3:{s:24:\"eael_fg_container_margin\";i:1;s:16:\"eael_fg_bg_color\";i:1;s:25:\"eael_fg_container_padding\";i:1;}s:39:\"eael_section_fg_item_cap_style_settings\";a:1:{s:25:\"eael_fg_item_cap_bg_color\";i:1;}}s:15:\"stax-visibility\";a:2:{s:31:\"stax_visibility_general_section\";a:2:{s:25:\"stax_visibility_show_hide\";i:1;s:30:\"stax_visibility_condition_type\";i:1;}s:33:\"stax_visibility_user_role_section\";a:1:{s:36:\"stax_visibility_user_role_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:13:\"selected_icon\";i:2;s:11:\"icon_indent\";i:1;s:13:\"button_css_id\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:21:\"background_background\";i:1;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:11:\"hover_color\";i:2;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:1:{s:8:\"position\";i:1;}s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:9:\"icon_size\";i:1;}s:21:\"section_style_content\";a:2:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:6:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"section_effects\";a:2:{s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:6:\"rating\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_rating\";a:1:{s:14:\"icon_alignment\";i:1;}}}}s:20:\"testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:1:{s:6:\"slides\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_content_style\";a:7:{s:11:\"content_gap\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;}s:18:\"section_navigation\";a:4:{s:15:\"pagination_size\";i:1;s:25:\"pagination_color_inactive\";i:1;s:16:\"pagination_color\";i:1;s:12:\"arrows_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:6:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"section_effects\";a:2:{s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;s:13:\"_border_width\";i:1;}}}}}'),
(286748,32473,'_elementor_css','a:6:{s:4:\"time\";i:1720203485;s:5:\"fonts\";a:2:{i:0;s:10:\"Lilita One\";i:2;s:5:\"Dekko\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:2;s:0:\"\";i:4;s:10:\"fa-regular\";i:6;s:6:\"eicons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(286777,19564,'_elementor_controls_usage','a:6:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:4;s:20:\"flex_justify_content\";i:4;s:16:\"flex_align_items\";i:3;s:8:\"flex_gap\";i:2;s:11:\"boxed_width\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:3;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:3;s:16:\"background_image\";i:2;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;}s:26:\"section_background_overlay\";a:2:{s:35:\"background_overlay_hover_transition\";i:1;s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:8:{s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:2;s:23:\"shape_divider_top_width\";i:2;s:24:\"shape_divider_top_height\";i:2;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:3;s:10:\"_flex_size\";i:3;s:7:\"padding\";i:1;}s:15:\"section_effects\";a:1:{s:18:\"animation_duration\";i:1;}s:18:\"_section_transform\";a:6:{s:28:\"_transform_translateX_effect\";i:1;s:35:\"_transform_translateX_effect_tablet\";i:1;s:35:\"_transform_translateX_effect_mobile\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:35:\"_transform_translateY_effect_tablet\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:1;s:28:\"text_shadow_text_shadow_type\";i:2;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:6:{s:14:\"_section_style\";a:6:{s:14:\"_element_width\";i:2;s:21:\"_element_width_mobile\";i:2;s:21:\"_element_custom_width\";i:2;s:10:\"_flex_size\";i:2;s:8:\"_padding\";i:1;s:21:\"_element_width_tablet\";i:2;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:1;s:17:\"_animation_mobile\";i:1;s:18:\"animation_duration\";i:1;}s:18:\"_section_transform\";a:6:{s:28:\"_transform_translateX_effect\";i:1;s:35:\"_transform_translateX_effect_tablet\";i:1;s:35:\"_transform_translateX_effect_mobile\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:35:\"_transform_translateY_effect_tablet\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:5:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;s:19:\"_background_color_b\";i:2;s:24:\"_background_color_b_stop\";i:1;s:26:\"_background_gradient_angle\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_radius\";i:2;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:1;s:11:\"_mask_shape\";i:1;s:11:\"_mask_image\";i:1;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}s:22:\"woocommerce-my-account\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:25:\"section_menu_icon_content\";a:4:{s:4:\"tabs\";i:1;s:20:\"tabs_content_spacing\";i:1;s:13:\"tabs_position\";i:1;s:14:\"tabs_alignment\";i:1;}s:26:\"section_additional_options\";a:1:{s:25:\"customize_dashboard_check\";i:1;}}s:5:\"style\";a:4:{s:10:\"tabs_style\";a:6:{s:38:\"tabs_normal_box_shadow_box_shadow_type\";i:1;s:33:\"tabs_normal_box_shadow_box_shadow\";i:1;s:16:\"tabs_border_type\";i:1;s:18:\"tabs_border_radius\";i:1;s:12:\"tabs_spacing\";i:1;s:19:\"tabs_divider_weight\";i:1;}s:14:\"sections_title\";a:1:{s:36:\"my_account_sections_background_color\";i:1;}s:16:\"typography_title\";a:1:{s:49:\"section_titles_typography_text_shadow_text_shadow\";i:1;}s:13:\"forms_section\";a:1:{s:41:\"forms_fields_normal_background_background\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:13:\"selected_icon\";i:2;s:11:\"icon_indent\";i:1;s:13:\"button_css_id\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:21:\"background_background\";i:1;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:11:\"hover_color\";i:2;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_font_family\";i:1;s:23:\"text_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:1:{s:35:\"_transform_translateY_effect_mobile\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}}'),
(286778,19564,'_elementor_css','a:6:{s:4:\"time\";i:1720204623;s:5:\"fonts\";a:2:{i:0;s:10:\"Lilita One\";i:2;s:5:\"Dekko\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(286779,19564,'_elementor_css','a:6:{s:4:\"time\";i:1720204623;s:5:\"fonts\";a:2:{i:0;s:10:\"Lilita One\";i:2;s:5:\"Dekko\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(286852,35181,'_wp_attached_file','2024/07/Craft-Activities_Puzzles-500-x-500-px.gif'),
(286853,35181,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:49:\"2024/07/Craft-Activities_Puzzles-500-x-500-px.gif\";s:8:\"filesize\";i:329983;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Craft-Activities_Puzzles-500-x-500-px-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:30152;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Craft-Activities_Puzzles-500-x-500-px-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10826;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:49:\"Craft-Activities_Puzzles-500-x-500-px-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:30152;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:49:\"Craft-Activities_Puzzles-500-x-500-px-399x399.gif\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:48089;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:49:\"Craft-Activities_Puzzles-500-x-500-px-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6279;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(287183,35218,'_wp_attached_file','2024/07/Fruits-Snakes-and-Ladders-1-1.png'),
(287184,35218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:41:\"2024/07/Fruits-Snakes-and-Ladders-1-1.png\";s:8:\"filesize\";i:186606;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Fruits-Snakes-and-Ladders-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118783;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"Fruits-Snakes-and-Ladders-1-1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:820923;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Fruits-Snakes-and-Ladders-1-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:38874;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Fruits-Snakes-and-Ladders-1-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:524719;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"Fruits-Snakes-and-Ladders-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118783;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:41:\"Fruits-Snakes-and-Ladders-1-1-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:185132;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"Fruits-Snakes-and-Ladders-1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19940;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(288120,5228,'_elementor_controls_usage','a:14:{s:5:\"image\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:10;s:7:\"link_to\";i:4;s:10:\"image_size\";i:8;s:4:\"link\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:5;s:18:\"animation_duration\";i:5;s:16:\"_animation_delay\";i:4;}s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:6;s:21:\"_element_width_mobile\";i:4;s:21:\"_element_custom_width\";i:6;s:10:\"_flex_size\";i:6;s:11:\"_element_id\";i:1;}s:18:\"_section_transform\";a:13:{s:24:\"_transform_scale_popover\";i:4;s:23:\"_transform_scale_effect\";i:4;s:28:\"_transform_translateY_effect\";i:4;s:35:\"_transform_translateY_effect_tablet\";i:4;s:35:\"_transform_translateY_effect_mobile\";i:4;s:30:\"_transform_scale_effect_mobile\";i:4;s:29:\"_transform_scale_effect_hover\";i:4;s:34:\"_transform_translate_popover_hover\";i:3;s:34:\"_transform_translateX_effect_hover\";i:3;s:30:\"_transform_scale_popover_hover\";i:1;s:25:\"_transform_rotate_popover\";i:1;s:31:\"_transform_rotate_popover_hover\";i:1;s:31:\"_transform_rotateZ_effect_hover\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_radius\";i:4;s:32:\"image_box_shadow_box_shadow_type\";i:4;s:27:\"image_box_shadow_box_shadow\";i:4;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:27;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:15;s:14:\"flex_direction\";i:26;s:20:\"flex_justify_content\";i:17;s:5:\"width\";i:16;s:16:\"flex_align_items\";i:18;s:8:\"flex_gap\";i:7;s:11:\"boxed_width\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:4:{s:10:\"_flex_size\";i:16;s:6:\"margin\";i:6;s:7:\"padding\";i:5;s:16:\"_flex_align_self\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:15:{s:21:\"background_background\";i:16;s:16:\"background_image\";i:11;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:40:\"background_motion_fx_motion_fx_scrolling\";i:2;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:9;s:18:\"background_color_b\";i:4;s:19:\"background_bg_width\";i:1;s:38:\"background_motion_fx_translateX_effect\";i:1;s:37:\"background_motion_fx_translateX_speed\";i:1;s:24:\"background_gradient_type\";i:1;s:23:\"background_color_b_stop\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:10:{s:23:\"shape_divider_top_width\";i:4;s:24:\"shape_divider_top_height\";i:4;s:26:\"shape_divider_bottom_color\";i:4;s:27:\"shape_divider_bottom_height\";i:4;s:17:\"shape_divider_top\";i:4;s:23:\"shape_divider_top_color\";i:4;s:26:\"shape_divider_bottom_width\";i:4;s:26:\"shape_divider_top_negative\";i:3;s:29:\"shape_divider_bottom_negative\";i:1;s:34:\"shape_divider_bottom_above_content\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:4;s:21:\"box_shadow_box_shadow\";i:4;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:24;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:23;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:5:\"align\";i:10;s:10:\"text_color\";i:23;s:21:\"typography_typography\";i:23;s:22:\"typography_font_family\";i:23;s:20:\"typography_font_size\";i:23;s:22:\"typography_line_height\";i:20;s:28:\"text_shadow_text_shadow_type\";i:9;s:23:\"text_shadow_text_shadow\";i:9;s:21:\"typography_font_style\";i:1;s:22:\"typography_font_weight\";i:5;}}s:8:\"advanced\";a:6:{s:14:\"_section_style\";a:7:{s:14:\"_element_width\";i:19;s:21:\"_element_width_mobile\";i:20;s:21:\"_element_custom_width\";i:19;s:10:\"_flex_size\";i:20;s:8:\"_padding\";i:14;s:7:\"_margin\";i:16;s:21:\"_element_width_tablet\";i:13;}s:15:\"section_effects\";a:9:{s:10:\"_animation\";i:11;s:17:\"_animation_mobile\";i:2;s:18:\"animation_duration\";i:10;s:29:\"motion_fx_motion_fx_scrolling\";i:13;s:24:\"motion_fx_opacity_effect\";i:8;s:27:\"motion_fx_opacity_direction\";i:3;s:25:\"motion_fx_scale_direction\";i:4;s:21:\"motion_fx_scale_speed\";i:11;s:22:\"motion_fx_scale_effect\";i:6;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translateX_effect\";i:6;s:35:\"_transform_translateX_effect_tablet\";i:2;s:35:\"_transform_translateX_effect_mobile\";i:2;s:28:\"_transform_translateY_effect\";i:6;s:35:\"_transform_translateY_effect_tablet\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:6;s:36:\"_transform_scale_effect_hover_mobile\";i:7;}s:19:\"_section_background\";a:8:{s:22:\"_background_background\";i:19;s:17:\"_background_color\";i:16;s:19:\"_background_color_b\";i:16;s:24:\"_background_color_b_stop\";i:7;s:26:\"_background_gradient_angle\";i:2;s:17:\"_background_image\";i:4;s:25:\"_background_gradient_type\";i:11;s:22:\"_background_color_stop\";i:5;}s:15:\"_section_border\";a:6:{s:14:\"_border_radius\";i:18;s:27:\"_box_shadow_box_shadow_type\";i:11;s:22:\"_box_shadow_box_shadow\";i:7;s:14:\"_border_border\";i:5;s:13:\"_border_width\";i:5;s:13:\"_border_color\";i:1;}s:16:\"_section_masking\";a:4:{s:12:\"_mask_switch\";i:1;s:11:\"_mask_shape\";i:6;s:11:\"_mask_image\";i:2;s:10:\"_mask_size\";i:1;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:16;s:4:\"link\";i:10;s:11:\"icon_indent\";i:4;s:13:\"selected_icon\";i:12;s:10:\"icon_align\";i:11;s:13:\"button_css_id\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:25:{s:5:\"align\";i:16;s:16:\"background_color\";i:16;s:13:\"border_radius\";i:15;s:21:\"typography_typography\";i:16;s:20:\"typography_font_size\";i:16;s:22:\"typography_font_family\";i:15;s:17:\"button_text_color\";i:6;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:22:\"typography_font_weight\";i:15;s:29:\"button_background_hover_color\";i:4;s:11:\"hover_color\";i:5;s:25:\"typography_text_transform\";i:11;s:25:\"typography_letter_spacing\";i:11;s:28:\"text_shadow_text_shadow_type\";i:11;s:23:\"text_shadow_text_shadow\";i:12;s:21:\"background_background\";i:12;s:21:\"background_color_stop\";i:11;s:18:\"background_color_b\";i:12;s:25:\"background_gradient_angle\";i:11;s:33:\"button_box_shadow_box_shadow_type\";i:11;s:28:\"button_box_shadow_box_shadow\";i:11;s:15:\"hover_animation\";i:1;s:12:\"text_padding\";i:1;}}s:8:\"advanced\";a:4:{s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:3;s:28:\"_background_hover_background\";i:3;}s:18:\"_section_transform\";a:4:{s:30:\"_transform_scale_popover_hover\";i:7;s:29:\"_transform_scale_effect_hover\";i:7;s:36:\"_transform_scale_effect_hover_mobile\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}s:15:\"section_effects\";a:5:{s:29:\"motion_fx_motion_fx_scrolling\";i:4;s:22:\"motion_fx_scale_effect\";i:4;s:21:\"motion_fx_scale_speed\";i:4;s:25:\"motion_fx_scale_direction\";i:1;s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:23:\"eael-filterable-gallery\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"content\";a:4:{s:24:\"eael_section_fg_settings\";a:6:{s:21:\"eael_fg_items_to_show\";i:4;s:7:\"columns\";i:4;s:21:\"eael_fg_caption_style\";i:2;s:24:\"eael_fg_grid_item_height\";i:1;s:29:\"eael_section_fg_link_icon_new\";i:1;s:29:\"eael_fg_grid_hover_transition\";i:1;}s:32:\"eael_section_fg_control_settings\";a:2:{s:13:\"filter_enable\";i:3;s:16:\"eael_fg_controls\";i:4;}s:29:\"eael_section_fg_grid_settings\";a:2:{s:19:\"eael_item_randomize\";i:3;s:21:\"eael_fg_gallery_items\";i:4;}s:18:\"section_pagination\";a:2:{s:10:\"pagination\";i:2;s:15:\"images_per_page\";i:2;}}s:5:\"style\";a:6:{s:35:\"eael_section_fg_item_style_settings\";a:6:{s:30:\"eael_fg_item_container_padding\";i:1;s:35:\"eael_fg_item_shadow_box_shadow_type\";i:1;s:30:\"eael_fg_item_shadow_box_shadow\";i:1;s:26:\"eael_fg_item_border_border\";i:1;s:25:\"eael_fg_item_border_width\";i:1;s:25:\"eael_fg_item_border_color\";i:1;}s:38:\"eael_section_fg_control_style_settings\";a:12:{s:31:\"eael_fg_control_active_bg_color\";i:1;s:22:\"eael_fg_control_margin\";i:1;s:37:\"eael_fg_control_typography_typography\";i:1;s:38:\"eael_fg_control_typography_font_family\";i:1;s:36:\"eael_fg_control_typography_font_size\";i:1;s:38:\"eael_fg_control_typography_font_weight\";i:1;s:41:\"eael_fg_control_typography_text_transform\";i:1;s:37:\"eael_fg_control_typography_font_style\";i:1;s:33:\"eael_fg_control_normal_text_color\";i:1;s:36:\"eael_fg_control_normal_border_radius\";i:1;s:38:\"eael_fg_control_shadow_box_shadow_type\";i:1;s:33:\"eael_fg_control_shadow_box_shadow\";i:1;}s:29:\"section_loadmore_button_style\";a:2:{s:32:\"load_more_button_bg_color_normal\";i:1;s:38:\"load_more_button_typography_typography\";i:1;}s:43:\"eael_section_fg_item_content_style_settings\";a:13:{s:29:\"eael_fg_item_content_bg_color\";i:1;s:34:\"eael_fg_item_content_border_border\";i:1;s:33:\"eael_fg_item_content_border_color\";i:1;s:38:\"eael_fg_item_content_shadow_box_shadow\";i:1;s:32:\"eael_fg_item_content_title_color\";i:1;s:38:\"eael_fg_item_content_title_hover_color\";i:1;s:48:\"eael_fg_item_content_title_typography_typography\";i:1;s:49:\"eael_fg_item_content_title_typography_font_weight\";i:1;s:47:\"eael_fg_item_content_text_typography_typography\";i:1;s:48:\"eael_fg_item_content_text_typography_font_weight\";i:1;s:30:\"eael_fg_item_content_alignment\";i:1;s:49:\"eael_fg_item_content_title_typography_font_family\";i:1;s:48:\"eael_fg_item_content_text_typography_font_family\";i:1;}s:30:\"eael_section_fg_style_settings\";a:3:{s:24:\"eael_fg_container_margin\";i:1;s:16:\"eael_fg_bg_color\";i:1;s:25:\"eael_fg_container_padding\";i:1;}s:39:\"eael_section_fg_item_cap_style_settings\";a:1:{s:25:\"eael_fg_item_cap_bg_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:15:\"stax-visibility\";a:2:{s:31:\"stax_visibility_general_section\";a:2:{s:25:\"stax_visibility_show_hide\";i:1;s:30:\"stax_visibility_condition_type\";i:1;}s:33:\"stax_visibility_user_role_section\";a:1:{s:36:\"stax_visibility_user_role_conditions\";i:1;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:4;s:6:\"effect\";i:4;s:15:\"slides_per_view\";i:4;}}s:5:\"style\";a:2:{s:20:\"section_slides_style\";a:2:{s:19:\"slide_border_radius\";i:4;s:22:\"slide_background_color\";i:3;}s:18:\"section_navigation\";a:1:{s:16:\"pagination_color\";i:4;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:4;s:14:\"_element_width\";i:4;s:21:\"_element_width_tablet\";i:4;s:21:\"_element_width_mobile\";i:4;s:21:\"_element_custom_width\";i:4;s:10:\"_flex_size\";i:4;}s:15:\"section_effects\";a:2:{s:22:\"motion_fx_scale_effect\";i:4;s:21:\"motion_fx_scale_speed\";i:4;}s:18:\"_section_transform\";a:1:{s:36:\"_transform_scale_effect_hover_mobile\";i:4;}s:19:\"_section_background\";a:5:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;s:19:\"_background_color_b\";i:4;s:25:\"_background_gradient_type\";i:4;s:17:\"_background_image\";i:3;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:4;s:14:\"_border_radius\";i:4;s:27:\"_box_shadow_box_shadow_type\";i:4;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}s:21:\"section_image_overlay\";a:2:{s:18:\"show_image_overlay\";i:1;s:13:\"image_overlay\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:12:\"aspect_ratio\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:25:\"eael-woo-product-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:37:\"eael_section_product_carousel_layouts\";a:6:{s:32:\"eael_product_carousel_show_title\";i:1;s:28:\"eael_product_carousel_rating\";i:1;s:27:\"eael_product_carousel_price\";i:1;s:37:\"eael_product_carousel_image_size_size\";i:1;s:37:\"eael_product_carousel_image_clickable\";i:1;s:37:\"eael_product_carousel_title_clickable\";i:1;}s:26:\"section_additional_options\";a:6:{s:15:\"carousel_effect\";i:1;s:15:\"carousel_rotate\";i:1;s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:14:\"autoplay_speed\";i:1;s:16:\"carousel_stretch\";i:1;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}s:15:\"_section_border\";a:6:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:28:\"eael_product_carousel_styles\";a:1:{s:35:\"eael_product_carousel_border_border\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_weight\";i:1;s:5:\"align\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:21:\"_element_width_tablet\";i:1;s:10:\"_flex_size\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:3:{s:8:\"position\";i:4;s:15:\"position_tablet\";i:3;s:10:\"icon_space\";i:3;}s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:4;s:9:\"icon_size\";i:4;}s:21:\"section_style_content\";a:6:{s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_family\";i:3;s:33:\"description_typography_typography\";i:3;s:34:\"description_typography_font_weight\";i:3;s:17:\"description_color\";i:3;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:6:{s:21:\"_element_width_tablet\";i:4;s:21:\"_element_width_mobile\";i:4;s:10:\"_flex_size\";i:4;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:15:\"section_effects\";a:2:{s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:6:\"rating\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"slides\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:1:{s:6:\"slides\";i:1;}s:22:\"section_slider_options\";a:2:{s:10:\"transition\";i:1;s:17:\"content_animation\";i:1;}}s:5:\"style\";a:5:{s:20:\"section_style_slides\";a:1:{s:17:\"content_max_width\";i:1;}s:19:\"section_style_title\";a:2:{s:15:\"heading_spacing\";i:1;s:13:\"heading_color\";i:1;}s:25:\"section_style_description\";a:4:{s:19:\"description_spacing\";i:1;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:32:\"description_typography_font_size\";i:1;}s:20:\"section_style_button\";a:5:{s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:20:\"button_border_radius\";i:1;s:17:\"button_text_color\";i:1;s:23:\"button_background_color\";i:1;}s:24:\"section_style_navigation\";a:5:{s:11:\"arrows_size\";i:1;s:12:\"arrows_color\";i:1;s:9:\"dots_size\";i:1;s:19:\"dots_color_inactive\";i:1;s:10:\"dots_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:6:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"section_effects\";a:2:{s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}}'),
(288121,5228,'_elementor_css','a:6:{s:4:\"time\";i:1720565670;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:3;s:5:\"Dekko\";i:33;s:10:\"Schoolbell\";}s:5:\"icons\";a:4:{i:0;s:10:\"fa-regular\";i:3;s:8:\"fa-solid\";i:4;s:0:\"\";i:31;s:6:\"eicons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(288317,577,'_elementor_css','a:6:{s:4:\"time\";i:1720604695;s:5:\"fonts\";a:2:{i:0;s:5:\"Dekko\";i:1;s:10:\"Lilita One\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:9:\"fa-brands\";i:5;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(288561,35375,'_wp_attached_file','2024/07/Puzzle-Fun.png'),
(288562,35375,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2024/07/Puzzle-Fun.png\";s:8:\"filesize\";i:33885;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Puzzle-Fun-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70683;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Puzzle-Fun-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25212;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Puzzle-Fun-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70683;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"Puzzle-Fun-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118003;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Puzzle-Fun-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13962;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(288563,35376,'_wp_attached_file','2024/07/Colouring-Fun.png'),
(288564,35376,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2024/07/Colouring-Fun.png\";s:8:\"filesize\";i:26043;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Colouring-Fun-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58142;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Colouring-Fun-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22848;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Colouring-Fun-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58142;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"Colouring-Fun-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90797;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Colouring-Fun-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(288565,35377,'_wp_attached_file','2024/07/Word-Fun.png'),
(288566,35377,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2024/07/Word-Fun.png\";s:8:\"filesize\";i:50925;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Word-Fun-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91671;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Word-Fun-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31861;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"Word-Fun-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91671;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"Word-Fun-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147347;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Word-Fun-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17129;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(288567,35378,'_wp_attached_file','2024/07/Number-Fun.png'),
(288568,35378,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2024/07/Number-Fun.png\";s:8:\"filesize\";i:45306;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Number-Fun-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Number-Fun-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23852;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Number-Fun-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75584;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"Number-Fun-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126564;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Number-Fun-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12896;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289407,35473,'_wp_attached_file','2024/07/Bens-new-pal-1.png'),
(289408,35473,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2024/07/Bens-new-pal-1.png\";s:8:\"filesize\";i:138092;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Bens-new-pal-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46239;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Bens-new-pal-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:16098;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Bens-new-pal-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52774;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Bens-new-pal-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143623;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Bens-new-pal-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8196;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289435,35477,'_wp_attached_file','2024/07/Number-Bubbles-1.png'),
(289436,35477,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2024/07/Number-Bubbles-1.png\";s:8:\"filesize\";i:45614;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Number-Bubbles-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Number-Bubbles-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:15770;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Number-Bubbles-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44940;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"Number-Bubbles-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94378;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Number-Bubbles-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8477;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289447,35479,'_wp_attached_file','2024/07/Busy-Balloons-1.png'),
(289448,35479,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2024/07/Busy-Balloons-1.png\";s:8:\"filesize\";i:44833;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Busy-Balloons-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35406;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Busy-Balloons-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:14747;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"Busy-Balloons-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42555;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"Busy-Balloons-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91480;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Busy-Balloons-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7960;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289449,35480,'_wp_attached_file','2024/07/I-spy-bugs-1.png'),
(289450,35480,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2024/07/I-spy-bugs-1.png\";s:8:\"filesize\";i:52516;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"I-spy-bugs-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37535;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"I-spy-bugs-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:16521;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"I-spy-bugs-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47732;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"I-spy-bugs-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97694;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"I-spy-bugs-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9024;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289451,35481,'_wp_attached_file','2024/07/Counting-on-the-Lake-1.png'),
(289452,35481,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:34:\"2024/07/Counting-on-the-Lake-1.png\";s:8:\"filesize\";i:69837;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Counting-on-the-Lake-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53915;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Counting-on-the-Lake-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:20011;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"Counting-on-the-Lake-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55297;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:34:\"Counting-on-the-Lake-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139382;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"Counting-on-the-Lake-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11243;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289453,35482,'_wp_attached_file','2024/07/Elijahs-Prayer-1.png'),
(289454,35482,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2024/07/Elijahs-Prayer-1.png\";s:8:\"filesize\";i:36021;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Elijahs-Prayer-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29174;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Elijahs-Prayer-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:10665;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Elijahs-Prayer-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29441;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"Elijahs-Prayer-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72352;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Elijahs-Prayer-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5908;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289455,35483,'_wp_attached_file','2024/07/Nice-and-Clean-1.png'),
(289456,35483,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2024/07/Nice-and-Clean-1.png\";s:8:\"filesize\";i:53451;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Nice-and-Clean-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42144;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Nice-and-Clean-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:17999;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Nice-and-Clean-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52116;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"Nice-and-Clean-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109049;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Nice-and-Clean-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9649;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289458,35484,'_wp_attached_file','2024/07/Keeping-Warm-1.png'),
(289459,35484,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2024/07/Keeping-Warm-1.png\";s:8:\"filesize\";i:50587;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Keeping-Warm-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Keeping-Warm-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:15806;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Keeping-Warm-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46855;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Keeping-Warm-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93215;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Keeping-Warm-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8587;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289461,35485,'_wp_attached_file','2024/07/10-sec-smile-1.png'),
(289462,35485,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2024/07/10-sec-smile-1.png\";s:8:\"filesize\";i:35310;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"10-sec-smile-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"10-sec-smile-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:14396;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"10-sec-smile-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37689;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"10-sec-smile-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73767;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"10-sec-smile-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8367;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289463,35486,'_wp_attached_file','2024/07/meet-the-number-friends-and-their-friends-1.png'),
(289464,35486,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:55:\"2024/07/meet-the-number-friends-and-their-friends-1.png\";s:8:\"filesize\";i:81058;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"meet-the-number-friends-and-their-friends-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41627;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"meet-the-number-friends-and-their-friends-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:18333;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:55:\"meet-the-number-friends-and-their-friends-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56766;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:55:\"meet-the-number-friends-and-their-friends-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115391;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:55:\"meet-the-number-friends-and-their-friends-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9923;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290148,35562,'_wp_attached_file','2024/07/The-Happy-Diver-1.png'),
(290149,35562,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2024/07/The-Happy-Diver-1.png\";s:8:\"filesize\";i:61303;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"The-Happy-Diver-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45431;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"The-Happy-Diver-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:20130;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"The-Happy-Diver-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58416;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"The-Happy-Diver-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117903;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"The-Happy-Diver-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11031;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290151,35563,'_wp_attached_file','2024/07/Heaviest-toy-1.png'),
(290152,35563,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2024/07/Heaviest-toy-1.png\";s:8:\"filesize\";i:37622;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Heaviest-toy-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Heaviest-toy-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:12546;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Heaviest-toy-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35154;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Heaviest-toy-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82109;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Heaviest-toy-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7159;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290179,35567,'_wp_attached_file','2024/07/Lets-Solve-1.png'),
(290180,35567,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2024/07/Lets-Solve-1.png\";s:8:\"filesize\";i:51601;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Lets-Solve-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38868;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Lets-Solve-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:18292;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Lets-Solve-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50166;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"Lets-Solve-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98890;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Lets-Solve-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10334;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290191,35569,'_wp_attached_file','2024/07/Strongest-Tower-1.png'),
(290192,35569,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2024/07/Strongest-Tower-1.png\";s:8:\"filesize\";i:38015;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Strongest-Tower-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33765;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Strongest-Tower-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:14475;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Strongest-Tower-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38181;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"Strongest-Tower-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81254;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Strongest-Tower-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7928;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290298,35582,'_wp_attached_file','2024/07/Vv.png'),
(290299,35582,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:14:\"2024/07/Vv.png\";s:8:\"filesize\";i:31306;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"Vv-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25320;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"Vv-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10517;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"Vv-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30168;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:14:\"Vv-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63305;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"Vv-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5775;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290300,35583,'_wp_attached_file','2024/07/Aa.png'),
(290301,35583,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:14:\"2024/07/Aa.png\";s:8:\"filesize\";i:31463;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"Aa-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27328;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"Aa-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11687;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"Aa-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32909;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:14:\"Aa-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68474;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"Aa-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6360;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290314,35586,'_wp_attached_file','2024/07/Natures-Circles-1.png'),
(290315,35586,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2024/07/Natures-Circles-1.png\";s:8:\"filesize\";i:43226;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Natures-Circles-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36225;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Natures-Circles-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:15068;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Natures-Circles-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41664;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"Natures-Circles-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89431;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Natures-Circles-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7989;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290316,35587,'_wp_attached_file','2024/07/Cuddle-time.png'),
(290317,35587,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2024/07/Cuddle-time.png\";s:8:\"filesize\";i:42322;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Cuddle-time-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34621;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Cuddle-time-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15508;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"Cuddle-time-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43777;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"Cuddle-time-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86639;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"Cuddle-time-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8640;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290318,35588,'_wp_attached_file','2024/07/How-many-sides-1.png'),
(290319,35588,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2024/07/How-many-sides-1.png\";s:8:\"filesize\";i:51369;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"How-many-sides-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37426;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"How-many-sides-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:16539;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"How-many-sides-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52289;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"How-many-sides-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101993;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"How-many-sides-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8912;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290320,35589,'_wp_attached_file','2024/07/Still-Water-1.png'),
(290321,35589,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2024/07/Still-Water-1.png\";s:8:\"filesize\";i:41018;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Still-Water-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33710;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Still-Water-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:13580;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Still-Water-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39021;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"Still-Water-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86478;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Still-Water-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7409;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290373,35596,'_wp_attached_file','2024/07/Beautiful-Birds.png'),
(290374,35596,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2024/07/Beautiful-Birds.png\";s:8:\"filesize\";i:45533;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Beautiful-Birds-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35447;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Beautiful-Birds-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12366;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"Beautiful-Birds-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34883;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"Beautiful-Birds-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90069;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Beautiful-Birds-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6783;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290375,35597,'_wp_attached_file','2024/07/Beautiful-Butterfly.png'),
(290376,35597,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2024/07/Beautiful-Butterfly.png\";s:8:\"filesize\";i:43927;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Beautiful-Butterfly-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33387;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Beautiful-Butterfly-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13115;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Beautiful-Butterfly-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37539;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"Beautiful-Butterfly-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84855;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Beautiful-Butterfly-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290377,35598,'_wp_attached_file','2024/07/Spec-the-Spider.png'),
(290378,35598,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2024/07/Spec-the-Spider.png\";s:8:\"filesize\";i:45805;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Spec-the-Spider-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39562;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Spec-the-Spider-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17664;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"Spec-the-Spider-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46446;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"Spec-the-Spider-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96251;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Spec-the-Spider-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10255;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290766,35642,'_elementor_edit_mode','builder'),
(290767,35642,'_elementor_template_type','loop-item'),
(290770,35642,'_elementor_version','3.21.4'),
(290771,35642,'_elementor_pro_version','3.21.2'),
(290772,35642,'_elementor_source','post'),
(290778,35642,'_wp_page_template','default'),
(290779,35642,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),
(290807,35642,'_edit_lock','1721223686:1'),
(290815,35642,'_elementor_data','[{\"id\":\"0e6bde4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":270.663},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[],\"isInner\":false}]'),
(290824,35642,'_elementor_page_assets','a:0:{}'),
(290825,35642,'_eael_custom_js',''),
(290867,35642,'_elementor_controls_usage','a:1:{s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:14:\"flex_direction\";i:1;s:13:\"content_width\";i:1;s:5:\"width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:10:\"_flex_size\";i:1;}}}}}'),
(290868,35642,'_elementor_css','a:6:{s:4:\"time\";i:1721223413;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(290979,35669,'_wp_attached_file','2024/07/The-Mistake-1.png'),
(290980,35669,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2024/07/The-Mistake-1.png\";s:8:\"filesize\";i:51859;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"The-Mistake-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45534;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"The-Mistake-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:20076;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"The-Mistake-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61053;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"The-Mistake-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119919;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"The-Mistake-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10472;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290981,35670,'_wp_attached_file','2024/07/Dry-Ground-1.png'),
(290982,35670,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2024/07/Dry-Ground-1.png\";s:8:\"filesize\";i:62155;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Dry-Ground-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50242;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Dry-Ground-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:23133;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Dry-Ground-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70441;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"Dry-Ground-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:134986;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Dry-Ground-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12251;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291017,35675,'_wp_attached_file','2024/07/What-Slides-Say-1.png'),
(291018,35675,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2024/07/What-Slides-Say-1.png\";s:8:\"filesize\";i:39723;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"What-Slides-Say-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34028;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"What-Slides-Say-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:13783;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"What-Slides-Say-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36081;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"What-Slides-Say-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81428;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"What-Slides-Say-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7822;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291019,35676,'_wp_attached_file','2024/07/short-e-sound-1.png'),
(291020,35676,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2024/07/short-e-sound-1.png\";s:8:\"filesize\";i:34339;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"short-e-sound-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28110;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"short-e-sound-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:9890;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"short-e-sound-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27015;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"short-e-sound-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68769;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"short-e-sound-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291021,35677,'_wp_attached_file','2024/07/Drawing-Trace-and-Learn-1-1.png'),
(291022,35677,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:39:\"2024/07/Drawing-Trace-and-Learn-1-1.png\";s:8:\"filesize\";i:57831;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Drawing-Trace-and-Learn-1-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43130;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Drawing-Trace-and-Learn-1-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:19995;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Drawing-Trace-and-Learn-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55673;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:39:\"Drawing-Trace-and-Learn-1-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108094;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Drawing-Trace-and-Learn-1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10688;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291023,35678,'_wp_attached_file','2024/07/Drawing-Trace-and-Learn-2-1.png'),
(291024,35678,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:39:\"2024/07/Drawing-Trace-and-Learn-2-1.png\";s:8:\"filesize\";i:42225;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Drawing-Trace-and-Learn-2-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35099;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Drawing-Trace-and-Learn-2-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:15038;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Drawing-Trace-and-Learn-2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42182;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:39:\"Drawing-Trace-and-Learn-2-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87643;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Drawing-Trace-and-Learn-2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8375;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291025,35679,'_wp_attached_file','2024/07/Drawing-Trace-and-Learn-3.png'),
(291026,35679,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:37:\"2024/07/Drawing-Trace-and-Learn-3.png\";s:8:\"filesize\";i:47484;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Drawing-Trace-and-Learn-3-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35849;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Drawing-Trace-and-Learn-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:16186;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"Drawing-Trace-and-Learn-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45263;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:37:\"Drawing-Trace-and-Learn-3-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89167;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"Drawing-Trace-and-Learn-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8688;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291324,35715,'_wp_attached_file','2024/07/Jospeh-Counting.png'),
(291325,35715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2024/07/Jospeh-Counting.png\";s:8:\"filesize\";i:50288;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Jospeh-Counting-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Jospeh-Counting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16998;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"Jospeh-Counting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47968;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"Jospeh-Counting-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90219;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Jospeh-Counting-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291326,35716,'_wp_attached_file','2024/07/Noah-Counting.png'),
(291327,35716,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2024/07/Noah-Counting.png\";s:8:\"filesize\";i:45937;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Noah-Counting-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35147;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Noah-Counting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16199;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Noah-Counting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45684;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"Noah-Counting-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86223;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Noah-Counting-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9002;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291328,35717,'_wp_attached_file','2024/07/Special-Ten-1.png'),
(291329,35717,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2024/07/Special-Ten-1.png\";s:8:\"filesize\";i:42256;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Special-Ten-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43576;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Special-Ten-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:19140;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Special-Ten-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56434;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"Special-Ten-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110507;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Special-Ten-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10596;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291397,35729,'_wp_attached_file','2024/07/Kindness-4-in-a-row.png'),
(291398,35729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2024/07/Kindness-4-in-a-row.png\";s:8:\"filesize\";i:100591;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Kindness-4-in-a-row-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78020;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Kindness-4-in-a-row-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:500182;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Kindness-4-in-a-row-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26419;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Kindness-4-in-a-row-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:331026;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Kindness-4-in-a-row-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78020;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"Kindness-4-in-a-row-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120416;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Kindness-4-in-a-row-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14000;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291399,35730,'_wp_attached_file','2024/07/Fruits-Snakes-and-Ladders.png'),
(291400,35730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:37:\"2024/07/Fruits-Snakes-and-Ladders.png\";s:8:\"filesize\";i:123744;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74895;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Fruits-Snakes-and-Ladders-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:502075;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26449;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:321269;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74895;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113742;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"Fruits-Snakes-and-Ladders-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14917;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291401,35731,'_wp_attached_file','2024/07/Guess-Who.png'),
(291402,35731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2024/07/Guess-Who.png\";s:8:\"filesize\";i:112206;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Guess-Who-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94062;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Guess-Who-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:595291;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Guess-Who-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33857;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"Guess-Who-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:379033;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"Guess-Who-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94062;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"Guess-Who-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137349;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"Guess-Who-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18740;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(291403,35732,'_wp_attached_file','2024/07/Shepherd-Dots.png'),
(291404,35732,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:25:\"2024/07/Shepherd-Dots.png\";s:8:\"filesize\";i:151583;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Shepherd-Dots-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101622;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Shepherd-Dots-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:634713;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Shepherd-Dots-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34495;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Shepherd-Dots-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:414108;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Shepherd-Dots-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101622;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"Shepherd-Dots-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155879;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Shepherd-Dots-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18092;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292247,35831,'_edit_lock','1721839109:1'),
(292248,35831,'_edit_last','1'),
(292249,35832,'_wp_attached_file','2024/07/Front-Pages-10-Reasons-to-Trust-God.png'),
(292250,35832,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:540;s:4:\"file\";s:47:\"2024/07/Front-Pages-10-Reasons-to-Trust-God.png\";s:8:\"filesize\";i:72232;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Front-Pages-10-Reasons-to-Trust-God-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104414;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Front-Pages-10-Reasons-to-Trust-God-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33740;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:47:\"Front-Pages-10-Reasons-to-Trust-God-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104414;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:47:\"Front-Pages-10-Reasons-to-Trust-God-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166524;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:47:\"Front-Pages-10-Reasons-to-Trust-God-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17212;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292251,35831,'_thumbnail_id','35832'),
(292252,35831,'_wp_page_template','default'),
(292253,35831,'_fz_country_restriction_type','all'),
(292254,35831,'_restricted_countries','a:0:{}'),
(292255,35831,'woolentor_total_stock_quantity',''),
(292256,35831,'_saleflash_text',''),
(292257,35831,'cartflows_redirect_flow_id',''),
(292258,35831,'cartflows_add_to_cart_text',''),
(292259,35831,'total_sales','0'),
(292260,35831,'_tax_status','taxable'),
(292261,35831,'_tax_class',''),
(292262,35831,'_manage_stock','no'),
(292263,35831,'_backorders','no'),
(292264,35831,'_sold_individually','no'),
(292265,35831,'_virtual','no'),
(292266,35831,'_downloadable','yes'),
(292267,35831,'_download_limit','-1'),
(292268,35831,'_download_expiry','-1'),
(292269,35831,'_stock',NULL),
(292270,35831,'_stock_status','instock'),
(292271,35831,'_wc_average_rating','0'),
(292272,35831,'_wc_review_count','0'),
(292273,35831,'_product_version','8.5.2'),
(292274,35831,'_regular_price','5.99'),
(292275,35831,'_sale_price','2.50'),
(292276,35831,'_price','2.50'),
(292277,35831,'_wc_memberships_use_custom_product_viewing_restricted_message','no'),
(292278,35831,'_wc_memberships_use_custom_product_purchasing_restricted_message','no'),
(292279,35831,'_wc_memberships_force_public','no'),
(292280,35831,'_wc_memberships_exclude_discounts','no'),
(292281,35831,'_eael_post_view_count','38'),
(292282,35831,'woolentor_views_count_product','32'),
(292293,35836,'_wp_attached_file','2024/07/God-is-kind-image.png'),
(292294,35836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2024/07/God-is-kind-image.png\";s:8:\"filesize\";i:104021;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"God-is-kind-image-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34033;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"God-is-kind-image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15136;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"God-is-kind-image-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42483;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"God-is-kind-image-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83988;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"God-is-kind-image-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292315,33971,'_elementor_controls_usage','a:11:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:5:\"width\";i:4;s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:6;s:20:\"flex_justify_content\";i:3;s:13:\"content_width\";i:4;s:16:\"flex_align_items\";i:2;s:8:\"flex_gap\";i:2;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:4:{s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:5;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:4;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:10:\"_flex_size\";i:1;}}}}s:26:\"woocommerce-product-images\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:25:\"woocommerce-product-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:26:\"woocommerce-product-rating\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:24:\"woocommerce-product-meta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:25:\"woocommerce-product-price\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:19:\"section_price_style\";a:1:{s:11:\"price_color\";i:1;}}}}s:29:\"wl-single-product-description\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:21:\"product_style_section\";a:3:{s:26:\"text_typography_typography\";i:1;s:27:\"text_typography_font_family\";i:1;s:25:\"text_typography_font_size\";i:1;}}}}s:14:\"wc-add-to-cart\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:21:\"_element_width_mobile\";i:1;}s:15:\"section_effects\";a:5:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:25:\"motion_fx_scale_direction\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:5:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_shape\";i:1;}}}}s:18:\"wl-product-related\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:1:{s:27:\"_box_shadow_box_shadow_type\";i:1;}}}}}'),
(292317,33971,'_elementor_css','a:6:{s:4:\"time\";i:1721842184;s:5:\"fonts\";a:2:{i:0;s:5:\"Dekko\";i:2;s:10:\"Lilita One\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"8ce1d59\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(292346,35842,'_wp_attached_file','2024/07/God-gave-us-His-son-1-2.png'),
(292347,35842,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:35:\"2024/07/God-gave-us-His-son-1-2.png\";s:8:\"filesize\";i:32331;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"God-gave-us-His-son-1-2-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25473;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"God-gave-us-His-son-1-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9547;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"God-gave-us-His-son-1-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23530;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"God-gave-us-His-son-1-2-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58618;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"God-gave-us-His-son-1-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5611;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292440,35853,'_edit_lock','1728230032:1'),
(292441,35853,'_edit_last','1'),
(292442,35854,'_wp_attached_file','2024/07/Daily-ABC-Tracing-Devotional.png'),
(292443,35854,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:40:\"2024/07/Daily-ABC-Tracing-Devotional.png\";s:8:\"filesize\";i:288612;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Daily-ABC-Tracing-Devotional-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100672;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Daily-ABC-Tracing-Devotional-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:984954;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Daily-ABC-Tracing-Devotional-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30419;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Daily-ABC-Tracing-Devotional-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576919;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"Daily-ABC-Tracing-Devotional-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100672;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:40:\"Daily-ABC-Tracing-Devotional-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165593;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"Daily-ABC-Tracing-Devotional-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15518;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292444,35853,'_thumbnail_id','35854'),
(292445,35853,'_wp_page_template','default'),
(292446,35853,'_fz_country_restriction_type','all'),
(292447,35853,'_restricted_countries','a:0:{}'),
(292448,35853,'woolentor_total_stock_quantity',''),
(292449,35853,'_saleflash_text',''),
(292450,35853,'cartflows_redirect_flow_id',''),
(292451,35853,'cartflows_add_to_cart_text',''),
(292452,35853,'total_sales','0'),
(292453,35853,'_tax_status','taxable'),
(292454,35853,'_tax_class',''),
(292455,35853,'_manage_stock','no'),
(292456,35853,'_backorders','no'),
(292457,35853,'_sold_individually','no'),
(292458,35853,'_virtual','no'),
(292459,35853,'_downloadable','yes'),
(292460,35853,'_download_limit','-1'),
(292461,35853,'_download_expiry','-1'),
(292462,35853,'_stock',NULL),
(292463,35853,'_stock_status','instock'),
(292464,35853,'_wc_average_rating','0'),
(292465,35853,'_wc_review_count','0'),
(292466,35853,'_product_version','8.5.2'),
(292467,35853,'_regular_price','6.99'),
(292468,35853,'_sale_price','3.50'),
(292469,35853,'_price','3.50'),
(292470,35853,'_wc_memberships_use_custom_product_viewing_restricted_message','no'),
(292471,35853,'_wc_memberships_use_custom_product_purchasing_restricted_message','no'),
(292472,35853,'_wc_memberships_force_public','no'),
(292473,35853,'_wc_memberships_exclude_discounts','no'),
(292474,35853,'_eael_post_view_count','31'),
(292475,35853,'woolentor_views_count_product','27'),
(292476,35857,'_wp_attached_file','2024/07/Letter-B-Tracing-Devotional.png'),
(292477,35857,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:39:\"2024/07/Letter-B-Tracing-Devotional.png\";s:8:\"filesize\";i:40522;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Letter-B-Tracing-Devotional-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35847;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Letter-B-Tracing-Devotional-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17141;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Letter-B-Tracing-Devotional-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48833;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:39:\"Letter-B-Tracing-Devotional-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87509;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Letter-B-Tracing-Devotional-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8745;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292577,35869,'_wp_attached_file','2024/07/Bb-1.png'),
(292578,35869,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:16:\"2024/07/Bb-1.png\";s:8:\"filesize\";i:29880;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"Bb-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"Bb-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:10473;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:16:\"Bb-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29632;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:16:\"Bb-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59172;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:16:\"Bb-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5940;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292705,35885,'_wp_attached_file','2024/07/short-e-sound-1-1.png'),
(292706,35885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2024/07/short-e-sound-1-1.png\";s:8:\"filesize\";i:34751;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"short-e-sound-1-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27144;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"short-e-sound-1-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:9243;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"short-e-sound-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26821;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"short-e-sound-1-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68633;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"short-e-sound-1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5121;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292707,35886,'_wp_attached_file','2024/07/Scripture-bear-1.png'),
(292708,35886,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1414;s:6:\"height\";i:2000;s:4:\"file\";s:28:\"2024/07/Scripture-bear-1.png\";s:8:\"filesize\";i:142562;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Scripture-bear-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32710;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Scripture-bear-1-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180976;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Scripture-bear-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:18816;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Scripture-bear-1-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196622;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"Scripture-bear-1-1086x1536.png\";s:5:\"width\";i:1086;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:322957;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Scripture-bear-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48708;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"Scripture-bear-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78394;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Scripture-bear-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10744;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292745,35891,'_wp_attached_file','2024/07/Reptile-Spellings-1.png'),
(292746,35891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2024/07/Reptile-Spellings-1.png\";s:8:\"filesize\";i:47946;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Reptile-Spellings-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42030;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Reptile-Spellings-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:18433;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Reptile-Spellings-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50418;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"Reptile-Spellings-1-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107019;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Reptile-Spellings-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292798,35898,'_wp_attached_file','2024/07/choice-Logo-Newest-1.png'),
(292799,35898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2024/07/choice-Logo-Newest-1.png\";s:8:\"filesize\";i:11167;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"choice-Logo-Newest-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19423;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"choice-Logo-Newest-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:8992;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"choice-Logo-Newest-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19423;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:32:\"choice-Logo-Newest-1-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27106;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"choice-Logo-Newest-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5729;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292808,35902,'_wp_attached_file','2024/07/Colouring-Fun-New.png'),
(292809,35902,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2024/07/Colouring-Fun-New.png\";s:8:\"filesize\";i:28647;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Colouring-Fun-New-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64888;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Colouring-Fun-New-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25835;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Colouring-Fun-New-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64888;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"Colouring-Fun-New-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100816;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Colouring-Fun-New-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14488;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292810,35903,'_wp_attached_file','2024/07/Number-Fun-New.png'),
(292811,35903,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2024/07/Number-Fun-New.png\";s:8:\"filesize\";i:44182;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Number-Fun-New-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Number-Fun-New-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24106;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Number-Fun-New-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76238;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Number-Fun-New-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127261;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Number-Fun-New-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12915;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292814,35905,'_wp_attached_file','2024/07/Word-Fun-New.png'),
(292815,35905,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2024/07/Word-Fun-New.png\";s:8:\"filesize\";i:52101;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Word-Fun-New-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93577;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Word-Fun-New-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32232;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Word-Fun-New-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93577;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"Word-Fun-New-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150418;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Word-Fun-New-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17356;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(292881,35915,'_wp_attached_file','2024/07/Puzzle-Fun-2-1.png'),
(292882,35915,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2024/07/Puzzle-Fun-2-1.png\";s:8:\"filesize\";i:32182;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Puzzle-Fun-2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64101;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Puzzle-Fun-2-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:25041;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Puzzle-Fun-2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64101;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Puzzle-Fun-2-1-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99931;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Puzzle-Fun-2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14249;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293047,35934,'_edit_lock','1722792604:1'),
(293048,35934,'_edit_last','1'),
(293049,35935,'_wp_attached_file','2024/08/Guess-Who.png'),
(293050,35935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:540;s:4:\"file\";s:21:\"2024/08/Guess-Who.png\";s:8:\"filesize\";i:46835;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Guess-Who-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95446;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Guess-Who-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34439;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"Guess-Who-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95446;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"Guess-Who-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147953;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"Guess-Who-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17997;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293051,35934,'_thumbnail_id','35935'),
(293052,35934,'_wp_page_template','default'),
(293053,35934,'_fz_country_restriction_type','all'),
(293054,35934,'_restricted_countries','a:0:{}'),
(293055,35934,'woolentor_total_stock_quantity',''),
(293056,35934,'_saleflash_text',''),
(293057,35934,'cartflows_redirect_flow_id',''),
(293058,35934,'cartflows_add_to_cart_text',''),
(293059,35934,'total_sales','0'),
(293060,35934,'_tax_status','taxable'),
(293061,35934,'_tax_class',''),
(293062,35934,'_manage_stock','no'),
(293063,35934,'_backorders','no'),
(293064,35934,'_sold_individually','no'),
(293065,35934,'_virtual','no'),
(293066,35934,'_downloadable','no'),
(293067,35934,'_download_limit','-1'),
(293068,35934,'_download_expiry','-1'),
(293069,35934,'_stock',NULL),
(293070,35934,'_stock_status','instock'),
(293071,35934,'_wc_average_rating','0'),
(293072,35934,'_wc_review_count','0'),
(293073,35934,'_product_version','8.5.2'),
(293074,35934,'_wc_memberships_use_custom_product_viewing_restricted_message','no'),
(293075,35934,'_wc_memberships_use_custom_product_purchasing_restricted_message','no'),
(293076,35934,'_wc_memberships_force_public','no'),
(293077,35934,'_wc_memberships_exclude_discounts','no'),
(293078,35937,'_wp_attached_file','2024/04/Gentoos-Gift-1.png'),
(293079,35937,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2024/04/Gentoos-Gift-1.png\";s:8:\"filesize\";i:126648;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Gentoos-Gift-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81622;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Gentoos-Gift-1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:471507;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Gentoos-Gift-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:29519;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Gentoos-Gift-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:316844;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Gentoos-Gift-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81622;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Gentoos-Gift-1-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121767;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Gentoos-Gift-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15604;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293191,35934,'_eael_post_view_count','33'),
(293192,35934,'woolentor_views_count_product','27'),
(293239,35642,'_eael_post_view_count','1'),
(293527,35994,'_wp_attached_file','2024/10/Game-Fun.png'),
(293528,35994,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2024/10/Game-Fun.png\";s:8:\"filesize\";i:43814;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Game-Fun-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78040;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Game-Fun-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24350;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"Game-Fun-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78040;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"Game-Fun-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132457;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Game-Fun-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12363;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293564,35999,'_wp_attached_file','2024/10/Front-Pages-.gif'),
(293565,35999,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2024/10/Front-Pages-.gif\";s:8:\"filesize\";i:215182;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Front-Pages--300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:25639;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"Front-Pages--1024x1024.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:164831;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Front-Pages--150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9341;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Front-Pages--768x768.gif\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:107703;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Front-Pages--300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:25639;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"Front-Pages--399x399.gif\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:37514;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Front-Pages--100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5555;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293566,36000,'_wp_attached_file','2024/10/6-Games-in-1.png'),
(293567,36000,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2024/10/6-Games-in-1.png\";s:8:\"filesize\";i:78284;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"6-Games-in-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72597;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"6-Games-in-1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:382904;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"6-Games-in-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:28270;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"6-Games-in-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260322;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"6-Games-in-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72597;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"6-Games-in-1-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107780;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"6-Games-in-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15425;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293661,36012,'_wp_attached_file','2024/10/Trivia-Word-Builder.png'),
(293662,36012,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2024/10/Trivia-Word-Builder.png\";s:8:\"filesize\";i:179500;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Trivia-Word-Builder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89864;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Trivia-Word-Builder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:662304;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Trivia-Word-Builder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29828;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Trivia-Word-Builder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:419346;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Trivia-Word-Builder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89864;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"Trivia-Word-Builder-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142806;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Trivia-Word-Builder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16059;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293689,36016,'_wp_attached_file','2024/10/Shark-Facts.png'),
(293690,36016,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:23:\"2024/10/Shark-Facts.png\";s:8:\"filesize\";i:206895;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Shark-Facts-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118502;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Shark-Facts-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1081063;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Shark-Facts-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38150;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Shark-Facts-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:645353;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"Shark-Facts-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118502;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"Shark-Facts-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193977;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"Shark-Facts-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19626;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293702,36018,'_wp_attached_file','2024/10/Would-we-rather.png'),
(293703,36018,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2024/10/Would-we-rather.png\";s:8:\"filesize\";i:72055;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Would-we-rather-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59982;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Would-we-rather-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:302322;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Would-we-rather-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24288;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Would-we-rather-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:208116;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"Would-we-rather-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59982;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"Would-we-rather-399x399.png\";s:5:\"width\";i:399;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87299;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Would-we-rather-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13787;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293766,36026,'_wp_attached_file','2024/10/Character-Flower.png'),
(293767,36026,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:884;s:6:\"height\";i:1250;s:4:\"file\";s:28:\"2024/10/Character-Flower.png\";s:8:\"filesize\";i:84433;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Character-Flower-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42618;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Character-Flower-724x1024.png\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Character-Flower-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21550;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Character-Flower-768x1086.png\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:284478;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Character-Flower-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60668;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"Character-Flower-399x564.png\";s:5:\"width\";i:399;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107192;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Character-Flower-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11584;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(293886,36041,'_edit_lock','1728231773:1'),
(293888,36041,'_edit_last','1'),
(293889,36041,'_thumbnail_id','35732'),
(293890,36041,'_wp_page_template','default'),
(293891,36041,'_fz_country_restriction_type','all'),
(293892,36041,'_restricted_countries','a:0:{}'),
(293893,36041,'woolentor_total_stock_quantity',''),
(293894,36041,'_saleflash_text',''),
(293895,36041,'cartflows_redirect_flow_id',''),
(293896,36041,'cartflows_add_to_cart_text',''),
(293897,36041,'total_sales','0'),
(293898,36041,'_tax_status','taxable'),
(293899,36041,'_tax_class',''),
(293900,36041,'_manage_stock','no'),
(293901,36041,'_backorders','no'),
(293902,36041,'_sold_individually','no'),
(293903,36041,'_virtual','no'),
(293904,36041,'_downloadable','yes'),
(293905,36041,'_download_limit','-1'),
(293906,36041,'_download_expiry','-1'),
(293907,36041,'_stock',NULL),
(293908,36041,'_stock_status','instock'),
(293909,36041,'_wc_average_rating','0'),
(293910,36041,'_wc_review_count','0'),
(293911,36041,'_product_version','8.5.2'),
(293912,36041,'_regular_price','3.95'),
(293913,36041,'_price','3.95'),
(293914,36041,'_wc_memberships_use_custom_product_viewing_restricted_message','no'),
(293915,36041,'_wc_memberships_use_custom_product_purchasing_restricted_message','no'),
(293916,36041,'_wc_memberships_force_public','no'),
(293917,36041,'_wc_memberships_exclude_discounts','no'),
(294036,21684,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:5:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;s:29:\"motion_fx_motion_fx_scrolling\";i:1;s:25:\"motion_fx_scale_direction\";i:1;s:21:\"motion_fx_scale_speed\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:5:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_shape\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_text\";a:7:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"text_stroke_text_stroke_type\";i:1;s:24:\"text_stroke_stroke_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:10:\"_flex_size\";i:1;s:21:\"_element_custom_width\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:4:{s:8:\"position\";i:1;s:15:\"position_mobile\";i:1;s:10:\"icon_space\";i:1;s:10:\"text_align\";i:1;}s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:6:\"rotate\";i:1;}s:21:\"section_style_content\";a:6:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:11:\"title_color\";i:1;s:28:\"title_typography_font_family\";i:1;s:29:\"title_shadow_text_shadow_type\";i:1;s:24:\"title_shadow_text_shadow\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"size\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:1;s:15:\"hover_animation\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:11:\"hover_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"_section_transform\";a:2:{s:28:\"_transform_translate_popover\";i:1;s:35:\"_transform_translateY_effect_mobile\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:10:\"min_height\";i:1;s:8:\"flex_gap\";i:3;s:9:\"flex_wrap\";i:1;s:20:\"flex_justify_content\";i:4;s:16:\"flex_align_items\";i:4;s:14:\"flex_direction\";i:3;s:11:\"boxed_width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:10:\"_flex_size\";i:2;s:7:\"padding\";i:2;s:6:\"margin\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:2;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}s:21:\"section_shape_divider\";a:4:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:24:\"eael-woo-product-gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:36:\"eael_section_product_gallery_layouts\";a:3:{s:39:\"eael_woo_product_gallery_terms_show_all\";i:1;s:39:\"eael_woo_product_gallery_terms_all_text\";i:1;s:36:\"eael_woo_product_gallery_terms_thumb\";i:1;}s:37:\"eael_section_product_gallery_settings\";a:1:{s:35:\"eael_product_gallery_products_count\";i:1;}}s:5:\"style\";a:3:{s:28:\"eael_section_product_gallery\";a:2:{s:47:\"eael_product_gallery_item_typography_typography\";i:1;s:36:\"eael_product_gallery_item_background\";i:1;}s:39:\"eael_section_product_gallery_typography\";a:7:{s:40:\"eael_product_gallery_product_title_color\";i:1;s:56:\"eael_product_gallery_product_title_typography_typography\";i:1;s:57:\"eael_product_gallery_product_title_typography_font_family\";i:1;s:40:\"eael_product_gallery_product_price_color\";i:1;s:56:\"eael_product_gallery_product_price_typography_typography\";i:1;s:61:\"eael_product_gallery_product_price_typography_text_decoration\";i:1;s:42:\"eael_product_gallery_sale_badge_background\";i:1;}s:43:\"eael_section_product_gallery_buttons_styles\";a:1:{s:39:\"eael_product_gallery_buttons_background\";i:1;}}}}}'),
(294037,21684,'_elementor_css','a:6:{s:4:\"time\";i:1728249351;s:5:\"fonts\";a:2:{i:0;s:10:\"Lilita One\";i:2;s:5:\"Dekko\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(294038,36041,'_eael_post_view_count','26'),
(294039,36041,'woolentor_views_count_product','20'),
(294040,36057,'_wp_page_template','elementor_header_footer'),
(294041,36057,'_elementor_template_type','wp-page'),
(294042,36057,'_elementor_version','3.21.4'),
(294043,36057,'_elementor_pro_version','3.21.2'),
(294044,36057,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Unlimited Access PASS<\\/span><\\/strong> to our entire collection!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f9d2d8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"18fabe0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"47d5fb9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"b027f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b7e0fd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"da0252e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d7a39c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(294045,36057,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294046,36057,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294047,36057,'_elementor_edit_mode','builder'),
(294048,36057,'_elementor_css','a:6:{s:4:\"time\";i:1728230240;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:4;s:5:\"Dekko\";i:5;s:10:\"Schoolbell\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:4;s:0:\"\";i:11;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(294049,36058,'_wp_page_template','elementor_header_footer'),
(294050,36058,'_elementor_template_type','wp-page'),
(294051,36058,'_elementor_version','3.21.4'),
(294052,36058,'_elementor_pro_version','3.21.2'),
(294053,36058,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Unlimited Access PASS<\\/span><\\/strong> to our entire collection!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f9d2d8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"18fabe0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"47d5fb9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"b027f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b7e0fd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"da0252e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d7a39c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(294054,36058,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294055,36058,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294056,36058,'_elementor_edit_mode','builder'),
(294057,36058,'_elementor_css','a:6:{s:4:\"time\";i:1728230240;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:4;s:5:\"Dekko\";i:5;s:10:\"Schoolbell\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:4;s:0:\"\";i:11;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(294058,36059,'_wp_page_template','elementor_header_footer'),
(294059,36059,'_elementor_template_type','wp-page'),
(294060,36059,'_elementor_version','3.21.4'),
(294061,36059,'_elementor_pro_version','3.21.2'),
(294062,36059,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f9d2d8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"18fabe0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"47d5fb9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"b027f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b7e0fd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"da0252e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d7a39c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(294063,36059,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294064,36059,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294065,36059,'_elementor_edit_mode','builder'),
(294066,36059,'_elementor_css','a:6:{s:4:\"time\";i:1728230240;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:4;s:5:\"Dekko\";i:5;s:10:\"Schoolbell\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:4;s:0:\"\";i:11;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(294077,36061,'_wp_page_template','elementor_header_footer'),
(294078,36061,'_elementor_template_type','wp-page'),
(294079,36061,'_elementor_version','3.21.4'),
(294080,36061,'_elementor_pro_version','3.21.2'),
(294081,36061,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f9d2d8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"18fabe0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"47d5fb9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"b027f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b7e0fd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"da0252e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d7a39c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(294082,36061,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294083,36061,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294084,36061,'_elementor_edit_mode','builder'),
(294085,36062,'_wp_page_template','elementor_header_footer'),
(294086,36062,'_elementor_template_type','wp-page'),
(294087,36062,'_elementor_version','3.21.4'),
(294088,36062,'_elementor_pro_version','3.21.2'),
(294089,36062,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f9d2d8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"18fabe0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"47d5fb9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"b027f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b7e0fd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"da0252e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d7a39c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(294090,36062,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294091,36062,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294092,36062,'_elementor_edit_mode','builder'),
(294093,36063,'_wp_page_template','elementor_header_footer'),
(294094,36063,'_elementor_template_type','wp-page'),
(294095,36063,'_elementor_version','3.21.4'),
(294096,36063,'_elementor_pro_version','3.21.2');
INSERT INTO `wphu_postmeta` VALUES
(294097,36063,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01112fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.&nbsp;<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f9d2d8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"18fabe0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"47d5fb9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"b027f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b7e0fd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"da0252e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d7a39c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(294098,36063,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294099,36063,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294100,36063,'_elementor_edit_mode','builder'),
(294103,36064,'_wp_page_template','elementor_header_footer'),
(294104,36064,'_elementor_template_type','wp-page'),
(294105,36064,'_elementor_version','3.21.4'),
(294106,36064,'_elementor_pro_version','3.21.2'),
(294107,36064,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01112fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.&nbsp;<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f9d2d8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"18fabe0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"47d5fb9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"b027f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b7e0fd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"da0252e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d7a39c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(294108,36064,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294109,36064,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294110,36064,'_elementor_edit_mode','builder'),
(294111,36064,'_elementor_css','a:6:{s:4:\"time\";i:1730124588;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:4;s:5:\"Dekko\";i:6;s:10:\"Schoolbell\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:4;s:0:\"\";i:11;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(294112,36065,'_wp_page_template','elementor_header_footer'),
(294113,36065,'_elementor_template_type','wp-page'),
(294114,36065,'_elementor_version','3.21.4'),
(294115,36065,'_elementor_pro_version','3.21.2'),
(294116,36065,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01112fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.&nbsp;<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f9d2d8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"18fabe0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"47d5fb9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"b027f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b7e0fd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"da0252e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d7a39c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(294117,36065,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294118,36065,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294119,36065,'_elementor_edit_mode','builder'),
(294120,36065,'_elementor_css','a:6:{s:4:\"time\";i:1730124588;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:4;s:5:\"Dekko\";i:6;s:10:\"Schoolbell\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:4;s:0:\"\";i:11;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(294121,36066,'_wp_page_template','elementor_header_footer'),
(294122,36066,'_elementor_template_type','wp-page'),
(294123,36066,'_elementor_version','3.21.4'),
(294124,36066,'_elementor_pro_version','3.21.2'),
(294125,36066,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">FREE <\\/span><font color=\\\"#10a4e3\\\">Seasonal<\\/font>&nbsp;<span style=\\\"color: #f9a70c;\\\">Printables<\\/span><span style=\\\"color: #f9a70c;\\\"><span style=\\\"color: #f8049c;\\\">:<\\/span><\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d052ea0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"2a6323d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"3158459\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ad9dc56\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"23c1c57\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4ee5978\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"482f524\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bdc4257\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7105e50\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6520115\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"c32737a\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ba999e3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"f7c71d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01112fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.\\u00a0<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e99a2c3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"fdce697\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cc8569\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"17bad16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.\\u00a0<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d5bcf8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"08e3d52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8984541\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d5f1aaa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"c4edad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f015e5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e5de95a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"79092ad\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}]'),
(294126,36066,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294127,36066,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294128,36066,'_elementor_edit_mode','builder'),
(294129,36066,'_elementor_css','a:6:{s:4:\"time\";i:1730124588;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:4;s:5:\"Dekko\";i:6;s:10:\"Schoolbell\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:4;s:0:\"\";i:11;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(294143,36069,'_wp_page_template','elementor_header_footer'),
(294144,36069,'_elementor_template_type','wp-page'),
(294145,36069,'_elementor_version','3.21.4'),
(294146,36069,'_elementor_pro_version','3.21.2'),
(294147,36069,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">FREE <\\/span><font color=\\\"#10a4e3\\\">Seasonal<\\/font>&nbsp;<span style=\\\"color: #f9a70c;\\\">Printables<\\/span><span style=\\\"color: #f9a70c;\\\"><span style=\\\"color: #f8049c;\\\">:<\\/span><\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d052ea0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"2a6323d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"3158459\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ad9dc56\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"23c1c57\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4ee5978\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"482f524\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bdc4257\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7105e50\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6520115\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"c32737a\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ba999e3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"f7c71d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01112fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.\\u00a0<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e99a2c3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"fdce697\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cc8569\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"17bad16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.\\u00a0<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d5bcf8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"08e3d52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8984541\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d5f1aaa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"c4edad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f015e5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e5de95a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"79092ad\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}]'),
(294148,36069,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294149,36069,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294150,36069,'_elementor_edit_mode','builder'),
(294151,36069,'_elementor_css','a:6:{s:4:\"time\";i:1730149810;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:4;s:5:\"Dekko\";i:41;s:10:\"Schoolbell\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:14;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(294152,36070,'_wp_page_template','elementor_header_footer'),
(294153,36070,'_elementor_template_type','wp-page'),
(294154,36070,'_elementor_version','3.21.4'),
(294155,36070,'_elementor_pro_version','3.21.2'),
(294156,36070,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">FREE <\\/span><font color=\\\"#10a4e3\\\">Seasonal<\\/font>&nbsp;<span style=\\\"color: #f9a70c;\\\">Printables<\\/span><span style=\\\"color: #f9a70c;\\\"><span style=\\\"color: #f8049c;\\\">:<\\/span><\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d052ea0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"2a6323d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"3158459\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ad9dc56\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"23c1c57\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4ee5978\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"482f524\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bdc4257\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7105e50\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6520115\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"c32737a\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ba999e3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"f7c71d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01112fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.\\u00a0<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e99a2c3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"fdce697\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cc8569\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"17bad16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.\\u00a0<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d5bcf8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"08e3d52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8984541\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d5f1aaa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"c4edad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f015e5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e5de95a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"79092ad\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}]'),
(294157,36070,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294158,36070,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294159,36070,'_elementor_edit_mode','builder'),
(294160,36070,'_elementor_css','a:6:{s:4:\"time\";i:1730149810;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:4;s:5:\"Dekko\";i:41;s:10:\"Schoolbell\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:14;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(294161,36071,'_wp_page_template','elementor_header_footer'),
(294162,36071,'_elementor_template_type','wp-page'),
(294163,36071,'_elementor_version','3.21.4'),
(294164,36071,'_elementor_pro_version','3.21.2'),
(294165,36071,'_elementor_data','[{\"id\":\"415f92b\",\"elType\":\"container\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100},\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"shape_divider_bottom_color\":\"#B4E3FF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Noah-background-pic.png\",\"id\":32480,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#43E1FF\",\"flex_justify_content\":\"center\",\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"content_width\":\"full\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_position_mobile\":\"center center\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_direction\":\"in-out-in\",\"_title\":\"Join the Bible Fun\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"e9998f1\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"%\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":625,\"sizes\":[]},\"flex_gap_tablet\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null},\"flex_gap_mobile\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"%\",\"size\":null}},\"elements\":[{\"id\":\"0773815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/04\\/Choice-Logo-Banner-1125-\\u00d7-480px-3-1.png\",\"id\":32840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"lightSpeedIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cd4d5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"width_mobile\":{\"unit\":\"px\",\"size\":322},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100},\"_element_width\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b35aa9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Game-Fun.png\",\"id\":35994,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":125.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_animation\":\"bounceInRight\",\"animation_duration\":\"fast\",\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_animation_delay\":100,\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Wordsearches\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b3500e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Word-Fun-New.png\",\"id\":35905,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"image_size\":\"full\",\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Word-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8eaf631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Puzzle-Fun-2-1.png\",\"id\":35915,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":131.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInUpLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_popover_hover\":\"transform\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"image_size\":\"full\",\"_transform_rotate_popover\":\"transform\",\"_transform_rotate_popover_hover\":\"transform\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"link\":{\"url\":\"#Tracing-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7157d89\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Colouring-Fun-New.png\",\"id\":35902,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20.908},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":133.188},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"rotateInDownLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-107,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":-40,\"sizes\":[]},\"_transform_scale_popover\":\"transform\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"image_size\":\"full\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"link_to\":\"custom\",\"_transform_translate_popover_hover\":\"transform\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"link\":{\"url\":\"#Colouring-fun\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"065e09f\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5236b64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffff00;\\\">FREE&nbsp;<\\/span>Printables<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":485.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#316EFFC2\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"104\",\"right\":\"145\",\"bottom\":\"145\",\"left\":\"145\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/05\\/Choice-Logo-Banner-1125-\\u00d7-480px-5-1.png\",\"id\":33415,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8d341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">for Children!<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":79,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":91},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":248.672},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"_animation_mobile\":\"zoomIn\",\"animation_duration\":\"slow\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":-9,\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#D5F6F700\",\"_background_color_b\":\"#FFFFFF00\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":27,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":182,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-157\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"italic\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_opacity_effect\":\"yes\",\"motion_fx_opacity_direction\":\"out-in-out\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d3a9\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d774a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"shape_divider_top\":\"curve\"},\"elements\":[{\"id\":\"23a1dd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">Welcome <span style=\\\"color: #10a4e3;\\\">to <\\/span><\\/span><span style=\\\"color: #f9a70c;\\\">Choice <\\/span><span style=\\\"color: #f8049c;\\\">Resources<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30.095},\"_flex_size\":\"none\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a634726\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Home of <span style=\\\"color: #10a4e3;\\\">FUN<\\/span> Bible printables.<\\/p>\",\"align_mobile\":\"left\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":39.219},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297},\"align\":\"center\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":423.531}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f840ddc\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"d858565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #11ba24;\\\">FREE <\\/span><font color=\\\"#10a4e3\\\">Seasonal<\\/font>&nbsp;<span style=\\\"color: #f9a70c;\\\">Printables<\\/span><span style=\\\"color: #f9a70c;\\\"><span style=\\\"color: #f8049c;\\\">:<\\/span><\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24c0ee0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d052ea0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"2a6323d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"3158459\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ad9dc56\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"download|\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"23c1c57\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4ee5978\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"482f524\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bdc4257\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7105e50\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6520115\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"c32737a\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ba999e3\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"f7c71d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01112fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.\\u00a0<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96ad416\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b0a48d9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#B4E3FF\",\"shape_divider_top_color\":\"#D3EA54\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":134,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":103.79},\"background_color_b\":\"#FFFFFF\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/Blue-Background-hands.png\",\"id\":31887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_color\":\"#0A51FAA6\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":81,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_negative\":\"yes\",\"flex_gap_tablet\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b0cb29d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"09abf03\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"874f7c8\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Wordsearches\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"49b8696\",\"elType\":\"widget\",\"settings\":{\"text\":\"Games Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":289.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFBFE7\",\"_background_color_b\":\"#F8049C\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fba73b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"3812a79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"1369f7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shepherd Dots\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d004215\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Shepherd-Dots.png\",\"id\":35732,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"34dfc1e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d146750\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6d3a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cb5b807\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Would-we-rather.png\",\"id\":36018,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b1109f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7158a29\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"21bf6f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"6-in-1 Game Cards\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"10cb599\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/6-Games-in-1.png\",\"id\":36000,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"1facbd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e897937\",\"elType\":\"widget\",\"settings\":{\"text\":\"To the top \",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-up\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6372a13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c1be391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"721b0e4\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Word-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b217c29\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#12743B\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_background_color_b\":\"#FDD103\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#05A343\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7cf95ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"6be5cbe\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0522dd3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"9bb8e20\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trivia Word Builder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"30caff4\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Trivia-Word-Builder.png\",\"id\":36012,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"4215d9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa43d08\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"dc5939c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"332ee11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shark Facts Handwriting\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"408451c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Shark-Facts.png\",\"id\":36016,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"e1f56bb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cdea77\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"4a3e526\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"992da82\",\"elType\":\"widget\",\"settings\":{\"text\":\"Word Puzzle Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFF193\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#138604\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5e71535\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/10\\/Character-Flower.png\",\"id\":36026,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0108dfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61dfe13\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2448018\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"89924dd\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Tracing-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"355d3ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Tracing Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FF4444\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":246.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"_background_color_b\":\"#10A4E3\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FDD10C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4c133e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"ba5eaf3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"104685c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Reasons to Trust God\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6202cf9\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Front-Pages-10-Reasons-to-Trust-God.png\",\"id\":35832,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"22006ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e9362f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"b6b444f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Would we Rather...?\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ef41d36\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Daily-ABC-Tracing-Devotional.png\",\"id\":35854,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"7583e25\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28fd5f6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13},\"background_background\":\"classic\",\"background_color\":\"#ECF9FF\"},\"elements\":[{\"id\":\"4253603\",\"elType\":\"widget\",\"settings\":{\"text\":\"Trace and Learn\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"background_color\":\"#10A4E3\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#10A4E3\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a6531e\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Still-Water-1.png\",\"id\":35589,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button\":\"Click Here\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"5b812b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Buy game\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a365152\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":85},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"px\",\"size\":616.344},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"cfa3488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"-22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"0\",\"row\":\"10\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b5db4ff\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Colouring-fun\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fc477f2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Colouring Fun!\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#F8049C\",\"background_color\":\"#F9A70C00\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"22\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":58.86},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":525.438},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":270.547},\"_flex_align_self_mobile\":\"center\",\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"gradient\",\"_background_color\":\"#FFFFFF\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":22,\"sizes\":[]},\"_background_color_b\":\"#1AFE38\",\"_background_gradient_type\":\"radial\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#F8049C\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"b1ccd50\",\"elType\":\"widget\",\"settings\":{\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"editor\":\"<p style=\\\"text-align: center;\\\">Get creative with interactive colouring tasks!<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":63.555},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":268.297}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb64ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"a564385\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"ab3eb9f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Figurative Language Colouring\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"51570ac\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Bible-Hyperbole-Colouring-1.png\",\"id\":34828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"361e76b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"0e8d41f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Bible Story Colouring Bundle\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe8c91\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Snake-Mistake.png\",\"id\":34823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"18e87f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"13\",\"row\":\"13\",\"isLinked\":true,\"unit\":\"px\",\"size\":13}},\"elements\":[{\"id\":\"17d7c9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Marks to Colour\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"classic\",\"_background_color\":\"#11BA24\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_text_color\":\"#F8049C\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.18)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7da7f4c\",\"elType\":\"widget\",\"settings\":{\"bg_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/07\\/Light-of-the-World.png\",\"id\":34919,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title\":\"\",\"description\":\"Download all 10 Shepherd Dots challenges  in our shop of try our free sample below\",\"button\":\"Download Sample\",\"image_min_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_min_height\":{\"unit\":\"px\",\"size\":343,\"sizes\":[]},\"image_min_height_tablet\":{\"unit\":\"px\",\"size\":152,\"sizes\":[]},\"image_min_height_mobile\":{\"unit\":\"vh\",\"size\":37,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e99a2c3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"_element_width\":\"initial\",\"flex_direction\":\"column\",\"boxed_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF59\",\"background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"border_color\":\"#0DCFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"%\",\"size\":100},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":692.281},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"fdce697\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #f07102;\\\">We\\u00a0<\\/span><span style=\\\"color: #10a4e3;\\\">think<\\/span>\\u00a0<span style=\\\"color: #f9a70c;\\\">you\'ll<\\/span>\\u00a0<span style=\\\"color: #f8049c;\\\">love:<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"https:\\/\\/choiceresources.co.uk\\/wp-content\\/uploads\\/2024\\/03\\/White-background-hands.png\",\"id\":31886,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"_mask_shape\":\"hexagon\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self_mobile\":\"center\",\"motion_fx_motion_fx_scrolling\":\"yes\",\"motion_fx_scale_direction\":\"in-out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":302},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cc8569\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #339966;\\\">Exclusive Access PASS<\\/span><\\/strong> for less than 37p a day!<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"17bad16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.\\u00a0<\\/p>\",\"text_color\":\"#4B6FD6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dekko\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d5bcf8\",\"elType\":\"widget\",\"settings\":{\"eael_product_carousel_show_title\":\"\",\"eael_product_carousel_rating\":\"\",\"eael_product_carousel_price\":\"\",\"eael_product_carousel_excerpt_expanison_indicator\":\"...\",\"eael_product_carousel_image_size_size\":\"full\",\"eael_product_carousel_not_found_msg\":\"Products Not Found\",\"eael_product_carousel_image_clickable\":\"yes\",\"eael_product_carousel_title_clickable\":\"yes\",\"carousel_effect\":\"coverflow\",\"carousel_rotate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows\":\"\",\"dots\":\"\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"_background_background\":\"gradient\",\"_background_color\":\"#10A4E3\",\"_background_color_b\":\"#FFFFFF\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#343131\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"autoplay_speed\":{\"unit\":\"px\",\"size\":5000,\"sizes\":[]},\"eael_product_carousel_border_border\":\"none\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-4,\"color\":\"rgba(0, 0, 0, 0.71)\"},\"carousel_stretch\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"eael-woo-product-carousel\"},{\"id\":\"08e3d52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #0d42c0;\\\"><strong>Was:<\\/strong><\\/span> <del><span style=\\\"color: #ff0000;\\\">\\u00a3159<\\/span><\\/del>\\u00a0<span style=\\\"color: #0d42c0;\\\"><strong>Now:<\\/strong><\\/span> <span style=\\\"color: #339966;\\\">\\u00a399<\\/span><\\/p>\",\"text_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Schoolbell\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"motion_fx_scale_effect\":\"yes\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"#000000\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":49.201},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":283.422},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":288},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF00\",\"_background_color_b\":\"#F2295B00\",\"_background_gradient_type\":\"radial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8984541\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get FULL Access now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lilita One\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.22)\"},\"background_background\":\"gradient\",\"background_color\":\"#0DCFFF\",\"background_color_stop\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":365,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.54)\"},\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d5f1aaa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":226.188},\"background_background\":\"gradient\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_color\":\"#FFFFFF9E\",\"background_color_b\":\"#F2295B00\",\"background_gradient_type\":\"radial\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":99,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":68.197},\"flex_align_items_mobile\":\"center\",\"_element_width\":\"initial\",\"width_tablet\":{\"unit\":\"px\",\"size\":507.641},\"_element_width_tablet\":\"initial\"},\"elements\":[{\"id\":\"c4edad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"NEW 2025 Collection\",\"align_tablet\":\"center\",\"title_color\":\"#0D42C0\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_family\":\"Lilita One\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":231.844},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f015e5c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bible\",\"library\":\"fa-solid\"},\"title_text\":\"Bible Verses\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":42.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e5de95a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-hand-paper\",\"library\":\"fa-solid\"},\"title_text\":\"Learner Choice\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":59.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"79092ad\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-brain\",\"library\":\"fa-solid\"},\"title_text\":\"Supports EQ\",\"description_text\":\"\",\"position\":\"left\",\"position_tablet\":\"top\",\"primary_color\":\"#10A4E3\",\"icon_space\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":69.266},\"_flex_size\":\"none\",\"wcm_element_visibility_content_restricted_message\":\"You are not authorized to view this content.\",\"title_typography_font_family\":\"Dekko\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":51.266},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}]'),
(294166,36071,'_elementor_page_settings','a:9:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:82:\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png\";s:2:\"id\";i:31887;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"background_size\";s:7:\"contain\";s:23:\"background_image_mobile\";a:4:{s:3:\"url\";s:82:\"http://choiceresources.co.uk/wp-content/uploads/2022/01/Website-Background92-6.png\";s:2:\"id\";i:4791;s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"background_color\";s:7:\"#FFFFFF\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:18:\"background_color_b\";s:7:\"#FFFFFF\";}'),
(294167,36071,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),
(294168,36071,'_elementor_edit_mode','builder'),
(294169,36071,'_elementor_css','a:6:{s:4:\"time\";i:1730149810;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:4;s:5:\"Dekko\";i:41;s:10:\"Schoolbell\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:14;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(294170,33656,'_elementor_controls_usage','a:10:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:5;s:7:\"link_to\";i:4;s:10:\"image_size\";i:4;s:4:\"link\";i:4;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:5;s:18:\"animation_duration\";i:5;s:16:\"_animation_delay\";i:4;}s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:4;s:21:\"_element_width_mobile\";i:4;s:21:\"_element_custom_width\";i:4;s:10:\"_flex_size\";i:4;}s:18:\"_section_transform\";a:13:{s:24:\"_transform_scale_popover\";i:4;s:23:\"_transform_scale_effect\";i:4;s:28:\"_transform_translateY_effect\";i:4;s:35:\"_transform_translateY_effect_tablet\";i:4;s:35:\"_transform_translateY_effect_mobile\";i:4;s:30:\"_transform_scale_effect_mobile\";i:4;s:29:\"_transform_scale_effect_hover\";i:4;s:34:\"_transform_translate_popover_hover\";i:3;s:34:\"_transform_translateX_effect_hover\";i:3;s:30:\"_transform_scale_popover_hover\";i:1;s:25:\"_transform_rotate_popover\";i:1;s:31:\"_transform_rotate_popover_hover\";i:1;s:31:\"_transform_rotateZ_effect_hover\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:4;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:39;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:12;s:14:\"flex_direction\";i:38;s:20:\"flex_justify_content\";i:34;s:5:\"width\";i:12;s:16:\"flex_align_items\";i:32;s:8:\"flex_gap\";i:23;s:11:\"boxed_width\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:10:\"_flex_size\";i:12;s:6:\"margin\";i:10;s:7:\"padding\";i:9;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:12:{s:21:\"background_background\";i:27;s:16:\"background_image\";i:9;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:33:\"background_motion_fx_scale_effect\";i:1;s:36:\"background_motion_fx_scale_direction\";i:1;s:16:\"background_color\";i:21;s:18:\"background_color_b\";i:9;s:24:\"background_gradient_type\";i:1;s:23:\"background_color_b_stop\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:8:{s:23:\"shape_divider_top_width\";i:3;s:24:\"shape_divider_top_height\";i:3;s:26:\"shape_divider_bottom_color\";i:3;s:27:\"shape_divider_bottom_height\";i:3;s:17:\"shape_divider_top\";i:2;s:23:\"shape_divider_top_color\";i:3;s:26:\"shape_divider_bottom_width\";i:3;s:26:\"shape_divider_top_negative\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:5:\"align\";i:6;s:10:\"text_color\";i:12;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:10;s:20:\"typography_font_size\";i:12;s:22:\"typography_line_height\";i:10;s:28:\"text_shadow_text_shadow_type\";i:2;s:23:\"text_shadow_text_shadow\";i:7;s:21:\"typography_font_style\";i:1;}}s:8:\"advanced\";a:6:{s:14:\"_section_style\";a:7:{s:14:\"_element_width\";i:10;s:21:\"_element_width_mobile\";i:12;s:21:\"_element_custom_width\";i:10;s:10:\"_flex_size\";i:12;s:8:\"_padding\";i:5;s:7:\"_margin\";i:10;s:21:\"_element_width_tablet\";i:7;}s:15:\"section_effects\";a:9:{s:10:\"_animation\";i:5;s:17:\"_animation_mobile\";i:2;s:18:\"animation_duration\";i:5;s:29:\"motion_fx_motion_fx_scrolling\";i:5;s:24:\"motion_fx_opacity_effect\";i:2;s:27:\"motion_fx_opacity_direction\";i:2;s:25:\"motion_fx_scale_direction\";i:3;s:21:\"motion_fx_scale_speed\";i:8;s:22:\"motion_fx_scale_effect\";i:5;}s:18:\"_section_transform\";a:7:{s:28:\"_transform_translateX_effect\";i:2;s:35:\"_transform_translateX_effect_tablet\";i:2;s:35:\"_transform_translateX_effect_mobile\";i:2;s:28:\"_transform_translateY_effect\";i:2;s:35:\"_transform_translateY_effect_tablet\";i:2;s:35:\"_transform_translateY_effect_mobile\";i:2;s:36:\"_transform_scale_effect_hover_mobile\";i:5;}s:19:\"_section_background\";a:7:{s:22:\"_background_background\";i:11;s:17:\"_background_color\";i:7;s:19:\"_background_color_b\";i:7;s:24:\"_background_color_b_stop\";i:2;s:26:\"_background_gradient_angle\";i:2;s:17:\"_background_image\";i:4;s:25:\"_background_gradient_type\";i:5;}s:15:\"_section_border\";a:5:{s:14:\"_border_radius\";i:6;s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;s:27:\"_box_shadow_box_shadow_type\";i:3;}s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:1;s:11:\"_mask_shape\";i:4;s:11:\"_mask_image\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:34;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:34;s:13:\"selected_icon\";i:15;s:10:\"icon_align\";i:15;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:21:{s:21:\"typography_typography\";i:33;s:22:\"typography_font_family\";i:33;s:20:\"typography_font_size\";i:33;s:28:\"text_shadow_text_shadow_type\";i:24;s:16:\"background_color\";i:33;s:13:\"border_border\";i:19;s:13:\"border_radius\";i:33;s:5:\"align\";i:18;s:22:\"typography_font_weight\";i:14;s:25:\"typography_text_transform\";i:14;s:25:\"typography_letter_spacing\";i:14;s:23:\"text_shadow_text_shadow\";i:14;s:21:\"background_background\";i:14;s:21:\"background_color_stop\";i:14;s:18:\"background_color_b\";i:14;s:25:\"background_gradient_angle\";i:14;s:33:\"button_box_shadow_box_shadow_type\";i:20;s:28:\"button_box_shadow_box_shadow\";i:20;s:12:\"align_mobile\";i:4;s:22:\"typography_line_height\";i:4;s:17:\"button_text_color\";i:9;}}s:8:\"advanced\";a:5:{s:19:\"_section_background\";a:9:{s:22:\"_background_background\";i:19;s:17:\"_background_color\";i:19;s:19:\"_background_color_b\";i:4;s:25:\"_background_gradient_type\";i:4;s:17:\"_background_image\";i:4;s:20:\"_background_position\";i:4;s:18:\"_background_repeat\";i:4;s:16:\"_background_size\";i:4;s:22:\"_background_color_stop\";i:3;}s:15:\"_section_border\";a:6:{s:14:\"_border_radius\";i:19;s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:27:\"_box_shadow_box_shadow_type\";i:4;s:22:\"_box_shadow_box_shadow\";i:4;}s:14:\"_section_style\";a:7:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:4;s:14:\"_element_width\";i:4;s:21:\"_element_width_tablet\";i:4;s:21:\"_element_width_mobile\";i:4;s:21:\"_element_custom_width\";i:4;s:10:\"_flex_size\";i:4;}s:15:\"section_effects\";a:5:{s:29:\"motion_fx_motion_fx_scrolling\";i:4;s:25:\"motion_fx_scale_direction\";i:4;s:21:\"motion_fx_scale_speed\";i:4;s:10:\"_animation\";i:4;s:18:\"animation_duration\";i:4;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_shape\";i:4;}}}}s:14:\"call-to-action\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:18:\"section_main_image\";a:1:{s:8:\"bg_image\";i:15;}s:15:\"section_content\";a:4:{s:5:\"title\";i:15;s:11:\"description\";i:12;s:6:\"button\";i:12;s:4:\"link\";i:1;}}s:5:\"style\";a:2:{s:9:\"box_style\";a:1:{s:16:\"image_min_height\";i:15;}s:21:\"section_content_style\";a:1:{s:33:\"description_typography_typography\";i:3;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:4;}}}}s:25:\"eael-woo-product-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:37:\"eael_section_product_carousel_layouts\";a:6:{s:32:\"eael_product_carousel_show_title\";i:1;s:28:\"eael_product_carousel_rating\";i:1;s:27:\"eael_product_carousel_price\";i:1;s:37:\"eael_product_carousel_image_size_size\";i:1;s:37:\"eael_product_carousel_image_clickable\";i:1;s:37:\"eael_product_carousel_title_clickable\";i:1;}s:26:\"section_additional_options\";a:6:{s:15:\"carousel_effect\";i:1;s:15:\"carousel_rotate\";i:1;s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:14:\"autoplay_speed\";i:1;s:16:\"carousel_stretch\";i:1;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}s:15:\"_section_border\";a:6:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:28:\"eael_product_carousel_styles\";a:1:{s:35:\"eael_product_carousel_border_border\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_weight\";i:1;s:5:\"align\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:21:\"_element_width_tablet\";i:1;s:10:\"_flex_size\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:3:{s:8:\"position\";i:3;s:15:\"position_tablet\";i:3;s:10:\"icon_space\";i:3;}s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:3;s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:6:{s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_family\";i:3;s:33:\"description_typography_typography\";i:3;s:34:\"description_typography_font_weight\";i:3;s:17:\"description_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:21:\"_element_width_tablet\";i:3;s:21:\"_element_width_mobile\";i:3;s:10:\"_flex_size\";i:3;}}}}}'),
(294171,33656,'_elementor_css','a:6:{s:4:\"time\";i:1730151717;s:5:\"fonts\";a:3:{i:0;s:10:\"Lilita One\";i:4;s:5:\"Dekko\";i:41;s:10:\"Schoolbell\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:14;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wphu_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_posts`
--

DROP TABLE IF EXISTS `wphu_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_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 NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text 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 NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) 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=36072 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_posts`
--

LOCK TABLES `wphu_posts` WRITE;
/*!40000 ALTER TABLE `wphu_posts` DISABLE KEYS */;
INSERT INTO `wphu_posts` VALUES
(3,1,'2021-03-30 03:15:01','2021-03-30 03:15:01','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Privacy Policy</h1>		\n		<p>This Privacy Policy describes the policies of Ognol UK Limited, 22 seymour road,, Kent ME5 7AE, United Kingdom of Great Britain and Northern Ireland (the), email: info@choiceresources.co.uk, phone: 07570544158 on the collection, use and disclosure of your information that we collect when you use our website ( https://choiceresources.co.uk ). (the â€œServiceâ€). By accessing or using the Service, you are consenting to the collection, use and disclosure of your information in accordance with this Privacy Policy. If you do not consent to the same, please do not access or use the Service.</p><p>We may modify this Privacy Policy at any time without any prior notice to you and will post the revised Privacy Policy on the Service. The revised Policy will be effective 180 days from when the revised Policy is posted in the Service and your continued access or use of the Service after such time will constitute your acceptance of the revised Privacy Policy. We therefore recommend that you periodically review this page.</p>		\n			<h1>1. Information we collect:</h1>		\n		<p>We will collect and process the following personal information about you:</p><ol><li>Name</li><li>Email</li><li>Mobile</li><li>Date of Birth</li><li>Address</li><li>Payment Info</li><li>Gender</li></ol><p>Updated: May 9, 2024.</p>		\n			<h1>2. How we collect your information:</h1>		\n		<p>We collect/receive information about you in the following manner:</p><ol><li>When a user fills up the registration form or otherwise submits personal information</li><li>Interacts with the website</li><li>From public sources</li></ol>		\n			<h1>3. How we use your information:</h1>		\n		<p>We will use the information that we collect about you for the following purposes:</p><ol><li>Marketing/ Promotional</li><li>Creating user account</li><li>Testimonials</li><li>Customer feedback collection</li><li>Enforce T&amp;C</li><li>Processing payment</li><li>Support</li><li>Administration info</li><li>Targeted advertising</li><li>Manage customer order</li><li>Site protection</li><li>User to user comments</li><li>Dispute resolution</li><li>Manage user account</li></ol><p>If we want to use your information for any other purpose, we will ask you for consent and will use your information only on receiving your consent and then, only for the purpose(s) for which grant consent unless we are required to do otherwise by law.</p>		\n			<h1>4. How we share your information:</h1>		\n		<p>We will not transfer your personal information to any third party without seeking your consent, except in limited circumstances as described below:</p><p>1. Analytics. We require such third partyâ€™s to use the personal information we transfer to them only for the purpose for which it was transferred and not to retain it for longer than is required for fulfilling the said purpose.</p><p>We may also disclose your personal information for the following: (1) to comply with applicable law, regulation, court order or other legal process; (2) to enforce your agreements with us, including this Privacy Policy; or (3) to respond to claims that your use of the Service violates any third-party rights. If the Service or our company is merged or acquired with another company, your information will be one of the assets that is transferred to the new owner.</p>		\n			<h1>5. Retention of your information:</h1>		\n		<p>We will retain your personal information with us for 30 days after user terminates account or for as long as we need it to fulfill the purposes for which it was collected as detailed in this Privacy Policy. We may need to retain certain information for longer periods such as record-keeping / reporting in accordance with applicable law or for other legitimate reasons like enforcement of legal rights, fraud prevention, etc. Residual anonymous information and aggregate information, neither of which identifies you (directly or indirectly), may be stored indefinitely.</p>		\n			<h1>6. Your Rights:</h1>		\n		<p>Depending on the law that applies, you may have a right to access and rectify or erase your personal data or receive a copy of your personal data, restrict or object to the active processing of your data, ask us to share (port) your personal information to another entity, withdraw any consent you provided to us to process your data, a right to lodge a complaint with a statutory authority and such other rights as may be relevant under applicable laws. To exercise these rights, you can write to us at info@choiceresources.co.uk. We will respond to your request in accordance with applicable law.</p><p>You may opt-out of direct marketing communications or the profiling we carry out for marketing purposes by writing to us at info@choiceresources.co.uk.</p><p>Do note that if you do not allow us to collect or process the required personal information or withdraw the consent to process the same for the required purposes, you may not be able to access or use the services for which your information was sought.</p>		\n			<h1>7. Cookies Etc.</h1>		\n		<p>To learn more about how we use these and your choices in relation to these tracking technologies, please refer to ourÂ <a href=\"https://choiceresources.co.uk/cookie-policy/\">Cookie Policy.</a></p>		\n			<h1>8. Security</h1>		\n		<p>The security of your information is important to us and we will use reasonable security measures to prevent the loss, misuse or unauthorized alteration of your information under our control. However, given the inherent risks, we cannot guarantee absolute security and consequently, we cannot ensure or warrant the security of any information you transmit to us and you do so at your own risk.</p>		\n			<h1>9. Third Party Links & Use Of Your Information:</h1>		\n		<p>Our Service may contain links to other websites that are not operated by us. This Privacy Policy does not address the privacy policy and other practices of any third parties, including any third party operating any website or service that may be accessible via a link on the Service. We strongly advise you to review the privacy policy of every site you visit. We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.</p>		\n			<h1>10. Grievance / Data Protection Officer:</h1>		\n		<p>f you have any queries or concerns about the processing of your information that is available with us, you may email our Grievance Officer at Ognol UK Limited, 22 seymour road, Kent ME5 7AE, email: info@choiceresources.co.uk. We will address your concerns in accordance with applicable law.</p><p>Privacy Policy generated withÂ <a href=\"https://www.cookieyes.com/?utm_source=PP&amp;utm_medium=footer&amp;utm_campaign=UW\" target=\"_blank\" rel=\"noopener\">CookieYes</a>.</p><p>Updated: May 9, 2024.</p>		\n			<a href=\"#TOP\" id=\"TOP\">\n					</a>\n			<a role=\"button\">\n									Home\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Privacy policy','','publish','closed','closed','','privacy-policy','','','2024-05-09 21:04:48','2024-05-09 21:04:48','',0,'http://choiceresources.co.uk/?page_id=3',0,'page','',0),
(9,1,'2021-03-30 03:25:27','2021-03-30 03:25:27','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact us</h1>		\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			<h1>Need to get in touch?</h1>		\n		<p>Your feedback and enquiries are very important to us, and we are dedicated to responding to your messages as quickly as we can.</p><p>Please allow 3 working days for non-urgent enquiries and 24 hours for urgent enquiries.</p><p>For anything else, connect with us on our social pages using the links below.</p>		\n			<a href=\"#TOP\" id=\"TOP\">\n					</a>\n			<a role=\"button\">\n									Home\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Contact us','','publish','closed','closed','','contact','','','2024-05-09 21:29:41','2024-05-09 21:29:41','',0,'http://choiceresources.co.uk/?page_id=9',0,'page','',0),
(12,1,'2021-03-30 03:20:53','2021-03-30 03:20:53','','Default Kit','','publish','closed','closed','','default-kit','','','2024-05-07 07:55:50','2024-05-07 07:55:50','',0,'http://choiceresources.co.uk/?elementor_library=default-kit',0,'elementor_library','',0),
(27,1,'2021-03-30 03:26:13','2021-03-30 03:26:13','<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-woocommerce.min.css\">		\n						<!--open container-->\n							<!--open column-1-->\n<form action=\"https://choiceresources.co.uk/cart/\" method=\"post\">\n						<!--open shop table div -->\n	<table cellspacing=\"0\">\n		<thead>\n			<tr>\n				<th>Remove item</th>\n				<th>Thumbnail image</th>\n				<th>Product</th>\n				<th>Price</th>\n				<th>Quantity</th>\n				<th>Subtotal</th>\n			</tr>\n		</thead>\n		<tbody>\n								<tr>\n						<td>\n							<a href=\"https://choiceresources.co.uk/cart/?remove_item=150784e5fbeb562400a0cd1111471d6a&#038;_wpnonce=5215a09527\" aria-label=\"Remove Product 4 from cart\" data-product_id=\"32827\" data-product_sku=\"\">&times;</a>						</td>\n						<td>\n						<a href=\"https://choiceresources.co.uk/product/product-4/\"><img width=\"300\" height=\"300\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-300x300.png\" alt=\"\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-100x100.png 100w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders.png 1080w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>						</td>\n						<td data-title=\"Product\">\n						<a href=\"https://choiceresources.co.uk/product/product-4/\">Product 4</a>						</td>\n						<td data-title=\"Price\">\n							<bdi>&pound;2.00</bdi>						</td>\n						<td data-title=\"Quantity\">\n		<label for=\"quantity_663d247238314\">Product 4 quantity</label>\n	<input\n		type=\"number\"\n				id=\"quantity_663d247238314\"\n		class=\"input-text qty text\"\n		name=\"cart[150784e5fbeb562400a0cd1111471d6a][qty]\"\n		value=\"1\"\n		aria-label=\"Product quantity\"\n		size=\"4\"\n		min=\"0\"\n		max=\"\"\n					step=\"1\"\n			placeholder=\"\"\n			inputmode=\"numeric\"\n			autocomplete=\"off\"\n			/>\n						</td>\n						<td data-title=\"Subtotal\">\n							<bdi>&pound;2.00</bdi>						</td>\n					</tr>\n			<tr>\n				<td colspan=\"6\">\n					<button type=\"submit\" name=\"update_cart\" value=\"Update Cart\">Update Cart</button>\n					<input type=\"hidden\" id=\"woocommerce-cart-nonce\" name=\"woocommerce-cart-nonce\" value=\"5215a09527\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" />				</td>\n			</tr>\n					</tbody>\n	</table>\n					<!--close shop table div -->\n					<input type=\"text\" name=\"coupon_code\" id=\"coupon_code\" value=\"\" placeholder=\"Coupon code\" />\n					<button name=\"apply_coupon\" type=\"submit\" value=\"Apply coupon\">Apply coupon</button>\n		</form>\n						<!--close column-1-->\n							<!--open column-2-->\n									<!--open column-inner-->\n										<!--open cart-totals-->\n	<h2>Cart Totals</h2>\n	<table cellspacing=\"0\">\n		<tr>\n			<th>Subtotal</th>\n			<td data-title=\"Subtotal\"><bdi>&pound;2.00</bdi></td>\n		</tr>\n			<tr>\n	<th>Shipping</th>\n	<td data-title=\"Shipping\">\n					<ul id=\"shipping_method\">\n									<li>\n						<input type=\"hidden\" name=\"shipping_method[0]\" data-index=\"0\" id=\"shipping_method_0_flat_rate1\" value=\"flat_rate:1\" /><label for=\"shipping_method_0_flat_rate1\">Flat rate: <bdi>&pound;3.95</bdi></label>					</li>\n							</ul>\n							<p>\n					Shipping to <strong>22 Seymour Road, Dagenham, Kent, RM9 5DR</strong>. 				</p>\n<form action=\"https://choiceresources.co.uk/cart/\" method=\"post\">\n	<a href=\"#\">Change address</a>\n	<section style=\"display:none;\">\n					<p id=\"calc_shipping_country_field\">\n				<label for=\"calc_shipping_country\">Country / region:</label>\n				<select name=\"calc_shipping_country\" id=\"calc_shipping_country\" rel=\"calc_shipping_state\">\n					<option value=\"default\">Select a country / region&hellip;</option>\n					<option value=\"AF\">Afghanistan</option><option value=\"AX\">Ã…land Islands</option><option value=\"AL\">Albania</option><option value=\"DZ\">Algeria</option><option value=\"AS\">American Samoa</option><option value=\"AD\">Andorra</option><option value=\"AO\">Angola</option><option value=\"AI\">Anguilla</option><option value=\"AQ\">Antarctica</option><option value=\"AG\">Antigua and Barbuda</option><option value=\"AR\">Argentina</option><option value=\"AM\">Armenia</option><option value=\"AW\">Aruba</option><option value=\"AU\">Australia</option><option value=\"AT\">Austria</option><option value=\"AZ\">Azerbaijan</option><option value=\"BS\">Bahamas</option><option value=\"BH\">Bahrain</option><option value=\"BD\">Bangladesh</option><option value=\"BB\">Barbados</option><option value=\"BY\">Belarus</option><option value=\"PW\">Belau</option><option value=\"BE\">Belgium</option><option value=\"BZ\">Belize</option><option value=\"BJ\">Benin</option><option value=\"BM\">Bermuda</option><option value=\"BT\">Bhutan</option><option value=\"BO\">Bolivia</option><option value=\"BQ\">Bonaire, Saint Eustatius and Saba</option><option value=\"BA\">Bosnia and Herzegovina</option><option value=\"BW\">Botswana</option><option value=\"BV\">Bouvet Island</option><option value=\"BR\">Brazil</option><option value=\"IO\">British Indian Ocean Territory</option><option value=\"BN\">Brunei</option><option value=\"BG\">Bulgaria</option><option value=\"BF\">Burkina Faso</option><option value=\"BI\">Burundi</option><option value=\"KH\">Cambodia</option><option value=\"CM\">Cameroon</option><option value=\"CA\">Canada</option><option value=\"CV\">Cape Verde</option><option value=\"KY\">Cayman Islands</option><option value=\"CF\">Central African Republic</option><option value=\"TD\">Chad</option><option value=\"CL\">Chile</option><option value=\"CN\">China</option><option value=\"CX\">Christmas Island</option><option value=\"CC\">Cocos (Keeling) Islands</option><option value=\"CO\">Colombia</option><option value=\"KM\">Comoros</option><option value=\"CG\">Congo (Brazzaville)</option><option value=\"CD\">Congo (Kinshasa)</option><option value=\"CK\">Cook Islands</option><option value=\"CR\">Costa Rica</option><option value=\"HR\">Croatia</option><option value=\"CU\">Cuba</option><option value=\"CW\">Cura&ccedil;ao</option><option value=\"CY\">Cyprus</option><option value=\"CZ\">Czech Republic</option><option value=\"DK\">Denmark</option><option value=\"DJ\">Djibouti</option><option value=\"DM\">Dominica</option><option value=\"DO\">Dominican Republic</option><option value=\"EC\">Ecuador</option><option value=\"EG\">Egypt</option><option value=\"SV\">El Salvador</option><option value=\"GQ\">Equatorial Guinea</option><option value=\"ER\">Eritrea</option><option value=\"EE\">Estonia</option><option value=\"SZ\">Eswatini</option><option value=\"ET\">Ethiopia</option><option value=\"FK\">Falkland Islands</option><option value=\"FO\">Faroe Islands</option><option value=\"FJ\">Fiji</option><option value=\"FI\">Finland</option><option value=\"FR\">France</option><option value=\"GF\">French Guiana</option><option value=\"PF\">French Polynesia</option><option value=\"TF\">French Southern Territories</option><option value=\"GA\">Gabon</option><option value=\"GM\">Gambia</option><option value=\"GE\">Georgia</option><option value=\"DE\">Germany</option><option value=\"GH\">Ghana</option><option value=\"GI\">Gibraltar</option><option value=\"GR\">Greece</option><option value=\"GL\">Greenland</option><option value=\"GD\">Grenada</option><option value=\"GP\">Guadeloupe</option><option value=\"GU\">Guam</option><option value=\"GT\">Guatemala</option><option value=\"GG\">Guernsey</option><option value=\"GN\">Guinea</option><option value=\"GW\">Guinea-Bissau</option><option value=\"GY\">Guyana</option><option value=\"HT\">Haiti</option><option value=\"HM\">Heard Island and McDonald Islands</option><option value=\"HN\">Honduras</option><option value=\"HK\">Hong Kong</option><option value=\"HU\">Hungary</option><option value=\"IS\">Iceland</option><option value=\"IN\">India</option><option value=\"ID\">Indonesia</option><option value=\"IR\">Iran</option><option value=\"IQ\">Iraq</option><option value=\"IE\">Ireland</option><option value=\"IM\">Isle of Man</option><option value=\"IL\">Israel</option><option value=\"IT\">Italy</option><option value=\"CI\">Ivory Coast</option><option value=\"JM\">Jamaica</option><option value=\"JP\">Japan</option><option value=\"JE\">Jersey</option><option value=\"JO\">Jordan</option><option value=\"KZ\">Kazakhstan</option><option value=\"KE\">Kenya</option><option value=\"KI\">Kiribati</option><option value=\"KW\">Kuwait</option><option value=\"KG\">Kyrgyzstan</option><option value=\"LA\">Laos</option><option value=\"LV\">Latvia</option><option value=\"LB\">Lebanon</option><option value=\"LS\">Lesotho</option><option value=\"LR\">Liberia</option><option value=\"LY\">Libya</option><option value=\"LI\">Liechtenstein</option><option value=\"LT\">Lithuania</option><option value=\"LU\">Luxembourg</option><option value=\"MO\">Macao</option><option value=\"MG\">Madagascar</option><option value=\"MW\">Malawi</option><option value=\"MY\">Malaysia</option><option value=\"MV\">Maldives</option><option value=\"ML\">Mali</option><option value=\"MT\">Malta</option><option value=\"MH\">Marshall Islands</option><option value=\"MQ\">Martinique</option><option value=\"MR\">Mauritania</option><option value=\"MU\">Mauritius</option><option value=\"YT\">Mayotte</option><option value=\"MX\">Mexico</option><option value=\"FM\">Micronesia</option><option value=\"MD\">Moldova</option><option value=\"MC\">Monaco</option><option value=\"MN\">Mongolia</option><option value=\"ME\">Montenegro</option><option value=\"MS\">Montserrat</option><option value=\"MA\">Morocco</option><option value=\"MZ\">Mozambique</option><option value=\"MM\">Myanmar</option><option value=\"NA\">Namibia</option><option value=\"NR\">Nauru</option><option value=\"NP\">Nepal</option><option value=\"NL\">Netherlands</option><option value=\"NC\">New Caledonia</option><option value=\"NZ\">New Zealand</option><option value=\"NI\">Nicaragua</option><option value=\"NE\">Niger</option><option value=\"NG\">Nigeria</option><option value=\"NU\">Niue</option><option value=\"NF\">Norfolk Island</option><option value=\"KP\">North Korea</option><option value=\"MK\">North Macedonia</option><option value=\"MP\">Northern Mariana Islands</option><option value=\"NO\">Norway</option><option value=\"OM\">Oman</option><option value=\"PK\">Pakistan</option><option value=\"PS\">Palestinian Territory</option><option value=\"PA\">Panama</option><option value=\"PG\">Papua New Guinea</option><option value=\"PY\">Paraguay</option><option value=\"PE\">Peru</option><option value=\"PH\">Philippines</option><option value=\"PN\">Pitcairn</option><option value=\"PL\">Poland</option><option value=\"PT\">Portugal</option><option value=\"PR\">Puerto Rico</option><option value=\"QA\">Qatar</option><option value=\"RE\">Reunion</option><option value=\"RO\">Romania</option><option value=\"RU\">Russia</option><option value=\"RW\">Rwanda</option><option value=\"ST\">S&atilde;o Tom&eacute; and Pr&iacute;ncipe</option><option value=\"BL\">Saint Barth&eacute;lemy</option><option value=\"SH\">Saint Helena</option><option value=\"KN\">Saint Kitts and Nevis</option><option value=\"LC\">Saint Lucia</option><option value=\"SX\">Saint Martin (Dutch part)</option><option value=\"MF\">Saint Martin (French part)</option><option value=\"PM\">Saint Pierre and Miquelon</option><option value=\"VC\">Saint Vincent and the Grenadines</option><option value=\"WS\">Samoa</option><option value=\"SM\">San Marino</option><option value=\"SA\">Saudi Arabia</option><option value=\"SN\">Senegal</option><option value=\"RS\">Serbia</option><option value=\"SC\">Seychelles</option><option value=\"SL\">Sierra Leone</option><option value=\"SG\">Singapore</option><option value=\"SK\">Slovakia</option><option value=\"SI\">Slovenia</option><option value=\"SB\">Solomon Islands</option><option value=\"SO\">Somalia</option><option value=\"ZA\">South Africa</option><option value=\"GS\">South Georgia/Sandwich Islands</option><option value=\"KR\">South Korea</option><option value=\"SS\">South Sudan</option><option value=\"ES\">Spain</option><option value=\"LK\">Sri Lanka</option><option value=\"SD\">Sudan</option><option value=\"SR\">Suriname</option><option value=\"SJ\">Svalbard and Jan Mayen</option><option value=\"SE\">Sweden</option><option value=\"CH\">Switzerland</option><option value=\"SY\">Syria</option><option value=\"TW\">Taiwan</option><option value=\"TJ\">Tajikistan</option><option value=\"TZ\">Tanzania</option><option value=\"TH\">Thailand</option><option value=\"TL\">Timor-Leste</option><option value=\"TG\">Togo</option><option value=\"TK\">Tokelau</option><option value=\"TO\">Tonga</option><option value=\"TT\">Trinidad and Tobago</option><option value=\"TN\">Tunisia</option><option value=\"TR\">Turkey</option><option value=\"TM\">Turkmenistan</option><option value=\"TC\">Turks and Caicos Islands</option><option value=\"TV\">Tuvalu</option><option value=\"UG\">Uganda</option><option value=\"UA\">Ukraine</option><option value=\"AE\">United Arab Emirates</option><option value=\"GB\" selected=\'selected\'>United Kingdom (UK)</option><option value=\"US\">United States (US)</option><option value=\"UM\">United States (US) Minor Outlying Islands</option><option value=\"UY\">Uruguay</option><option value=\"UZ\">Uzbekistan</option><option value=\"VU\">Vanuatu</option><option value=\"VA\">Vatican</option><option value=\"VE\">Venezuela</option><option value=\"VN\">Vietnam</option><option value=\"VG\">Virgin Islands (British)</option><option value=\"VI\">Virgin Islands (US)</option><option value=\"WF\">Wallis and Futuna</option><option value=\"EH\">Western Sahara</option><option value=\"YE\">Yemen</option><option value=\"ZM\">Zambia</option><option value=\"ZW\">Zimbabwe</option>				</select>\n			</p>\n					<p id=\"calc_shipping_state_field\">\n									<label for=\"calc_shipping_state\">State / County:</label>\n					<input type=\"text\" value=\"Kent\" placeholder=\"State / County\" name=\"calc_shipping_state\" id=\"calc_shipping_state\" />\n								</p>\n					<p id=\"calc_shipping_city_field\">\n				<label for=\"calc_shipping_city\">City:</label>\n				<input type=\"text\" value=\"Dagenham\" placeholder=\"City\" name=\"calc_shipping_city\" id=\"calc_shipping_city\" />\n			</p>\n					<p id=\"calc_shipping_postcode_field\">\n				<label for=\"calc_shipping_postcode\">Postcode / ZIP:</label>\n				<input type=\"text\" value=\"RM9 5DR\" placeholder=\"Postcode / ZIP\" name=\"calc_shipping_postcode\" id=\"calc_shipping_postcode\" />\n			</p>\n		<p><button type=\"submit\" name=\"calc_shipping\" value=\"1\">Update</button></p>\n		<input type=\"hidden\" id=\"woocommerce-shipping-calculator-nonce\" name=\"woocommerce-shipping-calculator-nonce\" value=\"6610f6ede4\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" />	</section>\n</form>\n			</td>\n</tr>\n		<tr>\n			<th>Total</th>\n			<td data-title=\"Total\"><strong><bdi>&pound;5.95</bdi> GBP</strong> </td>\n		</tr>\n	</table>\n<a href=\"https://choiceresources.co.uk/checkout/\">\n	Proceed to Checkout</a>\n			<!-- A Stripe Element will be inserted here. -->\n									<!--close cart-totals-->\n									<!--close column-inner-->\n							<!--close column-2-->\n						<!--close container-->','Cart','','publish','closed','closed','','cart','','','2024-05-09 19:30:58','2024-05-09 19:30:58','',0,'http://choiceresources.co.uk/cart/',0,'page','',0),
(28,1,'2021-03-30 03:26:13','2021-03-30 03:26:13','<p>[woocommerce_checkout]</p>','Checkout','','publish','closed','closed','','checkout','','','2022-11-17 01:25:55','2022-11-17 01:25:55','',0,'http://choiceresources.co.uk/checkout/',0,'page','',0),
(29,1,'2021-03-30 03:26:13','2021-03-30 03:26:13','[forminator_form id=\"20612\"]','My Account','','publish','closed','closed','','my-account','','','2023-04-19 22:21:49','2023-04-19 22:21:49','',0,'http://choiceresources.co.uk/my-account/',0,'page','',0),
(43,1,'2021-03-30 03:53:48','2021-03-30 03:53:48','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>											<a href=\"http://www.choiceresources.co.uk\">\n							<img src=\"https://choiceresources.co.uk/wp-content/uploads/2021/03/Choice-Logo-Banner-1.png\" title=\"Choice Logo Banner\" alt=\"Choice Logo Banner\" loading=\"lazy\" />								</a>','Elementor Header #43','','publish','closed','closed','','elementor-header-43','','','2024-04-03 16:26:03','2024-04-03 16:26:03','',0,'http://choiceresources.co.uk/?post_type=elementor_library&#038;p=43',0,'elementor_library','',0),
(225,1,'2022-06-08 23:12:25','2021-03-30 10:36:38',' ','','','publish','closed','closed','','225','','','2022-06-08 23:12:25','2022-06-08 23:12:25','',0,'http://choiceresources.co.uk/?p=225',1,'nav_menu_item','',0),
(228,1,'2022-06-08 23:12:25','2021-03-30 10:37:46',' ','','','publish','closed','closed','','228','','','2022-06-08 23:12:25','2022-06-08 23:12:25','',0,'http://choiceresources.co.uk/?p=228',2,'nav_menu_item','',0),
(577,1,'2021-04-05 14:05:55','2021-04-05 14:05:55','<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n				Let\'s&nbsp;keep&nbsp;in&nbsp;touch:			\n				</h3>\n		<p>Join our newsletter and be the first to hear about our&nbsp;NEW Activities!</p>[mautic type=\"form\" id=\"1\"]		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Social Links						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Pinterest\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n									<h3>\n							Important Info						\n					</h3>\n				<a href=\"https://choiceresources.co.uk/terms-and-conditions\" tabindex=\"-1\">\n								</a>\n									<h3>\n						<a href=\"https://choiceresources.co.uk/terms-and-conditions\" >\n							Terms and conditions 						</a>\n					</h3>\n				<a href=\"https://choiceresources.co.uk/refund-returns\" tabindex=\"-1\">\n								</a>\n									<h3>\n						<a href=\"https://choiceresources.co.uk/refund-returns\" >\n							Refund/Returns Policy						</a>\n					</h3>\n				<a href=\"https://choiceresources.co.uk/privacy-policy\" tabindex=\"-1\">\n								</a>\n									<h3>\n						<a href=\"https://choiceresources.co.uk/privacy-policy\" >\n							Choice R Privacy Policy						</a>\n					</h3>\n									<h3>\n							Contact:						\n					</h3>\n									<h3>\n							info@choiceresources.co.uk						\n					</h3>\n									<h3>\n							Contact no. 07950202050						\n					</h3>\n									<h3>\n							Supports:						\n					</h3>\n		<p>Â© 2024 All rights reserved</p>','Footer','','publish','closed','closed','','footer','','','2024-05-09 19:10:50','2024-05-09 19:10:50','',0,'http://choiceresources.co.uk/?post_type=elementor_library&#038;p=577',0,'elementor_library','',0),
(1050,1,'2021-05-12 17:41:33','2021-05-12 17:41:33','[wcm_content_restricted]','Content restricted','','publish','closed','closed','','content-restricted','','','2021-05-12 17:41:33','2021-05-12 17:41:33','',0,'http://choiceresources.co.uk/content-restricted/',0,'page','',0),
(1057,1,'2021-05-12 18:34:09','2021-05-12 18:34:09','','Order &ndash; May 12, 2021 @ 06:34 PM','','wc-processing','open','closed','wc_order_H9FiPuR5X6dJC','order-may-12-2021-0634-pm','','','2021-05-12 18:34:09','2021-05-12 18:34:09','',0,'http://choiceresources.co.uk/?post_type=shop_order&#038;p=1057',0,'shop_order','',1),
(1058,1,'2021-05-12 18:44:40','2021-05-12 18:44:40','','Order &ndash; May 12, 2021 @ 06:44 PM','','wc-processing','open','closed','wc_order_sPfztRGod5iQI','order-may-12-2021-0644-pm','','','2021-05-12 18:44:40','2021-05-12 18:44:40','',0,'http://choiceresources.co.uk/?post_type=shop_order&#038;p=1058',0,'shop_order','',1),
(1060,1,'2021-05-12 19:56:44','2021-05-12 19:56:44','','2QWCAFBU','','publish','closed','closed','','choice1','','','2021-05-12 20:24:11','2021-05-12 20:24:11','',0,'http://choiceresources.co.uk/?post_type=shop_coupon&#038;p=1060',0,'shop_coupon','',0),
(1061,1,'2021-05-12 20:09:44','2021-05-12 20:09:44','','1 Year Worksheet Membership Subscription Plan','','publish','closed','closed','','worksheet-membership','','','2022-11-16 23:20:43','2022-11-16 23:20:43','',0,'http://choiceresources.co.uk/?post_type=wc_membership_plan&#038;p=1061',0,'wc_membership_plan','',0),
(1062,1,'2021-05-12 20:51:01','2021-05-12 20:51:01','','Order &ndash; May 12, 2021 @ 08:51 PM','','wc-processing','open','closed','wc_order_gkLkhvhPpRZrw','order-may-12-2021-0851-pm','','','2021-05-12 20:58:34','2021-05-12 20:58:34','',0,'http://choiceresources.co.uk/?post_type=shop_order&#038;p=1062',0,'shop_order','',1),
(1066,1,'2021-05-12 21:36:58','2021-05-12 21:36:58','','Order &ndash; May 12, 2021 @ 09:36 PM','','wc-completed','open','closed','wc_order_RX3aEdEeDZRz4','order-may-12-2021-0936-pm','','','2021-05-12 21:36:58','2021-05-12 21:36:58','',0,'http://choiceresources.co.uk/?post_type=shop_order&#038;p=1066',0,'shop_order','',1),
(1067,1,'2021-05-12 22:05:15','2021-05-12 22:05:15','Download all Choiceresources worksheets, and access premium videos and stories with thisÂ  100% discount membership plan.','1 Year All Worksheet Access Plan','','publish','closed','closed','','1-year-100-worksheet-discount-membership-plan','','','2024-01-01 00:00:01','2024-01-01 00:00:01','',0,'http://choiceresources.co.uk/?post_type=product&#038;p=1067',0,'product','',0),
(1069,1,'2021-05-12 22:11:03','2021-05-12 22:11:03','','Order &ndash; May 12, 2021 @ 10:11 PM','','wc-processing','open','closed','wc_order_OdIvJxAvIgubd','order-may-12-2021-1011-pm','','','2021-05-12 22:12:23','2021-05-12 22:12:23','',0,'http://choiceresources.co.uk/?post_type=shop_order&#038;p=1069',0,'shop_order','',1),
(4047,1,'2021-09-17 14:40:59','2021-09-17 14:40:59','','Order &ndash; September 17, 2021 @ 02:40 PM','','wc-processing','open','closed','wc_order_ffMT1Casr6nEa','order-sep-17-2021-0240-pm','','','2021-09-17 14:40:59','2021-09-17 14:40:59','',0,'http://choiceresources.co.uk/?post_type=shop_order&#038;p=4047',0,'shop_order','',1),
(4162,1,'2021-09-20 13:00:14','2021-09-20 13:00:14','','Order &ndash; September 20, 2021 @ 01:00 PM','','wc-processing','open','closed','wc_order_dD3fyJODN8VRH','order-sep-20-2021-0100-pm','','','2021-09-20 13:00:14','2021-09-20 13:00:14','',0,'http://choiceresources.co.uk/?post_type=shop_order&#038;p=4162',0,'shop_order','',1),
(4163,1,'2021-09-20 13:09:14','2021-09-20 13:09:14','','Order &ndash; September 20, 2021 @ 01:09 PM','','wc-processing','open','closed','wc_order_WJCIwK794YAQS','order-sep-20-2021-0109-pm','','','2021-09-20 13:09:14','2021-09-20 13:09:14','',0,'http://choiceresources.co.uk/?post_type=shop_order&#038;p=4163',0,'shop_order','',1),
(4885,1,'2022-06-03 00:48:28','2022-01-09 00:16:42',' ','','','publish','closed','closed','','4885','','','2022-06-03 00:48:28','2022-06-03 00:48:28','',0,'https://choiceresources.co.uk/?p=4885',1,'nav_menu_item','',0),
(5228,1,'2022-01-09 11:00:29','2022-01-09 11:00:29','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/02/Learning-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/02/Learning-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Learning-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Learning-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Learning-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Learning-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/02/Nature-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/02/Nature-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Nature-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Nature-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Nature-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Nature-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n													<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/02/Puzzle-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/02/Puzzle-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Puzzle-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Puzzle-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Puzzle-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Puzzle-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/02/Colouring-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/02/Colouring-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Colouring-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Colouring-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Colouring-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/02/Colouring-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n		<p>Story Wordsearches</p>		\n													<img width=\"707\" height=\"1000\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound-2.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound-2.png 707w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound-2-212x300.png 212w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound-2-399x564.png 399w\" sizes=\"(max-width: 707px) 100vw, 707px\" />													\n		<p>Available until:</p>		\n			<a href=\"https://choiceresources.co.uk/wordsearches/\">\n									Download Free\n					</a>\n		<p>Phonics Wordsearches</p>		\n													<img width=\"707\" height=\"1000\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/The-Run.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/The-Run.png 707w, https://choiceresources.co.uk/wp-content/uploads/2024/07/The-Run-212x300.png 212w, https://choiceresources.co.uk/wp-content/uploads/2024/07/The-Run-399x564.png 399w\" sizes=\"(max-width: 707px) 100vw, 707px\" />													\n		<p>Available until:</p>		\n													<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/03/Bible-colouring-pages-x14.gif\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<a href=\"https://choiceresources.co.uk/biblecolouring/\">\n									Download free\n					</a>\n		<p>Trivia Wordsearches</p>		\n													<img width=\"707\" height=\"1000\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Natural-Lights.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Natural-Lights.png 707w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Natural-Lights-212x300.png 212w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Natural-Lights-399x564.png 399w\" sizes=\"(max-width: 707px) 100vw, 707px\" />													\n		<p>Available until:</p>		\n			<a href=\"https://choiceresources.co.uk/writing-tasks/\">\n									Download free\n					</a>\n			<a href=\"#\">\n									more wordsearches\n					</a>\n			<a href=\"https://choiceresources.co.uk/scavengerhunts/\">\n									Scavenger hunts\n					</a>\n			<style id=\"eael-fg-inline-css-0e0b18a\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-0e0b18a .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-0e0b18a  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-0e0b18a  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Weather-hunt-1.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Weather-hunt-1.png\" alt=\"\"><h5>Scavenger Hunt</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Weather-hunt-1.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>            \n			<a role=\"button\">\n									Stories\n					</a>\n			<style id=\"eael-fg-inline-css-67e6624\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-67e6624 .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-67e6624  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-67e6624  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Phonics-Mixed-AY.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Phonics-Mixed-AY.png\" alt=\"\">\n                            <a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Phonics-Mixed-AY.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n                        <h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Flowerpot-art-1.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Flowerpot-art-1.png\" alt=\"\">\n                            <a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Flowerpot-art-1.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n                        <h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n                <a href=\"#\">\n                        Load More                    \n                                                                                        </a>\n			<a href=\"#\">\n									tracing\n					</a>\n			<style id=\"eael-fg-inline-css-593b1aa\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-593b1aa .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-593b1aa  .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-593b1aa  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\"\n                        data-filter=\".eael-cf-ages-3plus\">Ages 3+</li><li  data-load-more-status=\"0\" data-first-init=\"0\"\n                        data-filter=\".eael-cf-ages-7plus\">Ages 7+</li><li  data-load-more-status=\"0\" data-first-init=\"0\"\n                        data-filter=\".eael-cf-ages-11plus\">Ages 11+</li><li  data-load-more-status=\"0\" data-first-init=\"0\"\n                        data-filter=\".eael-cf-send\">SEND</li></ul>\n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Spot-the-Difference.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Spot-the-Difference.png\" alt=\"\">\n                            <a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Spot-the-Difference.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Spot-the-Difference.pdf\" download=\"Spot-the-Difference.pdf\" aria-label=\"eael-item-maybe-link\"> </a>\n                        <h5>Spot the Difference</h5><p>See more</p>\n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Weather-hunt-1.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Weather-hunt-1.png\" alt=\"\">\n                            <a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Weather-hunt-1.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Weather-hunt.pdf\" download=\"Weather-hunt.pdf\" aria-label=\"eael-item-maybe-link\"> </a>\n                        <h5>Weather Hunt</h5><p>See more</p>\n                <a href=\"#\">\n                        Load More                    \n                                                                                        </a>\n			<a href=\"#TOP\" id=\"TOP\">\n					</a>\n			<a role=\"button\">\n									Home\n					</a>\n			<a href=\"#\">\n									Quizzes\n					</a>\n			<style id=\"eael-fg-inline-css-152070f\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-152070f .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-152070f  .eael-filterable-gallery-item-wrap {\n					        width: 50%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-152070f  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n				<img src=\"https://choiceresources.co.uk/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" alt=\"\"><h5>Gallery Item Name</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident.</p>\n<a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/plugins/essential-addons-for-elementor-lite//assets/front-end/img/flexia-preview.jpg\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>            \n		<p>Scripture-Fun!</p><p style=\"text-align: center;\">Games Bundle</p>		\n													<img width=\"800\" height=\"800\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Fruits-Snakes-and-Ladders-1-1-1024x1024.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Fruits-Snakes-and-Ladders-1-1-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Fruits-Snakes-and-Ladders-1-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Fruits-Snakes-and-Ladders-1-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Fruits-Snakes-and-Ladders-1-1-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Fruits-Snakes-and-Ladders-1-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Fruits-Snakes-and-Ladders-1-1-100x100.png 100w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Fruits-Snakes-and-Ladders-1-1.png 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n		<p style=\"text-align: center;\">Download games bundle <a href=\"https://choiceresources.co.uk/choice-shop/\">here</a>:</p>		\n		<p>Hi, Welcome to Choice Resources!</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p style=\"text-align: center;\">NATURE explorer</p>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-carousel.min.css\">		\n														Previous\n														Next\n			<a href=\"#\">\n									unlock\n					</a>\n		<p style=\"text-align: center;\">Ultimate PUZZLE FUN</p>		\n														Previous\n														Next\n			<a href=\"https://choiceresources.co.uk/puzzles\">\n									Unlock\n					</a>\n		<p style=\"text-align: center;\">BUILDING</p>		\n														Previous\n														Next\n			<a href=\"#\">\n									unlock\n					</a>\n		<p style=\"text-align: center;\">ARTÂ &amp; CRAFT</p>		\n														Previous\n														Next\n			<a href=\"https://choiceresources.co.uk/drawing\">\n									Unlock\n					</a>\n		<p>LookingÂ forÂ </p><p>something new?</p><p>Enjoy Animated Number Friends Comics:</p>https://youtu.be/ISS3Rcyfv34		\n			<a href=\"https://www.youtube.com/@choiceresourcesvideos\">\n									Watch all\n					</a>\n		<p style=\"text-align: center;\">Comics also available <a href=\"https://choiceresources.co.uk/choice-shop/\">here</a>:</p><p>WeÂ thinkÂ you\'llÂ alsoÂ like:</p><p style=\"text-align: center;\"><strong>Unlimited Access</strong> to ALL Art &amp; Craft for 12 months!</p>		\n            <ul>    <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/product-4/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=32827\" data-quantity=\"1\" data-product_id=\"32827\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Product 4&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_668dbf900db2b\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;33c50ae&quot;,&quot;product_id&quot;:32827,&quot;page_id&quot;:5228}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/product-4/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/product-3/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=32825\" data-quantity=\"1\" data-product_id=\"32825\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Product 3&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_668dbf9041e80\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;33c50ae&quot;,&quot;product_id&quot;:32825,&quot;page_id&quot;:5228}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/product-3/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/product-2/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=32823\" data-quantity=\"1\" data-product_id=\"32823\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Product 2&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_668dbf907b8a3\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;33c50ae&quot;,&quot;product_id&quot;:32823,&quot;page_id&quot;:5228}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/product-2/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/product-1/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Trace-and-learn.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Trace-and-learn.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Trace-and-learn-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Trace-and-learn-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Trace-and-learn-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Trace-and-learn-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Trace-and-learn-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Trace-and-learn-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=32821\" data-quantity=\"1\" data-product_id=\"32821\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Product 1&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_668dbf90ceb8b\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;33c50ae&quot;,&quot;product_id&quot;:32821,&quot;page_id&quot;:5228}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/product-1/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> Â£45 <strong>Now:</strong> Â£22.50</p>		\n			<a href=\"#\">\n									Get discount offer\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2024 Printables</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>\n		<p style=\"text-align: center;\">And before you go...</p>		\n									<h3>\n							10 Bible Promises for You!						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-rating{--e-rating-gap:0px;--e-rating-icon-font-size:16px;--e-rating-icon-color:#ccd6df;--e-rating-icon-marked-color:#f0ad4e;--e-rating-icon-marked-width:100%;--e-rating-justify-content:flex-start}.elementor-widget-rating .e-rating{display:flex;justify-content:var(--e-rating-justify-content)}.elementor-widget-rating .e-rating-wrapper{display:flex;justify-content:inherit;flex-direction:row;flex-wrap:wrap;width:-moz-fit-content;width:fit-content;margin-block-end:calc(0px - var(--e-rating-gap));margin-inline-end:calc(0px - var(--e-rating-gap))}.elementor-widget-rating .e-rating .e-icon{position:relative;margin-block-end:var(--e-rating-gap);margin-inline-end:var(--e-rating-gap)}.elementor-widget-rating .e-rating .e-icon-wrapper.e-icon-marked{--e-rating-icon-color:var(--e-rating-icon-marked-color);width:var(--e-rating-icon-marked-width);position:absolute;z-index:1;height:100%;left:0;top:0;overflow:hidden}.elementor-widget-rating .e-rating .e-icon-wrapper :is(i,svg){display:flex;flex-shrink:0}.elementor-widget-rating .e-rating .e-icon-wrapper i{font-size:var(--e-rating-icon-font-size);color:var(--e-rating-icon-color)}.elementor-widget-rating .e-rating .e-icon-wrapper svg{width:auto;height:var(--e-rating-icon-font-size);fill:var(--e-rating-icon-color)}</style>		\n			<meta itemprop=\"worstRating\" content=\"0\">\n			<meta itemprop=\"bestRating\" content=\"5\">\n			<style>/*! elementor-pro - v3.21.0 - 30-04-2024 */\n.elementor-slides .swiper-slide-bg{background-size:cover;background-position:50%;background-repeat:no-repeat;min-width:100%;min-height:100%}.elementor-slides .swiper-slide-inner{background-repeat:no-repeat;background-position:50%;position:absolute;top:0;left:0;bottom:0;right:0;padding:50px;margin:auto}.elementor-slides .swiper-slide-inner,.elementor-slides .swiper-slide-inner:hover{color:#fff;display:flex}.elementor-slides .swiper-slide-inner .elementor-background-overlay{position:absolute;z-index:0;top:0;bottom:0;left:0;right:0}.elementor-slides .swiper-slide-inner .elementor-slide-content{position:relative;z-index:1;width:100%}.elementor-slides .swiper-slide-inner .elementor-slide-heading{font-size:35px;font-weight:700;line-height:1}.elementor-slides .swiper-slide-inner .elementor-slide-description{font-size:17px;line-height:1.4}.elementor-slides .swiper-slide-inner .elementor-slide-description:not(:last-child),.elementor-slides .swiper-slide-inner .elementor-slide-heading:not(:last-child){margin-bottom:30px}.elementor-slides .swiper-slide-inner .elementor-slide-button{border:2px solid #fff;color:#fff;background:transparent;display:inline-block}.elementor-slides .swiper-slide-inner .elementor-slide-button,.elementor-slides .swiper-slide-inner .elementor-slide-button:hover{background:transparent;color:inherit;text-decoration:none}.elementor--v-position-top .swiper-slide-inner{align-items:flex-start}.elementor--v-position-bottom .swiper-slide-inner{align-items:flex-end}.elementor--v-position-middle .swiper-slide-inner{align-items:center}.elementor--h-position-left .swiper-slide-inner{justify-content:flex-start}.elementor--h-position-right .swiper-slide-inner{justify-content:flex-end}.elementor--h-position-center .swiper-slide-inner{justify-content:center}body.rtl .elementor-widget-slides .elementor-swiper-button-next{left:10px;right:auto}body.rtl .elementor-widget-slides .elementor-swiper-button-prev{right:10px;left:auto}.elementor-slides-wrapper div:not(.swiper-slide)>.swiper-slide-inner{display:none}@media (max-width:767px){.elementor-slides .swiper-slide-inner{padding:30px}.elementor-slides .swiper-slide-inner .elementor-slide-heading{font-size:23px;line-height:1;margin-bottom:15px}.elementor-slides .swiper-slide-inner .elementor-slide-description{font-size:13px;line-height:1.4;margin-bottom:15px}}</style>		\n										Promise of God\'s Presence:\"I will never leave you nor forsake you.\"Hebrews 13:5Promise of God\'s Peace:\"Peace I leave with you; my peace I give you.\"John 14:27Promise of Eternal Life: \"Whoever believes in him shall not perish but have eternal life.\" John 3:16Promise of God\'s Provision:\"And my God will meet all your needs according to the riches of his glory in Christ Jesus.\"Philippians 4:19Promise of Wisdom: \"If any of you lacks wisdom, you should ask God, who gives generously to all without finding fault, and it will be given to you.\"James 1:5Promise of Strength:\"I can do all this through Christ who gives me strength.\" Philippians 4:13Promise of Guidance: \"I will instruct you and teach you in the way you should go; I will counsel you with my loving eye on you.\"Psalm 32:8Promise of God\'s Faithfulness\"The Lord is faithful, and he will strengthen you and protect you from the evil one.\" - 2 Thessalonians 3:3Promise of Healing:\"He heals the brokenhearted and binds up their wounds.\" - Psalm 147:3Promise of Forgiveness:\"If we confess our sins, he is faithful and just and will forgive us our sins and purify us from all unrighteousness.\"1 John 1:9				\n														Previous slide\n														Next slide','Choice Education Landing Page','','publish','closed','closed','','choice-education-landing-page-2','','','2024-09-20 08:46:21','2024-09-20 08:46:21','',0,'https://choiceresources.co.uk/?page_id=5228',0,'page','',0),
(5608,1,'2022-04-04 20:41:16','2022-04-04 20:41:16','{{unknown}}','','','publish','closed','closed','','2f1a050357c15c493c23cf23b066435f','','','2022-04-04 20:41:16','2022-04-04 20:41:16','',0,'https://choiceresources.co.uk/2022/04/04/2f1a050357c15c493c23cf23b066435f/',0,'oembed_cache','',0),
(5791,1,'2022-05-01 13:43:20','2022-05-01 13:43:20','','Order &ndash; May 1, 2022 @ 01:43 PM','','wc-cancelled','open','closed','wc_order_XKJhY6qNbWMIh','order-may-01-2022-0143-pm','','','2022-06-12 02:19:17','2022-06-12 02:19:17','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=5791',0,'shop_order','',1),
(5792,1,'2022-05-12 10:10:58','2022-05-12 10:10:58','','Order &ndash; May 12, 2022 @ 10:10 AM','','wc-failed','open','closed','wc_order_46eB6Draa7qQe','order-may-12-2022-1010-am','','','2022-05-12 10:10:58','2022-05-12 10:10:58','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=5792',0,'shop_order','',2),
(6711,1,'2022-06-01 08:07:44','2022-06-01 08:07:44','','Download to view more pages','','inherit','open','closed','','12','','','2022-06-01 08:09:02','2022-06-01 08:09:02','',0,'http://choiceresources.co.uk/wp-content/uploads/2022/06/12.jpg',0,'attachment','image/jpeg',0),
(6722,1,'2022-06-01 09:15:03','2022-06-01 09:15:03','{\n    \"woocommerce_single_image_width\": {\n        \"value\": \"500\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-06-01 09:15:03\"\n    }\n}','','','publish','closed','closed','','c2f9216f-4e84-44b1-a5a6-832379712100','','','2022-06-01 09:15:03','2022-06-01 09:15:03','',0,'https://choiceresources.co.uk/2022/06/01/c2f9216f-4e84-44b1-a5a6-832379712100/',0,'customize_changeset','',0),
(6724,1,'2022-06-01 09:16:33','2022-06-01 09:16:33','{\n    \"woocommerce_single_image_width\": {\n        \"value\": \"700\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-06-01 09:16:33\"\n    }\n}','','','publish','closed','closed','','e2754920-c694-4783-9d5d-91166885f5fb','','','2022-06-01 09:16:33','2022-06-01 09:16:33','',0,'https://choiceresources.co.uk/2022/06/01/e2754920-c694-4783-9d5d-91166885f5fb/',0,'customize_changeset','',0),
(7210,1,'2022-06-02 00:12:56','2022-06-02 00:12:56','.cr1-custom-form ul.tml-links{\n	display:;\n}\n.cr2-custom-form ul.tml-links{\n	display:none;\n}\n\n/* Normal state */\n.single_add_to_cart_button {\n    background-color: #f8049c!important;\n    color: #ffffff!important;\n    border-color: Color Hex!important;\n}\n/* Hover state */\n.single_add_to_cart_button:hover {\n    background-color: Color Hex!important;\n    color: Color Hex!important;\n    border-color: Color Hex!important;\n}\n\n\na.added_to_cart {\n    display: block;\n    position: absolute;\n    top: 50%;\n    right: 50%;\n    margin-right: -60px;\n    margin-top: -30px;\n    width: 120px;\n    height: 60px;\n    background: #ffffff;\n    background: #f8049c!important;\n    line-height: 60px;\n    font-size: 14px;\n    font-weight: 800;\n    z-index: 100;\n}\n\n/*lementor-menu-cart__footer-buttons */\n.elementor-button--view-cart {\n    display: var(--view-cart-button-display,inline-block);\n    color: var(--view-cart-button-text-color,#ffffff);\n    padding: var(--view-cart-button-padding,15px);\n    background-color: var(--view-cart-button-background-color,#f8049c);','hello-elementor','','publish','closed','closed','','hello-elementor','','','2023-01-08 01:37:53','2023-01-08 01:37:53','',0,'https://choiceresources.co.uk/2022/06/02/hello-elementor/',0,'custom_css','',0),
(7396,1,'2022-06-02 20:22:32','2022-06-02 20:22:32','','Order &ndash; June 2, 2022 @ 08:22 PM','','wc-completed','closed','closed','wc_order_X6Upojdv7Dlg9','order-jun-02-2022-0822-pm','','','2022-06-02 20:32:18','2022-06-02 20:32:18','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7396',0,'shop_order','',2),
(7397,1,'2022-06-02 20:34:41','2022-06-02 20:34:41','','Order &ndash; June 2, 2022 @ 08:34 PM','','wc-cancelled','open','closed','wc_order_gBhQJhQ7P4NLz','order-jun-02-2022-0834-pm','','','2022-06-02 21:33:39','2022-06-02 21:33:39','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7397',0,'shop_order','',1),
(7400,1,'2022-06-02 20:42:55','2022-06-02 20:42:55','','Order &ndash; June 2, 2022 @ 08:42 PM','','wc-cancelled','open','closed','wc_order_bHNxG9LYTrtaa','order-jun-02-2022-0842-pm','','','2022-06-12 02:19:17','2022-06-12 02:19:17','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7400',0,'shop_order','',1),
(7401,1,'2022-06-02 20:49:17','2022-06-02 20:49:17','','Order &ndash; June 2, 2022 @ 08:49 PM','','wc-processing','open','closed','wc_order_vzli04wttpSS3','order-jun-02-2022-0849-pm','','','2022-06-02 20:50:51','2022-06-02 20:50:51','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7401',0,'shop_order','',2),
(7406,1,'2022-06-02 21:46:46','2022-06-02 21:46:46','','Order &ndash; June 2, 2022 @ 09:46 PM','','wc-on-hold','open','closed','wc_order_B0PssDJUySGYk','order-jun-02-2022-0946-pm','','','2022-06-02 21:47:46','2022-06-02 21:47:46','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7406',0,'shop_order','',1),
(7407,1,'2022-06-02 22:04:46','2022-06-02 22:04:46','','Order &ndash; June 2, 2022 @ 10:04 PM','','wc-cancelled','open','closed','wc_order_cFLteMkiVFk3h','order-jun-02-2022-1004-pm','','','2022-06-12 02:19:17','2022-06-12 02:19:17','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7407',0,'shop_order','',1),
(7411,1,'2022-06-02 23:46:34','2022-06-02 23:46:34','','Order &ndash; June 2, 2022 @ 11:46 PM','','wc-processing','open','closed','wc_order_qYAiV4svpnCvF','order-jun-02-2022-1146-pm','','','2022-06-02 23:47:33','2022-06-02 23:47:33','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7411',0,'shop_order','',2),
(7421,1,'2022-06-03 00:16:03','2022-06-03 00:16:03','','Order &ndash; June 3, 2022 @ 12:16 AM','','wc-processing','open','closed','wc_order_8bTVESbOMZdrh','order-jun-03-2022-1216-am','','','2022-06-03 00:16:03','2022-06-03 00:16:03','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7421',0,'shop_order','',1),
(7427,1,'2022-06-03 00:25:48','2022-06-03 00:25:48','','Order &ndash; June 3, 2022 @ 12:25 AM','','wc-processing','open','closed','wc_order_LqDRrIVZASjt6','order-jun-03-2022-1225-am','','','2022-06-03 00:25:49','2022-06-03 00:25:49','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7427',0,'shop_order','',2),
(7456,1,'2022-06-03 00:48:28','2022-06-03 00:48:28',' ','','','publish','closed','closed','','7456','','','2022-06-03 00:48:28','2022-06-03 00:48:28','',0,'https://choiceresources.co.uk/?p=7456',3,'nav_menu_item','',0),
(7558,1,'2022-06-05 17:46:59','2022-06-05 17:46:59','<ul>\n							<li>\n										Cart\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Information\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Finish\n									</li>\n						</ul>\n															<img width=\"1620\" height=\"750\" src=\"http://choiceresources.co.uk/wp-content/uploads/2022/06/banner4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2022/06/banner4.png 1620w, https://choiceresources.co.uk/wp-content/uploads/2022/06/banner4-300x139.png 300w, https://choiceresources.co.uk/wp-content/uploads/2022/06/banner4-1024x474.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2022/06/banner4-768x356.png 768w, https://choiceresources.co.uk/wp-content/uploads/2022/06/banner4-1536x711.png 1536w, https://choiceresources.co.uk/wp-content/uploads/2022/06/banner4-400x185.png 400w\" sizes=\"(max-width: 1620px) 100vw, 1620px\" />															\n		[woocommerce_cart ]		\n						<!--open container-->\n							<!--open column-1-->\n<form action=\"https://choiceresources.co.uk/cart-2/\" method=\"post\">\n						<!--open shop table div -->\n	<table cellspacing=\"0\">\n		<thead>\n			<tr>\n				<th>&nbsp;</th>\n				<th>&nbsp;</th>\n				<th>Product</th>\n				<th>Price</th>\n				<th>Quantity</th>\n				<th>Subtotal</th>\n			</tr>\n		</thead>\n		<tbody>\n								<tr>\n						<td>\n							<a href=\"https://choiceresources.co.uk/cart-2/?remove_item=af0a59d77edf6e178ec25cb090df864b&#038;_wpnonce=e7634bfdb4\" aria-label=\"Remove this item\" data-product_id=\"7158\" data-product_sku=\"\">&times;</a>						</td>\n						<td>\n						<a href=\"https://choiceresources.co.uk/product/maths-tracker/\"><img width=\"300\" height=\"424\" src=\"http://choiceresources.co.uk/wp-content/uploads/2022/06/2-300x424.png\" alt=\"\" loading=\"lazy\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2022/06/2-300x424.png 300w, https://choiceresources.co.uk/wp-content/uploads/2022/06/2-212x300.png 212w, https://choiceresources.co.uk/wp-content/uploads/2022/06/2-724x1024.png 724w, https://choiceresources.co.uk/wp-content/uploads/2022/06/2-768x1086.png 768w, https://choiceresources.co.uk/wp-content/uploads/2022/06/2-1086x1536.png 1086w, https://choiceresources.co.uk/wp-content/uploads/2022/06/2-400x566.png 400w, https://choiceresources.co.uk/wp-content/uploads/2022/06/2.png 1414w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>						</td>\n						<td data-title=\"Product\">\n						<a href=\"https://choiceresources.co.uk/product/maths-tracker/\">Maths Tracker</a>						</td>\n						<td data-title=\"Price\">\n							<bdi>&pound;6.99</bdi>						</td>\n						<td data-title=\"Quantity\">\n				<label for=\"quantity_629e4294e0c62\">Maths Tracker quantity</label>\n		<input\n			type=\"number\"\n			id=\"quantity_629e4294e0c62\"\n			class=\"input-text qty text\"\n			step=\"1\"\n			min=\"0\"\n			max=\"\"\n			name=\"cart[af0a59d77edf6e178ec25cb090df864b][qty]\"\n			value=\"1\"\n			title=\"Qty\"\n			size=\"4\"\n			placeholder=\"\"\n			inputmode=\"numeric\"\n			autocomplete=\"off\"\n		/>\n							</td>\n						<td data-title=\"Subtotal\">\n							<bdi>&pound;6.99</bdi>						</td>\n					</tr>\n										<tr>\n						<td>\n							<a href=\"https://choiceresources.co.uk/cart-2/?remove_item=228e338fddcdf62a8065110d0b5f87fb&#038;_wpnonce=e7634bfdb4\" aria-label=\"Remove this item\" data-product_id=\"6706\" data-product_sku=\"\">&times;</a>						</td>\n						<td>\n						<a href=\"https://choiceresources.co.uk/product/interactive-number-story/\"><img width=\"300\" height=\"424\" src=\"http://choiceresources.co.uk/wp-content/uploads/2022/06/1-300x424.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2022/06/1-300x424.jpg 300w, https://choiceresources.co.uk/wp-content/uploads/2022/06/1-400x566.jpg 400w, https://choiceresources.co.uk/wp-content/uploads/2022/06/1-212x300.jpg 212w, https://choiceresources.co.uk/wp-content/uploads/2022/06/1-724x1024.jpg 724w, https://choiceresources.co.uk/wp-content/uploads/2022/06/1-768x1086.jpg 768w, https://choiceresources.co.uk/wp-content/uploads/2022/06/1-1086x1536.jpg 1086w, https://choiceresources.co.uk/wp-content/uploads/2022/06/1.jpg 1414w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>						</td>\n						<td data-title=\"Product\">\n						<a href=\"https://choiceresources.co.uk/product/interactive-number-story/\">Interactive Number Story</a>						</td>\n						<td data-title=\"Price\">\n							<bdi>&pound;4.99</bdi>						</td>\n						<td data-title=\"Quantity\">\n				<label for=\"quantity_629e4294e135a\">Interactive Number Story quantity</label>\n		<input\n			type=\"number\"\n			id=\"quantity_629e4294e135a\"\n			class=\"input-text qty text\"\n			step=\"1\"\n			min=\"0\"\n			max=\"\"\n			name=\"cart[228e338fddcdf62a8065110d0b5f87fb][qty]\"\n			value=\"1\"\n			title=\"Qty\"\n			size=\"4\"\n			placeholder=\"\"\n			inputmode=\"numeric\"\n			autocomplete=\"off\"\n		/>\n							</td>\n						<td data-title=\"Subtotal\">\n							<bdi>&pound;4.99</bdi>						</td>\n					</tr>\n										<tr>\n						<td>\n							<a href=\"https://choiceresources.co.uk/cart-2/?remove_item=400e5e6a7ce0c754f281525fae75a873&#038;_wpnonce=e7634bfdb4\" aria-label=\"Remove this item\" data-product_id=\"6575\" data-product_sku=\"\">&times;</a>						</td>\n						<td>\n						<a href=\"https://choiceresources.co.uk/product/jericho-letter/\"><img width=\"300\" height=\"424\" src=\"http://choiceresources.co.uk/wp-content/uploads/2022/05/Jericho-Worksheet-300x424.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2022/05/Jericho-Worksheet-300x424.jpg 300w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Jericho-Worksheet-212x300.jpg 212w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Jericho-Worksheet-724x1024.jpg 724w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Jericho-Worksheet-768x1086.jpg 768w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Jericho-Worksheet-1086x1536.jpg 1086w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Jericho-Worksheet-600x849.jpg 600w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Jericho-Worksheet.jpg 1414w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>						</td>\n						<td data-title=\"Product\">\n						<a href=\"https://choiceresources.co.uk/product/jericho-letter/\">Jericho Letter</a>						</td>\n						<td data-title=\"Price\">\n							<bdi>&pound;3.99</bdi>						</td>\n						<td data-title=\"Quantity\">\n				<label for=\"quantity_629e4294e1977\">Jericho Letter quantity</label>\n		<input\n			type=\"number\"\n			id=\"quantity_629e4294e1977\"\n			class=\"input-text qty text\"\n			step=\"1\"\n			min=\"0\"\n			max=\"\"\n			name=\"cart[400e5e6a7ce0c754f281525fae75a873][qty]\"\n			value=\"1\"\n			title=\"Qty\"\n			size=\"4\"\n			placeholder=\"\"\n			inputmode=\"numeric\"\n			autocomplete=\"off\"\n		/>\n							</td>\n						<td data-title=\"Subtotal\">\n							<bdi>&pound;3.99</bdi>						</td>\n					</tr>\n										<tr>\n						<td>\n							<a href=\"https://choiceresources.co.uk/cart-2/?remove_item=ac71e0079799a57cc6616312cbbbaf84&#038;_wpnonce=e7634bfdb4\" aria-label=\"Remove this item\" data-product_id=\"5663\" data-product_sku=\"\">&times;</a>						</td>\n						<td>\n						<a href=\"https://choiceresources.co.uk/product/spellings-booklet/\"><img width=\"300\" height=\"425\" src=\"http://choiceresources.co.uk/wp-content/uploads/2022/05/Bible-Puzzles-Booklet-600x849.png\" alt=\"\" loading=\"lazy\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2022/05/Bible-Puzzles-Booklet-600x849.png 600w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Bible-Puzzles-Booklet-212x300.png 212w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Bible-Puzzles-Booklet-724x1024.png 724w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Bible-Puzzles-Booklet-768x1086.png 768w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Bible-Puzzles-Booklet-1086x1536.png 1086w, https://choiceresources.co.uk/wp-content/uploads/2022/05/Bible-Puzzles-Booklet.png 1414w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>						</td>\n						<td data-title=\"Product\">\n						<a href=\"https://choiceresources.co.uk/product/spellings-booklet/\">Letter Changer</a>						</td>\n						<td data-title=\"Price\">\n							<bdi>&pound;1.00</bdi>						</td>\n						<td data-title=\"Quantity\">\n				<label for=\"quantity_629e4294e2064\">Letter Changer quantity</label>\n		<input\n			type=\"number\"\n			id=\"quantity_629e4294e2064\"\n			class=\"input-text qty text\"\n			step=\"1\"\n			min=\"0\"\n			max=\"\"\n			name=\"cart[ac71e0079799a57cc6616312cbbbaf84][qty]\"\n			value=\"1\"\n			title=\"Qty\"\n			size=\"4\"\n			placeholder=\"\"\n			inputmode=\"numeric\"\n			autocomplete=\"off\"\n		/>\n							</td>\n						<td data-title=\"Subtotal\">\n							<bdi>&pound;1.00</bdi>						</td>\n					</tr>\n										<tr>\n						<td>\n							<a href=\"https://choiceresources.co.uk/cart-2/?remove_item=4d386d01419c083e8df5de53eb5a0254&#038;_wpnonce=e7634bfdb4\" aria-label=\"Remove this item\" data-product_id=\"5666\" data-product_sku=\"\">&times;</a>						</td>\n						<td>\n						<a href=\"https://choiceresources.co.uk/product/bible-four-in-a-row/\"><img width=\"300\" height=\"425\" src=\"http://choiceresources.co.uk/wp-content/uploads/2022/05/4-in-a-row-1-600x849.png\" alt=\"\" loading=\"lazy\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2022/05/4-in-a-row-1-600x849.png 600w, https://choiceresources.co.uk/wp-content/uploads/2022/05/4-in-a-row-1-212x300.png 212w, https://choiceresources.co.uk/wp-content/uploads/2022/05/4-in-a-row-1-724x1024.png 724w, https://choiceresources.co.uk/wp-content/uploads/2022/05/4-in-a-row-1-768x1086.png 768w, https://choiceresources.co.uk/wp-content/uploads/2022/05/4-in-a-row-1-1086x1536.png 1086w, https://choiceresources.co.uk/wp-content/uploads/2022/05/4-in-a-row-1.png 1414w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>						</td>\n						<td data-title=\"Product\">\n						<a href=\"https://choiceresources.co.uk/product/bible-four-in-a-row/\">Bible 4-in-a-Row</a>						</td>\n						<td data-title=\"Price\">\n							<bdi>&pound;1.00</bdi>						</td>\n						<td data-title=\"Quantity\">\n				<label for=\"quantity_629e4294e26c3\">Bible 4-in-a-Row quantity</label>\n		<input\n			type=\"number\"\n			id=\"quantity_629e4294e26c3\"\n			class=\"input-text qty text\"\n			step=\"1\"\n			min=\"0\"\n			max=\"\"\n			name=\"cart[4d386d01419c083e8df5de53eb5a0254][qty]\"\n			value=\"1\"\n			title=\"Qty\"\n			size=\"4\"\n			placeholder=\"\"\n			inputmode=\"numeric\"\n			autocomplete=\"off\"\n		/>\n							</td>\n						<td data-title=\"Subtotal\">\n							<bdi>&pound;1.00</bdi>						</td>\n					</tr>\n			<tr>\n				<td colspan=\"6\">\n					<button type=\"submit\" name=\"update_cart\" value=\"Update Cart\">Update Cart</button>\n					<input type=\"hidden\" id=\"woocommerce-cart-nonce\" name=\"woocommerce-cart-nonce\" value=\"e7634bfdb4\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" />				</td>\n			</tr>\n					</tbody>\n	</table>\n					<!--close shop table div -->\n					<input type=\"text\" name=\"coupon_code\" id=\"coupon_code\" value=\"\" placeholder=\"Coupon code\" />\n					<button name=\"apply_coupon\" type=\"submit\" value=\"Apply coupon\">Apply coupon</button>\n		</form>\n						<!--close column-1-->\n							<!--open column-2-->\n									<!--open column-inner-->\n										<!--open cart-totals-->\n	<h2>Cart Totals</h2>\n	<table cellspacing=\"0\">\n		<tr>\n			<th>Subtotal</th>\n			<td data-title=\"Subtotal\"><bdi>&pound;17.97</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td data-title=\"Total\"><strong><bdi>&pound;17.97</bdi></strong> </td>\n		</tr>\n	</table>\n<a href=\"https://choiceresources.co.uk/checkout/\">\n	Proceed to Checkout</a>\n									<!--close cart-totals-->\n									<!--close column-inner-->\n							<!--close column-2-->\n						<!--close container-->','Cart 2','','publish','closed','closed','','cart-2','','','2022-06-06 18:08:20','2022-06-06 18:08:20','',0,'https://choiceresources.co.uk/?page_id=7558',0,'page','',0),
(7645,1,'2022-06-06 10:40:34','2022-06-06 10:40:34','','Order &ndash; June 6, 2022 @ 10:40 AM','','wc-on-hold','open','closed','wc_order_atsIP1XqGWN9i','order-jun-06-2022-1040-am','','','2022-06-06 11:16:37','2022-06-06 11:16:37','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7645',0,'shop_order','',1),
(7701,1,'2022-06-06 12:39:49','2022-06-06 12:39:49','','Order &ndash; June 6, 2022 @ 12:39 PM','','wc-on-hold','open','closed','wc_order_j71uXh0RHYbhc','order-jun-06-2022-1239-pm','','','2022-06-06 12:40:45','2022-06-06 12:40:45','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7701',0,'shop_order','',1),
(7702,1,'2022-06-06 12:42:58','2022-06-06 12:42:58','','Order &ndash; June 6, 2022 @ 12:42 PM','','wc-on-hold','open','closed','wc_order_eoPeLFXvjTiGD','order-jun-06-2022-1242-pm','','','2022-06-06 12:46:31','2022-06-06 12:46:31','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7702',0,'shop_order','',1),
(7931,1,'2022-06-06 13:22:29','2022-06-06 13:22:29','','Order &ndash; June 6, 2022 @ 01:22 PM','','wc-on-hold','open','closed','wc_order_cySXycKAFATFU','order-jun-06-2022-0122-pm','','','2022-06-06 13:24:43','2022-06-06 13:24:43','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7931',0,'shop_order','',1),
(7932,1,'2022-06-06 13:27:20','2022-06-06 13:27:20','','Order &ndash; June 6, 2022 @ 01:27 PM','','wc-on-hold','open','closed','wc_order_bWp5DSEEMIfW4','order-jun-06-2022-0127-pm','','','2022-06-06 13:27:42','2022-06-06 13:27:42','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7932',0,'shop_order','',1),
(7944,1,'2022-06-06 14:09:37','2022-06-06 14:09:37','','Order &ndash; June 6, 2022 @ 02:09 PM','','wc-on-hold','open','closed','wc_order_urvvb1oJQoBpl','order-jun-06-2022-0209-pm','','','2022-06-06 14:10:35','2022-06-06 14:10:35','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7944',0,'shop_order','',1),
(7949,1,'2022-06-06 14:18:23','2022-06-06 14:18:23','','Order &ndash; June 6, 2022 @ 02:18 PM','','wc-on-hold','open','closed','wc_order_RinbH6XF5ul40','order-jun-06-2022-0218-pm','','','2022-06-06 14:18:46','2022-06-06 14:18:46','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7949',0,'shop_order','',1),
(7959,1,'2022-06-06 14:24:10','2022-06-06 14:24:10','','Order &ndash; June 6, 2022 @ 02:24 PM','','wc-on-hold','open','closed','wc_order_JSI6E6SDkQZBQ','order-jun-06-2022-0224-pm','','','2022-06-06 14:24:35','2022-06-06 14:24:35','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=7959',0,'shop_order','',1),
(7962,1,'2022-06-06 15:07:39','2022-06-06 15:07:39','','','','publish','closed','closed','','7962','','','2022-06-06 15:07:39','2022-06-06 15:07:39','',0,'https://choiceresources.co.uk/?cartflows_flow=7962',0,'cartflows_flow','',0),
(8077,1,'2022-06-06 15:12:23','2022-06-06 15:12:23','','Global Checkout','','publish','closed','closed','','global-checkout','','','2022-06-06 15:12:23','2022-06-06 15:12:23','',0,'https://choiceresources.co.uk/cartflows_step/global-checkout/',0,'cartflows_step','',0),
(8120,1,'2022-06-06 15:15:44','2022-06-06 15:15:44','','Global Checkout','','publish','closed','closed','','8120','','','2022-06-06 15:52:16','2022-06-06 15:52:16','',0,'https://choiceresources.co.uk/?cartflows_flow=8120',0,'cartflows_flow','',0),
(8121,1,'2022-06-06 15:15:44','2022-06-06 15:15:44','<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Cart\n									</li>\n						</ul>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Information\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Finish\n									</li>\n						</ul>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"http://choiceresources.co.uk/wp-content/uploads/2022/06/banner4.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n<!-- CHECKOUT SHORTCODE -->\n<!-- Mobile responsive order review template -->\n			Show Order Summary\n		&pound;0.00 GBP\n<table data-update-time=\"1715282993\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n		<tr>\n			<th>Subtotal</th>\n			<td><bdi>&pound;0.00</bdi></td>\n		</tr>\n										<tr>\n			<th>Total</th>\n			<td><strong><bdi>&pound;0.00</bdi> GBP</strong> </td>\n		</tr>\n	</tfoot>\n</table>\n					<!-- Order review coupon field -->\n						<input type=\"text\" name=\"coupon_code\" placeholder=\"Coupon Code\" id=\"order_review_coupon_code\" value=\"\">\n						<button type=\"button\" name=\"apply_coupon\" value=\"Apply\">Apply</button>\n<form name=\"checkout\" method=\"post\" action=\"https://choiceresources.co.uk/checkout/\" enctype=\"multipart/form-data\">\n					<h3 id=\"customer_information_heading\">Customer information											</h3>\n													  Welcome Back admin ( ivankulongo@gmail.com )									<input type=\"hidden\" id=\"billing_email\" name=\"billing_email\" value=\"ivankulongo@gmail.com\"/>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">First name&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"First name&nbsp;*\"  value=\"Ivan\" autocomplete=\"given-name\" /></p><p id=\"billing_last_name_field\" data-priority=\"20\"><label for=\"billing_last_name\">Last name&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_last_name\" id=\"billing_last_name\" placeholder=\"Last name&nbsp;*\"  value=\"Kulongo\" autocomplete=\"family-name\" /></p><p id=\"billing_company_field\" data-priority=\"30\"><label for=\"billing_company\">Company name&nbsp;(optional)</label><input type=\"text\" name=\"billing_company\" id=\"billing_company\" placeholder=\"Company name\"  value=\"\" autocomplete=\"organization\" /></p><p id=\"billing_country_field\" data-priority=\"40\"><label for=\"billing_country\">Country / Region&nbsp;<abbr title=\"required\">*</abbr></label><select name=\"billing_country\" id=\"billing_country\" autocomplete=\"country\" data-placeholder=\"Country / Region&nbsp;*\" data-label=\"Country / Region\"><option value=\"\">Select a country / region&hellip;</option><option value=\"AF\" >Afghanistan</option><option value=\"AX\" >Ã…land Islands</option><option value=\"AL\" >Albania</option><option value=\"DZ\" >Algeria</option><option value=\"AS\" >American Samoa</option><option value=\"AD\" >Andorra</option><option value=\"AO\" >Angola</option><option value=\"AI\" >Anguilla</option><option value=\"AQ\" >Antarctica</option><option value=\"AG\" >Antigua and Barbuda</option><option value=\"AR\" >Argentina</option><option value=\"AM\" >Armenia</option><option value=\"AW\" >Aruba</option><option value=\"AU\" >Australia</option><option value=\"AT\" >Austria</option><option value=\"AZ\" >Azerbaijan</option><option value=\"BS\" >Bahamas</option><option value=\"BH\" >Bahrain</option><option value=\"BD\" >Bangladesh</option><option value=\"BB\" >Barbados</option><option value=\"BY\" >Belarus</option><option value=\"PW\" >Belau</option><option value=\"BE\" >Belgium</option><option value=\"BZ\" >Belize</option><option value=\"BJ\" >Benin</option><option value=\"BM\" >Bermuda</option><option value=\"BT\" >Bhutan</option><option value=\"BO\" >Bolivia</option><option value=\"BQ\" >Bonaire, Saint Eustatius and Saba</option><option value=\"BA\" >Bosnia and Herzegovina</option><option value=\"BW\" >Botswana</option><option value=\"BV\" >Bouvet Island</option><option value=\"BR\" >Brazil</option><option value=\"IO\" >British Indian Ocean Territory</option><option value=\"BN\" >Brunei</option><option value=\"BG\" >Bulgaria</option><option value=\"BF\" >Burkina Faso</option><option value=\"BI\" >Burundi</option><option value=\"KH\" >Cambodia</option><option value=\"CM\" >Cameroon</option><option value=\"CA\" >Canada</option><option value=\"CV\" >Cape Verde</option><option value=\"KY\" >Cayman Islands</option><option value=\"CF\" >Central African Republic</option><option value=\"TD\" >Chad</option><option value=\"CL\" >Chile</option><option value=\"CN\" >China</option><option value=\"CX\" >Christmas Island</option><option value=\"CC\" >Cocos (Keeling) Islands</option><option value=\"CO\" >Colombia</option><option value=\"KM\" >Comoros</option><option value=\"CG\" >Congo (Brazzaville)</option><option value=\"CD\" >Congo (Kinshasa)</option><option value=\"CK\" >Cook Islands</option><option value=\"CR\" >Costa Rica</option><option value=\"HR\" >Croatia</option><option value=\"CU\" >Cuba</option><option value=\"CW\" >Cura&ccedil;ao</option><option value=\"CY\" >Cyprus</option><option value=\"CZ\" >Czech Republic</option><option value=\"DK\" >Denmark</option><option value=\"DJ\" >Djibouti</option><option value=\"DM\" >Dominica</option><option value=\"DO\" >Dominican Republic</option><option value=\"EC\" >Ecuador</option><option value=\"EG\" >Egypt</option><option value=\"SV\" >El Salvador</option><option value=\"GQ\" >Equatorial Guinea</option><option value=\"ER\" >Eritrea</option><option value=\"EE\" >Estonia</option><option value=\"SZ\" >Eswatini</option><option value=\"ET\" >Ethiopia</option><option value=\"FK\" >Falkland Islands</option><option value=\"FO\" >Faroe Islands</option><option value=\"FJ\" >Fiji</option><option value=\"FI\" >Finland</option><option value=\"FR\" >France</option><option value=\"GF\" >French Guiana</option><option value=\"PF\" >French Polynesia</option><option value=\"TF\" >French Southern Territories</option><option value=\"GA\" >Gabon</option><option value=\"GM\" >Gambia</option><option value=\"GE\" >Georgia</option><option value=\"DE\" >Germany</option><option value=\"GH\" >Ghana</option><option value=\"GI\" >Gibraltar</option><option value=\"GR\" >Greece</option><option value=\"GL\" >Greenland</option><option value=\"GD\" >Grenada</option><option value=\"GP\" >Guadeloupe</option><option value=\"GU\" >Guam</option><option value=\"GT\" >Guatemala</option><option value=\"GG\" >Guernsey</option><option value=\"GN\" >Guinea</option><option value=\"GW\" >Guinea-Bissau</option><option value=\"GY\" >Guyana</option><option value=\"HT\" >Haiti</option><option value=\"HM\" >Heard Island and McDonald Islands</option><option value=\"HN\" >Honduras</option><option value=\"HK\" >Hong Kong</option><option value=\"HU\" >Hungary</option><option value=\"IS\" >Iceland</option><option value=\"IN\" >India</option><option value=\"ID\" >Indonesia</option><option value=\"IR\" >Iran</option><option value=\"IQ\" >Iraq</option><option value=\"IE\" >Ireland</option><option value=\"IM\" >Isle of Man</option><option value=\"IL\" >Israel</option><option value=\"IT\" >Italy</option><option value=\"CI\" >Ivory Coast</option><option value=\"JM\" >Jamaica</option><option value=\"JP\" >Japan</option><option value=\"JE\" >Jersey</option><option value=\"JO\" >Jordan</option><option value=\"KZ\" >Kazakhstan</option><option value=\"KE\" >Kenya</option><option value=\"KI\" >Kiribati</option><option value=\"KW\" >Kuwait</option><option value=\"KG\" >Kyrgyzstan</option><option value=\"LA\" >Laos</option><option value=\"LV\" >Latvia</option><option value=\"LB\" >Lebanon</option><option value=\"LS\" >Lesotho</option><option value=\"LR\" >Liberia</option><option value=\"LY\" >Libya</option><option value=\"LI\" >Liechtenstein</option><option value=\"LT\" >Lithuania</option><option value=\"LU\" >Luxembourg</option><option value=\"MO\" >Macao</option><option value=\"MG\" >Madagascar</option><option value=\"MW\" >Malawi</option><option value=\"MY\" >Malaysia</option><option value=\"MV\" >Maldives</option><option value=\"ML\" >Mali</option><option value=\"MT\" >Malta</option><option value=\"MH\" >Marshall Islands</option><option value=\"MQ\" >Martinique</option><option value=\"MR\" >Mauritania</option><option value=\"MU\" >Mauritius</option><option value=\"YT\" >Mayotte</option><option value=\"MX\" >Mexico</option><option value=\"FM\" >Micronesia</option><option value=\"MD\" >Moldova</option><option value=\"MC\" >Monaco</option><option value=\"MN\" >Mongolia</option><option value=\"ME\" >Montenegro</option><option value=\"MS\" >Montserrat</option><option value=\"MA\" >Morocco</option><option value=\"MZ\" >Mozambique</option><option value=\"MM\" >Myanmar</option><option value=\"NA\" >Namibia</option><option value=\"NR\" >Nauru</option><option value=\"NP\" >Nepal</option><option value=\"NL\" >Netherlands</option><option value=\"NC\" >New Caledonia</option><option value=\"NZ\" >New Zealand</option><option value=\"NI\" >Nicaragua</option><option value=\"NE\" >Niger</option><option value=\"NG\" >Nigeria</option><option value=\"NU\" >Niue</option><option value=\"NF\" >Norfolk Island</option><option value=\"KP\" >North Korea</option><option value=\"MK\" >North Macedonia</option><option value=\"MP\" >Northern Mariana Islands</option><option value=\"NO\" >Norway</option><option value=\"OM\" >Oman</option><option value=\"PK\" >Pakistan</option><option value=\"PS\" >Palestinian Territory</option><option value=\"PA\" >Panama</option><option value=\"PG\" >Papua New Guinea</option><option value=\"PY\" >Paraguay</option><option value=\"PE\" >Peru</option><option value=\"PH\" >Philippines</option><option value=\"PN\" >Pitcairn</option><option value=\"PL\" >Poland</option><option value=\"PT\" >Portugal</option><option value=\"PR\" >Puerto Rico</option><option value=\"QA\" >Qatar</option><option value=\"RE\" >Reunion</option><option value=\"RO\" >Romania</option><option value=\"RU\" >Russia</option><option value=\"RW\" >Rwanda</option><option value=\"ST\" >S&atilde;o Tom&eacute; and Pr&iacute;ncipe</option><option value=\"BL\" >Saint Barth&eacute;lemy</option><option value=\"SH\" >Saint Helena</option><option value=\"KN\" >Saint Kitts and Nevis</option><option value=\"LC\" >Saint Lucia</option><option value=\"SX\" >Saint Martin (Dutch part)</option><option value=\"MF\" >Saint Martin (French part)</option><option value=\"PM\" >Saint Pierre and Miquelon</option><option value=\"VC\" >Saint Vincent and the Grenadines</option><option value=\"WS\" >Samoa</option><option value=\"SM\" >San Marino</option><option value=\"SA\" >Saudi Arabia</option><option value=\"SN\" >Senegal</option><option value=\"RS\" >Serbia</option><option value=\"SC\" >Seychelles</option><option value=\"SL\" >Sierra Leone</option><option value=\"SG\" >Singapore</option><option value=\"SK\" >Slovakia</option><option value=\"SI\" >Slovenia</option><option value=\"SB\" >Solomon Islands</option><option value=\"SO\" >Somalia</option><option value=\"ZA\" >South Africa</option><option value=\"GS\" >South Georgia/Sandwich Islands</option><option value=\"KR\" >South Korea</option><option value=\"SS\" >South Sudan</option><option value=\"ES\" >Spain</option><option value=\"LK\" >Sri Lanka</option><option value=\"SD\" >Sudan</option><option value=\"SR\" >Suriname</option><option value=\"SJ\" >Svalbard and Jan Mayen</option><option value=\"SE\" >Sweden</option><option value=\"CH\" >Switzerland</option><option value=\"SY\" >Syria</option><option value=\"TW\" >Taiwan</option><option value=\"TJ\" >Tajikistan</option><option value=\"TZ\" >Tanzania</option><option value=\"TH\" >Thailand</option><option value=\"TL\" >Timor-Leste</option><option value=\"TG\" >Togo</option><option value=\"TK\" >Tokelau</option><option value=\"TO\" >Tonga</option><option value=\"TT\" >Trinidad and Tobago</option><option value=\"TN\" >Tunisia</option><option value=\"TR\" >Turkey</option><option value=\"TM\" >Turkmenistan</option><option value=\"TC\" >Turks and Caicos Islands</option><option value=\"TV\" >Tuvalu</option><option value=\"UG\" >Uganda</option><option value=\"UA\" >Ukraine</option><option value=\"AE\" >United Arab Emirates</option><option value=\"GB\"  selected=\'selected\'>United Kingdom (UK)</option><option value=\"US\" >United States (US)</option><option value=\"UM\" >United States (US) Minor Outlying Islands</option><option value=\"UY\" >Uruguay</option><option value=\"UZ\" >Uzbekistan</option><option value=\"VU\" >Vanuatu</option><option value=\"VA\" >Vatican</option><option value=\"VE\" >Venezuela</option><option value=\"VN\" >Vietnam</option><option value=\"VG\" >Virgin Islands (British)</option><option value=\"VI\" >Virgin Islands (US)</option><option value=\"WF\" >Wallis and Futuna</option><option value=\"EH\" >Western Sahara</option><option value=\"YE\" >Yemen</option><option value=\"ZM\" >Zambia</option><option value=\"ZW\" >Zimbabwe</option></select><noscript><button type=\"submit\" name=\"woocommerce_checkout_update_totals\" value=\"Update country / region\">Update country / region</button></noscript></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">Street address&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name&nbsp;*\"  value=\"22 Seymour Road\" autocomplete=\"address-line1\" /></p><p id=\"billing_address_2_field\" data-priority=\"60\"><label for=\"billing_address_2\">Apartment, suite, unit, etc.&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_2\" id=\"billing_address_2\" placeholder=\"Apartment, suite, unit, etc. (optional)\"  value=\"\" autocomplete=\"address-line2\" /></p><p id=\"billing_city_field\" data-priority=\"70\"><label for=\"billing_city\">Town / City&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_city\" id=\"billing_city\" placeholder=\"Town / City&nbsp;*\"  value=\"Dagenham\" autocomplete=\"address-level2\" /></p><p id=\"billing_state_field\" data-priority=\"80\"><label for=\"billing_state\">County&nbsp;(optional)</label><input type=\"text\" value=\"Kent\"  placeholder=\"County\" name=\"billing_state\" id=\"billing_state\" autocomplete=\"address-level1\" data-input-classes=\"\"/></p><p id=\"billing_postcode_field\" data-priority=\"90\"><label for=\"billing_postcode\">Postcode&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_postcode\" id=\"billing_postcode\" placeholder=\"Postcode&nbsp;*\"  value=\"RM9 5DR\" autocomplete=\"postal-code\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">Phone&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"Phone&nbsp;*\"  value=\"782873017\" autocomplete=\"tel\" /></p><p id=\"billing_email_field\" data-priority=\"110\"><label for=\"billing_email\">Email address&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"email\" name=\"billing_email\" id=\"billing_email\" placeholder=\"Email address&nbsp;*\"  value=\"ivankulongo@gmail.com\" autocomplete=\"email username\" /></p>	\n			<h3>Additional information</h3>\n							<p id=\"order_comments_field\" data-priority=\"\"><label for=\"order_comments\">Order notes&nbsp;(optional)</label><textarea name=\"order_comments\" id=\"order_comments\" placeholder=\"Notes about your order, e.g. special notes for delivery.\"  rows=\"2\" cols=\"5\"></textarea></p>					\n	<input type=\"hidden\" name=\"wc_order_attribution_type\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_url\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_utm_campaign\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_utm_source\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_utm_medium\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_utm_content\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_utm_id\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_utm_term\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_session_entry\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_session_start_time\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_session_pages\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_session_count\" value=\"\" /><input type=\"hidden\" name=\"wc_order_attribution_user_agent\" value=\"\" /><input type=\"hidden\" name=\"_wcf_flow_id\" value=\"8120\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"8121\">\n			<h3 id=\"payment_options_heading\">Payment</h3>\n		<noscript>\n			Since your browser does not support JavaScript, or it is disabled, please ensure you click the <em>Update Totals</em> button before placing your order. You may be charged more than the amount stated above if you fail to do so.			<br/><button type=\"submit\" name=\"woocommerce_checkout_update_totals\" value=\"Update totals\">Update totals</button>\n		</noscript>\n		<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\"https://choiceresources.co.uk/privacy-policy/\" target=\"_blank\" rel=\"noopener\">privacy policy</a>.</p>\n		<button type=\"submit\" name=\"woocommerce_checkout_place_order\" id=\"place_order\" value=\"Place Order&nbsp;&nbsp;&pound;0.00 GBP\" data-value=\"Place Order&nbsp;&nbsp;&pound;0.00 GBP\">Place Order&nbsp;&nbsp;&pound;0.00 GBP</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"db94169906\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" />	\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1715282993\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n		<tr>\n			<th>Subtotal</th>\n			<td><bdi>&pound;0.00</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&pound;0.00</bdi> GBP</strong> </td>\n		</tr>\n	</tfoot>\n</table>\n					<input type=\"text\" name=\"coupon_code\" placeholder=\"Coupon Code\" id=\"coupon_code\" value=\"\">\n					<button type=\"button\" name=\"apply_coupon\" value=\"Apply\">Apply</button>\n</form>\n<!-- END CHECKOUT SHORTCODE -->','Store Checkout 02','','publish','closed','closed','','store-checkout-02','','','2024-05-09 19:29:53','2024-05-09 19:29:53','',0,'https://choiceresources.co.uk/cartflows_step/store-checkout-02/',0,'cartflows_step','',0),
(8122,1,'2022-06-06 15:15:46','2022-06-06 15:15:46','<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Cart\n									</li>\n						</ul>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Information\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Finish\n									</li>\n						</ul>\n			<p>Your order has been successful</p>\n						<ul>\n				<li>\n					Order number:					<strong>34654</strong>\n				</li>\n				<li>\n					Date:					<strong>May 9, 2024</strong>\n				</li>\n									<li>\n						Email:						<strong>ivankulongo@gmail.com</strong>\n					</li>\n				<li>\n					Total:					<strong><bdi>&pound;9.95</bdi> GBP</strong>\n				</li>\n									<li>\n						Payment method:						<strong>Visa credit card</strong>\n					</li>\n			</ul>\n					<section>\n		<h2>Order details</h2>\n		<table>\n			<thead>\n				<tr>\n					<th>Product</th>\n					<th>Total</th>\n				</tr>\n			</thead>\n			<tbody>\n				<tr>\n	<td>\n		Product 4 <strong>&times;&nbsp;3</strong>	</td>\n	<td>\n		<bdi>&pound;6.00</bdi>	</td>\n</tr>\n			</tbody>\n			<tfoot>\n										<tr>\n							<th scope=\"row\">Subtotal:</th>\n							<td>&pound;6.00</td>\n						</tr>\n												<tr>\n							<th scope=\"row\">Shipping:</th>\n							<td>&pound;3.95&nbsp;<small>via Flat rate</small></td>\n						</tr>\n												<tr>\n							<th scope=\"row\">Payment method:</th>\n							<td>Visa credit card</td>\n						</tr>\n												<tr>\n							<th scope=\"row\">Total:</th>\n							<td>&pound;9.95 GBP</td>\n						</tr>\n													</tfoot>\n		</table>\n			</section>\n<section>\n	<section>\n	<h2>Billing address</h2>\n	<address>\n		Ivan Kulongo<br />22 Seymour Road<br />Dagenham<br />Kent<br />RM9 5DR\n					<p>782873017</p>\n					<p>ivankulongo@gmail.com</p>\n			</address>\n		<!-- /.col-1 -->\n			<h2>Shipping address</h2>\n			<address>\n				Ivan Kulongo<br />22 Seymour Road<br />Dagenham<br />Kent<br />RM9 5DR\n							</address>\n		<!-- /.col-2 -->\n	</section><!-- /.col2-set -->\n</section>\n			<a href=\"https://choiceresources.co.uk/choice-shop/\">\n									continue shopping\n					</a>','Store Checkout Thank You 02','','publish','closed','closed','','store-checkout-thank-you-02','','','2024-05-09 19:36:01','2024-05-09 19:36:01','',0,'https://choiceresources.co.uk/cartflows_step/store-checkout-thank-you-02/',0,'cartflows_step','',0),
(8243,1,'2022-06-06 16:02:35','2022-06-06 16:02:35','','Order &ndash; June 6, 2022 @ 04:02 PM','','wc-on-hold','open','closed','wc_order_Kksb8LROnjr1Z','order-jun-06-2022-0402-pm','','','2022-06-06 16:07:25','2022-06-06 16:07:25','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8243',0,'shop_order','',1),
(8259,1,'2022-06-06 16:57:30','2022-06-06 16:57:30','','Order &ndash; June 6, 2022 @ 04:57 PM','','wc-cancelled','open','closed','wc_order_wUKYFoK6tfjNC','order-jun-06-2022-0457-pm','','','2022-06-19 02:19:26','2022-06-19 02:19:26','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8259',0,'shop_order','',1),
(8272,1,'2022-06-06 17:32:39','2022-06-06 17:32:39','','Order &ndash; June 6, 2022 @ 05:32 PM','','wc-on-hold','open','closed','wc_order_H6gztI33MVX1V','order-jun-06-2022-0532-pm','','','2022-06-06 17:34:15','2022-06-06 17:34:15','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8272',0,'shop_order','',1),
(8275,1,'2022-06-06 17:47:07','2022-06-06 17:47:07','','Order &ndash; June 6, 2022 @ 05:47 PM','','wc-on-hold','open','closed','wc_order_2ytPMuhBaVtYq','order-jun-06-2022-0547-pm','','','2022-06-06 17:47:37','2022-06-06 17:47:37','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8275',0,'shop_order','',1),
(8284,1,'2022-06-06 18:09:06','2022-06-06 18:09:06','','Order &ndash; June 6, 2022 @ 06:09 PM','','wc-on-hold','open','closed','wc_order_UVdsovID7NwVp','order-jun-06-2022-0609-pm','','','2022-06-06 18:10:20','2022-06-06 18:10:20','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8284',0,'shop_order','',1),
(8285,1,'2022-06-06 18:22:23','2022-06-06 18:22:23','','Order &ndash; June 6, 2022 @ 06:22 PM','','wc-on-hold','open','closed','wc_order_wngoAOkADjm0H','order-jun-06-2022-0622-pm','','','2022-06-06 18:22:49','2022-06-06 18:22:49','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8285',0,'shop_order','',1),
(8287,1,'2022-06-06 19:26:02','2022-06-06 19:26:02','','Order &ndash; June 6, 2022 @ 07:26 PM','','wc-cancelled','open','closed','wc_order_LGqWxTCnVxNBc','order-jun-06-2022-0726-pm','','','2022-06-19 02:19:27','2022-06-19 02:19:27','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8287',0,'shop_order','',1),
(8289,1,'2022-06-06 21:19:31','2022-06-06 21:19:31','[wppb-edit-profile]','Edit Profile','','publish','closed','closed','','edit-profile','','','2022-06-06 21:19:31','2022-06-06 21:19:31','',0,'https://choiceresources.co.uk/edit-profile/',0,'page','',0),
(8331,1,'2022-06-07 16:09:49','2022-06-07 16:09:49','<h2>Sign-up!</h2>','Sign Up','','publish','closed','closed','','sign-up-2','','','2022-12-09 00:59:10','2022-12-09 00:59:10','',0,'https://choiceresources.co.uk/?page_id=8331',0,'page','',0),
(8354,1,'2022-06-07 16:49:57','2022-06-07 16:49:57','','Order &ndash; June 7, 2022 @ 04:49 PM','','wc-on-hold','open','closed','wc_order_Vh0UYq4Zfmdl5','order-jun-07-2022-0449-pm','','','2022-06-07 16:51:35','2022-06-07 16:51:35','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8354',0,'shop_order','',1),
(8380,1,'2022-06-07 20:53:13','2022-06-07 20:53:13','','Order &ndash; June 7, 2022 @ 08:53 PM','','wc-on-hold','open','closed','wc_order_A4jUqWmZYcCKF','order-jun-07-2022-0853-pm','','','2022-06-07 20:53:48','2022-06-07 20:53:48','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8380',0,'shop_order','',1),
(8392,1,'2022-06-07 23:53:32','2022-06-07 23:53:32','','Order &ndash; June 7, 2022 @ 11:53 PM','','wc-on-hold','open','closed','wc_order_lLiOSDJEQ7VVi','order-jun-07-2022-1153-pm','','','2022-06-07 23:54:11','2022-06-07 23:54:11','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8392',0,'shop_order','',1),
(8612,1,'2022-06-08 00:35:48','2022-06-08 00:35:48','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-hello-elementor','','','2022-06-08 00:35:48','2022-06-08 00:35:48','',0,'https://choiceresources.co.uk/2022/06/08/wp-global-styles-hello-elementor/',0,'wp_global_styles','',0),
(8627,1,'2022-12-14 23:08:23','0000-00-00 00:00:00','','Reset Password','','draft','closed','closed','','','','','2022-12-14 23:08:23','2022-12-14 23:08:23','',0,'https://choiceresources.co.uk/?post_type=forminator_forms&#038;p=8627',0,'forminator_forms','',0),
(8628,1,'2022-06-08 14:11:52','2022-06-08 14:11:52','[reset_password]','Reset Password','','draft','closed','closed','','reset-password','','','2024-05-09 21:42:44','2024-05-09 21:42:44','',0,'https://choiceresources.co.uk/?page_id=8628',0,'page','',0),
(8654,1,'2022-06-09 17:39:11','2022-06-09 17:39:11','','Order &ndash; June 9, 2022 @ 05:39 PM','','wc-on-hold','open','closed','wc_order_hKOqcAJmFgFsW','order-jun-09-2022-0539-pm','','','2022-06-09 17:40:05','2022-06-09 17:40:05','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8654',0,'shop_order','',1),
(8655,1,'2022-06-09 17:41:21','2022-06-09 17:41:21','','Order &ndash; June 9, 2022 @ 05:41 PM','','wc-on-hold','open','closed','wc_order_ClyFLdFS8wU6Q','order-jun-09-2022-0541-pm','','','2022-06-09 17:41:55','2022-06-09 17:41:55','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=8655',0,'shop_order','',1),
(8819,1,'2022-06-10 11:27:03','2022-06-10 11:27:03','','Elementor-post-screenshot_8696_2022-06-10-11-27-03_4874f6e1.png','','inherit','open','closed','','elementor-post-screenshot_8696_2022-06-10-11-27-03_4874f6e1-png','','','2022-06-10 11:27:03','2022-06-10 11:27:03','',0,'https://choiceresources.co.uk/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_8696_2022-06-10-11-27-03_4874f6e1.png',0,'attachment','image/png',0),
(10606,1,'2022-07-01 00:03:23','2022-06-15 23:18:05','','Dot-to-dot colouring','','publish','closed','closed','','dot-to-dots','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10606',2,'nav_menu_item','',0),
(10628,1,'2022-07-01 00:03:23','2022-06-16 09:03:16','','Odd-one-out','','publish','closed','closed','','odd-one-out','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10628',3,'nav_menu_item','',0),
(10629,1,'2022-07-01 00:03:23','2022-06-16 09:03:16','','Spot The Difference','','publish','closed','closed','','spot-the-difference','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10629',4,'nav_menu_item','',0),
(10630,1,'2022-07-01 00:03:23','2022-06-16 09:03:16','','Mazes','','publish','closed','closed','','mazes','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10630',5,'nav_menu_item','',0),
(10631,1,'2022-07-01 00:03:23','2022-06-16 09:03:16','','Matching','','publish','closed','closed','','matching','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10631',6,'nav_menu_item','',0),
(10632,1,'2022-07-01 00:03:23','2022-06-16 09:03:16','','ABC Feelings Phonics','','publish','closed','closed','','abc-feelings-phonics','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10632',10,'nav_menu_item','',0),
(10633,1,'2022-07-01 00:03:23','2022-06-16 09:03:16','','Activities','','publish','closed','closed','','activities','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10633',1,'nav_menu_item','',0),
(10634,1,'2022-07-01 00:03:23','2022-06-16 09:03:16','','Alphabet','','publish','closed','closed','','alphabet','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10634',9,'nav_menu_item','',0),
(10635,1,'2022-07-01 00:03:23','2022-06-16 09:03:16','','Alphabet Tracing','','publish','closed','closed','','alphabet-tracing','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10635',11,'nav_menu_item','',0),
(10636,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Alphabet Charts','','publish','closed','closed','','alphabet-charts','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10636',12,'nav_menu_item','',0),
(10644,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Colouring','','publish','closed','closed','','craft','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10644',13,'nav_menu_item','',0),
(10645,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Bible stories and verses','','publish','closed','closed','','bible-verse-craft','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10645',14,'nav_menu_item','',0),
(10646,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Games','','publish','closed','closed','','games','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10646',15,'nav_menu_item','',0),
(10649,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Stories','','publish','closed','closed','','bible-story-counting','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10649',16,'nav_menu_item','',0),
(10650,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Easy Read Comics','','publish','closed','closed','','easy-read-comics','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10650',17,'nav_menu_item','',0),
(10651,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Pencil Control','','publish','closed','closed','','pencil-control','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10651',18,'nav_menu_item','',0),
(10654,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Word Searches','','publish','closed','closed','','word-searches','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10654',7,'nav_menu_item','',0),
(10655,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Crosswords','','publish','closed','closed','','crosswords','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10655',8,'nav_menu_item','',0),
(10658,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','SEN','','publish','closed','closed','','sen','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10658',19,'nav_menu_item','',0),
(10659,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Sensory Stories','','publish','closed','closed','','sensory-stories','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10659',20,'nav_menu_item','',0),
(10660,1,'2022-07-01 00:03:23','2022-06-16 09:03:17','','Makaton Printables','','publish','closed','closed','','makaton-printables','','','2022-07-01 00:03:23','2022-07-01 00:03:23','',0,'https://choiceresources.co.uk/?p=10660',21,'nav_menu_item','',0),
(10759,1,'2022-06-16 10:23:25','2022-06-16 10:23:25','<blockquote class=\"wp-embedded-content\" data-secret=\"ng2hmqgnvY\"><a href=\"https://choiceresources.co.uk/about-us-2/\">About us</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;About us&#8221; &#8212; Choice Resources\" src=\"https://choiceresources.co.uk/about-us-2/embed/#?secret=RJTa3K4ZZf#?secret=ng2hmqgnvY\" data-secret=\"ng2hmqgnvY\" width=\"223\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','4bb5db8b7ed0c4ecf295ae0eeb63bb45','','','2022-06-16 10:23:25','2022-06-16 10:23:25','',0,'https://choiceresources.co.uk/2022/06/16/4bb5db8b7ed0c4ecf295ae0eeb63bb45/',0,'oembed_cache','',0),
(12469,1,'2022-07-07 14:18:44','2022-07-07 14:18:44','{{unknown}}','','','publish','closed','closed','','e639fd39b0f48ea6176110feddaafd4d','','','2022-07-07 14:18:44','2022-07-07 14:18:44','',0,'https://choiceresources.co.uk/2022/07/07/e639fd39b0f48ea6176110feddaafd4d/',0,'oembed_cache','',0),
(14375,1,'2022-08-05 17:13:10','2022-08-05 17:01:04',' ','','','publish','closed','closed','','14375','','','2022-08-05 17:13:10','2022-08-05 17:13:10','',0,'https://choiceresources.co.uk/?p=14375',4,'nav_menu_item','',0),
(14865,1,'2022-08-22 15:32:31','2022-08-22 15:32:31','Subscribe to our newsletter\r\n\r\n<p>\r\n    <label>First Name</label>\r\n    <input type=\"text\" name=\"FNAME\" required=\"\">\r\n</p>\r\n<p>\r\n    <label>Last Name</label>\r\n    <input type=\"text\" name=\"LNAME\">\r\n</p>\r\n<p>\r\n	<label>Email address: \r\n		<input type=\"email\" name=\"EMAIL\" placeholder=\"Your email address\" required />\r\n</label>\r\n</p>\r\n\r\n<p>\r\n	<input type=\"submit\" value=\"Sign up\" />\r\n</p>','Subscribe to our Newsletter','','publish','closed','closed','','14865','','','2022-08-22 15:32:31','2022-08-22 15:32:31','',0,'https://choiceresources.co.uk/mc4wp-form/14865/',0,'mc4wp-form','',0),
(17406,1,'2022-11-16 22:44:10','2022-11-16 22:44:10','','Order &ndash; November 16, 2022 @ 10:44 PM','','wc-processing','open','closed','wc_order_pkcv7XqVUjLwi','order-nov-16-2022-1044-pm','','','2022-11-16 22:48:32','2022-11-16 22:48:32','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=17406',0,'shop_order','',3),
(17435,1,'2022-11-16 23:16:38','2022-11-16 23:16:38','','Order &ndash; November 16, 2022 @ 11:16 PM','','wc-processing','open','closed','wc_order_Iim4dczM8Wccd','order-nov-16-2022-1116-pm','','','2022-11-16 23:16:57','2022-11-16 23:16:57','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=17435',0,'shop_order','',3),
(17436,1,'2022-11-16 23:16:39','2022-11-16 23:16:39','','Subscription &ndash; Nov 16, 2022 @ 11:16 PM','','wc-active','open','closed','order_63756f5707dca','subscription-nov-16-2022-1116-pm','','','2023-11-16 23:17:18','2023-11-16 23:17:18','',17435,'https://choiceresources.co.uk/?post_type=shop_subscription&#038;p=17436',0,'shop_subscription','',11),
(17437,1,'2022-11-16 23:16:57','2022-11-16 23:16:57','','','','wcm-expired','open','closed','um_63756f69948ad','17437','','','2023-11-17 04:33:07','2023-11-17 04:33:07','',1061,'https://choiceresources.co.uk/?post_type=wc_user_membership&#038;p=17437',0,'wc_user_membership','',6),
(19321,1,'2022-12-08 13:32:59','2022-12-08 13:32:59','','Gift5CR','','publish','closed','closed','','gift5cr','','','2022-12-08 13:32:59','2022-12-08 13:32:59','',0,'https://choiceresources.co.uk/?post_type=shop_coupon&#038;p=19321',0,'shop_coupon','',0),
(19322,1,'2022-12-08 13:37:43','2022-12-08 13:37:43','','Gift15CR','','publish','closed','closed','','gift15cr','','','2022-12-08 13:37:43','2022-12-08 13:37:43','',0,'https://choiceresources.co.uk/?post_type=shop_coupon&#038;p=19322',0,'shop_coupon','',0),
(19370,1,'2022-12-08 19:30:08','2022-12-08 19:30:08','','Pop up sign-up','','publish','closed','closed','','pop-up-sign-up','','','2023-03-23 19:53:35','2023-03-23 19:53:35','',0,'https://choiceresources.co.uk/?post_type=elementor_library&#038;p=19370',0,'elementor_library','',0),
(19539,1,'2022-12-09 00:56:21','2022-12-09 00:56:21','','user-registration','','publish','closed','closed','','user-registration','','','2022-12-31 20:41:52','2022-12-31 20:41:52','',0,'https://choiceresources.co.uk/?post_type=forminator_forms&#038;p=19539',0,'forminator_forms','',0),
(19564,1,'2022-12-13 00:07:32','2022-12-13 00:07:32','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE Bible Printables</p><p>My Account</p>		\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-woocommerce.min.css\">			\n<nav>\n	<ul>\n					<li>\n				<a href=\"https://choiceresources.co.uk/account-management/\">Dashboard</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/account-management/orders/\">Orders</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/account-management/downloads/\">Downloads</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/account-management/edit-address/\">Addresses</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/account-management/payment-methods/\">Payment methods</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/account-management/edit-account/\">Account Details</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/account-management/customer-logout/?elementor_wc_logout=true&#038;elementor_my_account_redirect=https%3A%2F%2Fchoiceresources.co.uk%2Faccount-management%2F&#038;_wpnonce=43d0894386\">Log out</a>\n			</li>\n			</ul>\n</nav>\n<p>\n	Hello <strong>admin</strong> (not <strong>admin</strong>? <a href=\"https://choiceresources.co.uk/account-management/customer-logout/?elementor_wc_logout=true&#038;elementor_my_account_redirect=https%3A%2F%2Fchoiceresources.co.uk%2Faccount-management%2F&#038;_wpnonce=43d0894386\">Log out</a>)</p>\n<p>\n	From your account dashboard you can view your <a href=\"https://choiceresources.co.uk/account-management/orders/\">recent orders</a>, manage your <a href=\"https://choiceresources.co.uk/account-management/edit-address/\">shipping and billing addresses</a>, and <a href=\"https://choiceresources.co.uk/account-management/edit-account/\">edit your password and account details</a>.</p>\n			<a href=\"#TOP\" id=\"TOP\">\n					</a>\n			<a role=\"button\">\n									Home\n					</a>','Account Management','','publish','closed','closed','','account-management','','','2024-07-05 18:36:53','2024-07-05 18:36:53','',0,'https://choiceresources.co.uk/?page_id=19564',0,'page','',0),
(19628,1,'2022-12-13 02:21:25','2022-12-13 02:21:25','{{unknown}}','','','publish','closed','closed','','701d488b75b9b8de0e0c46c804cad1c9','','','2022-12-13 02:21:25','2022-12-13 02:21:25','',0,'https://choiceresources.co.uk/2022/12/13/701d488b75b9b8de0e0c46c804cad1c9/',0,'oembed_cache','',0),
(19637,1,'2022-12-13 02:44:34','2022-12-13 02:44:34','{{unknown}}','','','publish','closed','closed','','e709a2e3fdbdb9f8610f3cb143eaddd9','','','2022-12-13 02:44:34','2022-12-13 02:44:34','',0,'https://choiceresources.co.uk/2022/12/13/e709a2e3fdbdb9f8610f3cb143eaddd9/',0,'oembed_cache','',0),
(19809,1,'2022-12-14 19:19:37','2022-12-14 19:19:37','{{unknown}}','','','publish','closed','closed','','3d4845e61adba1c5956c752d14a790e3','','','2022-12-14 19:19:37','2022-12-14 19:19:37','',0,'https://choiceresources.co.uk/2022/12/14/3d4845e61adba1c5956c752d14a790e3/',0,'oembed_cache','',0),
(19814,1,'2022-12-14 19:50:42','2022-12-14 19:50:42','','Default Registration','','publish','closed','closed','','default-registration','','','2022-12-14 19:50:42','2022-12-14 19:50:42','',0,'https://choiceresources.co.uk/um_form/default-registration/',0,'um_form','',0),
(19815,1,'2022-12-14 19:50:42','2022-12-14 19:50:42','','Default Login','','publish','closed','closed','','default-login','','','2022-12-14 19:50:42','2022-12-14 19:50:42','',0,'https://choiceresources.co.uk/um_form/default-login/',0,'um_form','',0),
(19816,1,'2022-12-14 19:50:42','2022-12-14 19:50:42','','Default Profile','','publish','closed','closed','','default-profile','','','2022-12-14 19:50:42','2022-12-14 19:50:42','',0,'https://choiceresources.co.uk/um_form/default-profile/',0,'um_form','',0),
(19817,1,'2022-12-14 19:50:42','2022-12-14 19:50:42','','Members','','publish','closed','closed','','members','','','2022-12-14 19:50:42','2022-12-14 19:50:42','',0,'https://choiceresources.co.uk/um_directory/members/',0,'um_directory','',0),
(19821,1,'2022-12-14 20:12:49','2022-12-14 20:12:49','[ultimatemember form_id=\"19816\"]','User','','publish','closed','closed','','user','','','2022-12-14 20:12:49','2022-12-14 20:12:49','',0,'https://choiceresources.co.uk/user/',0,'page','',0),
(19823,1,'2022-12-14 20:12:49','2022-12-14 20:12:49','[forminator_form id=\"19539\"]','Register','','publish','closed','closed','','register-2','','','2022-12-15 00:19:26','2022-12-15 00:19:26','',0,'https://choiceresources.co.uk/register-2/',0,'page','',0),
(19824,1,'2022-12-14 20:12:49','2022-12-14 20:12:49','[ultimatemember form_id=\"19817\"]','Members','','draft','closed','closed','','members','','','2024-05-09 21:42:36','2024-05-09 21:42:36','',0,'https://choiceresources.co.uk/members/',0,'page','',0),
(19825,1,'2022-12-14 20:12:49','2022-12-14 20:12:49','','Logout','','publish','closed','closed','','logout','','','2022-12-14 20:12:49','2022-12-14 20:12:49','',0,'https://choiceresources.co.uk/logout/',0,'page','',0),
(19827,1,'2022-12-14 20:12:49','2022-12-14 20:12:49','[ultimatemember_password]','Password Reset','','publish','closed','closed','','password-reset','','','2022-12-14 20:12:49','2022-12-14 20:12:49','',0,'https://choiceresources.co.uk/password-reset/',0,'page','',0),
(19861,1,'2022-12-14 23:23:16','2022-12-14 23:23:16','<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-woocommerce.min.css\">			[[woocommerce_my_account]]\n<nav>\n	<ul>\n					<li>\n				<a href=\"https://choiceresources.co.uk/reset-password-2/\">Dashboard</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/reset-password-2/orders/\">Orders</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/reset-password-2/downloads/\">Downloads</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/reset-password-2/edit-address/\">Addresses</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/reset-password-2/edit-account/\">Account Details</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/reset-password-2/my-wish-list/\">Wish list</a>\n			</li>\n					<li>\n				<a href=\"https://choiceresources.co.uk/reset-password-2/customer-logout/?elementor_wc_logout=true&#038;elementor_my_account_redirect=https%3A%2F%2Fchoiceresources.co.uk%2Freset-password-2%2F&#038;_wpnonce=230714d5d3\">Logout</a>\n			</li>\n			</ul>\n</nav>\n<p>\n	Hello <strong>admin</strong> (not <strong>admin</strong>? <a href=\"https://choiceresources.co.uk/reset-password-2/customer-logout/?elementor_wc_logout=true&#038;elementor_my_account_redirect=https%3A%2F%2Fchoiceresources.co.uk%2Freset-password-2%2F&#038;_wpnonce=230714d5d3\">Log out</a>)</p>\n<p>\n	From your account dashboard you can view your <a href=\"https://choiceresources.co.uk/reset-password-2/orders/\">recent orders</a>, manage your <a href=\"https://choiceresources.co.uk/reset-password-2/edit-address/\">shipping and billing addresses</a>, and <a href=\"https://choiceresources.co.uk/reset-password-2/edit-account/\">edit your password and account details</a>.</p>','Reset Password','','publish','closed','closed','','reset-password-2','','','2023-02-17 16:27:46','2023-02-17 16:27:46','',0,'https://choiceresources.co.uk/?page_id=19861',0,'page','',0),
(19904,1,'2022-12-15 20:21:47','2022-12-15 20:21:47','','Logo logo','','inherit','open','closed','','logo-logo','','','2022-12-15 20:21:47','2022-12-15 20:21:47','',0,'https://choiceresources.co.uk/wp-content/uploads/2022/12/Logo-logo.png',0,'attachment','image/png',0),
(20379,1,'2024-04-04 22:44:30','2023-01-01 02:20:33','','Home','','publish','closed','closed','','home','','','2024-04-04 22:44:30','2024-04-04 22:44:30','',0,'https://choiceresources.co.uk/?p=20379',1,'nav_menu_item','',0),
(20549,1,'2023-04-19 13:49:06','2023-01-05 23:58:01','','Home','','publish','closed','closed','','home-2','','','2023-04-19 13:49:06','2023-04-19 13:49:06','',0,'https://choiceresources.co.uk/?p=20549',1,'nav_menu_item','',0),
(20572,1,'2023-04-19 13:49:06','2023-01-06 00:17:35','','Join us','','publish','closed','closed','','join-us','','','2023-04-19 13:49:06','2023-04-19 13:49:06','',0,'https://choiceresources.co.uk/?p=20572',5,'nav_menu_item','',0),
(20575,1,'2024-04-04 22:44:30','2023-01-06 00:23:23','','Login','','publish','closed','closed','','my-account','','','2024-04-04 22:44:30','2024-04-04 22:44:30','',0,'https://choiceresources.co.uk/?p=20575',4,'nav_menu_item','',0),
(20581,1,'2023-04-19 13:49:06','2023-01-06 00:39:59','','Login','','publish','closed','closed','','login','','','2023-04-19 13:49:06','2023-04-19 13:49:06','',0,'https://choiceresources.co.uk/?p=20581',4,'nav_menu_item','',0),
(20610,1,'2023-01-06 01:28:46','0000-00-00 00:00:00','','User Login','','draft','closed','closed','','','','','2023-01-06 01:28:46','0000-00-00 00:00:00','',0,'https://choiceresources.co.uk/?post_type=forminator_forms&p=20610',0,'forminator_forms','',0),
(20611,1,'2023-01-06 01:28:49','0000-00-00 00:00:00','','User Login','','draft','closed','closed','','','','','2023-01-06 01:28:49','0000-00-00 00:00:00','',0,'https://choiceresources.co.uk/?post_type=forminator_forms&p=20611',0,'forminator_forms','',0),
(20612,1,'2023-04-19 22:12:58','2023-04-19 22:12:58','','user-login','','publish','closed','closed','','user-login-2','','','2023-04-19 22:37:33','2023-04-19 22:37:33','',0,'https://choiceresources.co.uk/?post_type=forminator_forms&#038;p=20612',0,'forminator_forms','',0),
(20613,1,'2023-01-06 01:29:57','2023-01-06 01:29:57','','user-login','','draft','closed','closed','','user-login','','','2023-04-19 22:09:07','2023-04-19 22:09:07','',0,'https://choiceresources.co.uk/?post_type=forminator_forms&#038;p=20613',0,'forminator_forms','',0),
(20640,1,'2023-01-06 01:57:44','2023-01-06 01:57:44','','Order &ndash; January 6, 2023 @ 01:57 AM','','wc-processing','open','closed','wc_order_DTtZYJdlS7BrR','order-jan-06-2023-0157-am','','','2023-01-06 01:59:41','2023-01-06 01:59:41','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=20640',0,'shop_order','',3),
(21684,1,'2023-01-19 00:52:39','2023-01-19 00:52:39','<p>Welcome toÂ ChoiceÂ Shop</p>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					15%\n					off All Bundles\n					</h3>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Hover to view discount code						\n					</h3>\n			<a role=\"button\">\n									Code: 30offCR24\n					</a>\n				<ul data-layout-mode=\"grid\" data-show-secondary-image=\"0\" >        <li>\n	                    <img width=\"300\" height=\"300\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                    \n                        <ul>\n	                                                        <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n	                                                                                    <li>\n                                    <a id=\"eael_quick_view_6702bdf182646\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;bb33936&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:21684}\"\n                                      >\n                                    </a>\n                                </li>\n                            	                                                        <li><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n	                                                </ul>\n                    <bdi>&pound;3.95</bdi>                    \n                        <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><h2>Shepherd Dots</h2></a>                    \n        </li>\n                <li>\n	                    <img width=\"300\" height=\"300\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                    \n                        <ul>\n	                                                        <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n	                                                                                    <li>\n                                    <a id=\"eael_quick_view_6702bdf183515\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;bb33936&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:21684}\"\n                                      >\n                                    </a>\n                                </li>\n                            	                                                        <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n	                                                </ul>\n                        <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><h2>Bible Character Guess Who</h2></a>                    \n        </li>\n                <li>\n	                    Sale!<img width=\"300\" height=\"300\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                    \n                        <ul>\n	                                                        <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n	                                                                                    <li>\n                                    <a id=\"eael_quick_view_6702bdf184340\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;bb33936&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:21684}\"\n                                      >\n                                    </a>\n                                </li>\n                            	                                                        <li><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n	                                                </ul>\n                    <del aria-hidden=\"true\"><bdi>&pound;6.99</bdi></del> <ins><bdi>&pound;3.50</bdi></ins>                    \n                        <a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><h2>Daily Alphabet Tracing Devotional</h2></a>                    \n        </li>\n                <li>\n	                    Sale!<img width=\"300\" height=\"300\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                    \n                        <ul>\n	                                                        <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n	                                                                                    <li>\n                                    <a id=\"eael_quick_view_6702bdf18520e\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;bb33936&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:21684}\"\n                                      >\n                                    </a>\n                                </li>\n                            	                                                        <li><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n	                                                </ul>\n                    <del aria-hidden=\"true\"><bdi>&pound;5.99</bdi></del> <ins><bdi>&pound;2.50</bdi></ins>                    \n                        <a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><h2>Trusting God Tracing Activity for Children!</h2></a>                    \n        </li>\n                <li>\n	                    Sale!<img width=\"300\" height=\"300\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-300x300.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-100x100.png 100w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders.png 1080w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                    \n                        <ul>\n	                                                        <li><a href=\"?add-to-cart=32827\" data-quantity=\"1\" data-product_id=\"32827\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Product 4&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n	                                                                                    <li>\n                                    <a id=\"eael_quick_view_6702bdf1860d9\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;bb33936&quot;,&quot;product_id&quot;:32827,&quot;page_id&quot;:21684}\"\n                                      >\n                                    </a>\n                                </li>\n                            	                                                        <li><a href=\"https://choiceresources.co.uk/product/product-4/\"></a></li>\n	                                                </ul>\n                    <del aria-hidden=\"true\"><bdi>&pound;6.00</bdi></del> <ins><bdi>&pound;2.00</bdi></ins>                    \n                        <a href=\"https://choiceresources.co.uk/product/product-4/\"><h2>Product 4</h2></a>                    \n        </li>\n                <li>\n	                    Sale!<img width=\"300\" height=\"300\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-300x300.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder-100x100.png 100w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder.png 1080w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                    \n                        <ul>\n	                                                        <li><a href=\"?add-to-cart=32825\" data-quantity=\"1\" data-product_id=\"32825\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Product 3&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n	                                                                                    <li>\n                                    <a id=\"eael_quick_view_6702bdf1870d8\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;bb33936&quot;,&quot;product_id&quot;:32825,&quot;page_id&quot;:21684}\"\n                                      >\n                                    </a>\n                                </li>\n                            	                                                        <li><a href=\"https://choiceresources.co.uk/product/product-3/\"></a></li>\n	                                                </ul>\n                    <del aria-hidden=\"true\"><bdi>&pound;4.00</bdi></del> <ins><bdi>&pound;2.00</bdi></ins>                    \n                        <a href=\"https://choiceresources.co.uk/product/product-3/\"><h2>Product 3</h2></a>                    \n        </li>\n                <li>\n	                    Sale!<img width=\"300\" height=\"300\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-300x300.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears-100x100.png 100w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears.png 1080w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                    \n                        <ul>\n	                                                        <li><a href=\"?add-to-cart=32823\" data-quantity=\"1\" data-product_id=\"32823\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Product 2&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n	                                                                                    <li>\n                                    <a id=\"eael_quick_view_6702bdf187f93\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;bb33936&quot;,&quot;product_id&quot;:32823,&quot;page_id&quot;:21684}\"\n                                      >\n                                    </a>\n                                </li>\n                            	                                                        <li><a href=\"https://choiceresources.co.uk/product/product-2/\"></a></li>\n	                                                </ul>\n                    <del aria-hidden=\"true\"><bdi>&pound;5.00</bdi></del> <ins><bdi>&pound;2.00</bdi></ins>                    \n                        <a href=\"https://choiceresources.co.uk/product/product-2/\"><h2>Product 2</h2></a>                    \n        </li>\n                <li>\n	                    Sale!<img width=\"300\" height=\"300\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Gentoos-Gift-1-300x300.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Gentoos-Gift-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Gentoos-Gift-1-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Gentoos-Gift-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Gentoos-Gift-1-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Gentoos-Gift-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Gentoos-Gift-1-100x100.png 100w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Gentoos-Gift-1.png 1080w\" sizes=\"(max-width: 300px) 100vw, 300px\" />                    \n                        <ul>\n	                                                        <li><a href=\"?add-to-cart=32821\" data-quantity=\"1\" data-product_id=\"32821\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Gentoos Gift&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n	                                                                                    <li>\n                                    <a id=\"eael_quick_view_6702bdf188ed8\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;bb33936&quot;,&quot;product_id&quot;:32821,&quot;page_id&quot;:21684}\"\n                                      >\n                                    </a>\n                                </li>\n                            	                                                        <li><a href=\"https://choiceresources.co.uk/product/product-1/\"></a></li>\n	                                                </ul>\n                    <del aria-hidden=\"true\"><bdi>&pound;4.50</bdi></del> <ins><bdi>&pound;2.00</bdi></ins>                    \n                        <a href=\"https://choiceresources.co.uk/product/product-1/\"><h2>Gentoos Gift</h2></a>                    \n        </li>\n        </ul>            \n                <button id=\"eael-load-more-btn-bb33936\" data-widget-id=\"bb33936\" data-widget=\"bb33936\" data-page-id=\"21684\" data-template=\"{&quot;dir&quot;:&quot;lite&quot;,&quot;file_name&quot;:&quot;default.php&quot;,&quot;name&quot;:&quot;Woo-Product-Gallery&quot;}\" data-class=\"Essential_Addons_ElementorElementsWoo_Product_Gallery\" data-layout=\"grid\" data-page=\"1\" data-args=\"post_type=product&amp;post_status%5B0%5D=publish&amp;post_status%5B1%5D=pending&amp;post_status%5B2%5D=future&amp;posts_per_page=9&amp;order=desc&amp;offset=0&amp;tax_query%5Brelation%5D=AND&amp;tax_query%5B0%5D%5Btaxonomy%5D=product_visibility&amp;tax_query%5B0%5D%5Bfield%5D=name&amp;tax_query%5B0%5D%5Bterms%5D%5B0%5D=exclude-from-search&amp;tax_query%5B0%5D%5Bterms%5D%5B1%5D=exclude-from-catalog&amp;tax_query%5B0%5D%5Boperator%5D=NOT+IN&amp;orderby=date&amp;meta_query%5Brelation%5D=AND\" data-max-page=\"1\">\n                </button>','Choice Shop','','publish','closed','closed','','choice-shop','','','2024-10-06 16:42:25','2024-10-06 16:42:25','',0,'https://choiceresources.co.uk/?page_id=21684',0,'page','',0),
(21689,1,'2023-04-19 13:49:06','2023-01-19 00:56:49','','Shop','','publish','closed','closed','','shop','','','2023-04-19 13:49:06','2023-04-19 13:49:06','',0,'https://choiceresources.co.uk/?p=21689',3,'nav_menu_item','',0),
(22678,1,'2023-01-25 15:30:10','2023-01-25 15:30:10','','Order &ndash; January 25, 2023 @ 03:30 PM','','wc-cancelled','open','closed','wc_order_Jy0Ng9sQHZOXf','order-jan-25-2023-0330-pm','','','2023-02-01 22:29:10','2023-02-01 22:29:10','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=22678',0,'shop_order','',2),
(22681,1,'2023-01-25 15:57:02','2023-01-25 15:57:02','','Order &ndash; January 25, 2023 @ 03:57 PM','','wc-processing','open','closed','wc_order_tgIbiD3MCs8Fn','order-jan-25-2023-0357-pm','','','2023-01-25 15:58:59','2023-01-25 15:58:59','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=22681',0,'shop_order','',4),
(24475,1,'2023-02-17 15:36:08','2023-02-17 15:36:08','','Order &ndash; February 17, 2023 @ 03:36 PM','','wc-on-hold','open','closed','wc_order_sT9eLtz09Q1ni','order-feb-17-2023-0336-pm','','','2023-02-17 15:39:24','2023-02-17 15:39:24','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=24475',0,'shop_order','',1),
(24827,1,'2023-03-15 20:47:36','2023-03-15 20:47:36','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Cookie Policy</h1>		\n			<h1>What are cookies?</h1>		\n		<p>This Cookie Policy explains what cookies are and how we use them, the types of cookies we use i.e, the information we collect using cookies and how that information is used, and how to manage the cookie settings.</p><p>Cookies are small text files that are used to store small pieces of information. They are stored on your device when the website is loaded on your browser. These cookies help us make the website function properly, make it more secure, provide better user experience, and understand how the website performs and to analyze what works and where it needs improvement.</p>		\n			<h1>How do we use cookies?</h1>		\n		<p>As most of the online services, our website uses first-party and third-party cookies for several purposes. First-party cookies are mostly necessary for the website to function the right way, and they do not collect any of your personally identifiable data.</p><p>The third-party cookies used on our website are mainly for understanding how the website performs, how you interact with our website, keeping our services secure, providing advertisements that are relevant to you, and all in all providing you with a better and improved user experience and help speed up your future interactions with our website.</p>		\n			<h1>Types of Cookies we use:</h1>		\n		<h3>Necessary</h3><p>Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.</p><table><tbody><tr><td>cookieyes-consent</td><td>1 year</td><td>CookieYes sets this cookie to remember users\' consent preferences so that their preferences are respected on their subsequent visits to this site. It does not collect or store any personal information of the site visitors.</td></tr><tr><td>elementor</td><td>never</td><td>This cookie is used by the website\'s WordPress theme. It allows the website owner to implement or change the website\'s content in real-time.</td></tr><tr><td>woolentor_viewed_products_list</td><td>5 days</td><td>Woolentor set this cookie to store products in a cart.</td></tr><tr><td>woolentor_already_views_count_product</td><td>session</td><td>Woolentor set this cookie to store product count in cart.</td></tr><tr><td>woocommerce_items_in_cart</td><td>session</td><td>WooCommerce sets this cookie to record if there are any items in the WooCommerce shopping cart.</td></tr><tr><td>woocommerce_cart_hash</td><td>session</td><td>This cookie is set by WooCommerce. The cookie helps WooCommerce determine when cart contents/data changes.</td></tr><tr><td>wordpress_test_cookie</td><td>session</td><td>This cookie is used to check if the cookies are enabled on the users\' browser.</td></tr></tbody></table><p>Â </p><h3>Functional</h3><p>Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.</p><table><thead><tr><th>Cookie</th><th>Duration</th><th>Description</th></tr></thead><tbody><tr><td>mailchimp_landing_site</td><td>1 month</td><td>The cookie is set by MailChimp to record which page the user first visited.</td></tr></tbody></table><h3>Analytics</h3><p>Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.</p><table><thead><tr><th>Cookie</th><th>Duration</th><th>Description</th></tr></thead><tbody><tr><td>_gid</td><td>1 day</td><td>Installed by Google Analytics, _gid cookie stores information on how visitors use a website, while also creating an analytics report of the website\'s performance. Some of the data that are collected include the number of visitors, their source, and the pages they visit anonymously.</td></tr><tr><td>_gat_gtag_UA_*</td><td>Less than a minute</td><td>Google Analytics sets this cookie to store a unique user ID.</td></tr><tr><td>_ga_*</td><td>1 year 1 month 4 days</td><td>Google Analytics sets this cookie to store and count page views.</td></tr><tr><td>_ga</td><td>1 year 1 month 4 days</td><td>The _ga cookie, installed by Google Analytics, calculates visitor, session and campaign data and also keeps track of site usage for the site\'s analytics report. The cookie stores information anonymously and assigns a randomly generated number to recognize unique visitors.</td></tr><tr><td>__gads</td><td>1 year 24 days</td><td>The __gads cookie, set by Google, is stored under DoubleClick domain and tracks the number of times users see an advert, measures the success of the campaign and calculates its revenue. This cookie can only be read from the domain they are set on and will not track any data while browsing through other sites.</td></tr></tbody></table><h3>Uncategorized</h3><p>Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.</p><table><thead><tr><th>Cookie</th><th>Duration</th><th>Description</th></tr></thead><tbody><tr><td>conv_person</td><td>1 year 1 month 4 days</td><td>No description available.</td></tr><tr><td>conv_session</td><td>1 year 1 month 4 days</td><td>No description available.</td></tr><tr><td>session</td><td>session</td><td>No description available.</td></tr><tr><td>cookies.js</td><td>session</td><td>No description available.</td></tr><tr><td>wp_woocommerce_session_1db4e2edd19fcea627f3a4e44cf4cd80</td><td>2 days</td><td>No description</td></tr></tbody></table>		\n			<h1>Manage cookie preferences</h1>		\n			<button>Change Cookie Preferences</button>		\n		<p>You can change your cookie preferences any time by clicking the above link. This will let you revisit the cookie consent banner and change your preferences or withdraw your consent right away.</p><p>In addition to this, different browsers provide different methods to block and delete cookies used by websites. You can change the settings of your browser to block/delete the cookies. Listed below are the links to the support documents on how to manage and delete cookies from the major web browsers.</p><p>Chrome:Â <a href=\"https://support.google.com/accounts/answer/32050\" target=\"_blank\" rel=\"noopener\">https://support.google.com/accounts/answer/32050</a></p><p>Safari:Â <a href=\"https://support.apple.com/en-in/guide/safari/sfri11471/mac\" target=\"_blank\" rel=\"noopener\">https://support.apple.com/en-in/guide/safari/sfri11471/mac</a></p><p>Firefox:Â <a href=\"https://support.mozilla.org/en-US/kb/clear-cookies-and-site-data-firefox?redirectslug=delete-cookies-remove-info-websites-stored&amp;redirectlocale=en-US\" target=\"_blank\" rel=\"noopener\">https://support.mozilla.org/en-US/kb/clear-cookies-and-site-data-firefox?redirectslug=delete-cookies-remove-info-websites-stored&amp;redirectlocale=en-US</a></p><p>Internet Explorer:Â <a href=\"https://support.microsoft.com/en-us/topic/how-to-delete-cookie-files-in-internet-explorer-bca9446f-d873-78de-77ba-d42645fa52fc\" target=\"_blank\" rel=\"noopener\">https://support.microsoft.com/en-us/topic/how-to-delete-cookie-files-in-internet-explorer-bca9446f-d873-78de-77ba-d42645fa52fc</a></p><p>If you are using any other web browser, please visit your browserâ€™s official support documents.</p><p>Cookie Policy Generated ByÂ <a href=\"https://www.cookieyes.com/?utm_source=CP&amp;utm_medium=footer&amp;utm_campaign=UW\" target=\"_blank\" rel=\"noopener\">CookieYes - Cookie Policy Generator</a>.</p><p>To learn more about how we use these and your choices in relation to these tracking technologies, please refer to ourÂ <a href=\"https://choiceresources.co.uk/cookie-policy/\">Cookie Policy.</a></p><p>Updated: May 9, 2024.</p>		\n			<a href=\"#TOP\" id=\"TOP\">\n					</a>\n			<a role=\"button\">\n									Home\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Cookie Policy','','publish','closed','closed','','cookie-policy','','','2024-05-09 21:17:23','2024-05-09 21:17:23','',0,'https://choiceresources.co.uk/?page_id=24827',0,'page','',0),
(24907,1,'2023-03-15 21:38:31','2023-03-15 21:38:31','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Terms and Conditions </h1>		\n		<p>By visiting and using Choicesresources.co.uk (hereinafter the â€œwebsiteâ€), you accept and agree to be bound by these Terms and Conditions including our Privacy Policy posted on the website and incorporated herein by reference.Â </p><p>The term â€œyouâ€ refers to anyone who uses, visits and/or views the website. Choiceresources.co.uk a brand name of Ognol UK Limited Â Â (â€œcompanyâ€, â€œIâ€, â€œweâ€ or â€œusâ€) reserve the right to amend or modify these terms and conditions in its sole discretion at any time without notice and by using the website, you accept those amendments.Â Â It is your responsibility to periodically check the website for updates.Â </p><p><b>Your continued use of the website after posting of any changes to our Terms and Conditions constitutes your acceptance of those changes and updates. You must not access or use the website if you do not wish to be bound by these Terms and Conditions.</b></p>		\n			<h1>Privacy Policy</h1>		\n		<p>We are dedicated to respecting the privacy of your personal information. Your acceptance of ourÂ Â Privacy Policy is expressly incorporated into these Terms and Conditions. Please review ourÂ Â Privacy Policy for more information.</p>		\n			<h1>Mandatory Arbitration & Governing Law </h1>		\n		<p>You expressly waive your right to bring any legal claims, now or in the future arising out of or related to the website and our products/services. In the event of any dispute, claim or controversy arising out of or relating to your use of this website, the terms and conditions shall be construed in accordance with the rules and regulations of United Kingdom.Â </p><p>You agree to consent and submit to the jurisdiction of the United KingdomÂ  without regard to the principles of conflict of law or where the parties are located at the time a dispute arises.Â </p><p>You agree to resolve any disputes or claims first through mandatory arbitration in the United Kingdom and shall bear the full cost of arbitration as permitted by law. Your good faith participation in arbitration is a condition precedent to pursuing any other legal or equitable remedies available such as litigation or any other legal procedure. You also agree that in the event a legal claim is initiated after the required arbitration, the prevailing party shall be entitled to recover reasonable attorneyâ€™s fees and other costs associated with the legal action.Â </p>		\n			<h1>Intellectual Property</h1>		\n		<p>All content on this website, including but not limited to text, posts, logos, marks, graphics, files, materials, services, products, videos, audio, applications, computer code, designs, downloads and all other information here (collectively, the â€œContentâ€) is owned by us and is protected by copyright, trademark and other intellectual property and unfair competition laws with the exception of any content from others that we are lawfully permitted to use.Â Â You are granted a limited, revocable license to print or download Content from the website for your own personal, non-commercial, non-transferrable, informational and educational use only while ensuring itâ€™s not in violation of any copyright, trademark, and intellectual property or proprietary rights.</p><p>You agree not to copy, duplicate, steal, modify, publish, display, distribute, reproduce, store, transmit, post, create derivative works, reverse engineer, sell, rent or license any part of the Content in any way to anyone, without our prior written consent.Â Â You agree to abide by the copyright, trademark laws and intellectual property rights and shall be solely responsible for any violations of these terms and conditions.Â </p>		\n			<h1>User Content &amp; Lawful use of the Website</h1>		\n		<p>For any Content or information that you upload, display, post, transmit, send, email or submit to us on the website or on any of our social media sites, you warrant that you are the owner of that Content or have express permission from the owner of those intellectual property rights to use and distribute that Content to us.Â </p><p>You grant us and/or our officers, employees, successors, shareholders, joint venture partners or anyone else working with us a royalty-free, perpetual, irrevocable, worldwide, non-exclusive right and license to identify you, publish, post, reformat, copy, distribute, display, edit, reproduce any Content provided by you on our website and on any of our social media sites for any purpose. You shall be solely liable for any damages resulting from any infringement of copyrights, trademark or other proprietary rights of any Content or information that you provide to us.</p><p>From time to time, the Content will utilize various plugins or widgets to allow sharing of content via social media channels, email or other methods. Use of these plugins or widgets does not constitute any waiver of this siteâ€™s intellectual property rights. Such use is a limited license to republish the content on the approved social media channels, with full credit to Choiceresources.co.uk.</p><p>You agree not to upload, display, post, transmit, distribute, send, email or submit to us on the website or on any of our social media sites any information or Content that is-Â </p><p><strong>(a)</strong> illegal, violates or infringes upon the rights of others,Â </p><p><strong>(b)</strong> defamatory, abusive, profane, hateful, vulgar, obscene, libelous, pornographic, threatening,Â </p><p><strong>(c)</strong> encourages or advocates conduct that would constitute a criminal offense, giving rise to civil liability or otherwise violate any law,</p><p><strong>(d)</strong> distribute material including but not limited to spyware, computer virus, any kind of malicious computer software or any other harmful information that is actionable by law,Â </p><p><strong>(e)</strong> any attempts to gain unauthorized access to any portion or feature of the website, andÂ </p><p><strong>(f)</strong> send unsolicited or unauthorized material or cause disruption in the operation of the website. You agree to use the website for lawful purposes only and shall be liable for damages resulting from the violation of any provision contained in these Terms and Conditions.Â </p>		\n			<h1>Third-Party Links</h1>		\n		<p>The website may contain links to third-party websites or resources for your convenience. We may serve as an affiliate for some of these third-party websites by offering or advertising their products or services on the website; however, we do not own or control these third-party websites. Once you click on a third-party link and leave this website, you are no longer bound by our terms and conditions.</p><p>You agree that we are not responsible or liable for the accuracy, content or any information presented on these third-party websites. You assume all risks for using these third-party websites or resources and any transactions between you and these third-party websites are strictly between you and the third party. We shall not be liable for any damages resulting from your use of these third-party websites or resources.Â </p>		\n			<h1>Use of our Paid & Free Products</h1>		\n		<p>We may offer free products for you to download and also sell paid courses, programs, physical or digital products and any other related materials (collectively, â€œproductsâ€) on this website. All our products and/or services including all content are protected by copyright pursuant to the UK and international copyright laws. You are granted a limited revocable license to print or download Content from our digital products for your own personal, non-commercial, non-transferrable, informational and educational use only while ensuring itâ€™s not in violation of any copyright, trademark, and intellectual property or proprietary rights. Copying or storing our content for other than personal use is expressly prohibited without our prior written consent.Â </p><p>You acknowledge and agree that you have no right to share, modify, sell, edit, copy, reproduce, create derivative works of, reverse engineer, enhance or in any exploit our products. You cannot sell or redistribute any of our products, whether free or paid ones, without our express written consent.Â Â You agree to abide by the copyright, trademark laws and intellectual property rights and shall be solely responsible for any violations of these terms and conditions.</p>		\n			<h1>Termination</h1>		\n		<p>We reserve the right in our sole discretion to refuse, remove, restrict your access, revoke and terminate your use of our website including any or all Content published by you or us at any time for any reason, without notice.Â </p>		\n			<h1>No Refunds</h1>		\n		<p>All sales of products and/or services on this website are final unless otherwise stated on the purchase page.Â No refunds will be issued unless clearly indicated on your checkout page. We truly believe in giving more than receiving and each of our products and services is designed by keeping this core principle in mind. The prices are intentionally kept reasonably low in price as compared to market value to give you the tools and information you need at an affordable price.Â </p>		\n			<h1>No Warranties</h1>		\n		<p>ALL CONTENT, INFORMATION, PRODUCTS AND/OR SERVICES ON THE WEBSITE ARE â€œAS ISâ€ AND â€œAS AVAILABLEâ€ BASIS WITHOUT ANY REPRESENTATIONS OR WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE, EXPRESS OR IMPLIED TO THE FULL EXTENT PERMISSIBLE BY LAW. COMPANY MAKES NO REPRESENTATIONS OR WARRANTIES AS TO THE CONTENT, INFORMATION, MATERIALS, PRODUCTS AND/OR SERVICES PROVIDED ON THIS WEBSITE. COMPANY MAKES NO WARRANTIES THAT THE WEBSITE WILL PERFORM OR OPERATE TO MEET YOUR REQUIREMENTS OR THAT THE INFORMATION PRESENTED HERE WILL BE COMPLETE, CURRENT OR ERROR-FREE. COMPANY DISCLAIMS ALL WARRANTIES, IMPLIED AND EXPRESS FOR ANY PURPOSE TO THE FULL EXTENT PERMITTED BY LAW.</p>		\n			<h1>Take Down Requests</h1>		\n		<p>From time to time, this site will publish posts with images from other third-party websites. Any such use is intended considered fair use under copyright laws and is fully attributed to the owner. If you believe that your copyrighted work has been used on the Website in a way that constitutes copyright infringement and falls outside of fair use, please send a request to info@choiceresources.co.uk and we will remove the image within 5-7 working days .</p>		\n			<h1>Limitation of Liability</h1>		\n		<p>You agree that under no circumstances, we and/or our officers, employees, successors, shareholders, joint venture partners or anyone else working with us shall be liable for any direct, indirect, incidental, consequential, equitable, special, punitive, exemplary or any other damages resulting from your use of this website including but not limited to all the content, information, products, services and graphics presented here.Â </p><p>You expressly agree that your use of the website is at your sole risk and that you are solely responsible for the accuracy of the personal and any information you provide, the outcome of your actions, personal and business results, and for all other use in connection with the website.</p><p>You also expressly agree that we and/or our officers, employees, successors, shareholders, joint venture partners or anyone else working with us shall not be liable to you for any damages resulting from 1) any errors or omissions on the website, delay or denial of any products or services, failure of performance of any kind, interruption in the operation and your use of the website, website attacks including computer virus, hacking of information, and any other system failures; 2) any loss of income, use, data, revenue, profits, business or any goodwill related to the website; 3) any theft or unauthorized access by third party of your information from the website regardless of our negligence; and 4) any use or misuse of the information, products and/or services offered here.Â </p><p>This limitation of liability shall apply whether such liability arises from negligence, breach of contract, tort or any other legal theory of liability. You agree that we provide no express or implied guarantees to you for the content presented here, and you accept that no particular results are being promised to you here.Â </p>		\n			<h1>Indemnification</h1>		\n		<p>You agree to indemnify and hold the Company and/or its officers, employees, successors, shareholders, joint venture partners or anyone else working with us harmless from all losses, claims, damages, demands, actions, suits, proceedings or judgments, including costs, expenses and reasonable attorneysâ€™ fees (â€œLiabilitiesâ€) assessed against or otherwise incurred by you arising, in whole or in part, from: (a) actions or omissions, whether done negligently or otherwise, by you, your agents, directors, officers, employees or representatives; (b) all your actions and use of the website including purchasing products and services; (c) violation of any laws, rules, regulations or ordinances by you; or (d) violation of any terms and conditions of this website by you or anyone related to you; e) infringement by you or any other user of your account of any intellectual property or other rights of anyone. The Company will notify you promptly of any such claims or liability and reserves the right to defend such claim, liability or damage at your expense. You shall fully cooperate and provide assistance to us if requested, without any cost, to defend any such claims.Â </p>		\n			<h1>Entire Agreement</h1>		\n		<p>These Terms and Conditions along with our Privacy PolicyÂ  constitute the entire agreement between you and us with respect to this website. It supersedes all prior or contemporaneous communications, discussions, negotiations or proposals we may have had with you whether electronic, oral or written.Â </p><p>A printed version of this entire agreement including the Privacy PolicyÂ  and of any notice given in electronic form shall be admissible in judicial or administrative proceedings with respect to this website to the same extent and given the same effect as other business contracts and documents kept and maintained in printed form.Â </p>		\n			<h1>Severability</h1>		\n		<p>If any provision in these Terms and Conditions is deemed by a court, regulatory authority or other public or private tribunal of competent jurisdiction to be invalid or unenforceable, such provision is deemed to have been omitted from this Agreement. The remainder of this Agreement remains in full force and effect, and is modified to any extent necessary to give such force and effect to the remaining provisions, but only to such extent.</p>		\n			<h1>Contact</h1>		\n		<p>For any questions, please contact us at info@choiceresources.co.uk</p><p>Updated: May 9, 2024.</p>		\n			<a href=\"#TOP\" id=\"TOP\">\n					</a>\n			<a role=\"button\">\n									Home\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2024-05-09 20:07:19','2024-05-09 20:07:19','',0,'https://choiceresources.co.uk/?page_id=24907',0,'page','',0),
(26651,1,'2023-05-05 14:37:59','2023-05-05 14:37:59','<style>/*! elementor - v3.12.1 - 02-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1587\" height=\"2245\" src=\"https://choiceresources.co.uk/wp-content/uploads/2023/05/beige-illustrative-pop-up-market-poster.png\" alt=\"\" loading=\"lazy\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2023/05/beige-illustrative-pop-up-market-poster.png 1587w, https://choiceresources.co.uk/wp-content/uploads/2023/05/beige-illustrative-pop-up-market-poster-212x300.png 212w, https://choiceresources.co.uk/wp-content/uploads/2023/05/beige-illustrative-pop-up-market-poster-724x1024.png 724w, https://choiceresources.co.uk/wp-content/uploads/2023/05/beige-illustrative-pop-up-market-poster-768x1086.png 768w, https://choiceresources.co.uk/wp-content/uploads/2023/05/beige-illustrative-pop-up-market-poster-1086x1536.png 1086w, https://choiceresources.co.uk/wp-content/uploads/2023/05/beige-illustrative-pop-up-market-poster-1448x2048.png 1448w, https://choiceresources.co.uk/wp-content/uploads/2023/05/beige-illustrative-pop-up-market-poster-300x424.png 300w, https://choiceresources.co.uk/wp-content/uploads/2023/05/beige-illustrative-pop-up-market-poster-400x566.png 400w\" sizes=\"(max-width: 1587px) 100vw, 1587px\" />															\n		<p>Access all resources and videos by subscribing to our yearly plan today!</p>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-woocommerce.min.css\">		\n			<a rel=\"nofollow\" href=\"https://choiceresources.co.uk/product/1-year-100-worksheet-discount-membership-plan/\" data-quantity=\"1\" data-product_id=\"1067\" role=\"button\">\n						Subscribe\n					</a>','Subscribe','','publish','closed','closed','','subscribe','','','2023-05-05 17:42:35','2023-05-05 17:42:35','',0,'https://choiceresources.co.uk/?post_type=elementor_library&#038;p=26651',0,'elementor_library','',0),
(30257,1,'2023-10-11 14:41:04','2023-10-11 14:41:04','','Choice Logo Banner (4) (1)','','inherit','open','closed','','choice-logo-banner-4-1','','','2023-10-11 14:41:04','2023-10-11 14:41:04','',5228,'https://choiceresources.co.uk/wp-content/uploads/2023/10/Choice-Logo-Banner-4-1.png',0,'attachment','image/png',0),
(30818,1,'2023-11-16 11:17:05','2023-11-16 11:17:05','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"150\" src=\"https://choiceresources.co.uk/wp-content/uploads/2021/03/Choice-Logo-Banner-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2021/03/Choice-Logo-Banner-3.png 500w, https://choiceresources.co.uk/wp-content/uploads/2021/03/Choice-Logo-Banner-3-300x90.png 300w, https://choiceresources.co.uk/wp-content/uploads/2021/03/Choice-Logo-Banner-3-399x120.png 399w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n		<p>Our goal is to help people in the best way possible. this is a basic principle in every case and cause for success. contact us today for a free consultation.Â </p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Practice Areas</h2>		\n			<h2>Newsletter</h2>		\n		<p>Sign up to our newsletter</p>','About us','','publish','closed','closed','','about-us','','','2023-11-16 11:22:21','2023-11-16 11:22:21','',0,'https://choiceresources.co.uk/?post_type=elementor_library&#038;p=30818',0,'elementor_library','',0),
(30893,1,'2023-11-16 23:17:15','2023-11-16 23:17:15','','Order &ndash; November 16, 2023 @ 11:17 PM','','wc-processing','open','closed','wc_order_3otIrKeJdYzhz','order-nov-16-2023-1117-pm','','','2023-11-16 23:17:17','2023-11-16 23:17:17','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=30893',0,'shop_order','',3),
(31886,1,'2024-03-17 07:11:52','2024-03-17 07:11:52','','White background hands','','inherit','open','closed','','white-background-hands','','','2024-03-17 07:11:52','2024-03-17 07:11:52','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/03/White-background-hands.png',0,'attachment','image/png',0),
(31887,1,'2024-03-17 07:16:52','2024-03-17 07:16:52','','Blue Background hands','','inherit','open','closed','','blue-background-hands','','','2024-03-17 07:16:52','2024-03-17 07:16:52','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/03/Blue-Background-hands.png',0,'attachment','image/png',0),
(31903,1,'2024-03-17 07:53:48','2024-03-17 07:53:48','','Bible Lego Challenges Vid (1)','','inherit','open','closed','','bible-lego-challenges-vid-1','','','2024-03-17 07:53:48','2024-03-17 07:53:48','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/03/Bible-Lego-Challenges-Vid-1.gif',0,'attachment','image/gif',0),
(31907,1,'2024-03-17 08:10:30','2024-03-17 08:10:30','','Logo CR','','inherit','open','closed','','logo-cr','','','2024-03-17 08:10:30','2024-03-17 08:10:30','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/03/Logo-CR.gif',0,'attachment','image/gif',0),
(32196,1,'2024-03-21 12:26:49','2024-03-21 12:26:49','','Choice Logo Banner','','inherit','open','closed','','choice-logo-banner-1','','','2024-05-15 20:20:57','2024-05-15 20:20:57','',43,'https://choiceresources.co.uk/wp-content/uploads/2021/03/Choice-Logo-Banner-1.png',0,'attachment','image/png',0),
(32473,1,'2024-04-03 14:01:52','2024-04-03 14:01:52','<p style=\"text-align: center;\">FREE Bible Printables</p><p>Wordsearches</p>		\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<style id=\"eael-fg-inline-css-ef7695c\">@media only screen and (max-width: 2399px) {\n					.elementor-element.elementor-element-ef7695c .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 1024px) {\n					.elementor-element.elementor-element-ef7695c  .eael-filterable-gallery-item-wrap {\n					        width: 33.333333333333%;\n					    }\n					}@media only screen and (max-width: 767px) {\n					.elementor-element.elementor-element-ef7695c  .eael-filterable-gallery-item-wrap {\n					        width: 100%;\n					    }\n					}</style>        \n                <ul><li data-load-more-status=\"0\" data-first-init=\"1\" data-filter=\"*\">All</li><li  data-load-more-status=\"0\" data-first-init=\"0\"\n                        data-filter=\".eael-cf-ages-3plus\">Ages 3+</li><li  data-load-more-status=\"0\" data-first-init=\"0\"\n                        data-filter=\".eael-cf-ages-7plus\">Ages 7+</li><li  data-load-more-status=\"0\" data-first-init=\"0\"\n                        data-filter=\".eael-cf-ages-11plus\">Ages 11+</li><li  data-load-more-status=\"0\" data-first-init=\"0\"\n                        data-filter=\".eael-cf-send\">SEND</li></ul>\n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Stories-Long-A-sound.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Stories-Long-A-sound.png\" alt=\"\">\n                            <a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Stories-Long-A-sound.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>\n                        <h5>Bible Stories Long O Sound</h5><p>Get answers</p>\n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound-2.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound-2.png\" alt=\"\">\n                            <a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound-2.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n                        <h5>Joshua Stories Long O Sound</h5><p>Get answers</p>\n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound.png\" alt=\"\">\n                            <a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n                        <h5>Bible Battles Long A Sound</h5><p>Get answers</p>\n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Birds.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Birds.png\" alt=\"\">\n                            <a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Birds.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n                        <h5>Bible Birds</h5><p>Get answers</p>\n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Fruits.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Fruits.png\" alt=\"\">\n                            <a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Fruits.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n                        <h5>Bible Fruits</h5><p>Get answers</p>\n				<img src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Heros.png\" data-lazy-src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Heros.png\" alt=\"\">\n                            <a aria-label=\"eael-magnific-link\" href=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Heros.png\" data-elementor-open-lightbox=\"no\" title=\"\">\n            </a>                <a href=\"#\" aria-label=\"eael-item-maybe-link\"> </a>\n                        <h5>Bible Heroes</h5><p>Get answers</p>\n                <a href=\"#\">\n                        Load More                    \n                                                                                        </a>\n			<a href=\"#TOP\" id=\"TOP\">\n					</a>\n			<a role=\"button\">\n									Home\n					</a>\n		<p><a style=\"color: #10a4e3;\" href=\"https://choiceresources.co.uk/scavenger-hunts\">Scavenger Hunts</a></p><p><a href=\"https://choiceresources.co.uk/games\">Games</a></p><p><a href=\"https://choiceresources.co.uk/stories\">Stories</a></p><p>Quizzes</p><p>Maths</p><p>Tracing</p>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses for You!						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-rating{--e-rating-gap:0px;--e-rating-icon-font-size:16px;--e-rating-icon-color:#ccd6df;--e-rating-icon-marked-color:#f0ad4e;--e-rating-icon-marked-width:100%;--e-rating-justify-content:flex-start}.elementor-widget-rating .e-rating{display:flex;justify-content:var(--e-rating-justify-content)}.elementor-widget-rating .e-rating-wrapper{display:flex;justify-content:inherit;flex-direction:row;flex-wrap:wrap;width:-moz-fit-content;width:fit-content;margin-block-end:calc(0px - var(--e-rating-gap));margin-inline-end:calc(0px - var(--e-rating-gap))}.elementor-widget-rating .e-rating .e-icon{position:relative;margin-block-end:var(--e-rating-gap);margin-inline-end:var(--e-rating-gap)}.elementor-widget-rating .e-rating .e-icon-wrapper.e-icon-marked{--e-rating-icon-color:var(--e-rating-icon-marked-color);width:var(--e-rating-icon-marked-width);position:absolute;z-index:1;height:100%;left:0;top:0;overflow:hidden}.elementor-widget-rating .e-rating .e-icon-wrapper :is(i,svg){display:flex;flex-shrink:0}.elementor-widget-rating .e-rating .e-icon-wrapper i{font-size:var(--e-rating-icon-font-size);color:var(--e-rating-icon-color)}.elementor-widget-rating .e-rating .e-icon-wrapper svg{width:auto;height:var(--e-rating-icon-font-size);fill:var(--e-rating-icon-color)}</style>		\n			<meta itemprop=\"worstRating\" content=\"0\">\n			<meta itemprop=\"bestRating\" content=\"5\">\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-carousel.min.css\">		\n						\"My son loves Choice Resources activities, and I have to admit I enjoy doing the wordsearches and quizzes too!\"					\n						\"I am so glad I found this site. My children are really enjoying learning with God\'s Word!\"					\n														Previous\n														Next','Wordsearches','','publish','closed','closed','070388','wordsearches-2','','','2024-07-05 18:18:03','2024-07-05 18:18:03','',0,'https://choiceresources.co.uk/?page_id=32473',0,'page','',0),
(32480,1,'2024-04-03 14:01:10','2024-04-03 14:01:10','','Noah background pic','','inherit','open','closed','','noah-background-pic','','','2024-04-03 14:01:10','2024-04-03 14:01:10','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/04/Noah-background-pic.png',0,'attachment','image/png',0),
(32731,1,'2024-04-03 16:52:22','2024-04-03 16:52:22','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p>Learning Fun</p>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n									<h2>\n						Top 10 Bible Lego Challenges					</h2>\n						10 Creative Lego Blocks Bible Challenges					\n					<a href=\"https://choiceresources.co.uk/elementor-33258/\">\n						Click Here					</a>\n			<a role=\"button\">\n						Home\n					</a>','Blog','','publish','closed','closed','','blog-archive','','','2024-04-24 23:32:17','2024-04-24 23:32:17','',0,'https://choiceresources.co.uk/?page_id=32731',0,'page','',0),
(32751,1,'2024-04-04 22:44:30','2024-04-04 22:44:30',' ','','','publish','closed','closed','','32751','','','2024-04-04 22:44:30','2024-04-04 22:44:30','',0,'https://choiceresources.co.uk/?p=32751',2,'nav_menu_item','',0),
(32752,1,'2024-04-04 22:44:30','2024-04-04 22:44:30','','Store','','publish','closed','closed','','store','','','2024-04-04 22:44:30','2024-04-04 22:44:30','',0,'https://choiceresources.co.uk/?p=32752',3,'nav_menu_item','',0),
(32782,1,'2024-04-10 13:56:28','2024-04-10 13:56:28','','Phonics word builder','','inherit','open','closed','','phonics-word-builder','','','2024-05-15 20:14:13','2024-05-15 20:14:13','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-builder.png',0,'attachment','image/png',0),
(32783,1,'2024-04-10 13:56:33','2024-04-10 13:56:33','','About the Holy Spirit (3)','','inherit','open','closed','','about-the-holy-spirit-3','','','2024-05-15 20:17:17','2024-05-15 20:17:17','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/04/About-the-Holy-Spirit-3.png',0,'attachment','image/png',0),
(32784,1,'2024-04-10 13:56:37','2024-04-10 13:56:37','','Fruits Snakes and Ladders','','inherit','open','closed','','fruits-snakes-and-ladders','','','2024-05-15 20:15:21','2024-05-15 20:15:21','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders.png',0,'attachment','image/png',0),
(32786,1,'2024-04-10 13:56:45','2024-04-10 13:56:45','','Scripture Bears','','inherit','open','closed','','scripture-bears','','','2024-05-15 20:09:08','2024-05-15 20:09:08','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/04/Scripture-Bears.png',0,'attachment','image/png',0),
(32809,1,'2024-04-10 14:57:06','2024-04-10 14:57:06','','Phonics word fan builder','','inherit','open','closed','','phonics-word-fan-builder','','','2024-05-15 20:10:51','2024-05-15 20:10:51','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/04/Phonics-word-fan-builder.png',0,'attachment','image/png',0),
(32821,1,'2024-04-23 18:22:46','2024-04-23 18:22:46','','Gentoos Gift','','publish','closed','closed','','product-1','','','2024-08-04 17:33:45','2024-08-04 17:33:45','',0,'https://choiceresources.co.uk/?post_type=product&#038;p=32821',0,'product','',0),
(32823,1,'2024-04-23 18:23:40','2024-04-23 18:23:40','','Product 2','','publish','closed','closed','','product-2','','','2024-04-23 18:23:41','2024-04-23 18:23:41','',0,'https://choiceresources.co.uk/?post_type=product&#038;p=32823',0,'product','',0),
(32825,1,'2024-04-23 18:25:04','2024-04-23 18:25:04','','Product 3','','publish','closed','closed','','product-3','','','2024-04-23 18:25:05','2024-04-23 18:25:05','',0,'https://choiceresources.co.uk/?post_type=product&#038;p=32825',0,'product','',0),
(32827,1,'2024-04-23 18:29:08','2024-04-23 18:29:08','','Product 4','','publish','closed','closed','','product-4','','','2024-04-23 18:29:08','2024-04-23 18:29:08','',0,'https://choiceresources.co.uk/?post_type=product&#038;p=32827',0,'product','',0),
(32840,1,'2024-04-23 19:30:55','2024-04-23 19:30:55','','Choice Logo Banner (1125 Ã— 480px) (3) (1)','','inherit','open','closed','','choice-logo-banner-1125-x-480px-3-1','','','2024-04-23 19:30:55','2024-04-23 19:30:55','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png',0,'attachment','image/png',0),
(32878,1,'2024-04-24 10:48:01','2024-04-24 10:48:01','','Mum website background (2) (1)','','inherit','open','closed','','mum-website-background-2-1','','','2024-04-24 10:48:01','2024-04-24 10:48:01','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/04/Mum-website-background-2-1.png',0,'attachment','image/png',0),
(32879,1,'2024-04-24 11:11:35','2024-04-24 11:11:35','','Mum website background (3) (1)','','inherit','open','closed','','mum-website-background-3-1','','','2024-04-24 11:11:35','2024-04-24 11:11:35','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/04/Mum-website-background-3-1.png',0,'attachment','image/png',0),
(33090,1,'2024-04-24 20:14:51','2024-04-24 20:14:51','','Elementor-post-screenshot_32508_2024-04-24-20-14-51_1a8ad9af.png','','inherit','open','closed','','elementor-post-screenshot_32508_2024-04-24-20-14-51_1a8ad9af-png','','','2024-04-24 20:14:51','2024-04-24 20:14:51','',0,'https://choiceresources.co.uk/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_32508_2024-04-24-20-14-51_1a8ad9af.png',0,'attachment','image/png',0),
(33091,1,'2024-04-24 20:18:54','2024-04-24 20:18:54','','Elementor-post-screenshot_32613_2024-04-24-20-18-54_2280cc5d.png','','inherit','open','closed','','elementor-post-screenshot_32613_2024-04-24-20-18-54_2280cc5d-png','','','2024-04-24 20:18:54','2024-04-24 20:18:54','',0,'https://choiceresources.co.uk/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_32613_2024-04-24-20-18-54_2280cc5d.png',0,'attachment','image/png',0),
(33174,1,'2024-04-24 22:54:00','2024-04-24 22:54:00','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			<a role=\"button\">\n						Home\n					</a>','Single Post','','publish','closed','closed','','single-post','','','2024-04-24 23:28:40','2024-04-24 23:28:40','',0,'https://choiceresources.co.uk/?post_type=elementor_library&#038;p=33174',0,'elementor_library','',0),
(33258,1,'2024-04-24 23:30:51','2024-04-24 23:30:51','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			<a role=\"button\">\n						Home\n					</a>','Elementor #33258','','publish','open','open','','elementor-33258','','','2024-04-24 23:31:16','2024-04-24 23:31:16','',0,'https://choiceresources.co.uk/?p=33258',0,'post','',0),
(33415,1,'2024-05-07 06:46:30','2024-05-07 06:46:30','','Choice Logo Banner (1125 Ã— 480px) (5) (1)','','inherit','open','closed','','choice-logo-banner-1125-x-480px-5-1','','','2024-05-07 06:46:30','2024-05-07 06:46:30','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/05/Choice-Logo-Banner-1125-Ã—-480px-5-1.png',0,'attachment','image/png',0),
(33656,1,'2024-05-07 11:15:37','2024-05-07 11:15:37','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>FREE <font color=\"#10a4e3\">Seasonal</font>&nbsp;Printables:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p>		\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n		<p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.Â </p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n		<p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p><p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.Â </p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fff0a13b03\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fff0a14f99\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fff0a160a4\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fff0a173ae\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>','New Landing Page','','publish','closed','closed','','new-landing-page','','','2024-10-28 21:15:54','2024-10-28 21:15:54','',0,'https://choiceresources.co.uk/?page_id=33656',0,'page','',0),
(33692,1,'2024-05-07 11:25:50','2024-05-07 11:25:50','<iframe title=\"New Home\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/Dhajjm9CdbQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>','','','publish','closed','closed','','8f8278ad95b05575e3c81d709889ad1e','','','2024-05-07 11:25:50','2024-05-07 11:25:50','',0,'https://choiceresources.co.uk/8f8278ad95b05575e3c81d709889ad1e/',0,'oembed_cache','',0),
(33693,1,'2024-05-07 11:25:52','2024-05-07 11:25:52','<iframe title=\"New Home\" width=\"216\" height=\"122\" src=\"https://www.youtube.com/embed/Dhajjm9CdbQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>','','','publish','closed','closed','','4bba12cc0f75c94340d5a79c647222e0','','','2024-05-07 11:25:52','2024-05-07 11:25:52','',0,'https://choiceresources.co.uk/4bba12cc0f75c94340d5a79c647222e0/',0,'oembed_cache','',0),
(33730,1,'2024-05-07 20:47:13','2024-05-07 20:47:13','','Order &ndash; May 7, 2024 @ 08:47 PM','','wc-on-hold','open','closed','wc_order_RNM9zSwKjESdT','order-may-07-2024-0847-pm','','','2024-05-07 20:48:21','2024-05-07 20:48:21','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=33730',0,'shop_order','',1),
(33731,1,'2024-05-07 22:57:51','2024-05-07 22:57:51','','Order &ndash; May 7, 2024 @ 10:57 PM','','wc-cancelled','open','closed','wc_order_MiO92CLkda6Hz','order-may-07-2024-1057-pm','','','2024-05-07 22:58:13','2024-05-07 22:58:13','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=33731',0,'shop_order','',1),
(33756,1,'2024-05-08 08:03:17','2024-05-08 08:03:17','','Mum website background (5) (1)','','inherit','open','closed','','mum-website-background-5-1','','','2024-05-08 08:03:17','2024-05-08 08:03:17','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/05/Mum-website-background-5-1.png',0,'attachment','image/png',0),
(33771,1,'2024-05-08 08:46:00','2024-05-08 08:46:00','','Mum website background (7) (1)','','inherit','open','closed','','mum-website-background-7-1','','','2024-05-08 08:46:00','2024-05-08 08:46:00','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/05/Mum-website-background-7-1.png',0,'attachment','image/png',0),
(33915,1,'2024-05-08 12:00:33','2024-05-08 12:00:33','','Order &ndash; May 8, 2024 @ 12:00 PM','','wc-processing','open','closed','wc_order_gMNOkLz74tNAt','order-may-08-2024-1200-pm','','','2024-05-08 12:00:37','2024-05-08 12:00:37','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=33915',0,'shop_order','',4),
(33956,1,'2024-05-08 13:11:45','2024-05-08 13:11:45','','Order &ndash; May 8, 2024 @ 01:11 PM','','wc-processing','open','closed','wc_order_aNar5EOOZsvwE','order-may-08-2024-0111-pm','','','2024-05-08 13:11:49','2024-05-08 13:11:49','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=33956',0,'shop_order','',4),
(33957,1,'2024-05-08 13:13:59','2024-05-08 13:13:59','','Order &ndash; May 8, 2024 @ 01:13 PM','','wc-processing','open','closed','wc_order_hQa08ZZSeN6qn','order-may-08-2024-0113-pm','','','2024-05-08 13:14:12','2024-05-08 13:14:12','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=33957',0,'shop_order','',4),
(33971,1,'2024-05-08 13:51:54','2024-05-08 13:51:54','<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-woocommerce.min.css\">		\n			<a role=\"button\">\n									Add to Cart\n					</a>\n		<p>You&nbsp;might&nbsp;like...</p>','Elementor Single Product #33971','','publish','closed','closed','','elementor-single-product-33971','','','2024-07-24 17:28:52','2024-07-24 17:28:52','',0,'https://choiceresources.co.uk/?post_type=elementor_library&#038;p=33971',0,'elementor_library','',0),
(34480,1,'2024-05-09 00:45:30','2024-05-09 00:45:30','','Number Five\'s Marvellous Adventures (1920 Ã— 1080px) (1)','','inherit','open','closed','','number-fives-marvellous-adventures-1920-x-1080px-1','','','2024-05-15 20:18:44','2024-05-15 20:18:44','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/05/Number-Fives-Marvellous-Adventures-1920-Ã—-1080px-1.png',0,'attachment','image/png',0),
(34645,1,'2024-05-09 19:25:28','2024-05-09 19:25:28','','Order &ndash; May 9, 2024 @ 07:25 PM','','wc-processing','open','closed','wc_order_KQMRr4QHYAp21','order-may-09-2024-0725-pm','','','2024-05-09 19:25:32','2024-05-09 19:25:32','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=34645',0,'shop_order','',3),
(34654,1,'2024-05-09 19:35:10','2024-05-09 19:35:10','','Order &ndash; May 9, 2024 @ 07:35 PM','','wc-processing','open','closed','wc_order_VZ6w7mXIed6eU','order-may-09-2024-0735-pm','','','2024-05-09 19:35:13','2024-05-09 19:35:13','',0,'https://choiceresources.co.uk/?post_type=shop_order&#038;p=34654',0,'shop_order','',3),
(34685,1,'2024-05-09 20:17:55','2024-05-09 20:17:55','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Refund & Returns Policy</h1>		\n		<p>All of our products are digital and instantly accessible, hence, we do not offer refunds or returns.</p><p>We are unable to make adjustments for missed discount codes or provide refunds if you mistakenly purchased a digital product instead of a physical one.</p><p>Please double-check your order to ensure it meets your needs! For any queries or assistance, contact us at: info@choiceresources.co.uk.</p><p>Please note: All items in our store are digital, and no physical items will be shipped.</p><p>We have clearly stated this information throughout the site and in every product description. Regrettably, we cannot offer refunds if this information is overlooked.</p><p>By placing an order, you agree to these terms entirely. Our refund policy is straightforward: any disputes not related to fraudulent activity or processing errors will result in loss of purchasing rights and potential legal action for damages.</p><p>Updated: May 9, 2024.</p>		\n			<a href=\"#TOP\" id=\"TOP\">\n					</a>\n			<a role=\"button\">\n									Home\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>','Refund Returns Policy','','publish','closed','closed','','refund-returns','','','2024-05-09 20:28:47','2024-05-09 20:28:47','',0,'https://choiceresources.co.uk/?page_id=34685',0,'page','',0),
(34819,1,'2024-07-02 15:07:03','2024-07-02 15:07:03','','Bible Hyperbole Colouring','','inherit','open','closed','','bible-hyperbole-colouring-2','','','2024-07-02 15:07:03','2024-07-02 15:07:03','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Hyperbole-Colouring.pdf',0,'attachment','application/pdf',0),
(34823,1,'2024-07-02 15:21:19','2024-07-02 15:21:19','','Snake Mistake','','inherit','open','closed','','snake-mistake','','','2024-07-02 15:21:19','2024-07-02 15:21:19','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Snake-Mistake.png',0,'attachment','image/png',0),
(34828,1,'2024-07-02 15:25:51','2024-07-02 15:25:51','','Bible Hyperbole Colouring','','inherit','open','closed','','bible-hyperbole-colouring-3','','','2024-07-02 15:25:51','2024-07-02 15:25:51','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Hyperbole-Colouring-1.png',0,'attachment','image/png',0),
(34833,1,'2024-07-02 15:30:41','2024-07-02 15:30:41','','Snake Mistake','','inherit','open','closed','','snake-mistake-2','','','2024-07-02 15:30:41','2024-07-02 15:30:41','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Snake-Mistake.pdf',0,'attachment','application/pdf',0),
(34853,1,'2024-07-02 16:36:58','2024-07-02 16:36:58','','What slides say','','inherit','open','closed','','what-slides-say-2','','','2024-07-02 16:36:58','2024-07-02 16:36:58','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/What-slides-say.pdf',0,'attachment','application/pdf',0),
(34857,1,'2024-07-02 16:59:31','2024-07-02 16:59:31','','Spot the Difference','','inherit','open','closed','','spot-the-difference-2','','','2024-07-02 16:59:31','2024-07-02 16:59:31','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Spot-the-Difference.png',0,'attachment','image/png',0),
(34859,1,'2024-07-02 17:03:44','2024-07-02 17:03:44','','Spot the Difference','','inherit','open','closed','','spot-the-difference-3','','','2024-07-02 17:03:44','2024-07-02 17:03:44','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Spot-the-Difference.pdf',0,'attachment','application/pdf',0),
(34863,1,'2024-07-02 17:18:40','2024-07-02 17:18:40','','Reptile Spellings','','inherit','open','closed','','reptile-spellings','','','2024-07-02 17:18:40','2024-07-02 17:18:40','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Reptile-Spellings.png',0,'attachment','image/png',0),
(34865,1,'2024-07-02 17:20:22','2024-07-02 17:20:22','','Reptile spellings','','inherit','open','closed','','reptile-spellings-2','','','2024-07-02 17:20:22','2024-07-02 17:20:22','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Reptile-spellings.pdf',0,'attachment','application/pdf',0),
(34871,1,'2024-07-03 20:13:22','2024-07-03 20:13:22','','Internal Organs Wordsearch','','inherit','open','closed','','internal-organs-wordsearch','','','2024-07-03 20:13:22','2024-07-03 20:13:22','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Internal-Organs-Wordsearch.png',0,'attachment','image/png',0),
(34872,1,'2024-07-03 20:13:34','2024-07-03 20:13:34','','God\'s World','','inherit','open','closed','','gods-world','','','2024-07-03 20:13:34','2024-07-03 20:13:34','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Gods-World.png',0,'attachment','image/png',0),
(34873,1,'2024-07-03 20:13:47','2024-07-03 20:13:47','','12 Months of the year cut outs','','inherit','open','closed','','12-months-of-the-year-cut-outs','','','2024-07-03 20:13:47','2024-07-03 20:13:47','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/12-Months-of-the-year-cut-outs.png',0,'attachment','image/png',0),
(34874,1,'2024-07-03 20:13:57','2024-07-03 20:13:57','','Character Feelings Hunt','','inherit','open','closed','','scavenger-hunts-pack','','','2024-07-10 13:09:33','2024-07-10 13:09:33','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Scavenger-Hunts-Pack.png',0,'attachment','image/png',0),
(34877,1,'2024-07-03 20:14:29','2024-07-03 20:14:29','','My name is...','','inherit','open','closed','','my-name-is','','','2024-07-03 20:14:29','2024-07-03 20:14:29','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/My-name-is.png',0,'attachment','image/png',0),
(34878,1,'2024-07-03 20:14:39','2024-07-03 20:14:39','','On the Move','','inherit','open','closed','','on-the-move','','','2024-07-03 20:14:39','2024-07-03 20:14:39','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/On-the-Move.png',0,'attachment','image/png',0),
(34879,1,'2024-07-03 20:14:49','2024-07-03 20:14:49','','Tractor match','','inherit','open','closed','','tractor-match','','','2024-07-03 20:14:49','2024-07-03 20:14:49','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Tractor-match.png',0,'attachment','image/png',0),
(34882,1,'2024-07-03 20:15:39','2024-07-03 20:15:39','','Space Toys','','inherit','open','closed','','space-toys','','','2024-07-03 20:15:39','2024-07-03 20:15:39','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Space-Toys.png',0,'attachment','image/png',0),
(34884,1,'2024-07-03 20:16:05','2024-07-03 20:16:05','','tasty bread','','inherit','open','closed','','tasty-bread','','','2024-07-03 20:16:05','2024-07-03 20:16:05','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/tasty-bread.png',0,'attachment','image/png',0),
(34919,1,'2024-07-05 10:48:12','2024-07-05 10:48:12','','Light of the World','','inherit','open','closed','','light-of-the-world','','','2024-07-05 10:48:12','2024-07-05 10:48:12','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Light-of-the-World.png',0,'attachment','image/png',0),
(34921,1,'2024-07-05 10:51:13','2024-07-05 10:51:13','','Light of the World','','inherit','open','closed','','light-of-the-world-2','','','2024-07-05 10:51:13','2024-07-05 10:51:13','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Light-of-the-World.pdf',0,'attachment','application/pdf',0),
(34925,1,'2024-07-05 10:54:33','2024-07-05 10:54:33','','tasty bread','','inherit','open','closed','','tasty-bread-2','','','2024-07-05 10:54:33','2024-07-05 10:54:33','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/tasty-bread.pdf',0,'attachment','application/pdf',0),
(34929,1,'2024-07-05 11:43:14','2024-07-05 11:43:14','','Flowerpot art','','inherit','open','closed','','flowerpot-art-2','','','2024-07-05 11:43:14','2024-07-05 11:43:14','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Flowerpot-art-1.png',0,'attachment','image/png',0),
(34931,1,'2024-07-05 11:46:44','2024-07-05 11:46:44','','Flowerpot art','','inherit','open','closed','','flowerpot-art','','','2024-07-05 11:46:44','2024-07-05 11:46:44','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Flowerpot-art.pdf',0,'attachment','application/pdf',0),
(34935,1,'2024-07-05 11:57:03','2024-07-05 11:57:03','','Camping trip','','inherit','open','closed','','camping-trip-2','','','2024-07-05 11:57:03','2024-07-05 11:57:03','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Camping-trip-1.png',0,'attachment','image/png',0),
(34936,1,'2024-07-05 11:57:52','2024-07-05 11:57:52','','Camping trip','','inherit','open','closed','','camping-trip','','','2024-07-05 11:57:52','2024-07-05 11:57:52','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Camping-trip.pdf',0,'attachment','application/pdf',0),
(34940,1,'2024-07-05 12:01:33','2024-07-05 12:01:33','','Space Toys','','inherit','open','closed','','space-toys-2','','','2024-07-05 12:01:33','2024-07-05 12:01:33','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Space-Toys.pdf',0,'attachment','application/pdf',0),
(34944,1,'2024-07-05 12:10:00','2024-07-05 12:10:00','','Tractor match','','inherit','open','closed','','tractor-match-2','','','2024-07-05 12:10:00','2024-07-05 12:10:00','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Tractor-match-1.png',0,'attachment','image/png',0),
(34946,1,'2024-07-05 12:11:36','2024-07-05 12:11:36','','Tractor match','','inherit','open','closed','','tractor-match-3','','','2024-07-05 12:11:36','2024-07-05 12:11:36','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Tractor-match.pdf',0,'attachment','application/pdf',0),
(34950,1,'2024-07-05 12:37:46','2024-07-05 12:37:46','','My name is...','','inherit','open','closed','','my-name-is-2','','','2024-07-05 12:37:46','2024-07-05 12:37:46','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/My-name-is.pdf',0,'attachment','application/pdf',0),
(34954,1,'2024-07-05 12:45:41','2024-07-05 12:45:41','','O\' Clock','','inherit','open','closed','','o-clock-2','','','2024-07-05 12:45:41','2024-07-05 12:45:41','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/O-Clock-1.png',0,'attachment','image/png',0),
(34955,1,'2024-07-05 12:46:11','2024-07-05 12:46:11','','O\' Clock','','inherit','open','closed','','o-clock','','','2024-07-05 12:46:11','2024-07-05 12:46:11','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/O-Clock.pdf',0,'attachment','application/pdf',0),
(34960,1,'2024-07-05 13:36:54','2024-07-05 13:36:54','','Weather hunt','','inherit','open','closed','','weather-hunt-2','','','2024-07-05 13:36:54','2024-07-05 13:36:54','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Weather-hunt-1.png',0,'attachment','image/png',0),
(34961,1,'2024-07-05 13:37:35','2024-07-05 13:37:35','','Weather hunt','','inherit','open','closed','','weather-hunt','','','2024-07-05 13:37:35','2024-07-05 13:37:35','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Weather-hunt.pdf',0,'attachment','application/pdf',0),
(34968,1,'2024-07-05 13:44:59','2024-07-05 13:44:59','','On the Move','','inherit','open','closed','','on-the-move-2','','','2024-07-05 13:44:59','2024-07-05 13:44:59','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/On-the-Move.pdf',0,'attachment','application/pdf',0),
(34969,1,'2024-07-05 13:46:08','2024-07-05 13:46:08','','On the Move','','inherit','open','closed','','on-the-move-3','','','2024-07-05 13:46:08','2024-07-05 13:46:08','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/On-the-Move-1.png',0,'attachment','image/png',0),
(34975,1,'2024-07-05 13:52:28','2024-07-05 13:52:28','','Character Hunt','','inherit','open','closed','','character-hunt','','','2024-07-05 13:52:28','2024-07-05 13:52:28','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Character-Hunt.pdf',0,'attachment','application/pdf',0),
(34982,1,'2024-07-05 14:00:33','2024-07-05 14:00:33','','12 Months of the year cut outs','','inherit','open','closed','','12-months-of-the-year-cut-outs-2','','','2024-07-05 14:00:33','2024-07-05 14:00:33','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/12-Months-of-the-year-cut-outs.pdf',0,'attachment','application/pdf',0),
(34986,1,'2024-07-05 14:10:21','2024-07-05 14:10:21','','God\'s World','','inherit','open','closed','','gods-world-2','','','2024-07-05 14:10:21','2024-07-05 14:10:21','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Gods-World.pdf',0,'attachment','application/pdf',0),
(34990,1,'2024-07-05 14:13:16','2024-07-05 14:13:16','','Internal Organs Wordsearch','','inherit','open','closed','','internal-organs-wordsearch-2','','','2024-07-05 14:13:16','2024-07-05 14:13:16','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Internal-Organs-Wordsearch.pdf',0,'attachment','application/pdf',0),
(34994,1,'2024-07-05 14:20:36','2024-07-05 14:20:36','','My Body Quiz','','inherit','open','closed','','my-body-quiz-2','','','2024-07-05 14:20:36','2024-07-05 14:20:36','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/My-Body-Quiz-1.png',0,'attachment','image/png',0),
(34996,1,'2024-07-05 14:22:34','2024-07-05 14:22:34','','My Body Quiz','','inherit','open','closed','','my-body-quiz','','','2024-07-05 14:22:34','2024-07-05 14:22:34','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/My-Body-Quiz.pdf',0,'attachment','application/pdf',0),
(35003,1,'2024-07-05 15:04:42','2024-07-05 15:04:42','','Joshua Stories Long O Sound','','inherit','open','closed','','bible-battles-long-a-sound-2','','','2024-07-05 15:29:38','2024-07-05 15:29:38','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound-2.png',0,'attachment','image/png',0),
(35004,1,'2024-07-05 15:04:45','2024-07-05 15:04:45','','Bible Battles Long A sound','','inherit','open','closed','','bible-battles-long-a-sound','','','2024-07-05 15:04:45','2024-07-05 15:04:45','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Battles-Long-A-sound.png',0,'attachment','image/png',0),
(35005,1,'2024-07-05 15:04:47','2024-07-05 15:04:47','','Bible Birds','','inherit','open','closed','','bible-birds','','','2024-07-05 15:04:47','2024-07-05 15:04:47','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Birds.png',0,'attachment','image/png',0),
(35006,1,'2024-07-05 15:04:49','2024-07-05 15:04:49','','Bible Fruits','','inherit','open','closed','','bible-fruits','','','2024-07-05 15:04:49','2024-07-05 15:04:49','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Fruits.png',0,'attachment','image/png',0),
(35007,1,'2024-07-05 15:04:50','2024-07-05 15:04:50','','Bible Heros','','inherit','open','closed','','bible-heros','','','2024-07-05 15:04:50','2024-07-05 15:04:50','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Heros.png',0,'attachment','image/png',0),
(35008,1,'2024-07-05 15:04:52','2024-07-05 15:04:52','','Bible Prayers','','inherit','open','closed','','bible-prayers','','','2024-07-05 15:04:52','2024-07-05 15:04:52','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Prayers.png',0,'attachment','image/png',0),
(35009,1,'2024-07-05 15:04:54','2024-07-05 15:04:54','','Bible Stories Long O sound','','inherit','open','closed','','bible-stories-long-a-sound','','','2024-07-05 15:26:31','2024-07-05 15:26:31','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Stories-Long-A-sound.png',0,'attachment','image/png',0),
(35010,1,'2024-07-05 15:04:56','2024-07-05 15:04:56','','Bible Women','','inherit','open','closed','','bible-women','','','2024-07-05 15:04:56','2024-07-05 15:04:56','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bible-Women.png',0,'attachment','image/png',0),
(35011,1,'2024-07-05 15:04:58','2024-07-05 15:04:58','','Fun on a mat','','inherit','open','closed','','fun-on-a-mat','','','2024-07-05 15:04:58','2024-07-05 15:04:58','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Fun-on-a-mat.png',0,'attachment','image/png',0),
(35012,1,'2024-07-05 15:04:59','2024-07-05 15:04:59','','In the Bag','','inherit','open','closed','','in-the-bag','','','2024-07-05 15:04:59','2024-07-05 15:04:59','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/In-the-Bag.png',0,'attachment','image/png',0),
(35013,1,'2024-07-05 15:05:01','2024-07-05 15:05:01','','Internal Organs Wordsearch','','inherit','open','closed','','internal-organs-wordsearch-3','','','2024-07-05 15:05:01','2024-07-05 15:05:01','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Internal-Organs-Wordsearch-1.png',0,'attachment','image/png',0),
(35014,1,'2024-07-05 15:05:11','2024-07-05 15:05:11','','Jacobs Life oo ou','','inherit','open','closed','','jacobs-life-oo-ou','','','2024-07-05 15:05:11','2024-07-05 15:05:11','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Jacobs-Life-oo-ou.png',0,'attachment','image/png',0),
(35015,1,'2024-07-05 15:05:22','2024-07-05 15:05:22','','Jonah\'s Story','','inherit','open','closed','','jonahs-story','','','2024-07-05 15:05:22','2024-07-05 15:05:22','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Jonahs-Story.png',0,'attachment','image/png',0),
(35016,1,'2024-07-05 15:05:31','2024-07-05 15:05:31','','Natural Lights','','inherit','open','closed','','natural-lights','','','2024-07-05 15:05:31','2024-07-05 15:05:31','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Natural-Lights.png',0,'attachment','image/png',0),
(35017,1,'2024-07-05 15:05:42','2024-07-05 15:05:42','','Phonics Mixed (AY)','','inherit','open','closed','','phonics-mixed-ay','','','2024-07-05 15:05:42','2024-07-05 15:05:42','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Phonics-Mixed-AY.png',0,'attachment','image/png',0),
(35018,1,'2024-07-05 15:05:55','2024-07-05 15:05:55','','Wise Sayings','','inherit','open','closed','','phonics-psalms-23-ay','','','2024-07-05 15:46:45','2024-07-05 15:46:45','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Phonics-Psalms-23-AY.png',0,'attachment','image/png',0),
(35019,1,'2024-07-05 15:06:04','2024-07-05 15:06:04','','The Map','','inherit','open','closed','','the-map','','','2024-07-05 15:06:04','2024-07-05 15:06:04','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/The-Map.png',0,'attachment','image/png',0),
(35020,1,'2024-07-05 15:06:17','2024-07-05 15:06:17','','The Run','','inherit','open','closed','','the-run','','','2024-07-05 15:06:17','2024-07-05 15:06:17','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/The-Run.png',0,'attachment','image/png',0),
(35021,1,'2024-07-05 15:06:27','2024-07-05 15:06:27','','The Smelly Stop','','inherit','open','closed','','the-smelly-stop','','','2024-07-05 15:06:27','2024-07-05 15:06:27','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/The-Smelly-Stop.png',0,'attachment','image/png',0),
(35022,1,'2024-07-05 15:06:36','2024-07-05 15:06:36','','Too Hot','','inherit','open','closed','','too-hot','','','2024-07-05 15:06:36','2024-07-05 15:06:36','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Too-Hot.png',0,'attachment','image/png',0),
(35023,1,'2024-07-05 15:15:54','2024-07-05 15:15:54','','Who is God?','','inherit','open','closed','','who-is-god','','','2024-07-05 15:47:26','2024-07-05 15:47:26','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Who-is-God.png',0,'attachment','image/png',0),
(35024,1,'2024-07-05 15:20:15','2024-07-05 15:20:15','','God did this (OR)','','inherit','open','closed','','god-did-this-or','','','2024-07-05 15:20:15','2024-07-05 15:20:15','',32473,'https://choiceresources.co.uk/wp-content/uploads/2024/07/God-did-this-OR.png',0,'attachment','image/png',0),
(35058,1,'2024-07-05 16:50:08','2024-07-05 16:50:08','','muddy hands','','inherit','open','closed','','muddy-hands','','','2024-07-05 16:50:08','2024-07-05 16:50:08','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/07/muddy-hands.png',0,'attachment','image/png',0),
(35068,1,'2024-07-05 17:10:27','2024-07-05 17:10:27','','Five\'s Marvellous Adventures','','inherit','open','closed','','fives-marvellous-adventures','','','2024-07-05 17:10:27','2024-07-05 17:10:27','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Fives-Marvellous-Adventures.png',0,'attachment','image/png',0),
(35181,1,'2024-07-05 19:14:06','2024-07-05 19:14:06','','Puzzle Pic for Front','','inherit','open','closed','','craft-activities_puzzles-500-x-500-px','','','2024-07-05 19:14:26','2024-07-05 19:14:26','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Craft-Activities_Puzzles-500-x-500-px.gif',0,'attachment','image/gif',0),
(35218,1,'2024-07-09 20:42:09','2024-07-09 20:42:09','','Games Bundle','','inherit','open','closed','','fruits-snakes-and-ladders-1-1','','','2024-07-09 20:42:35','2024-07-09 20:42:35','',5228,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Fruits-Snakes-and-Ladders-1-1.png',0,'attachment','image/png',0),
(35375,1,'2024-07-10 11:15:00','2024-07-10 11:15:00','','Puzzle Fun','','inherit','open','closed','','puzzle-fun','','','2024-07-10 11:15:00','2024-07-10 11:15:00','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun.png',0,'attachment','image/png',0),
(35376,1,'2024-07-10 11:15:03','2024-07-10 11:15:03','','Colouring Fun','','inherit','open','closed','','colouring-fun','','','2024-07-10 11:15:03','2024-07-10 11:15:03','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun.png',0,'attachment','image/png',0),
(35377,1,'2024-07-10 11:15:07','2024-07-10 11:15:07','','Word Fun','','inherit','open','closed','','word-fun','','','2024-07-10 11:15:07','2024-07-10 11:15:07','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun.png',0,'attachment','image/png',0),
(35378,1,'2024-07-10 11:15:10','2024-07-10 11:15:10','','Number Fun','','inherit','open','closed','','number-fun','','','2024-07-10 11:15:10','2024-07-10 11:15:10','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Number-Fun.png',0,'attachment','image/png',0),
(35473,1,'2024-07-10 13:22:25','2024-07-10 13:22:25','','Benâ€™s new pal','','inherit','open','closed','','bens-new-pal-1','','','2024-07-10 13:22:37','2024-07-10 13:22:37','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bens-new-pal-1.png',0,'attachment','image/png',0),
(35477,1,'2024-07-10 14:00:40','2024-07-10 14:00:40','','Number Bubbles','','inherit','open','closed','','number-bubbles-1','','','2024-07-10 14:00:57','2024-07-10 14:00:57','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Number-Bubbles-1.png',0,'attachment','image/png',0),
(35479,1,'2024-07-10 14:04:06','2024-07-10 14:04:06','','Busy Balloons','','inherit','open','closed','','busy-balloons-1','','','2024-07-10 14:04:17','2024-07-10 14:04:17','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Busy-Balloons-1.png',0,'attachment','image/png',0),
(35480,1,'2024-07-10 14:08:19','2024-07-10 14:08:19','','I-spy bugs','','inherit','open','closed','','i-spy-bugs-1','','','2024-07-10 14:08:31','2024-07-10 14:08:31','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/I-spy-bugs-1.png',0,'attachment','image/png',0),
(35481,1,'2024-07-10 14:14:36','2024-07-10 14:14:36','','Counting on the Lake (1)','','inherit','open','closed','','counting-on-the-lake-1','','','2024-07-10 14:14:36','2024-07-10 14:14:36','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Counting-on-the-Lake-1.png',0,'attachment','image/png',0),
(35482,1,'2024-07-10 14:29:08','2024-07-10 14:29:08','','Elijah\'s Prayer','','inherit','open','closed','','elijahs-prayer-1','','','2024-07-10 14:29:19','2024-07-10 14:29:19','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Elijahs-Prayer-1.png',0,'attachment','image/png',0),
(35483,1,'2024-07-10 14:41:41','2024-07-10 14:41:41','','Nice and Clean (1)','','inherit','open','closed','','nice-and-clean-1','','','2024-07-10 14:41:41','2024-07-10 14:41:41','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Nice-and-Clean-1.png',0,'attachment','image/png',0),
(35484,1,'2024-07-10 14:48:33','2024-07-10 14:48:33','','Keeping Warm (1)','','inherit','open','closed','','keeping-warm-1','','','2024-07-10 14:48:33','2024-07-10 14:48:33','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Keeping-Warm-1.png',0,'attachment','image/png',0),
(35485,1,'2024-07-10 15:56:54','2024-07-10 15:56:54','','10 sec smile','','inherit','open','closed','','10-sec-smile-1','','','2024-07-10 15:57:09','2024-07-10 15:57:09','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/10-sec-smile-1.png',0,'attachment','image/png',0),
(35486,1,'2024-07-10 17:05:25','2024-07-10 17:05:25','','meet the number friends and their friends (1)','','inherit','open','closed','','meet-the-number-friends-and-their-friends-1','','','2024-07-10 17:05:25','2024-07-10 17:05:25','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/meet-the-number-friends-and-their-friends-1.png',0,'attachment','image/png',0),
(35562,1,'2024-07-10 19:41:47','2024-07-10 19:41:47','','The Happy Diver','','inherit','open','closed','','the-happy-diver-1','','','2024-07-10 19:42:04','2024-07-10 19:42:04','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/The-Happy-Diver-1.png',0,'attachment','image/png',0),
(35563,1,'2024-07-10 20:11:55','2024-07-10 20:11:55','','Heaviest toy','','inherit','open','closed','','heaviest-toy-1','','','2024-07-10 20:12:15','2024-07-10 20:12:15','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Heaviest-toy-1.png',0,'attachment','image/png',0),
(35567,1,'2024-07-10 20:38:59','2024-07-10 20:38:59','','Let\'s Solve (1)','','inherit','open','closed','','lets-solve-1','','','2024-07-10 20:38:59','2024-07-10 20:38:59','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Lets-Solve-1.png',0,'attachment','image/png',0),
(35569,1,'2024-07-10 20:40:15','2024-07-10 20:40:15','','Strongest Tower (1)','','inherit','open','closed','','strongest-tower-1','','','2024-07-10 20:40:15','2024-07-10 20:40:15','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Strongest-Tower-1.png',0,'attachment','image/png',0),
(35582,1,'2024-07-16 17:16:30','2024-07-16 17:16:30','','Vv','','inherit','open','closed','','vv','','','2024-07-16 17:16:30','2024-07-16 17:16:30','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Vv.png',0,'attachment','image/png',0),
(35583,1,'2024-07-16 17:16:32','2024-07-16 17:16:32','','Aa','','inherit','open','closed','','aa','','','2024-07-16 17:16:32','2024-07-16 17:16:32','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Aa.png',0,'attachment','image/png',0),
(35586,1,'2024-07-16 17:28:51','2024-07-16 17:28:51','','Nature\'s Circles (1)','','inherit','open','closed','','natures-circles-1','','','2024-07-16 17:28:51','2024-07-16 17:28:51','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Natures-Circles-1.png',0,'attachment','image/png',0),
(35587,1,'2024-07-16 17:28:53','2024-07-16 17:28:53','','Cuddle time','','inherit','open','closed','','cuddle-time','','','2024-07-16 17:28:53','2024-07-16 17:28:53','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Cuddle-time.png',0,'attachment','image/png',0),
(35588,1,'2024-07-16 17:28:55','2024-07-16 17:28:55','','How many sides (1)','','inherit','open','closed','','how-many-sides-1','','','2024-07-16 17:28:55','2024-07-16 17:28:55','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/How-many-sides-1.png',0,'attachment','image/png',0),
(35589,1,'2024-07-16 17:28:56','2024-07-16 17:28:56','','Still Water (1)','','inherit','open','closed','','still-water-1','','','2024-07-16 17:28:56','2024-07-16 17:28:56','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Still-Water-1.png',0,'attachment','image/png',0),
(35596,1,'2024-07-16 18:59:40','2024-07-16 18:59:40','','Beautiful Birds','','inherit','open','closed','','beautiful-birds','','','2024-07-16 18:59:40','2024-07-16 18:59:40','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Beautiful-Birds.png',0,'attachment','image/png',0),
(35597,1,'2024-07-16 18:59:42','2024-07-16 18:59:42','','Beautiful Butterfly','','inherit','open','closed','','beautiful-butterfly','','','2024-07-16 18:59:42','2024-07-16 18:59:42','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Beautiful-Butterfly.png',0,'attachment','image/png',0),
(35598,1,'2024-07-16 18:59:44','2024-07-16 18:59:44','','Spec the Spider','','inherit','open','closed','','spec-the-spider','','','2024-07-16 18:59:44','2024-07-16 18:59:44','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Spec-the-Spider.png',0,'attachment','image/png',0),
(35642,1,'2024-07-17 13:33:27','2024-07-17 13:33:27','','Elementor Loop Item #35642','','publish','closed','closed','','elementor-loop-item','','','2024-07-17 13:36:50','2024-07-17 13:36:50','',0,'https://choiceresources.co.uk/?elementor_library=elementor-loop-item',0,'elementor_library','',0),
(35669,1,'2024-07-17 14:09:19','2024-07-17 14:09:19','','The Mistake (1)','','inherit','open','closed','','the-mistake-1','','','2024-07-17 14:09:19','2024-07-17 14:09:19','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/The-Mistake-1.png',0,'attachment','image/png',0),
(35670,1,'2024-07-17 14:09:21','2024-07-17 14:09:21','','Dry Ground (1)','','inherit','open','closed','','dry-ground-1','','','2024-07-17 14:09:21','2024-07-17 14:09:21','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Dry-Ground-1.png',0,'attachment','image/png',0),
(35675,1,'2024-07-17 14:16:37','2024-07-17 14:16:37','','What Slides Say (1)','','inherit','open','closed','','what-slides-say-1','','','2024-07-17 14:16:37','2024-07-17 14:16:37','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/What-Slides-Say-1.png',0,'attachment','image/png',0),
(35676,1,'2024-07-17 14:53:13','2024-07-17 14:53:13','','short e sound (1)','','inherit','open','closed','','short-e-sound-1','','','2024-07-17 14:53:13','2024-07-17 14:53:13','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/short-e-sound-1.png',0,'attachment','image/png',0),
(35677,1,'2024-07-17 14:53:22','2024-07-17 14:53:22','','David and Goliath','','inherit','open','closed','','drawing-trace-and-learn-1-1','','','2024-07-17 14:53:34','2024-07-17 14:53:34','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Drawing-Trace-and-Learn-1-1.png',0,'attachment','image/png',0),
(35678,1,'2024-07-17 14:53:27','2024-07-17 14:53:27','','Draw a Horse','','inherit','open','closed','','drawing-trace-and-learn-2-1','','','2024-07-17 14:53:46','2024-07-17 14:53:46','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Drawing-Trace-and-Learn-2-1.png',0,'attachment','image/png',0),
(35679,1,'2024-07-17 14:53:30','2024-07-17 14:53:30','','Queen Esther','','inherit','open','closed','','drawing-trace-and-learn-3','','','2024-07-17 14:53:52','2024-07-17 14:53:52','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Drawing-Trace-and-Learn-3.png',0,'attachment','image/png',0),
(35715,1,'2024-07-17 15:59:48','2024-07-17 15:59:48','','Jospeh Counting','','inherit','open','closed','','jospeh-counting','','','2024-07-17 15:59:48','2024-07-17 15:59:48','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Jospeh-Counting.png',0,'attachment','image/png',0),
(35716,1,'2024-07-17 15:59:51','2024-07-17 15:59:51','','Noah Counting','','inherit','open','closed','','noah-counting','','','2024-07-17 15:59:51','2024-07-17 15:59:51','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Noah-Counting.png',0,'attachment','image/png',0),
(35717,1,'2024-07-17 15:59:53','2024-07-17 15:59:53','','Special Ten (1)','','inherit','open','closed','','special-ten-1','','','2024-07-17 15:59:53','2024-07-17 15:59:53','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Special-Ten-1.png',0,'attachment','image/png',0),
(35729,1,'2024-07-17 16:10:17','2024-07-17 16:10:17','','Kindness 4 in a row','','inherit','open','closed','','kindness-4-in-a-row','','','2024-07-17 16:10:17','2024-07-17 16:10:17','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Kindness-4-in-a-row.png',0,'attachment','image/png',0),
(35730,1,'2024-07-17 16:10:27','2024-07-17 16:10:27','','Fruits Snakes and Ladders','','inherit','open','closed','','fruits-snakes-and-ladders-2','','','2024-07-17 16:10:27','2024-07-17 16:10:27','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Fruits-Snakes-and-Ladders.png',0,'attachment','image/png',0),
(35731,1,'2024-07-17 16:10:34','2024-07-17 16:10:34','','Guess Who','','inherit','open','closed','','guess-who','','','2024-07-17 16:10:34','2024-07-17 16:10:34','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Guess-Who.png',0,'attachment','image/png',0),
(35732,1,'2024-07-17 16:10:43','2024-07-17 16:10:43','','Shepherd Dots','','inherit','open','closed','','shepherd-dots','','','2024-07-17 16:10:43','2024-07-17 16:10:43','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png',0,'attachment','image/png',0),
(35831,1,'2024-07-24 16:21:22','2024-07-24 16:21:22','','Trusting God Tracing Activity for Children!','','publish','closed','closed','','trusting-god-tracing-activities-for-children','','','2024-07-24 16:40:24','2024-07-24 16:40:24','',0,'https://choiceresources.co.uk/?post_type=product&#038;p=35831',0,'product','',0),
(35832,1,'2024-07-24 16:19:52','2024-07-24 16:19:52','','Front Pages 10 Reasons to Trust God','','inherit','open','closed','','front-pages-10-reasons-to-trust-god','','','2024-07-24 16:19:52','2024-07-24 16:19:52','',35831,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png',0,'attachment','image/png',0),
(35836,1,'2024-07-24 17:16:42','2024-07-24 17:16:42','','God is kind image','','inherit','open','closed','','god-is-kind-image','','','2024-07-24 17:16:42','2024-07-24 17:16:42','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/God-is-kind-image.png',0,'attachment','image/png',0),
(35842,1,'2024-07-24 17:49:56','2024-07-24 17:49:56','','God gave us His son (1) (2)','','inherit','open','closed','','god-gave-us-his-son-1-2','','','2024-07-24 17:49:56','2024-07-24 17:49:56','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/God-gave-us-His-son-1-2.png',0,'attachment','image/png',0),
(35853,1,'2024-07-24 18:04:00','2024-07-24 18:04:00','','Daily Alphabet Tracing Devotional','','publish','closed','closed','','daily-alphabet-tracing-devotional','','','2024-07-24 18:05:22','2024-07-24 18:05:22','',0,'https://choiceresources.co.uk/?post_type=product&#038;p=35853',0,'product','',0),
(35854,1,'2024-07-24 18:01:35','2024-07-24 18:01:35','','Daily ABC Tracing Devotional','','inherit','open','closed','','daily-abc-tracing-devotional','','','2024-07-24 18:01:35','2024-07-24 18:01:35','',35853,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png',0,'attachment','image/png',0),
(35857,1,'2024-07-24 18:40:15','2024-07-24 18:40:15','','Letter B Tracing Devotional','','inherit','open','closed','','letter-b-tracing-devotional','','','2024-07-24 18:40:15','2024-07-24 18:40:15','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Letter-B-Tracing-Devotional.png',0,'attachment','image/png',0),
(35869,1,'2024-07-24 18:56:21','2024-07-24 18:56:21','','Bb (1)','','inherit','open','closed','','bb-1','','','2024-07-24 18:56:21','2024-07-24 18:56:21','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Bb-1.png',0,'attachment','image/png',0),
(35885,1,'2024-07-24 19:47:00','2024-07-24 19:47:00','','short e sound (1)','','inherit','open','closed','','short-e-sound-1-2','','','2024-07-24 19:47:00','2024-07-24 19:47:00','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/short-e-sound-1-1.png',0,'attachment','image/png',0),
(35886,1,'2024-07-24 19:47:47','2024-07-24 19:47:47','','Scripture bear (1)','','inherit','open','closed','','scripture-bear-1','','','2024-07-24 19:47:47','2024-07-24 19:47:47','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Scripture-bear-1.png',0,'attachment','image/png',0),
(35891,1,'2024-07-25 08:41:36','2024-07-25 08:41:36','','Reptile Spellings','','inherit','open','closed','','reptile-spellings-3','','','2024-07-25 08:41:36','2024-07-25 08:41:36','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Reptile-Spellings-1.png',0,'attachment','image/png',0),
(35898,1,'2024-07-25 18:35:15','2024-07-25 18:35:15','','choice Logo Newest (1)','','inherit','open','closed','','choice-logo-newest-1','','','2024-07-25 18:35:15','2024-07-25 18:35:15','',0,'https://choiceresources.co.uk/wp-content/uploads/2024/07/choice-Logo-Newest-1.png',0,'attachment','image/png',0),
(35902,1,'2024-07-25 18:38:24','2024-07-25 18:38:24','','Colouring Fun New','','inherit','open','closed','','colouring-fun-new','','','2024-07-25 18:38:24','2024-07-25 18:38:24','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png',0,'attachment','image/png',0),
(35903,1,'2024-07-25 18:38:26','2024-07-25 18:38:26','','Number Fun New','','inherit','open','closed','','number-fun-new','','','2024-07-25 18:38:26','2024-07-25 18:38:26','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Number-Fun-New.png',0,'attachment','image/png',0),
(35905,1,'2024-07-25 18:38:31','2024-07-25 18:38:31','','Word Fun New','','inherit','open','closed','','word-fun-new','','','2024-07-25 18:38:31','2024-07-25 18:38:31','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png',0,'attachment','image/png',0),
(35915,1,'2024-07-25 18:46:49','2024-07-25 18:46:49','','Puzzle Fun (2) (1)','','inherit','open','closed','','puzzle-fun-2-1','','','2024-07-25 18:46:49','2024-07-25 18:46:49','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png',0,'attachment','image/png',0),
(35934,1,'2024-08-04 16:50:52','2024-08-04 16:50:52','','Bible Character Guess Who','','publish','closed','closed','','bible-character-guess-who','','','2024-08-04 16:50:52','2024-08-04 16:50:52','',0,'https://choiceresources.co.uk/?post_type=product&#038;p=35934',0,'product','',0),
(35935,1,'2024-08-04 16:50:35','2024-08-04 16:50:35','','Guess Who.','','inherit','open','closed','','guess-who-2','','','2024-08-04 16:50:35','2024-08-04 16:50:35','',35934,'https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png',0,'attachment','image/png',0),
(35937,1,'2024-08-04 17:33:22','2024-08-04 17:33:22','','Gentoo\'s Gift (1)','','inherit','open','closed','','gentoos-gift-1','','','2024-08-04 17:33:22','2024-08-04 17:33:22','',32821,'https://choiceresources.co.uk/wp-content/uploads/2024/04/Gentoos-Gift-1.png',0,'attachment','image/png',0),
(35994,1,'2024-10-06 12:54:51','2024-10-06 12:54:51','','Game Fun','','inherit','open','closed','','game-fun','','','2024-10-06 12:54:51','2024-10-06 12:54:51','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png',0,'attachment','image/png',0),
(35999,1,'2024-10-06 13:07:50','2024-10-06 13:07:50','','Front Pages','','inherit','open','closed','','front-pages','','','2024-10-06 13:07:50','2024-10-06 13:07:50','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/10/Front-Pages-.gif',0,'attachment','image/gif',0),
(36000,1,'2024-10-06 13:30:49','2024-10-06 13:30:49','','6 Games in 1','','inherit','open','closed','','6-games-in-1','','','2024-10-06 13:30:49','2024-10-06 13:30:49','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/10/6-Games-in-1.png',0,'attachment','image/png',0),
(36012,1,'2024-10-06 14:02:49','2024-10-06 14:02:49','','Trivia Word Builder','','inherit','open','closed','','trivia-word-builder','','','2024-10-06 14:02:49','2024-10-06 14:02:49','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/10/Trivia-Word-Builder.png',0,'attachment','image/png',0),
(36016,1,'2024-10-06 14:08:23','2024-10-06 14:08:23','','Shark Facts','','inherit','open','closed','','shark-facts','','','2024-10-06 14:08:23','2024-10-06 14:08:23','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/10/Shark-Facts.png',0,'attachment','image/png',0),
(36018,1,'2024-10-06 15:15:08','2024-10-06 15:15:08','','Would we rather','','inherit','open','closed','','would-we-rather','','','2024-10-06 15:15:08','2024-10-06 15:15:08','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/10/Would-we-rather.png',0,'attachment','image/png',0),
(36026,1,'2024-10-06 15:26:28','2024-10-06 15:26:28','','Character Flower','','inherit','open','closed','','character-flower','','','2024-10-06 15:26:28','2024-10-06 15:26:28','',33656,'https://choiceresources.co.uk/wp-content/uploads/2024/10/Character-Flower.png',0,'attachment','image/png',0),
(36041,1,'2024-10-06 15:59:41','2024-10-06 15:59:41','','Shepherd Dots','','publish','closed','closed','','shepherd-dots','','','2024-10-06 15:59:42','2024-10-06 15:59:42','',0,'https://choiceresources.co.uk/?post_type=product&#038;p=36041',0,'product','',0),
(36057,1,'2024-10-28 13:50:38','2024-10-28 13:50:38','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Unlimited Access PASS</strong> to our entire collection!</p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_6702b2fa6f1ff\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_6702b2fa705d2\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_6702b2fa716d8\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/product-4/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=32827\" data-quantity=\"1\" data-product_id=\"32827\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Product 4&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_6702b2fa72909\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:32827,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/product-4/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 13:50:38','2024-10-28 13:50:38','',33656,'https://choiceresources.co.uk/?p=36057',0,'revision','',0),
(36058,1,'2024-10-28 13:50:38','2024-10-28 13:50:38','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Unlimited Access PASS</strong> to our entire collection!</p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_6702b2fa6f1ff\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_6702b2fa705d2\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_6702b2fa716d8\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/product-4/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Fruits-Snakes-and-Ladders-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=32827\" data-quantity=\"1\" data-product_id=\"32827\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Product 4&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_6702b2fa72909\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:32827,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/product-4/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 13:50:38','2024-10-28 13:50:38','',33656,'https://choiceresources.co.uk/?p=36058',0,'revision','',0),
(36059,1,'2024-10-28 13:50:38','2024-10-28 13:50:38','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aea7f11\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aea94b9\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aeaa7e7\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aeab9e7\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 13:50:38','2024-10-28 13:50:38','',33656,'https://choiceresources.co.uk/?p=36059',0,'revision','',0),
(36061,1,'2024-10-28 13:53:15','2024-10-28 13:53:15','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aea7f11\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aea94b9\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aeaa7e7\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aeab9e7\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 13:53:15','2024-10-28 13:53:15','',33656,'https://choiceresources.co.uk/?p=36061',0,'revision','',0),
(36062,1,'2024-10-28 13:53:15','2024-10-28 13:53:15','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aea7f11\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aea94b9\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aeaa7e7\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f96aeab9e7\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 13:53:15','2024-10-28 13:53:15','',33656,'https://choiceresources.co.uk/?p=36062',0,'revision','',0),
(36063,1,'2024-10-28 13:53:15','2024-10-28 13:53:15','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p><p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.&nbsp;</p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba1e89\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba2f8f\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba3f44\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba4ead\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 13:53:15','2024-10-28 13:53:15','',33656,'https://choiceresources.co.uk/?p=36063',0,'revision','',0),
(36064,1,'2024-10-28 16:37:53','2024-10-28 16:37:53','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p><p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.&nbsp;</p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba1e89\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba2f8f\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba3f44\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba4ead\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 16:37:53','2024-10-28 16:37:53','',33656,'https://choiceresources.co.uk/?p=36064',0,'revision','',0),
(36065,1,'2024-10-28 16:37:53','2024-10-28 16:37:53','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p><p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.&nbsp;</p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba1e89\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba2f8f\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba3f44\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671f974ba4ead\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;3f9d2d8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 16:37:53','2024-10-28 16:37:53','',33656,'https://choiceresources.co.uk/?p=36065',0,'revision','',0),
(36066,1,'2024-10-28 16:37:53','2024-10-28 16:37:53','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>FREE <font color=\"#10a4e3\">Seasonal</font>&nbsp;Printables:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p>		\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n		<p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.Â </p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n		<p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p><p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.Â </p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1d9f80\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1daea9\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1dbb73\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1dc7c2\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 16:37:53','2024-10-28 16:37:53','',33656,'https://choiceresources.co.uk/?p=36066',0,'revision','',0),
(36067,1,'2024-10-28 17:02:35','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-10-28 17:02:35','0000-00-00 00:00:00','',0,'https://choiceresources.co.uk/?p=36067',0,'post','',0),
(36069,1,'2024-10-28 21:15:53','2024-10-28 21:15:53','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>FREE <font color=\"#10a4e3\">Seasonal</font>&nbsp;Printables:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p>		\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n		<p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.Â </p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n		<p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p><p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.Â </p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1d9f80\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1daea9\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1dbb73\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1dc7c2\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 21:15:53','2024-10-28 21:15:53','',33656,'https://choiceresources.co.uk/?p=36069',0,'revision','',0),
(36070,1,'2024-10-28 21:15:53','2024-10-28 21:15:53','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>FREE <font color=\"#10a4e3\">Seasonal</font>&nbsp;Printables:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p>		\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n		<p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.Â </p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n		<p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p><p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.Â </p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1d9f80\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1daea9\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1dbb73\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fbde1dc7c2\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 21:15:53','2024-10-28 21:15:53','',33656,'https://choiceresources.co.uk/?p=36070',0,'revision','',0),
(36071,1,'2024-10-28 21:15:54','2024-10-28 21:15:54','<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"341\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-1024x437.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-300x128.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-768x328.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1-399x170.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/04/Choice-Logo-Banner-1125-Ã—-480px-3-1.png 1125w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n														<a href=\"#Wordsearches\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/10/Game-Fun-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Word-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Word-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Tracing-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Puzzle-Fun-2-1-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n														<a href=\"#Colouring-fun\">\n							<img width=\"500\" height=\"500\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png\" alt=\"\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New.png 500w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Colouring-Fun-New-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />								</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n		<p style=\"text-align: center;\">FREE&nbsp;Printables</p><p style=\"text-align: center;\">for Children!</p>		\n		<p>Welcome to Choice Resources</p><p style=\"text-align: center;\">Home of FUN Bible printables.</p><p>FREE <font color=\"#10a4e3\">Seasonal</font>&nbsp;Printables:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p>		\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css\">		\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n		<p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.Â </p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\nbody.elementor-page .elementor-widget-menu-anchor{margin-bottom:0}</style>		\n			<a href=\"#\">\n									Games Fun!\n					</a>\n			<a href=\"#\">\n									Shepherd Dots\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									6-in-1 Game Cards\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									To the top \n					</a>\n			<a href=\"#\">\n									Word Fun!\n					</a>\n			<a href=\"#\">\n									Trivia Word Builder\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Shark Facts Handwriting\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Word Puzzle Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Tracing Fun!\n					</a>\n			<a href=\"#\">\n									Reasons to Trust God\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Would we Rather...?\n					</a>\n						Enjoy the entire Maths Bundle in our shop and Roll 3 maths articles in a row to win.					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Trace and Learn\n					</a>\n						Lorem ipsum dolor sit amet consectetur adipiscing elit dolor					\n					<a>\n						Click Here					</a>\n			<a href=\"#\">\n									Buy game\n					</a>\n			<a href=\"#\">\n									Colouring Fun!\n					</a>\n		<p style=\"text-align: center;\">Get creative with interactive colouring tasks!</p>		\n			<a href=\"#\">\n									Bible Figurative Language Colouring\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Bible Story Colouring Bundle\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n			<a href=\"#\">\n									Book Marks to Colour\n					</a>\n						Download all 10 Shepherd Dots challenges  in our shop of try our free sample below					\n					<a>\n						Download Sample					</a>\n		<p>WeÂ thinkÂ you\'llÂ love:</p><p style=\"text-align: center;\"><strong>Exclusive Access PASS</strong> for less than 37p a day!</p><p style=\"text-align: center;\">Gain access to over 100s of Bible Activity Printables with our exclusive member access pass.Â </p>		\n            <ul>    <li>\n                    <a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Shepherd-Dots-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=36041\" data-quantity=\"1\" data-product_id=\"36041\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Shepherd Dots&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fff0a13b03\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:36041,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/shepherd-dots/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    <a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/08/Guess-Who-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\" data-quantity=\"1\" data-product_id=\"35934\" data-product_sku=\"\" aria-label=\"Read more about &ldquo;Bible Character Guess Who&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Read more</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fff0a14f99\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35934,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/bible-character-guess-who/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"><img width=\"1080\" height=\"1080\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional.png 1080w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-1024x1024.png 1024w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-768x768.png 768w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Daily-ABC-Tracing-Devotional-100x100.png 100w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35853\" data-quantity=\"1\" data-product_id=\"35853\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Daily Alphabet Tracing Devotional&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fff0a160a4\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35853,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/daily-alphabet-tracing-devotional/\"></a></li>\n                        </ul>\n    </li>\n        <li>\n                    Sale!<a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"><img width=\"540\" height=\"540\" src=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png\" alt=\"\" loading=\"eager\" decoding=\"async\" srcset=\"https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God.png 540w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-300x300.png 300w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-150x150.png 150w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-399x399.png 399w, https://choiceresources.co.uk/wp-content/uploads/2024/07/Front-Pages-10-Reasons-to-Trust-God-100x100.png 100w\" sizes=\"(max-width: 540px) 100vw, 540px\" /></a>                \n                    <ul>\n                            <li><a href=\"?add-to-cart=35831\" data-quantity=\"1\" data-product_id=\"35831\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Trusting God Tracing Activity for Children!&rdquo;\" aria-describedby=\"\" rel=\"nofollow\">Add to cart</a></li>\n                                                            <li>\n                                    <a id=\"eael_quick_view_671fff0a173ae\" data-quickview-setting=\"{&quot;widget_id&quot;:&quot;8d5bcf8&quot;,&quot;product_id&quot;:35831,&quot;page_id&quot;:33656}\"\n                                      >\n                                    </a>\n                                </li>\n                                                        <li title=\"Details\"><a href=\"https://choiceresources.co.uk/product/trusting-god-tracing-activities-for-children/\"></a></li>\n                        </ul>\n    </li>\n    </ul>        \n		<p style=\"text-align: center;\"><strong>Was:</strong> <del>Â£159</del>Â <strong>Now:</strong> Â£99</p>		\n			<a href=\"#\">\n									Get FULL Access now\n					</a>\n			<style>/*! elementor - v3.21.0 - 30-04-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>NEW 2025 Collection</h2>		\n			<link rel=\"stylesheet\" href=\"https://choiceresources.co.uk/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n									<h3>\n							Bible Verses						\n					</h3>\n									<h3>\n							Learner Choice						\n					</h3>\n									<h3>\n							Supports EQ						\n					</h3>','New Landing Page','','inherit','closed','closed','','33656-revision-v1','','','2024-10-28 21:15:54','2024-10-28 21:15:54','',33656,'https://choiceresources.co.uk/?p=36071',0,'revision','',0);
/*!40000 ALTER TABLE `wphu_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_signups`
--

DROP TABLE IF EXISTS `wphu_signups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_signups` (
  `signup_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `domain` varchar(200) NOT NULL DEFAULT '',
  `path` varchar(100) NOT NULL DEFAULT '',
  `title` longtext NOT NULL,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `activated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `activation_key` varchar(50) NOT NULL DEFAULT '',
  `meta` longtext DEFAULT NULL,
  PRIMARY KEY (`signup_id`),
  KEY `activation_key` (`activation_key`),
  KEY `user_email` (`user_email`),
  KEY `user_login_email` (`user_login`,`user_email`),
  KEY `domain_path` (`domain`(140),`path`(51))
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_signups`
--

LOCK TABLES `wphu_signups` WRITE;
/*!40000 ALTER TABLE `wphu_signups` DISABLE KEYS */;
INSERT INTO `wphu_signups` VALUES
(9,'','','','Amna101','amna_mendoza@hotmail.com','2022-12-14 23:58:47','0000-00-00 00:00:00',0,'b8480db6b7690bde','a:4:{s:7:\"form_id\";s:5:\"19539\";s:8:\"entry_id\";i:65;s:13:\"prepared_data\";a:14:{s:6:\"text-1\";s:7:\"Amna101\";s:6:\"name-1\";s:4:\"Amna\";s:6:\"name-2\";s:7:\"Kulongo\";s:7:\"email-1\";s:24:\"amna_mendoza@hotmail.com\";s:10:\"password-1\";s:120:\"GHKcoqwpb9z2tuYt1VVbSUmS++RmpWJ2m8xJf500xL8NF0hPyG+8Po/9DlT43/wqRJcoGTcaLKqyBu6KBYBdoIGATwAQd5Pkd3hjoLv0r/WvAiyc2SXm8QV0\";s:11:\"referer_url\";s:30:\"https://choiceresources.co.uk/\";s:16:\"forminator_nonce\";s:10:\"9b60396485\";s:16:\"_wp_http_referer\";s:12:\"/register-2/\";s:7:\"form_id\";s:5:\"19539\";s:7:\"page_id\";s:5:\"19823\";s:9:\"form_type\";s:12:\"registration\";s:11:\"current_url\";s:30:\"https://choiceresources.co.uk/\";s:9:\"render_id\";s:1:\"0\";s:6:\"action\";s:35:\"forminator_submit_form_custom-forms\";}s:9:\"user_data\";a:6:{s:10:\"user_login\";s:7:\"Amna101\";s:9:\"user_pass\";s:120:\"GHKcoqwpb9z2tuYt1VVbSUmS++RmpWJ2m8xJf500xL8NF0hPyG+8Po/9DlT43/wqRJcoGTcaLKqyBu6KBYBdoIGATwAQd5Pkd3hjoLv0r/WvAiyc2SXm8QV0\";s:10:\"user_email\";s:24:\"amna_mendoza@hotmail.com\";s:10:\"first_name\";s:4:\"Amna\";s:9:\"last_name\";s:7:\"Kulongo\";s:4:\"role\";s:8:\"customer\";}}'),
(26,'','','','jermaineagw','alexfremanbest@yandex.ru','2023-02-05 04:30:12','0000-00-00 00:00:00',0,'8ee773bafe1d1a1e','a:4:{s:7:\"form_id\";s:5:\"19539\";s:8:\"entry_id\";i:166;s:13:\"prepared_data\";a:15:{s:6:\"text-1\";s:11:\"jermaineagw\";s:6:\"name-1\";s:11:\"jermaineagw\";s:6:\"name-2\";s:11:\"jermaineagw\";s:7:\"email-1\";s:24:\"alexfremanbest@yandex.ru\";s:10:\"password-1\";s:124:\"pgjumwU9EhFjdZYcq21FS4bsCfaZpqezplrMfvDRHHOdliTZdkqVYvr78leVeQTNa71CY4aWm4P0AIVQ0dfLCboRtYLPlYsSxIpGRGQo7ThoJ1+y5OGD2+hKxVA=\";s:11:\"referer_url\";s:30:\"https://choiceresources.co.uk/\";s:16:\"forminator_nonce\";s:10:\"3afa777003\";s:16:\"_wp_http_referer\";s:12:\"/register-2/\";s:7:\"form_id\";s:5:\"19539\";s:7:\"page_id\";s:5:\"19823\";s:9:\"form_type\";s:12:\"registration\";s:11:\"current_url\";s:30:\"https://choiceresources.co.uk/\";s:9:\"render_id\";s:1:\"0\";s:6:\"action\";s:35:\"forminator_submit_form_custom-forms\";s:20:\"g-recaptcha-response\";s:633:\"03AFY_a8Vp511B1BDiK-NJ9Vo7fVvFmjgkt16Iq7tQbDI4rpHLm8UxRo06OvUDimnMo6ORbkKnBiAYerKemfQyH4s7Xa4wZZMdyYfD4V5nGCLGopfKSv2iUJa8yB8xG7OwpsyxkvTlH_2dF5LbDk7VNYOcPUvXq9-HQS3qnMfz34KkpwjbZSGiySf51-hjQBHTqyRvcXAYp3dVT7Dd1PVU5ntfpzGtPuE-EsCLwfJztIdbwllNnRHU3CSz1bCMVbKOgF1OSDFPs0NHaBp0jyGZWVqaexSnxD4PTuofGvswx9WFAeQZtckfbTlTf3pQEgcK2brM97RlhWtViNVmFwbKyiQ_f_4Ciu01MYHdNM0GEmCtgbTM_bhVKBJ7pXM80CX8O6eALCa0Lgz5fH0q3W9O_NUWf-T07Ht8rFvqlcksbb80uWxRgLGhAu-PC63nVv0X5jB2E23FJxEtSeeAUzF1ThHZgpaZYxwfgeWjjA1nX6W3YgHhU7RiHkN75GCVCpvojYvQ5_pSTGeqb_o1ztlRWygVW43D-ymKeIR0i5WzrXHcrdYhnbrESXaybnbT9D13OYUOBWuDNgcX24y4mtihEsvLk_p2PfPh4IlGNnlz0hOc5NBNcrn5I_A\";}s:9:\"user_data\";a:6:{s:10:\"user_login\";s:11:\"jermaineagw\";s:9:\"user_pass\";s:124:\"pgjumwU9EhFjdZYcq21FS4bsCfaZpqezplrMfvDRHHOdliTZdkqVYvr78leVeQTNa71CY4aWm4P0AIVQ0dfLCboRtYLPlYsSxIpGRGQo7ThoJ1+y5OGD2+hKxVA=\";s:10:\"user_email\";s:24:\"alexfremanbest@yandex.ru\";s:10:\"first_name\";s:11:\"jermaineagw\";s:9:\"last_name\";s:11:\"jermaineagw\";s:4:\"role\";s:8:\"customer\";}}');
/*!40000 ALTER TABLE `wphu_signups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_term_relationships`
--

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

--
-- Dumping data for table `wphu_term_relationships`
--

LOCK TABLES `wphu_term_relationships` WRITE;
/*!40000 ALTER TABLE `wphu_term_relationships` DISABLE KEYS */;
INSERT INTO `wphu_term_relationships` VALUES
(43,28,0),
(134,28,0),
(172,29,0),
(175,29,0),
(181,29,0),
(183,29,0),
(195,29,0),
(209,28,0),
(221,28,0),
(223,28,0),
(225,40,0),
(228,40,0),
(233,28,0),
(299,31,0),
(305,28,0),
(316,28,0),
(322,28,0),
(324,28,0),
(336,28,0),
(341,28,0),
(344,28,0),
(360,28,0),
(389,28,0),
(399,29,0),
(408,28,0),
(413,31,0),
(415,31,0),
(418,31,0),
(423,31,0),
(425,31,0),
(430,31,0),
(433,31,0),
(436,31,0),
(439,31,0),
(441,31,0),
(450,59,0),
(479,28,0),
(496,28,0),
(500,60,0),
(503,30,0),
(577,29,0),
(587,29,0),
(589,29,0),
(601,29,0),
(607,29,0),
(611,29,0),
(626,29,0),
(628,29,0),
(631,29,0),
(648,60,0),
(660,30,0),
(662,30,0),
(664,30,0),
(668,31,0),
(738,28,0),
(744,28,0),
(1067,8,0),
(1067,9,0),
(1067,25,0),
(1067,87,0),
(1073,28,0),
(1152,59,0),
(1439,60,0),
(1444,60,0),
(1449,60,0),
(1515,60,0),
(1771,60,0),
(1797,60,0),
(1850,60,0),
(1851,60,0),
(1854,60,0),
(1858,60,0),
(1866,60,0),
(3302,60,0),
(3308,60,0),
(3898,60,0),
(3900,60,0),
(3904,60,0),
(3913,60,0),
(4270,30,0),
(4723,29,0),
(4860,28,0),
(4885,3,0),
(5254,28,0),
(5257,28,0),
(5271,28,0),
(5273,28,0),
(5308,28,0),
(5312,28,0),
(5487,30,0),
(5633,61,0),
(5637,31,0),
(5644,28,0),
(5646,28,0),
(5734,30,0),
(5740,30,0),
(5753,31,0),
(5756,59,0),
(5759,31,0),
(5769,31,0),
(5782,31,0),
(5831,59,0),
(5886,59,0),
(5927,59,0),
(6014,28,0),
(6072,28,0),
(6076,28,0),
(6358,31,0),
(6368,31,0),
(6370,31,0),
(6373,31,0),
(6376,31,0),
(6388,31,0),
(6391,31,0),
(6561,61,0),
(6565,61,0),
(6567,61,0),
(6719,30,0),
(6726,30,0),
(6737,30,0),
(6739,30,0),
(6743,30,0),
(6747,30,0),
(6751,30,0),
(6753,30,0),
(6928,59,0),
(7109,61,0),
(7120,30,0),
(7214,30,0),
(7219,61,0),
(7263,61,0),
(7273,61,0),
(7276,61,0),
(7300,61,0),
(7302,61,0),
(7304,61,0),
(7308,61,0),
(7311,61,0),
(7439,61,0),
(7456,3,0),
(7479,61,0),
(7495,30,0),
(8077,202,0),
(8077,208,0),
(8121,202,0),
(8121,209,0),
(8122,203,0),
(8122,209,0),
(8612,211,0),
(8656,61,0),
(8657,59,0),
(8674,31,0),
(8681,59,0),
(8855,31,0),
(8863,31,0),
(8879,31,0),
(8881,31,0),
(8917,31,0),
(8927,31,0),
(8931,29,0),
(8933,29,0),
(8958,28,0),
(8968,28,0),
(8974,28,0),
(8994,28,0),
(8999,28,0),
(9010,28,0),
(9012,28,0),
(9018,28,0),
(9033,28,0),
(9040,28,0),
(9138,28,0),
(9375,59,0),
(9469,61,0),
(9486,28,0),
(9514,28,0),
(9517,28,0),
(9622,61,0),
(9763,28,0),
(10119,28,0),
(10168,28,0),
(10263,61,0),
(10541,28,0),
(10606,216,0),
(10628,216,0),
(10629,216,0),
(10630,216,0),
(10631,216,0),
(10632,216,0),
(10633,216,0),
(10634,216,0),
(10635,216,0),
(10636,216,0),
(10644,216,0),
(10645,216,0),
(10646,216,0),
(10649,216,0),
(10650,216,0),
(10651,216,0),
(10654,216,0),
(10655,216,0),
(10658,216,0),
(10659,216,0),
(10660,216,0),
(10672,28,0),
(11851,61,0),
(12304,31,0),
(12332,31,0),
(12385,31,0),
(12426,31,0),
(12445,31,0),
(12465,31,0),
(12481,31,0),
(12531,31,0),
(12971,31,0),
(12986,28,0),
(13207,31,0),
(13306,31,0),
(13310,31,0),
(13312,28,0),
(13419,31,0),
(13538,28,0),
(13544,28,0),
(13553,28,0),
(13568,28,0),
(13585,28,0),
(13641,28,0),
(13710,31,0),
(13734,28,0),
(13740,28,0),
(13746,28,0),
(13749,31,0),
(13750,28,0),
(13805,28,0),
(13979,28,0),
(13999,61,0),
(14027,28,0),
(14029,61,0),
(14104,61,0),
(14162,61,0),
(14184,61,0),
(14330,61,0),
(14335,61,0),
(14341,61,0),
(14344,61,0),
(14346,61,0),
(14355,61,0),
(14369,61,0),
(14375,219,0),
(14545,61,0),
(14557,61,0),
(14583,61,0),
(14585,61,0),
(14592,61,0),
(14673,61,0),
(14676,61,0),
(14695,61,0),
(14715,61,0),
(14748,61,0),
(14807,61,0),
(14861,29,0),
(14864,29,0),
(15074,28,0),
(15079,28,0),
(15086,28,0),
(15089,28,0),
(15092,28,0),
(15097,28,0),
(15105,28,0),
(15264,61,0),
(15417,30,0),
(15496,31,0),
(15930,28,0),
(15939,28,0),
(15993,61,0),
(16040,28,0),
(16048,28,0),
(16054,28,0),
(16057,28,0),
(16070,28,0),
(16159,28,0),
(16164,28,0),
(16168,28,0),
(16600,61,0),
(16625,30,0),
(16632,30,0),
(16635,30,0),
(16636,61,0),
(16664,30,0),
(16667,61,0),
(16907,61,0),
(17430,61,0),
(17461,61,0),
(17464,61,0),
(17466,61,0),
(17477,61,0),
(17490,61,0),
(18078,30,0),
(18338,61,0),
(18763,61,0),
(18856,28,0),
(18858,28,0),
(18862,28,0),
(18864,28,0),
(18867,28,0),
(18869,28,0),
(18959,30,0),
(19046,30,0),
(19354,212,0),
(19356,212,0),
(19366,212,0),
(19370,212,0),
(19412,212,0),
(19423,212,0),
(19447,212,0),
(19683,30,0),
(20175,212,0),
(20354,61,0),
(20379,349,0),
(20415,28,0),
(20549,351,0),
(20567,28,0),
(20571,28,0),
(20572,351,0),
(20575,349,0),
(20576,28,0),
(20581,351,0),
(20714,61,0),
(20810,28,0),
(20812,28,0),
(20819,28,0),
(20874,28,0),
(21449,61,0),
(21455,61,0),
(21545,61,0),
(21547,61,0),
(21549,61,0),
(21555,61,0),
(21562,61,0),
(21567,61,0),
(21571,61,0),
(21587,61,0),
(21588,158,0),
(21593,158,0),
(21599,158,0),
(21603,61,0),
(21613,61,0),
(21689,351,0),
(23773,28,0),
(24045,352,0),
(24063,352,0),
(24073,352,0),
(24853,29,0),
(24964,28,0),
(26538,28,0),
(26651,212,0),
(26671,212,0),
(27714,30,0),
(27716,30,0),
(27779,30,0),
(29019,29,0),
(29065,29,0),
(29067,29,0),
(30420,28,0),
(30718,29,0),
(30818,212,0),
(30858,352,0),
(30869,352,0),
(31159,28,0),
(31166,28,0),
(31309,29,0),
(31449,29,0),
(31477,29,0),
(31681,29,0),
(31686,29,0),
(32021,29,0),
(32751,349,0),
(32752,349,0),
(32821,4,0),
(32821,25,0),
(32823,4,0),
(32823,409,0),
(32825,4,0),
(32825,25,0),
(32827,4,0),
(32827,25,0),
(33174,31,0),
(33258,1,0),
(33971,30,0),
(34067,29,0),
(34070,29,0),
(34072,29,0),
(34079,29,0),
(34082,29,0),
(34089,29,0),
(34632,29,0),
(35342,29,0),
(35642,352,0),
(35831,4,0),
(35831,409,0),
(35853,4,0),
(35853,401,0),
(35853,429,0),
(35934,4,0),
(35934,25,0),
(36041,4,0),
(36041,431,0);
/*!40000 ALTER TABLE `wphu_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_term_taxonomy`
--

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

--
-- Dumping data for table `wphu_term_taxonomy`
--

LOCK TABLES `wphu_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wphu_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wphu_term_taxonomy` VALUES
(1,1,'category','',0,1),
(3,3,'nav_menu','',0,2),
(4,4,'product_type','',0,8),
(5,5,'product_type','',0,0),
(6,6,'product_type','',0,0),
(7,7,'product_type','',0,0),
(8,8,'product_visibility','',0,1),
(9,9,'product_visibility','',0,1),
(10,10,'product_visibility','',0,0),
(11,11,'product_visibility','',0,0),
(12,12,'product_visibility','',0,0),
(13,13,'product_visibility','',0,0),
(14,14,'product_visibility','',0,0),
(15,15,'product_visibility','',0,0),
(16,16,'product_visibility','',0,0),
(18,18,'product_tag','',0,0),
(19,19,'product_tag','',0,0),
(20,20,'product_tag','',0,0),
(21,21,'product_tag','',0,0),
(22,22,'product_tag','',0,0),
(23,23,'product_tag','',0,0),
(25,25,'product_cat','',0,5),
(28,28,'elementor_library_type','',0,1),
(29,29,'elementor_library_type','',0,1),
(30,30,'elementor_library_type','',0,1),
(31,31,'elementor_library_type','',0,1),
(32,32,'elementor_library_category','',0,0),
(33,33,'elementor_library_category','',0,0),
(34,34,'elementor_library_category','',0,0),
(35,35,'elementor_library_category','',0,0),
(36,36,'elementor_library_category','',0,0),
(37,37,'elementor_library_category','',0,0),
(38,38,'elementor_library_category','',0,0),
(39,39,'elementor_library_category','',0,0),
(40,40,'nav_menu','',0,2),
(58,58,'post_tag','',0,0),
(59,59,'elementor_library_type','',0,0),
(60,60,'elementor_library_type','',0,0),
(61,61,'elementor_library_type','',0,0),
(63,63,'product_tag','',0,0),
(64,64,'product_tag','',0,0),
(65,65,'product_tag','',0,0),
(66,66,'product_tag','',0,0),
(67,67,'product_tag','',0,0),
(68,68,'product_tag','',0,0),
(69,69,'product_tag','',0,0),
(70,70,'product_tag','',0,0),
(71,71,'product_tag','',0,0),
(72,72,'product_tag','',0,0),
(73,73,'product_tag','',0,0),
(74,74,'product_tag','',0,0),
(75,75,'product_tag','',0,0),
(76,76,'product_tag','',0,0),
(77,77,'product_tag','',0,0),
(78,78,'product_tag','',0,0),
(79,79,'product_tag','',0,0),
(80,80,'product_tag','',0,0),
(81,81,'product_tag','',0,0),
(82,82,'product_tag','',0,0),
(83,83,'product_tag','',0,0),
(84,84,'product_tag','',0,0),
(85,85,'product_tag','',0,0),
(86,86,'product_tag','',0,0),
(87,87,'product_type','',0,1),
(88,88,'product_type','',0,0),
(90,90,'product_tag','',0,0),
(91,91,'product_tag','',0,0),
(92,92,'product_tag','',0,0),
(93,93,'product_tag','',0,0),
(100,100,'product_tag','',0,0),
(101,101,'product_tag','',0,0),
(102,102,'product_tag','',0,0),
(103,103,'product_tag','',0,0),
(105,105,'product_tag','',0,0),
(106,106,'product_tag','',0,0),
(111,111,'product_tag','',0,0),
(112,112,'product_tag','',0,0),
(113,113,'product_tag','',0,0),
(114,114,'product_tag','',0,0),
(115,115,'product_tag','',0,0),
(116,116,'product_tag','',0,0),
(117,117,'product_tag','',0,0),
(118,118,'product_tag','',0,0),
(119,119,'product_tag','',0,0),
(120,120,'product_tag','',0,0),
(121,121,'product_tag','',0,0),
(122,122,'product_tag','',0,0),
(123,123,'product_tag','',0,0),
(124,124,'product_tag','',0,0),
(125,125,'product_tag','',0,0),
(126,126,'product_tag','',0,0),
(127,127,'product_tag','',0,0),
(128,128,'product_tag','',0,0),
(129,129,'product_tag','',0,0),
(130,130,'product_tag','',0,0),
(131,131,'product_tag','',0,0),
(132,132,'product_tag','',0,0),
(133,133,'product_tag','',0,0),
(134,134,'product_tag','',0,0),
(158,158,'elementor_library_type','',0,0),
(159,159,'product_tag','',0,0),
(160,160,'post_tag','',0,0),
(161,161,'elementor_library_type','',0,0),
(162,162,'product_tag','',0,0),
(163,163,'product_tag','',0,0),
(164,164,'product_tag','',0,0),
(165,165,'product_tag','',0,0),
(197,197,'product_tag','',0,0),
(198,198,'product_tag','',0,0),
(199,199,'product_tag','',0,0),
(200,200,'cartflows_step_type','',0,0),
(201,201,'cartflows_step_type','',0,0),
(202,202,'cartflows_step_type','',0,2),
(203,203,'cartflows_step_type','',0,1),
(204,204,'cartflows_step_type','',0,0),
(205,205,'cartflows_step_type','',0,0),
(206,206,'cartflows_step_flow','',0,0),
(207,207,'cartflows_step_flow','',0,0),
(208,208,'cartflows_step_flow','',0,1),
(209,209,'cartflows_step_flow','',0,2),
(211,211,'wp_theme','',0,1),
(212,212,'elementor_library_type','',0,3),
(216,216,'nav_menu','',0,21),
(219,219,'nav_menu','',0,1),
(230,230,'product_tag','',0,0),
(232,232,'nav_menu','',0,0),
(233,233,'product_tag','',0,0),
(234,234,'product_tag','',0,0),
(235,235,'product_tag','',0,0),
(264,264,'product_tag','',0,0),
(265,265,'product_tag','',0,0),
(266,266,'product_tag','',0,0),
(267,267,'product_tag','',0,0),
(268,268,'product_tag','',0,0),
(270,270,'product_tag','',0,0),
(271,271,'product_tag','',0,0),
(272,272,'product_tag','',0,0),
(274,274,'product_tag','',0,0),
(275,275,'product_tag','',0,0),
(276,276,'product_tag','',0,0),
(278,278,'product_tag','',0,0),
(279,279,'product_tag','',0,0),
(280,280,'product_tag','',0,0),
(283,283,'product_tag','',0,0),
(284,284,'product_tag','',0,0),
(285,285,'product_tag','',0,0),
(286,286,'product_tag','',0,0),
(287,287,'product_tag','',0,0),
(288,288,'product_tag','',0,0),
(289,289,'product_tag','',0,0),
(290,290,'product_tag','',0,0),
(291,291,'product_tag','',0,0),
(292,292,'product_tag','',0,0),
(293,293,'product_tag','',0,0),
(294,294,'product_tag','',0,0),
(295,295,'product_tag','',0,0),
(297,297,'product_tag','',0,0),
(298,298,'product_tag','',0,0),
(299,299,'product_tag','',0,0),
(300,300,'product_tag','',0,0),
(301,301,'product_tag','',0,0),
(302,302,'product_tag','',0,0),
(303,303,'product_tag','',0,0),
(305,305,'product_tag','',0,0),
(307,307,'product_tag','',0,0),
(308,308,'product_tag','',0,0),
(309,309,'product_tag','',0,0),
(310,310,'product_tag','',0,0),
(311,311,'product_tag','',0,0),
(312,312,'product_tag','',0,0),
(313,313,'product_tag','',0,0),
(318,318,'product_tag','',0,0),
(319,319,'product_tag','',0,0),
(320,320,'product_tag','',0,0),
(321,321,'product_tag','',0,0),
(322,322,'product_tag','',0,0),
(332,332,'product_tag','',0,0),
(333,333,'product_tag','',0,0),
(334,334,'product_tag','',0,0),
(335,335,'product_tag','',0,0),
(349,349,'nav_menu','',0,4),
(351,351,'nav_menu','',0,4),
(352,352,'elementor_library_type','',0,1),
(392,392,'product_tag','',0,0),
(393,393,'product_tag','',0,0),
(394,394,'product_tag','',0,0),
(395,395,'product_tag','',0,0),
(396,396,'product_tag','',0,0),
(400,400,'product_tag','',0,0),
(401,401,'product_cat','',0,1),
(407,407,'product_cat','',401,0),
(409,409,'product_cat','',401,2),
(429,429,'product_cat','',401,1),
(430,430,'product_cat','',401,0),
(431,431,'product_cat','',0,1);
/*!40000 ALTER TABLE `wphu_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_termmeta`
--

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

--
-- Dumping data for table `wphu_termmeta`
--

LOCK TABLES `wphu_termmeta` WRITE;
/*!40000 ALTER TABLE `wphu_termmeta` DISABLE KEYS */;
INSERT INTO `wphu_termmeta` VALUES
(2,18,'product_count_product_tag','0'),
(3,19,'product_count_product_tag','0'),
(4,20,'product_count_product_tag','0'),
(5,21,'product_count_product_tag','0'),
(6,22,'product_count_product_tag','0'),
(7,23,'product_count_product_tag','0'),
(11,25,'order','20'),
(12,25,'display_type','products'),
(13,25,'thumbnail_id','0'),
(22,25,'product_count_product_cat','4'),
(73,63,'product_count_product_tag','0'),
(74,64,'product_count_product_tag','0'),
(75,65,'product_count_product_tag','0'),
(76,66,'product_count_product_tag','0'),
(77,67,'product_count_product_tag','0'),
(78,68,'product_count_product_tag','0'),
(79,69,'product_count_product_tag','0'),
(80,70,'product_count_product_tag','0'),
(81,71,'product_count_product_tag','0'),
(82,72,'product_count_product_tag','0'),
(83,73,'product_count_product_tag','0'),
(84,74,'product_count_product_tag','0'),
(85,75,'product_count_product_tag','0'),
(86,76,'product_count_product_tag','0'),
(87,77,'product_count_product_tag','0'),
(88,78,'product_count_product_tag','0'),
(89,79,'product_count_product_tag','0'),
(90,80,'product_count_product_tag','0'),
(91,81,'product_count_product_tag','0'),
(92,82,'product_count_product_tag','0'),
(93,83,'product_count_product_tag','0'),
(97,84,'product_count_product_tag','0'),
(98,85,'product_count_product_tag','0'),
(99,86,'product_count_product_tag','0'),
(102,90,'product_count_product_tag','0'),
(103,91,'product_count_product_tag','0'),
(104,92,'product_count_product_tag','0'),
(105,93,'product_count_product_tag','0'),
(128,100,'product_count_product_tag','0'),
(129,101,'product_count_product_tag','0'),
(130,102,'product_count_product_tag','0'),
(131,103,'product_count_product_tag','0'),
(136,105,'product_count_product_tag','0'),
(137,106,'product_count_product_tag','0'),
(155,111,'product_count_product_tag','0'),
(156,112,'product_count_product_tag','0'),
(157,113,'product_count_product_tag','0'),
(158,114,'product_count_product_tag','0'),
(159,115,'product_count_product_tag','0'),
(160,116,'product_count_product_tag','0'),
(161,117,'product_count_product_tag','0'),
(162,118,'product_count_product_tag','0'),
(163,119,'product_count_product_tag','0'),
(164,120,'product_count_product_tag','0'),
(165,121,'product_count_product_tag','0'),
(166,122,'product_count_product_tag','0'),
(167,123,'product_count_product_tag','0'),
(168,124,'product_count_product_tag','0'),
(169,125,'product_count_product_tag','0'),
(170,126,'product_count_product_tag','0'),
(171,127,'product_count_product_tag','0'),
(172,128,'product_count_product_tag','0'),
(173,129,'product_count_product_tag','0'),
(174,130,'product_count_product_tag','0'),
(175,131,'product_count_product_tag','0'),
(176,132,'product_count_product_tag','0'),
(177,133,'product_count_product_tag','0'),
(178,134,'product_count_product_tag','0'),
(260,159,'product_count_product_tag','0'),
(262,162,'product_count_product_tag','0'),
(263,163,'product_count_product_tag','0'),
(264,164,'product_count_product_tag','0'),
(265,165,'product_count_product_tag','0'),
(370,197,'product_count_product_tag','0'),
(372,198,'product_count_product_tag','0'),
(373,199,'product_count_product_tag','0'),
(416,230,'product_count_product_tag','0'),
(425,233,'product_count_product_tag','0'),
(426,234,'product_count_product_tag','0'),
(427,235,'product_count_product_tag','0'),
(501,264,'product_count_product_tag','0'),
(502,265,'product_count_product_tag','0'),
(503,266,'product_count_product_tag','0'),
(504,267,'product_count_product_tag','0'),
(505,268,'product_count_product_tag','0'),
(508,270,'product_count_product_tag','0'),
(509,271,'product_count_product_tag','0'),
(510,272,'product_count_product_tag','0'),
(513,274,'product_count_product_tag','0'),
(514,275,'product_count_product_tag','0'),
(515,276,'product_count_product_tag','0'),
(518,278,'product_count_product_tag','0'),
(519,279,'product_count_product_tag','0'),
(520,280,'product_count_product_tag','0'),
(525,283,'product_count_product_tag','0'),
(526,284,'product_count_product_tag','0'),
(527,285,'product_count_product_tag','0'),
(528,286,'product_count_product_tag','0'),
(529,287,'product_count_product_tag','0'),
(530,288,'product_count_product_tag','0'),
(531,289,'product_count_product_tag','0'),
(532,290,'product_count_product_tag','0'),
(533,291,'product_count_product_tag','0'),
(534,292,'product_count_product_tag','0'),
(535,293,'product_count_product_tag','0'),
(536,294,'product_count_product_tag','0'),
(537,295,'product_count_product_tag','0'),
(540,297,'product_count_product_tag','0'),
(541,298,'product_count_product_tag','0'),
(542,299,'product_count_product_tag','0'),
(543,300,'product_count_product_tag','0'),
(544,301,'product_count_product_tag','0'),
(545,302,'product_count_product_tag','0'),
(546,303,'product_count_product_tag','0'),
(549,305,'product_count_product_tag','0'),
(552,307,'product_count_product_tag','0'),
(553,308,'product_count_product_tag','0'),
(554,309,'product_count_product_tag','0'),
(555,310,'product_count_product_tag','0'),
(556,311,'product_count_product_tag','0'),
(557,312,'product_count_product_tag','0'),
(558,313,'product_count_product_tag','0'),
(580,318,'product_count_product_tag','0'),
(582,319,'product_count_product_tag','0'),
(583,320,'product_count_product_tag','0'),
(584,321,'product_count_product_tag','0'),
(585,322,'product_count_product_tag','0'),
(614,332,'product_count_product_tag','0'),
(615,333,'product_count_product_tag','0'),
(616,334,'product_count_product_tag','0'),
(617,335,'product_count_product_tag','0'),
(767,392,'product_count_product_tag','0'),
(768,393,'product_count_product_tag','0'),
(769,394,'product_count_product_tag','0'),
(770,395,'product_count_product_tag','0'),
(771,396,'product_count_product_tag','0'),
(791,400,'product_count_product_tag','0'),
(799,401,'order','0'),
(800,401,'display_type',''),
(801,401,'thumbnail_id','0'),
(817,407,'order','0'),
(818,407,'display_type',''),
(819,407,'thumbnail_id','0'),
(823,409,'order','0'),
(824,409,'display_type',''),
(825,409,'thumbnail_id','0'),
(871,401,'product_count_product_cat','3'),
(891,407,'product_count_product_cat','0'),
(902,409,'product_count_product_cat','2'),
(909,429,'order','0'),
(910,429,'display_type',''),
(911,429,'thumbnail_id','0'),
(912,430,'order','0'),
(913,430,'display_type',''),
(914,430,'thumbnail_id','0'),
(915,429,'product_count_product_cat','1'),
(916,431,'order','0'),
(917,431,'product_count_product_cat','1');
/*!40000 ALTER TABLE `wphu_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_terms`
--

DROP TABLE IF EXISTS `wphu_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) 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=432 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_terms`
--

LOCK TABLES `wphu_terms` WRITE;
/*!40000 ALTER TABLE `wphu_terms` DISABLE KEYS */;
INSERT INTO `wphu_terms` VALUES
(1,'Uncategorized','uncategorized',0),
(3,'Secondary menu','secondary-menu',0),
(4,'simple','simple',0),
(5,'grouped','grouped',0),
(6,'variable','variable',0),
(7,'external','external',0),
(8,'exclude-from-search','exclude-from-search',0),
(9,'exclude-from-catalog','exclude-from-catalog',0),
(10,'featured','featured',0),
(11,'outofstock','outofstock',0),
(12,'rated-1','rated-1',0),
(13,'rated-2','rated-2',0),
(14,'rated-3','rated-3',0),
(15,'rated-4','rated-4',0),
(16,'rated-5','rated-5',0),
(18,'nice','nice',0),
(19,'big','big',0),
(20,'blue','blue',0),
(21,'pink','pink',0),
(22,'red','red',0),
(23,'bag','bag',0),
(25,'All Resources','resources',0),
(28,'header','header',0),
(29,'footer','footer',0),
(30,'product','product',0),
(31,'single-post','single-post',0),
(32,'Maths','maths',0),
(33,'English','english',0),
(34,'Science','science',0),
(35,'History','history',0),
(36,'Art','art',0),
(37,'STEM','stem',0),
(38,'Geography','geography',0),
(39,'Life Skills','life-skills',0),
(40,'Top Menu','top-menu',0),
(58,'Planting','planting',0),
(59,'archive','archive',0),
(60,'product-archive','product-archive',0),
(61,'page','page',0),
(63,'Science (Plants)','science-plants',0),
(64,'English (early reading)','english-early-reading',0),
(65,'Science (animals)','science-animals',0),
(66,'English (read/write)','english-read-write',0),
(67,'Maths (coordinates)','maths-coordinates',0),
(68,'Christian','christian',0),
(69,'Maths','maths',0),
(70,'Science','science',0),
(71,'outdoor','outdoor',0),
(72,'Plants','plants',0),
(73,'Graphs','graphs',0),
(74,'Measure','measure',0),
(75,'Number','number',0),
(76,'months','months',0),
(77,'calendar','calendar',0),
(78,'time','time',0),
(79,'English','english',0),
(80,'reading','reading',0),
(81,'forces','forces',0),
(82,'angles','angles',0),
(83,'gravity','gravity',0),
(84,'counting','counting',0),
(85,'numbers','numbers',0),
(86,'3+','3',0),
(87,'subscription','subscription',0),
(88,'Variable Subscription','variable-subscription',0),
(90,'art','art',0),
(91,'trackers','trackers',0),
(92,'drawing','drawing',0),
(93,'design','design',0),
(100,'Read Along','read-along',0),
(101,'Early Reading','early-reading',0),
(102,'Gratitude','gratitude',0),
(103,'Simple Sentences','simple-sentences',0),
(105,'Faith','faith',0),
(106,'birds','birds',0),
(111,'alphabet','alphabet',0),
(112,'phonics','phonics',0),
(113,'sentences','sentences',0),
(114,'feelings','feelings',0),
(115,'emotions','emotions',0),
(116,'outdoor learning','outdoor-learning',0),
(117,'wind','wind',0),
(118,'nature','nature',0),
(119,'trajectory','trajectory',0),
(120,'quiz','quiz',0),
(121,'states of matter','states-of-matter',0),
(122,'substance','substance',0),
(123,'rain','rain',0),
(124,'ice','ice',0),
(125,'solid','solid',0),
(126,'liquid','liquid',0),
(127,'gas','gas',0),
(128,'animals','animals',0),
(129,'capital letters','capital-letters',0),
(130,'common letters','common-letters',0),
(131,'fish','fish',0),
(132,'addition','addition',0),
(133,'adding','adding',0),
(134,'number sentence','number-sentence',0),
(158,'search-results','search-results',0),
(159,'100 Square','100-square',0),
(160,'Children','children',0),
(161,'section','section',0),
(162,'Assessment','assessment',0),
(163,'Geography','geography',0),
(164,'Physical','physical',0),
(165,'music','music',0),
(197,'clouds','clouds',0),
(198,'Subscription','subscription',0),
(199,'letter writing','letter-writing',0),
(200,'Landing','landing',0),
(201,'Optin (Woo)','optin',0),
(202,'Checkout (Woo)','checkout',0),
(203,'Thank You (Woo)','thankyou',0),
(204,'Upsell (Woo)','upsell',0),
(205,'Downsell (Woo)','downsell',0),
(206,'flow-7703','flow-7703',0),
(207,'flow-7818','flow-7818',0),
(208,'flow-7962','flow-7962',0),
(209,'flow-8120','flow-8120',0),
(211,'hello-elementor','hello-elementor',0),
(212,'popup','popup',0),
(216,'Printables','printables',0),
(219,'Primary menu','primary-menu',0),
(230,'Spellings','spellings',0),
(232,'Shop Menu','shop-menu',0),
(233,'Space','space',0),
(234,'Cross Curricula Learning','cross-curricula-learning',0),
(235,'Cross Curricula','cross-curricula',0),
(264,'waves','waves',0),
(265,'water','water',0),
(266,'Jesus','jesus',0),
(267,'Pencil Control','pencil-control',0),
(268,'Handwriting','handwriting',0),
(270,'hair','hair',0),
(271,'comb','comb',0),
(272,'love','love',0),
(274,'insects','insects',0),
(275,'bees','bees',0),
(276,'flying','flying',0),
(278,'cars','cars',0),
(279,'pray','pray',0),
(280,'prayer','prayer',0),
(283,'Adam and Eve','adam-and-eve',0),
(284,'Snake','snake',0),
(285,'Garden of Eden','garden-of-eden',0),
(286,'Healthy','healthy',0),
(287,'Unhealthy','unhealthy',0),
(288,'Food','food',0),
(289,'Colouring','colouring',0),
(290,'Bible Stories','bible-stories',0),
(291,'Genesis','genesis',0),
(292,'Moses','moses',0),
(293,'Israel','israel',0),
(294,'Disobey','disobey',0),
(295,'Disobedient','disobedient',0),
(297,'Jonah','jonah',0),
(298,'Numbers 1 to 5','numbers-1-to-5',0),
(299,'Bible Story','bible-story',0),
(300,'Number Recognition','number-recognition',0),
(301,'Noah','noah',0),
(302,'Creation','creation',0),
(303,'Last Supper','last-supper',0),
(305,'Joseph','joseph',0),
(307,'Colour Wheel','colour-wheel',0),
(308,'High Frequency Words','high-frequency-words',0),
(309,'Questions','questions',0),
(310,'sea animals','sea-animals',0),
(311,'tracing','tracing',0),
(312,'gift','gift',0),
(313,'present','present',0),
(318,'truth','truth',0),
(319,'colours','colours',0),
(320,'grateful','grateful',0),
(321,'pets','pets',0),
(322,'sanctuary','sanctuary',0),
(332,'tree','tree',0),
(333,'Numbers 1 to 10','numbers-1-to-10',0),
(334,'Bible Promises','bible-promises',0),
(335,'Vehicles','vehicles',0),
(349,'Main Menu','main-menu',0),
(351,'Menu 2','menu-2',0),
(352,'loop-item','loop-item',0),
(392,'number facts','number-facts',0),
(393,'doubles','doubles',0),
(394,'numbers to 10','numbers-to-10',0),
(395,'number shapes','number-shapes',0),
(396,'Bible facts','bible-facts',0),
(400,'poetry','poetry',0),
(401,'10-Minute Activities','10-minute-activities',0),
(407,'Drawing','drawing',0),
(409,'Craft','craft',0),
(429,'Tracing','tracing',0),
(430,'Colouring','colouring',0),
(431,'Games','games',0);
/*!40000 ALTER TABLE `wphu_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_um_metadata`
--

DROP TABLE IF EXISTS `wphu_um_metadata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_um_metadata` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `um_key` varchar(255) DEFAULT NULL,
  `um_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id_indx` (`user_id`),
  KEY `meta_key_indx` (`um_key`),
  KEY `meta_value_indx` (`um_value`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_um_metadata`
--

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

--
-- Table structure for table `wphu_usermeta`
--

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

--
-- Dumping data for table `wphu_usermeta`
--

LOCK TABLES `wphu_usermeta` WRITE;
/*!40000 ALTER TABLE `wphu_usermeta` DISABLE KEYS */;
INSERT INTO `wphu_usermeta` VALUES
(1,1,'nickname','admin'),
(2,1,'first_name','Ivan'),
(3,1,'last_name','Kulongo'),
(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,'wphu_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(13,1,'wphu_user_level','10'),
(14,1,'dismissed_wp_pointers','theme_editor_notice'),
(15,1,'show_welcome_panel','1'),
(17,1,'wphu_dashboard_quick_press_last_post_id','36067'),
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"109.159.104.0\";}'),
(20,1,'wphu_elementor_connect_common_data','a:6:{s:9:\"client_id\";s:32:\"lx7wLoysZRr4F7RqxsrIIJ76Uu1mmlw6\";s:11:\"auth_secret\";s:32:\"K4HRSBslmZh6bAqGh4Tld4SPY4jWpbCY\";s:12:\"access_token\";s:32:\"qw6M75okmN5NDef79Lp1H4coDgI6xlxd\";s:19:\"access_token_secret\";s:32:\"Zv7OpTie18A80vgFkNd1zwpvGFrz1whS\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:21:\"amnakulongo@gmail.com\";}}'),
(21,1,'_woocommerce_tracks_anon_id','woo:e7EIYpdwzMSIGL0rluMtmDJr'),
(22,1,'last_update','1720213848'),
(24,1,'woocommerce_admin_task_list_tracked_started_tasks','{\"products\":1,\"appearance\":2,\"payments\":1}'),
(25,1,'wc_last_active','1730160000'),
(26,1,'elementor_introduction','a:9:{s:10:\"rightClick\";b:1;s:7:\"exit_to\";b:1;s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;s:14:\"ai_get_started\";b:1;s:6:\"e-apps\";b:1;s:36:\"ai_promotion_introduction_media-edit\";b:1;s:34:\"ai_promotion_introduction_textarea\";b:1;s:30:\"ai_promotion_introduction_code\";b:1;}'),
(27,1,'nav_menu_recently_edited','349'),
(28,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(29,1,'metaboxhidden_nav-menus','a:4:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:21:\"add-post-type-product\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-product_tag\";}'),
(32,1,'closedpostboxes_nav-menus','a:0:{}'),
(36,1,'wphu_user-settings','editor=tinymce&hidetb=1'),
(37,1,'wphu_user-settings-time','1730134014'),
(77,1,'closedpostboxes_product','a:2:{i:0;s:39:\"wc-memberships-product-memberships-data\";i:1;s:11:\"postexcerpt\";}'),
(78,1,'metaboxhidden_product','a:2:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";}'),
(79,1,'meta-box-order_product','a:3:{s:4:\"side\";s:67:\"submitdiv,product_catdiv,tagsdiv-product_tag,pageparentdiv,joinchat\";s:6:\"normal\";s:137:\"postimagediv,postcustom,slugdiv,woocommerce-product-images,wc-memberships-product-memberships-data,woocommerce-product-data,,revisionsdiv\";s:8:\"advanced\";s:11:\"postexcerpt\";}'),
(80,1,'screen_layout_product','2'),
(108,1,'_wc_memberships_show_admin_restricted_content_notice','no'),
(109,1,'_wc_memberships_hidden_profile_field_columns','a:0:{}'),
(113,1,'billing_first_name','Ivan'),
(114,1,'billing_last_name','Kulongo'),
(115,1,'billing_address_1','22 Seymour Road'),
(116,1,'billing_city','Dagenham'),
(117,1,'billing_state','Kent'),
(118,1,'billing_postcode','RM9 5DR'),
(119,1,'billing_country','GB'),
(120,1,'billing_email','ivankulongo@gmail.com'),
(121,1,'billing_phone','782873017'),
(122,1,'shipping_method','a:1:{i:0;s:11:\"flat_rate:1\";}'),
(123,1,'_wcs_subscription_ids_cache','a:1:{i:0;i:17436;}'),
(124,1,'paying_customer','1'),
(214,1,'_alg_wc_wl_item','1021'),
(392,1,'billing_company',''),
(393,1,'billing_address_2',''),
(394,1,'shipping_first_name','Ivan'),
(395,1,'shipping_last_name','Kulongo'),
(396,1,'shipping_company',''),
(397,1,'shipping_address_1','22 Seymour Road'),
(398,1,'shipping_address_2',''),
(399,1,'shipping_city','Dagenham'),
(400,1,'shipping_postcode','RM9 5DR'),
(401,1,'shipping_country','GB'),
(402,1,'shipping_state','Kent'),
(403,1,'shipping_phone',''),
(459,1,'meta-box-order_elementor_library','a:3:{s:4:\"side\";s:66:\"submitdiv,postimagediv,elementor_library_categorydiv,pageparentdiv\";s:6:\"normal\";s:67:\"revisionsdiv,slugdiv,authordiv,wc-memberships-post-memberships-data\";s:8:\"advanced\";s:0:\"\";}'),
(460,1,'screen_layout_elementor_library','2'),
(461,1,'closedpostboxes_elementor_library','a:1:{i:0;s:29:\"elementor_library_categorydiv\";}'),
(462,1,'metaboxhidden_elementor_library','a:1:{i:0;s:7:\"slugdiv\";}'),
(463,1,'closedpostboxes_page','a:1:{i:0;s:36:\"wc-memberships-post-memberships-data\";}'),
(464,1,'metaboxhidden_page','a:0:{}'),
(554,1,'dismissed_update_notice','1'),
(642,1,'woolentor_viewed_products_list','a:161:{i:1654538563;i:6575;i:1659706250;i:7394;i:1659706269;i:5663;i:1659712418;i:7191;i:1659713822;i:5670;i:1659718157;i:5660;i:1660032917;i:6706;i:1660033902;i:7196;i:1660035538;i:7185;i:1660035557;i:7158;i:1660035711;i:14484;i:1660035847;i:7188;i:1660035900;i:7199;i:1660035927;i:7371;i:1660036029;i:7178;i:1660041824;i:7207;i:1660465759;i:14496;i:1660465786;i:14493;i:1660466128;i:14490;i:1660467205;i:7202;i:1660477915;i:14487;i:1660489638;i:14787;i:1660493298;i:14778;i:1660493315;i:14771;i:1660493376;i:14769;i:1660493381;i:14801;i:1660493529;i:14798;i:1660493546;i:14795;i:1660493636;i:14785;i:1661708414;i:14835;i:1661729437;i:14838;i:1667868270;i:14904;i:1667868532;i:14890;i:1667868596;i:14888;i:1667950042;i:16329;i:1668041822;i:16347;i:1668118688;i:14902;i:1668118815;i:14900;i:1668118901;i:5666;i:1668118902;i:14761;i:1668119172;i:6569;i:1668131304;i:14908;i:1668131997;i:14894;i:1668132013;i:14910;i:1668132035;i:14886;i:1668132356;i:14906;i:1668646951;i:17389;i:1668648957;i:17391;i:1668648960;i:17381;i:1668649878;i:17393;i:1668813045;i:17385;i:1668813046;i:16325;i:1668813064;i:16321;i:1668813219;i:16342;i:1668813220;i:17383;i:1669663493;i:17311;i:1669663745;i:17399;i:1669775699;i:17309;i:1669775714;i:17303;i:1669775986;i:17313;i:1669776632;i:16311;i:1669776650;i:17298;i:1669924783;i:16333;i:1669924923;i:19034;i:1669924970;i:19032;i:1669925069;i:18980;i:1669925115;i:16306;i:1669925144;i:16316;i:1670981105;i:16337;i:1670981181;i:18972;i:1673119248;i:16300;i:1673894120;i:19186;i:1673894121;i:18985;i:1674081442;i:18081;i:1674180168;i:17404;i:1674226719;i:19040;i:1674226799;i:19038;i:1674226805;i:17412;i:1674226838;i:18071;i:1674239439;i:19044;i:1674239441;i:19042;i:1674239499;i:19165;i:1674239518;i:18990;i:1675979391;i:19197;i:1675979416;i:19251;i:1676163034;i:19245;i:1676167459;i:19158;i:1676167502;i:19233;i:1676201645;i:19190;i:1676203198;i:17296;i:1676210457;i:19882;i:1676210506;i:19300;i:1676210859;i:19291;i:1676211303;i:19208;i:1676231004;i:19277;i:1676234064;i:19275;i:1676234436;i:19266;i:1676237822;i:19257;i:1676237988;i:19690;i:1676237998;i:17288;i:1676238008;i:19296;i:1676238028;i:19177;i:1676238094;i:17294;i:1676238817;i:19872;i:1676238842;i:19905;i:1676321952;i:19877;i:1676490740;i:19203;i:1676551939;i:18879;i:1677174291;i:19685;i:1677177908;i:19173;i:1677673377;i:22218;i:1677710464;i:19224;i:1677710521;i:17416;i:1677710545;i:19909;i:1677710780;i:24580;i:1677710791;i:24592;i:1677710867;i:24583;i:1677710872;i:24576;i:1677799757;i:24589;i:1678388602;i:24594;i:1679070201;i:24735;i:1679074819;i:24675;i:1679074837;i:24679;i:1679074878;i:19230;i:1679074887;i:24664;i:1679074892;i:24615;i:1679674948;i:19191;i:1685480528;i:20885;i:1686605618;i:20891;i:1686617093;i:1067;i:1686617193;i:19306;i:1686617199;i:18976;i:1686618929;i:20908;i:1687111332;i:22688;i:1687269267;i:19236;i:1689340164;i:20893;i:1689342201;i:24725;i:1689532842;i:19287;i:1691277800;i:24766;i:1691281356;i:24762;i:1691928066;i:24794;i:1693590759;i:19221;i:1693590767;i:19643;i:1693590801;i:19311;i:1693593254;i:19242;i:1693594434;i:24774;i:1693594435;i:19283;i:1693594447;i:24561;i:1693594465;i:19249;i:1693594676;i:19239;i:1693594679;i:24619;i:1693594692;i:17372;i:1700173746;i:29631;i:1721256459;i:32821;i:1721256465;i:32825;i:1721842064;i:32823;i:1728217021;i:32827;i:1730123358;i:35934;i:1730123376;i:36041;i:1730123434;i:35831;i:1730133224;i:35853;}'),
(651,1,'_bws_affiliate_postbox_dismissed','1654131737'),
(667,1,'_paypal_subscription_id','B-0GC126888M6260839'),
(827,1,'wphu_elementor_pro_enable_notes_notifications','1'),
(840,1,'_alg_wc_wl_item','5660'),
(845,1,'cartflows-5-start-notice','delayed-notice'),
(861,1,'cartflows-ca-5-star-notice','notice-dismissed'),
(869,1,'_wppb_email_change_request_nonce','3929229479'),
(870,1,'_wppb_pending_email_change_request','a:2:{s:4:\"hash\";s:32:\"d41d8cd98f00b204e9800998ecf8427e\";s:9:\"new_email\";s:0:\"\";}'),
(944,1,'cf-optin-notice','notice-dismissed'),
(945,1,'_wc_plugin_framework_memberships_dismissed_messages','a:2:{s:23:\"membership-plan-created\";b:1;s:23:\"user-membership-created\";b:1;}'),
(946,1,'_wc_plugin_framework_facebook_for_woocommerce_dismissed_messages','a:1:{s:36:\"facebook_for_woocommerce_get_started\";b:1;}'),
(1126,1,'wphu_googlesitekitpersistent_initial_version','1.75.0'),
(1316,1,'mailchimp_woocommerce_is_subscribed','1'),
(1443,1,'closedpostboxes_post','a:1:{i:0;s:36:\"wc-memberships-post-memberships-data\";}'),
(1444,1,'metaboxhidden_post','a:0:{}'),
(1502,1,'_alg_wc_wl_item','14493'),
(1523,1,'wphu_persisted_preferences','a:3:{s:14:\"core/edit-post\";a:2:{s:12:\"welcomeGuide\";b:0;s:26:\"isComplementaryAreaVisible\";b:0;}s:9:\"_modified\";s:24:\"2024-07-05T21:10:46.903Z\";s:4:\"core\";a:3:{s:10:\"openPanels\";a:6:{i:0;s:11:\"post-status\";i:1;s:9:\"post-link\";i:2;s:14:\"featured-image\";i:3;s:16:\"discussion-panel\";i:4;s:15:\"page-attributes\";i:5;s:12:\"post-excerpt\";}s:15:\"distractionFree\";b:0;s:12:\"fixedToolbar\";b:1;}}'),
(2006,1,'elementor_preferences','a:1:{s:7:\"exit_to\";s:9:\"dashboard\";}'),
(2030,1,'woocommerce_admin_help_panel_highlight_shown','\"yes\"'),
(2084,1,'default_password_nag',''),
(2116,1,'account_status','approved'),
(2117,1,'um_member_directory_data','a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}'),
(2166,1,'um_user_profile_url_slug_user_login','admin'),
(2167,1,'um_account_secure_fields','a:4:{s:7:\"general\";a:4:{i:0;s:10:\"user_login\";i:1;s:10:\"first_name\";i:2;s:9:\"last_name\";i:3;s:10:\"user_email\";}s:8:\"password\";a:1:{i:0;s:13:\"user_password\";}s:7:\"privacy\";a:3:{i:0;s:15:\"profile_privacy\";i:1;s:15:\"profile_noindex\";i:2;s:15:\"hide_in_members\";}s:6:\"delete\";a:1:{i:0;s:20:\"single_user_password\";}}'),
(2370,1,'elementor_admin_notices','a:2:{s:20:\"experiment_promotion\";s:4:\"true\";s:20:\"design_not_appearing\";a:2:{s:9:\"is_viewed\";b:0;s:4:\"meta\";a:1:{s:7:\"version\";s:6:\"3.21.4\";}}}'),
(2371,1,'uc_notice_dissmissed_black_friday_22_last','true'),
(2828,1,'closedpostboxes_dashboard','a:0:{}'),
(2829,1,'metaboxhidden_dashboard','a:0:{}'),
(3535,75,'nickname','amna.kulongo'),
(3536,75,'first_name','Amna'),
(3537,75,'last_name','Kulongo'),
(3538,75,'description',''),
(3539,75,'rich_editing','true'),
(3540,75,'syntax_highlighting','true'),
(3541,75,'comment_shortcuts','false'),
(3542,75,'admin_color','fresh'),
(3543,75,'use_ssl','0'),
(3544,75,'show_admin_bar_front','true'),
(3545,75,'locale',''),
(3546,75,'wphu_capabilities','a:1:{s:8:\"customer\";b:1;}'),
(3547,75,'wphu_user_level','0'),
(3548,75,'_wcs_subscription_ids_cache','a:0:{}'),
(3549,75,'mailchimp_woocommerce_is_subscribed','1'),
(3550,75,'last_update','1680794112'),
(3551,75,'session_tokens','a:1:{s:64:\"b6b181b77141aa187542f0107bcaa361a79899d5dfeaf6e64231e973d3bac92e\";a:4:{s:10:\"expiration\";i:1720739977;s:2:\"ip\";s:12:\"31.94.60.111\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36\";s:5:\"login\";i:1720567177;}}'),
(3552,75,'billing_first_name','Amna'),
(3553,75,'billing_last_name','Kulongo'),
(3554,75,'billing_address_1','22 Seymour Road'),
(3555,75,'billing_city','Chatham'),
(3556,75,'billing_postcode','ME5 7AE'),
(3557,75,'billing_country','GB'),
(3558,75,'billing_email','amnakulongo@gmail.com'),
(3559,75,'billing_phone','07950212299'),
(3560,75,'shipping_first_name','Amna'),
(3561,75,'shipping_last_name','Kulongo'),
(3562,75,'shipping_address_1','22 Seymour Road'),
(3563,75,'shipping_city','Chatham'),
(3564,75,'shipping_postcode','ME5 7AE'),
(3565,75,'shipping_country','GB'),
(3566,75,'shipping_method','a:1:{i:0;s:11:\"flat_rate:1\";}'),
(3567,75,'wc_last_active','1720483200'),
(3571,75,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),
(3572,75,'_order_count','1'),
(3819,1,'_application_passwords','a:2:{i:0;a:7:{s:4:\"uuid\";s:36:\"8f760783-6dcb-4ec4-8569-21f7c839e144\";s:6:\"app_id\";s:0:\"\";s:4:\"name\";s:9:\"AppMySite\";s:8:\"password\";s:34:\"$P$B7zzXAHUfB/9bm8G7p21k0PAOGj7s4.\";s:7:\"created\";i:1679353187;s:9:\"last_used\";i:1679578693;s:7:\"last_ip\";s:13:\"69.16.218.118\";}i:1;a:7:{s:4:\"uuid\";s:36:\"e56f2499-0523-47a5-839d-5a329495c6dc\";s:6:\"app_id\";s:0:\"\";s:4:\"name\";s:10:\"Appmysite2\";s:8:\"password\";s:34:\"$P$B2rvIZjvSrogdqhAkPu.BXCtIMjaK30\";s:7:\"created\";i:1679580033;s:9:\"last_used\";i:1689015300;s:7:\"last_ip\";s:13:\"69.16.218.118\";}}'),
(5135,1,'elementor_dismissed_editor_notices','a:3:{i:0;s:23:\"image-optimization-once\";i:1;s:20:\"image_optimizer_hint\";i:2;s:35:\"image-optimization-once-media-modal\";}'),
(5682,1,'_wcpay_bnpl_april15_viewed','1'),
(5683,1,'jetpack_tracks_anon_id','woo:e7EIYpdwzMSIGL0rluMtmDJr'),
(5690,1,'woocommerce_admin_variable_product_tour_shown',''),
(5691,1,'woocommerce_admin_wc_payments_overview_inbox_last_read','1715121746241'),
(5692,1,'woocommerce_admin_activity_panel_inbox_last_read',''),
(5693,1,'woocommerce_admin_activity_panel_reviews_last_read',''),
(5694,1,'woocommerce_admin_categories_report_columns',''),
(5695,1,'woocommerce_admin_coupons_report_columns',''),
(5696,1,'woocommerce_admin_customers_report_columns',''),
(5697,1,'woocommerce_admin_orders_report_columns',''),
(5698,1,'woocommerce_admin_products_report_columns',''),
(5699,1,'woocommerce_admin_revenue_report_columns',''),
(5700,1,'woocommerce_admin_taxes_report_columns',''),
(5701,1,'woocommerce_admin_variations_report_columns',''),
(5702,1,'woocommerce_admin_dashboard_sections',''),
(5703,1,'woocommerce_admin_dashboard_chart_type',''),
(5704,1,'woocommerce_admin_dashboard_chart_interval',''),
(5705,1,'woocommerce_admin_dashboard_leaderboard_rows',''),
(5706,1,'woocommerce_admin_homepage_layout',''),
(5707,1,'woocommerce_admin_homepage_stats',''),
(5708,1,'woocommerce_admin_android_app_banner_dismissed',''),
(5709,1,'wcpay_currency','GBP'),
(5745,1,'wphu__wcpay_customer_id_test','cus_Q4HklBX2wGyAXe'),
(5885,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),
(5886,1,'_order_count','34'),
(5913,1,'session_tokens','a:5:{s:64:\"49d962b0c14e16c05810cdc088be4a8cbdb632a5ad5b36e53a050594f090156f\";a:4:{s:10:\"expiration\";i:1730296028;s:2:\"ip\";s:15:\"109.159.104.107\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 Edg/130.0.0.0\";s:5:\"login\";i:1730123228;}s:64:\"0887cd5bea7d834ddb5f4e90ba561dd29d1ee0d9e0794689422740fd8434d68c\";a:4:{s:10:\"expiration\";i:1730308209;s:2:\"ip\";s:15:\"109.159.104.107\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36\";s:5:\"login\";i:1730135409;}s:64:\"ab295858681e6a50c149622362865d891635cca32479ff4fb0a045b0e1873b0c\";a:4:{s:10:\"expiration\";i:1730308585;s:2:\"ip\";s:15:\"109.159.104.107\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36\";s:5:\"login\";i:1730135785;}s:64:\"d086bea5c2474cca2023b7d9ea515890a4bdcfbed21ec0c78e1452a97a33deeb\";a:4:{s:10:\"expiration\";i:1730321460;s:2:\"ip\";s:12:\"31.94.60.245\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36\";s:5:\"login\";i:1730148660;}s:64:\"dae20bcfed67309eba1a1ec09742e8fde3197fbc93670a3ba766a6d1498b769c\";a:4:{s:10:\"expiration\";i:1730377305;s:2:\"ip\";s:15:\"109.159.104.107\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36\";s:5:\"login\";i:1730204505;}}'),
(6062,75,'wcpay_currency','GBP'),
(6249,1,'wphu_googlesitekit_site_verification_file','4a32a43b928dd4b5'),
(6250,1,'wphu_googlesitekit_site_verification_meta','k35KsIgBtkY-K4nXKCe_Yo46-dre725RPYnsMONubEU'),
(6251,1,'wphu_googlesitekit_access_token','tTVJtNTujC6z9Gjbyxq2unlJY2dvRE5BUnlvOCt4VTJ5cC8wMXdrTk8zcTlDV1hCRnd4Njd5eXZCV1RZQ2pySzgyUk9DUVlCTEFCUmF4RFg3b0RRVXhDTTBxQk41SjAzREE2YkJRQWsrSm5hUHgzN0UxUU9Oc2Q0TXN3N2tDZVRrdjRmMWJ2SW9NTGRGQ1hEUWZPN0tMa01nb2Z1MmYrRjlDZVdVTHgwM2FydGtQU1AwbTFDNU92VXhkM3BtMXB0RXBzRC9XV0kvQlZHVzRwbkRJTmtybXBZYi9vcGthVlFGUkcrcjFYWHNOTzNZaHN4UXM0S2VNSkN1L0RaVjJjZis3QUV0TEp5bGNrM2tkNkxZcmV3dFY2N2oyRWFaVWoxOHJMSUh1S256c3JMR1lkZFlyZ1VqYjErRTIvOHhMeWJDTnFFMGhwaVFZYXEzQ1dBaXI5Zm95N203MVV1TEFYU29YL0p0TlMrMXh5RTNOWWFmQVkvcUtpSTNPckloV1lXT1ZWNGxSVzIxY2lOTXhIcQ=='),
(6252,1,'wphu_googlesitekit_access_token_expires_in','3599'),
(6253,1,'wphu_googlesitekit_access_token_created_at','1730204526'),
(6254,1,'wphu_googlesitekit_refresh_token','ldzpsGZT9b6jk4jIx/WKXEpRbEhEdGdEclFtKzdwMkFsRXBBdkFWbGFETnFMbzhJclQyV2JrTjMzMHgzM2FvbFVBdm8yVmdPWjlYMG1wOEZZbnR6UVJ3ZG05QTVJaHZoblQ1Wm5NZTU4elUxM1ZoV0lMOExVOW9aNFVLaGVGNkc5ZC9nditYODZVdUVrRXFTUElMb3dYTVZzU2p6alI4Zi96WlpFQktBbmg5ZFJxemM0NUxBQSs3cnlrTVRtZDd4cGRWM3lObFRrVEhlZmlMZWtCZzg3cUd1U0YzVng1WVo3OUZsa3BGVk1uSGxqekJHU2lZNlFlRXMvS01wV0dPRUwrMnRPejFDc2xWTE9CZDFFMFZSOEErYXN1V3lia3kxVVJ0UUg1ZG80TnJ5UFRwSFR0dnN2cUJhWnRzcTVWMFQzSTYxaUMzZTJ1SG1aSm01'),
(6255,1,'wphu_googlesitekit_auth_scopes','a:8:{i:0;s:48:\"https://www.googleapis.com/auth/adsense.readonly\";i:1;s:50:\"https://www.googleapis.com/auth/analytics.readonly\";i:2;s:46:\"https://www.googleapis.com/auth/userinfo.email\";i:3;s:6:\"openid\";i:4;s:42:\"https://www.googleapis.com/auth/webmasters\";i:5;s:51:\"https://www.googleapis.com/auth/tagmanager.readonly\";i:6;s:48:\"https://www.googleapis.com/auth/siteverification\";i:7;s:48:\"https://www.googleapis.com/auth/userinfo.profile\";}'),
(6256,1,'wphu_googlesitekit_additional_auth_scopes','a:0:{}'),
(6257,1,'wphu_googlesitekit_profile','a:4:{s:5:\"email\";s:21:\"amnakulongo@gmail.com\";s:5:\"photo\";s:97:\"https://lh3.googleusercontent.com/a/ACg8ocLjt4-vS1vJT7MSbYVsDePM2AlDzLmFDB2C7sIQXHmamQ33h2cu=s100\";s:9:\"full_name\";s:12:\"Amna Kulongo\";s:12:\"last_updated\";i:1730136691;}'),
(6258,1,'wphu_googlesitekit_site_verified_meta','verified'),
(6261,1,'wphu_googlesitekit_survey_timeouts','a:2:{s:14:\"view_dashboard\";i:1730222850;s:18:\"view_ga4_dashboard\";i:1730223719;}'),
(6262,1,'wphu_googlesitekitpersistent_dismissed_tours','a:2:{i:0;s:16:\"dashboardSharing\";i:1;s:24:\"dashboardSharingSettings\";}');
/*!40000 ALTER TABLE `wphu_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_users`
--

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

--
-- Dumping data for table `wphu_users`
--

LOCK TABLES `wphu_users` WRITE;
/*!40000 ALTER TABLE `wphu_users` DISABLE KEYS */;
INSERT INTO `wphu_users` VALUES
(1,'admin','$P$B2LXEasiVXT.1oOxlZsGewd/2nRDGz.','admin','ivankulongo@gmail.com','http://choiceresources.co.uk','2021-03-30 03:15:01','',0,'admin'),
(75,'amna.kulongo','$P$BQHetSQn/74ESmM0/Pzn9E3KO/k31D.','amna-kulongo','amnakulongo@gmail.com','','2023-02-17 15:36:08','1680794112:$P$Buhw8.CY/3p48tUntEBQd8Aph/Lre01',0,'Amna Kulongo');
/*!40000 ALTER TABLE `wphu_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wphu_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `label` varchar(255) NOT NULL,
  `query` longtext NOT NULL,
  `status` varchar(255) NOT NULL,
  `actioned_text` varchar(255) NOT NULL,
  `nonce_action` varchar(255) DEFAULT NULL,
  `nonce_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=95265 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_wc_admin_note_actions`
--

LOCK TABLES `wphu_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wphu_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wphu_wc_admin_note_actions` VALUES
(1,1,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned','',NULL,NULL),
(2,2,'open-marketing-hub','Open marketing hub','http://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned','',NULL,NULL),
(16,16,'connect','Connect','?page=wc-addons&section=helper','unactioned','',NULL,NULL),
(30,17,'learn-more','Learn more','https://woocommerce.com/posts/how-to-sell-online-courses-wordpress/?utm_source=inbox','actioned','',NULL,NULL),
(44,18,'customize-store-with-storefront','Let\'s go!','http://choiceresources.co.uk/wp-admin/themes.php?page=storefront-welcome','actioned','',NULL,NULL),
(45,19,'learn-more','Learn more','https://docs.woocommerce.com/document/variable-product/?utm_source=inbox','actioned','',NULL,NULL),
(176,20,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox','actioned','',NULL,NULL),
(177,21,'affirm-insight-first-product-and-payment','Yes','','actioned','Thanks for your feedback',NULL,NULL),
(178,22,'day-after-first-product','Learn more','https://docs.woocommerce.com/document/woocommerce-customizer/?utm_source=inbox','actioned','',NULL,NULL),
(194,24,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned','',NULL,NULL),
(195,25,'learn-more','Learn more','https://woocommerce.com/posts/how-to-make-your-online-store-stand-out/?utm_source=inbox','actioned','',NULL,NULL),
(212,27,'need-some-inspiration','See success stories','https://woocommerce.com/success-stories/?utm_source=inbox','actioned','',NULL,NULL),
(229,28,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/','actioned','',NULL,NULL),
(262,29,'tracking-opt-in','Activate usage tracking','','actioned','',NULL,NULL),
(295,30,'share-feedback','Share feedback','https://automattic.survey.fm/store-setup-survey','actioned','',NULL,NULL),
(296,31,'affirm-insight-first-sale','Yes','','actioned','Thanks for your feedback',NULL,NULL),
(297,31,'deny-insight-first-sale','No','','actioned','Thanks for your feedback',NULL,NULL),
(410,32,'customize-store-with-blocks','Learn more','https://woocommerce.com/posts/how-to-customize-your-online-store-with-woocommerce-blocks/?utm_source=inbox','actioned','',NULL,NULL),
(1619,35,'remove-legacy-coupon-menu','Remove legacy coupon menu','http://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&action=remove-coupon-menu','actioned','',NULL,NULL),
(2672,49,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned','',NULL,NULL),
(9409,57,'mercadopago_q3_2021_EN','Free download','https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox&utm_medium=product&utm_campaign=mercadopago_q3_2021_EN','actioned','',NULL,NULL),
(11731,50,'wayflyer_q3_2021','Get funded','https://woocommerce.com/products/wayflyer/','actioned','',NULL,NULL),
(11732,48,'eu_vat_changes_2021','Learn more about the EU tax regulations','https://woocommerce.com/posts/new-eu-vat-regulations','actioned','',NULL,NULL),
(11733,26,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned','',NULL,NULL),
(11734,3,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=&section=changelog','actioned','',NULL,NULL),
(11735,4,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned','',NULL,NULL),
(11751,38,'learn-more','Learn about Instant Deposits eligibility','https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits','actioned','',NULL,NULL),
(11767,59,'learn-more','Learn more','https://woocommerce.com/products/bbpos-chipper2xbt-card-reader?utm_source=inbox&utm_medium=product&utm_campaign=bbpos-chipper-launch','unactioned','',NULL,NULL),
(11899,10,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned','',NULL,NULL),
(11900,11,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business','actioned','',NULL,NULL),
(11901,23,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','actioned','',NULL,NULL),
(11902,23,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned','',NULL,NULL),
(11903,12,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned','',NULL,NULL),
(11904,13,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business','actioned','',NULL,NULL),
(12159,61,'browse_extensions','Browse extensions','http://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned','',NULL,NULL),
(12160,62,'browse_extensions','Browse extensions','http://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned','',NULL,NULL),
(14584,70,'notify-refund-returns-page','Edit page','https://choiceresources.co.uk/wp-admin/post.php?post=5658&action=edit','actioned','',NULL,NULL),
(14916,63,'stripe_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned','',NULL,NULL),
(14917,64,'square_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned','',NULL,NULL),
(14918,65,'wcpay_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned','',NULL,NULL),
(14935,44,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned','',NULL,NULL),
(14936,45,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned','',NULL,NULL),
(16074,78,'wc_ipp_order_creation_GTM_launch_q2_2022','Grow my business on the go','https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_ipp_order_creation_GTM_launch_q2_2022','actioned','',NULL,NULL),
(16238,79,'browse','Browse','https://woocommerce.com/success-stories/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),
(16243,82,'enable-navigation','Enable in Settings','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=advanced&section=features','actioned','',NULL,NULL),
(16247,36,'first-downloadable-product-handling','Learn more','https://woocommerce.com/document/digital-downloadable-product-handling/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),
(19974,77,'wc-admin-EU-consumer-protection','Learn more about these changes','https://ec.europa.eu/info/law/law-topic/consumer-protection-law/review-eu-consumer-law_en#guidance','actioned','',NULL,NULL),
(20236,85,'TikTok q2_2022','Promote my products on TikTok','https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=TikTok%20q2_2022','unactioned','',NULL,NULL),
(20761,86,'tiktok-webinar-promo-july2022-button','RSVP Now','https://gettingstartedwithtiktokforwoocommerce.splashthat.com/','actioned','',NULL,NULL),
(22178,75,'setup_task_initiative_survey_q2_2022_share_your_input','Share your input','https://t.maze.co/87390007','actioned','',NULL,NULL),
(23550,87,'klarna_q3_2022','Grow with Klarna','https://woocommerce.com/products/klarna-payments?utm_source=inbox_note&utm_medium=product&utm_campaign=klarna_q3_2022','unactioned','',NULL,NULL),
(24020,88,'mercado_pago_q3_2022','Free download','https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox_note&utm_medium=product&utm_campaign=mercado_pago_q3_2022','unactioned','',NULL,NULL),
(24026,91,'mobile_app_order_management_q3_2022','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=mobile_app_order_management_q3_2022','actioned','',NULL,NULL),
(24799,93,'product_creation_usability_test_6_months_take_a_look','Try it now','https://t.maze.co/103446424','unactioned','',NULL,NULL),
(24800,94,'product_creation_usability_test_12_months_take_a_look','Try it now','https://t.maze.co/103446424','unactioned','',NULL,NULL),
(24801,92,'product_creation_usability_test_3_months_take_a_look','Try it now','https://t.maze.co/103446424','unactioned','',NULL,NULL),
(24961,95,'cta_customize_your_deposits','Customize your deposits','https://woocommerce.com/payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=cta_customize_your_deposits','actioned','',NULL,NULL),
(24962,95,'dismiss_customize_your_deposits','Dismiss','','actioned','',NULL,NULL),
(25745,98,'pre-black-friday-sale-2022-announcement','Shop the sale','https://woocommerce.com/marketplace-sale/?utm_source=inbox_note&utm_medium=product&utm_campaign=pre-black-friday-sale-2022-announcement','actioned','',NULL,NULL),
(25950,96,'googlelistings_signals2022_hasGLA_click','Connect Google Listings & Ads','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-admin&path=marketing','unactioned','',NULL,NULL),
(25951,97,'googlelistings_signals2022_noGLA','Connect Google Listings & Ads','https://woocommerce.com/products/google-listings-and-ads/?utm_medium=product&utm_source=inbox_note&utm_campaign=googlelistings_signals2022_noGLA','unactioned','',NULL,NULL),
(26551,68,'wc_shipping_mobile_app_q4_2021','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_q4_2021','actioned','',NULL,NULL),
(26552,5,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned','',NULL,NULL),
(26554,7,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned','',NULL,NULL),
(26555,8,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned','',NULL,NULL),
(26558,15,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),
(28118,111,'view-report','View report','?page=wc-admin&path=/analytics/revenue&period=custom&compare=previous_year&after=2022-11-16&before=2022-11-16','actioned','',NULL,NULL),
(29204,99,'shipping_category_q4_2022_click','Automate my shipping','https://woocommerce.com/product-category/woocommerce-extensions/shipping-delivery-and-fulfillment/?categoryIds=28685&collections=product&page=1&utm_source=inbox_note&utm_medium=product&utm_campaign=shipping_category_q4_2022_click','unactioned','',NULL,NULL),
(29808,116,'meta-hasFB-dec-q4-2022','Connect your store','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-facebook','unactioned','',NULL,NULL),
(32996,117,'meta-noFB-dec-q4-2022','Get started','https://woocommerce.com/products/facebook/?utm_source=inbox_note&utm_medium=product&utm_campaign=meta-noFB-dec-q4-2022','unactioned','',NULL,NULL),
(32999,83,'update-store-details','Update store details','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin&path=/setup-wizard','actioned','',NULL,NULL),
(33315,113,'wc-admin-manualauthcapture','Learn more','https://woocommerce.com/document/woocommerce-payments/settings-guide/authorize-and-capture/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-manualauthcapture','actioned','',NULL,NULL),
(33656,100,'tiktok-targeted-q4-2022-click','Launch a campaign','https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok-targeted-q4-2022-click','unactioned','',NULL,NULL),
(33660,114,'apple_pay_square_q422','Enable Apple Pay','https://choiceresources.co.uk/wp-admin/wp-admin/admin.php?page=wc-settings&tab=checkout&section=square_credit_card','unactioned','',NULL,NULL),
(33661,115,'apple_pay_wcpay_q422','Enable Apple Pay','https://choiceresources.co.uk/wp-admin/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','unactioned','',NULL,NULL),
(34498,71,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned','',NULL,NULL),
(37783,120,'storeediting_feedback_jan_2023','Share your input','https://t.maze.co/135212793','actioned','',NULL,NULL),
(38073,103,'woocommerce_admin_deprecation_q4_2022','Deactivate WooCommerce Admin','https://choiceresources.co.uk/wp-admin/plugins.php','actioned','',NULL,NULL),
(38074,101,'paypal_paylater_g3_q4_22','Install PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g3_q4_22','unactioned','',NULL,NULL),
(38115,102,'paypal_paylater_g2_q4_22','Install PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g2_q4_22','unactioned','',NULL,NULL),
(40052,122,'affirm_q1_2023','Get started with Affirm','https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q1_2023','actioned','',NULL,NULL),
(42826,144,'woopay-beta-existingmerchants-noaction-documentation-27APR23-test2','Documentation','https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23-test2','actioned','',NULL,NULL),
(42827,144,'woopay-beta-existingmerchants-noaction-documentation-27APR23-dismiss-test2','Dismiss','https://choiceresources.co.uk/wp-admin/#','actioned','',NULL,NULL),
(42828,145,'woopay-beta-existingmerchants-update-WCPay-27APR23-test','Update WooCommerce Payments','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),
(42829,145,'woopay-beta-existingmerchants-update-WCPay-27APR23-dismiss-test','Dismiss','https://choiceresources.co.uk/wp-admin/#','actioned','',NULL,NULL),
(43923,141,'wc-admin-BNPL-WCPay-coming-soon','Sign up now','https://woocommerce.com/buy-now-pay-later-for-woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-BNPL-WCPay-coming-soon','actioned','',NULL,NULL),
(44346,156,'payoneer_q2_2023','Get started with Payoneer','https://woocommerce.com/products/payoneer-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=payoneer_q2_2023','actioned','',NULL,NULL),
(44557,123,'google_listings_ads_pmax_i1_q1_2023_no_gla','Boost my business with Google','https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_pmax_i1_q1_2023_no_gla','actioned','',NULL,NULL),
(44558,124,'google_listings_ads_pmax_i1_q1_2023_with_gla','Create a new ad','https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_pmax_i1_q1_2023_with_gla','actioned','',NULL,NULL),
(45201,129,'wc-admin-wcpay-denmark-Q2-2023','Simplify my payments','https://woocommerce.com/payments/denmark/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-denmark-Q2-2023','actioned','',NULL,NULL),
(45202,130,'wc-admin-wcpay-greece-Q2-2023','Simplify my payments','https://woocommerce.com/payments/greece/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-greece-Q2-2023','actioned','',NULL,NULL),
(45203,131,'wc-admin-wcpay-norway-Q2-2023','Simplify my payments','https://woocommerce.com/payments/norway/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-norway-Q2-2023','actioned','',NULL,NULL),
(45204,132,'wc-admin-wcpay-slovakia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/slovakia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-slovakia-Q2-2023','actioned','',NULL,NULL),
(45205,133,'wc-admin-wcpay-finland-Q2-2023','Simplify my payments','https://woocommerce.com/payments/finland/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-finland-Q2-2023','actioned','',NULL,NULL),
(45206,134,'wc-admin-wcpay-estonia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/estonia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-estonia-Q2-2023','actioned','',NULL,NULL),
(45207,135,'wc-admin-wcpay-lithuania-Q2-2023','Simplify my payments','https://woocommerce.com/payments/lithuania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-lithuania-Q2-2023','actioned','',NULL,NULL),
(45208,136,'wc-admin-wcpay-slovenia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/slovenia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-slovenia-Q2-2023','actioned','',NULL,NULL),
(45209,137,'wc-admin-wcpay-latvia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/latvia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-latvia-Q2-2023','actioned','',NULL,NULL),
(45210,138,'wc-admin-wcpay-cyprus-Q2-2023','Simplify my payments','https://woocommerce.com/payments/cyprus/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-cyprus-Q2-2023','actioned','',NULL,NULL),
(45211,139,'wc-admin-wcpay-malta-Q2-2023','Simplify my payments','https://woocommerce.com/payments/malta/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-malta-Q2-2023','actioned','',NULL,NULL),
(45212,140,'wc-admin-wcpay-luxembourg-Q2-2023','Simplify my payments','https://woocommerce.com/payments/luxembourg/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-luxembourg-Q2-2023','actioned','',NULL,NULL),
(45235,159,'product_management_card_sorting','Get started','https://t.maze.co/163892579','unactioned','',NULL,NULL),
(48179,172,'tiktok-spc_june-2023','Optimize my advertising','https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok-spc_june-2023','actioned','',NULL,NULL),
(48985,69,'browse_extensions','Browse extensions','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-addons','unactioned','',NULL,NULL),
(49103,84,'wc-admin-wisepad3','Grow my business offline','https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wisepad3','actioned','',NULL,NULL),
(49651,112,'google_listings_ads_custom_attribute_mapping_q4_2022','Learn more','https://woocommerce.com/document/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_custom_attribute_mapping_q4_2022#attribute-mapping','actioned','',NULL,NULL),
(50499,164,'woocommerce_hpos_1st_notification_q2_2023','Learn more about HPOS','https://woocommerce.com/posts/platform-update-high-performance-order-storage-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_hpos_1st_notification_q2_2023','actioned','',NULL,NULL),
(50785,176,'square_button_q3_2023','Get started with Square','https://woocommerce.com/products/square/?utm_source=inbox_note&utm_medium=product&utm_campaign=square_button_q3_2023','actioned','',NULL,NULL),
(51146,177,'wc-admin-woopayments-rebrand','Learn more about WooPayments','https://woocommerce.com/payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-woopayments-rebrand','actioned','',NULL,NULL),
(51330,182,'tiktok-apac-webinar-2023','RSVP today','https://unlockingtiktokwithwoocommerce.splashthat.com/','actioned','',NULL,NULL),
(51813,184,'avalara_q3-2023_withAvaTax','Learn more about VAT settings','https://woocommerce.com/document/avalara-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_withAvaTax#section-15','unactioned','',NULL,NULL),
(51909,185,'google_uxstudy_recruitment_q3-2023','Take the survey','https://eachandother.fra1.qualtrics.com/jfe/form/SV_0W118szcJOtIkzc','unactioned','',NULL,NULL),
(52332,166,'wc-admin-wcpay-bulgaria-Q2-2023','Simplify my payments','https://woocommerce.com/payments/bulgaria/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-bulgaria-Q2-2023','actioned','',NULL,NULL),
(52333,167,'wc-admin-wcpay-czechia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/czechia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-czechia-Q2-2023','actioned','',NULL,NULL),
(52334,168,'wc-admin-wcpay-croatia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/croatia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-croatia-Q2-2023','actioned','',NULL,NULL),
(52335,169,'wc-admin-wcpay-hungary-Q2-2023','Simplify my payments','https://woocommerce.com/payments/hungary/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-hungary-Q2-2023','actioned','',NULL,NULL),
(52336,170,'wc-admin-wcpay-romania-Q2-2023','Simplify my payments','https://woocommerce.com/payments/romania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-romania-Q2-2023','actioned','',NULL,NULL),
(52337,171,'wc-admin-wcpay-sweden-Q2-2023','Simplify my payments','https://woocommerce.com/payments/sweden/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-sweden-Q2-2023','actioned','',NULL,NULL),
(53183,127,'tap_to_pay_iphone_q2_2023_with_wcpay','Set up Tap to Pay on iPhone','https://woocommerce.com/document/woopayments/in-person-payments/tap-to-pay-iphone?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_with_wcpay','actioned','',NULL,NULL),
(53736,157,'ipp_refresh_q2_2023_us_inbox_notification','Grow my business on the go','https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_us_inbox_notification','actioned','',NULL,NULL),
(53737,158,'ipp_refresh_q2_2023_ca_inbox_notification','Grow my business on the go','https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_ca_inbox_notification','actioned','',NULL,NULL),
(54535,187,'tiktok_shopGTM_q3-2023_hasTikTok','Learn more','https://woocommerce.com/document/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok_shopGTM_q3-2023_hasTikTok','unactioned','',NULL,NULL),
(54622,188,'tiktok_shopGTM_q3-2023_noTikTok','Learn more','https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok_shopGTM_q3-2023_noTikTok','unactioned','',NULL,NULL),
(55055,189,'klaviyo_q3_2023','Integrate in minutes','https://woocommerce.com/products/klaviyo-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=klaviyo_q3_2023','unactioned','',NULL,NULL),
(57143,190,'wc_admin_BNPL_WCPay_Q3_2023','Enable buy now, pay later','https://woocommerce.com/?post_type=documentation&p=18734002212927&preview=true&utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_BNPL_WCPay_Q3_2023','actioned','',NULL,NULL),
(57144,191,'wc_admin_afterpay_WCPay_Q3_2023','Enable buy now, pay later','https://woocommerce.com/?post_type=documentation&p=18734002212927&preview=true&utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_afterpay_WCPay_Q3_2023','actioned','',NULL,NULL),
(58134,193,'Klarna_Enable_CTA_10OCT23','Enable Klarna','https://choiceresources.co.uk/wp-admin/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments/#payment-methods','actioned','',NULL,NULL),
(58135,193,'Klarna_Update_CTA_10OCT23','Update WooPayments','https://choiceresources.co.uk/wp-admin/wp-admin/plugins.php?s=woocommercepayments&plugin_status=all','actioned','',NULL,NULL),
(59829,194,'wc_com_in_person_payments_card_sale_US_inbox_note_q4_23','Save 35%','https://woocommerce.com/products/m2-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_com_in_person_payments_card_sale_US_inbox_note_q4_23','actioned','',NULL,NULL),
(59830,195,'wc_com_in_person_payments_card_sale_UK_inbox_note_q4_23','Save 35%','https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_com_in_person_payments_card_sale_UK_inbox_note_q4_23','actioned','',NULL,NULL),
(59831,196,'wc_com_in_person_payments_card_sale_CA_inbox_note_q4_23','Save 35%','https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_com_in_person_payments_card_sale_CA_inbox_note_q4_23','actioned','',NULL,NULL),
(59925,198,'wc_admin_WooPay_Q4_2023','Get started today','https://choiceresources.co.uk/wp-admin/https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_WooPay_Q4_2023','actioned','',NULL,NULL),
(60595,200,'paypal_paylater_g2_q4_22','Install PayPal Payments','https://woo.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g2_q4_22','unactioned','',NULL,NULL),
(60930,199,'wc_admin_WooPay_Oct30_2023','Get started today','https://woo.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_WooPay_Oct30_2023','actioned','',NULL,NULL),
(64515,201,'tap_to_pay_iphone_q4_2023_no_woopayments','Simplify my payments','https://woo.com/products/woopayments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q4_2023_no_woopayments','actioned','',NULL,NULL),
(64516,202,'tap_to_pay_iphone_q4_2023_with_woopayments','Set up Tap to Pay on iPhone','https://woo.com/document/woopayments/in-person-payments/tap-to-pay-iphone/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q4_2023_with_woopayments','actioned','',NULL,NULL),
(70799,80,'learn-more','Learn more','https://woo.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),
(70800,56,'learn-more','Learn more','https://woo.com/posts/pre-launch-checklist-the-essentials/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),
(70801,58,'learn-more','Learn more','https://woo.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),
(70802,81,'learn-more','Learn more','https://woo.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),
(71372,206,'custom_order_attribution_inbox_q1_2024','Find more clarity','https://woo.com/document/order-attribution-tracking/?utm_source=inbox_note&utm_medium=product&utm_campaign=custom_order_attribution_inbox_q1_2024','actioned','',NULL,NULL),
(73210,89,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned','',NULL,NULL),
(73211,89,'dismiss','Dismiss','','actioned','',NULL,NULL),
(73212,90,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned','',NULL,NULL),
(73213,90,'dismiss','Dismiss','','actioned','',NULL,NULL),
(74231,207,'wc_admin_UKpricingchange_WCPay_Q1_2024','See related fees for each country','https://woo.com/document/woopayments/fees-and-debits/fees/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_UKpricingchange_WCPay_Q1_2024#countries-in-europe','actioned','',NULL,NULL),
(74632,204,'amazon_pay_ext-link_q1-24','Register your account now','https://eu.amazonpayments.com/2024-uk-woopricepromoregistration?utm_campaign=woo_price_promo&utm_medium=EM&utm_source=direct&utm_content=cta&utm_creative=&ld=EMUKAPA-woo_price_promo-direct-24Q1','actioned','',NULL,NULL),
(77568,160,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings','See available updates','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),
(77569,160,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss','Dismiss','#','actioned','',NULL,NULL),
(77778,162,'woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings','See available updates','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),
(77779,162,'woocommerce-WCPayments-June-2023-updated-needed-Dismiss','Dismiss','#','actioned','',NULL,NULL),
(77794,180,'woocommerce-WooPayments-Aug-2023-update-needed','See available updates','https://choiceresources.co.uk/wp-admin/update-core.php?','unactioned','',NULL,NULL),
(77795,180,'dismiss','Dismiss','#','actioned','',NULL,NULL),
(79798,208,'airwallex_q1_2024','Get started with Airwallex','https://woocommerce.com/products/airwallexpayments/?utm_source=inbox_note&utm_medium=product&utm_campaign=airwallex_q1_2024','actioned','',NULL,NULL),
(79825,209,'wc-payments-notes-multi-currency-available','Set up now','admin.php?page=wc-admin&path=/payments/multi-currency-setup','unactioned','',NULL,NULL),
(79965,210,'wc-payments-notes-qualitative-feedback','Share feedback','http://automattic.survey.fm/wc-pay-existing','unactioned','',NULL,NULL),
(88110,6,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned','',NULL,NULL),
(89249,186,'woo-activation-survey-blockers-survey-button-22AUG23','Take our short survey','https://woocommerce.survey.fm/getting-started-with-woo','unactioned','',NULL,NULL),
(95180,66,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021','actioned','',NULL,NULL),
(95181,67,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021','actioned','',NULL,NULL),
(95182,9,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL),
(95183,14,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL),
(95184,33,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/woopayments-new-user-feedback','actioned','',NULL,NULL),
(95185,37,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL),
(95186,40,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned','',NULL,NULL),
(95187,39,'update-wc-subscriptions-3-0-15','View latest version','https://choiceresources.co.uk/wp-admin/&page=wc-addons&section=helper','actioned','',NULL,NULL),
(95188,41,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL),
(95189,46,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),
(95190,47,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),
(95191,51,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),
(95192,51,'dismiss','Dismiss','','actioned','',NULL,NULL),
(95193,52,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),
(95194,52,'dismiss','Dismiss','','actioned','',NULL,NULL),
(95195,53,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),
(95196,53,'dismiss','Dismiss','','actioned','',NULL,NULL),
(95197,54,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),
(95198,54,'dismiss','Dismiss','','actioned','',NULL,NULL),
(95199,60,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned','',NULL,NULL),
(95200,72,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),
(95201,72,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL),
(95202,73,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),
(95203,73,'dismiss','Dismiss','','actioned','',NULL,NULL),
(95204,74,'pinterest_03_2022_update','Update Instructions','https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3','actioned','',NULL,NULL),
(95205,76,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how itâ€™s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL),
(95206,118,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','https://choiceresources.co.uk/wp-admin/update-core.php','unactioned','',NULL,NULL),
(95207,118,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),
(95208,119,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','https://choiceresources.co.uk/wp-admin/update-core.php','unactioned','',NULL,NULL),
(95209,119,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL),
(95210,121,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned','',NULL,NULL),
(95211,146,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),
(95212,146,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned','',NULL,NULL),
(95213,125,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned','',NULL,NULL),
(95214,125,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned','',NULL,NULL),
(95215,126,'tap_to_pay_iphone_q2_2023_no_wcpay','Simplify my payments','https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay','actioned','',NULL,NULL),
(95216,128,'extension-settings','See available updates','https://choiceresources.co.uk/wp-admin/update-core.php','unactioned','',NULL,NULL),
(95217,128,'dismiss','Dismiss','#','actioned','',NULL,NULL),
(95218,147,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),
(95219,147,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),
(95220,142,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned','',NULL,NULL),
(95221,143,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),
(95222,148,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),
(95223,148,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned','',NULL,NULL),
(95224,149,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),
(95225,149,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL),
(95226,150,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),
(95227,150,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),
(95228,151,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),
(95229,151,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL),
(95230,152,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),
(95231,152,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned','',NULL,NULL),
(95232,153,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),
(95233,153,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned','',NULL,NULL),
(95234,154,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),
(95235,154,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned','',NULL,NULL),
(95236,155,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),
(95237,155,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL),
(95238,163,'woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings','See available updates','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),
(95239,163,'woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss','Dismiss','#','actioned','',NULL,NULL),
(95240,161,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),
(95241,161,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned','',NULL,NULL),
(95242,165,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL),
(95243,165,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','https://choiceresources.co.uk/wp-admin/#','actioned','',NULL,NULL),
(95244,173,'woocommerce-WCGC-July-2023-update-needed','See available updates','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),
(95245,173,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned','',NULL,NULL),
(95246,174,'learn-more','Learn more','https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned','',NULL,NULL),
(95247,175,'plugin-list','See available updates','https://choiceresources.co.uk/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL),
(95248,175,'dismiss','Dismiss','https://choiceresources.co.uk/wp-admin/admin.php?page=wc-admin','actioned','',NULL,NULL),
(95249,178,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','https://choiceresources.co.uk/wp-admin/update-core.php?','unactioned','',NULL,NULL),
(95250,178,'dismiss','Dismiss','#','actioned','',NULL,NULL),
(95251,179,'dismiss','Dismiss','#','actioned','',NULL,NULL),
(95252,181,'dismiss','Dismiss','#','actioned','',NULL,NULL),
(95253,183,'avalara_q3-2023_noAvaTax','Automate my sales tax','https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax','unactioned','',NULL,NULL),
(95254,192,'woocommerce-usermeta-Sept2023-productvendors','See available updates','https://choiceresources.co.uk/wp-admin/plugins.php','unactioned','',NULL,NULL),
(95255,192,'dismiss','Dismiss','https://choiceresources.co.uk/wp-admin/#','actioned','',NULL,NULL),
(95256,197,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','https://choiceresources.co.uk/wp-admin/update-core.php','unactioned','',NULL,NULL),
(95257,197,'dismiss','Dismiss','#','actioned','',NULL,NULL),
(95258,203,'amazon-mcf-review-button-2023-12-07','Leave a review','https://woocommerce.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07','actioned','',NULL,NULL),
(95259,203,'amazon-mcf-support-button-2023-12-07','Request support','https://woocommerce.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07','actioned','',NULL,NULL),
(95260,205,'view_docs','Learn about Deposit schedules','https://woocommerce.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds','unactioned','',NULL,NULL),
(95263,55,'update-db_run','Update WooCommerce Database','https://choiceresources.co.uk/wp-admin/options-general.php?page=updraftplus&tab=backups&do_update_woocommerce=true','unactioned','wc_db_update','wc_db_update','wc_db_update_nonce'),
(95264,55,'update-db_learn-more','Learn more about updates','https://woo.com/document/how-to-update-woocommerce/','unactioned','',NULL,NULL);
/*!40000 ALTER TABLE `wphu_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_admin_notes`
--

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

--
-- Dumping data for table `wphu_wc_admin_notes`
--

LOCK TABLES `wphu_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wphu_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wphu_wc_admin_notes` VALUES
(1,'wc-admin-onboarding-email-marketing','info','en_US','Sign up for tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','unactioned','woocommerce-admin','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(3,'facebook_pixel_api_2021','marketing','en_US','Improve the performance of your Facebook ads','Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved measurement and ad targeting capabilities.','{}','unactioned','woocommerce.com','2021-05-18 03:58:49',NULL,0,'plain','',0,'info',1),
(4,'facebook_ec_2021','marketing','en_US','Sync your product catalog with Facebook to help boost sales','A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(5,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. Weâ€™re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(6,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(7,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requestsâ€”customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(8,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(9,'your-first-product','info','en_US','Your first product','Thatâ€™s huge! Youâ€™re well on your way to building a successful online store â€” now itâ€™s time to think about how youâ€™ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','unactioned','woocommerce.com','2021-03-30 03:33:21',NULL,0,'plain','',0,'info',1),
(10,'wc-square-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple PayÂ® with Square you can increase conversion rates by letting your customers know that Apple PayÂ® is available. Hereâ€™s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(11,'wc-square-apple-pay-grow-your-business','marketing','en_US','Grow your business with Square and Apple Pay ','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple PayÂ®.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(12,'wcpay-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple PayÂ® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple PayÂ® is available. Hereâ€™s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(13,'wcpay-apple-pay-grow-your-business','marketing','en_US','Grow your business with WooCommerce Payments and Apple Pay','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple PayÂ®.','{}','pending','woocommerce.com','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(14,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','Itâ€™s crucial to get your storeâ€™s checkout as smooth as possible to avoid losing sales. Letâ€™s take a look at how you can optimize the checkout experience for your shoppers.','{}','unactioned','woocommerce.com','2021-05-09 00:57:52',NULL,0,'plain','',0,'info',1),
(15,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, weâ€™ve put together this short list of the first few things you should customize in WooCommerce.','{}','unactioned','woocommerce.com','2021-04-02 14:43:46',NULL,0,'plain','',0,'info',1),
(16,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-03-30 03:26:15',NULL,0,'plain','',0,'info',1),
(17,'wc-admin-selling-online-courses','marketing','en_US','Do you want to sell online courses?','Online courses are a great solution for any business that can teach a new skill. Since courses donâ€™t require physical product development or shipping, theyâ€™re affordable, fast to create, and can generate passive income for years to come. In this article, we provide you more information about selling courses using WooCommerce.','{}','unactioned','woocommerce-admin','2021-03-30 03:27:31',NULL,0,'plain','',0,'info',1),
(18,'storefront-customize','info','en_US','Design your store with Storefront ðŸŽ¨','Visit the Storefront settings page to start setup and customization of your shop.','{}','unactioned','storefront','2021-03-30 03:30:02',NULL,0,'plain','',0,'info',1),
(20,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2021-03-31 14:08:36',NULL,0,'plain','',0,'info',1),
(22,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2021-03-31 14:08:36',NULL,0,'plain','',0,'info',1),
(23,'wcpay-apple-pay-is-now-available','marketing','en_US','Apple Pay is now available with WooCommerce Payments!','Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>Â®. Itâ€™s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.','{}','pending','woocommerce.com','2021-03-31 14:08:37',NULL,0,'plain','',0,'info',1),
(24,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics â€” wherever you are.','{}','unactioned','woocommerce-admin','2021-04-02 14:43:45',NULL,0,'plain','',0,'info',1),
(26,'paypal_ppcp_gtm_2021','marketing','en_US','Offer more options with the new PayPal','Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.','{}','pending','woocommerce.com','2021-04-02 14:43:46',NULL,0,'plain','',0,'info',1),
(28,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider thatâ€™s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2021-04-04 03:28:46',NULL,0,'plain','',0,'info',1),
(29,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"http://choiceresources.co.uk/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2021-04-06 03:31:19',NULL,0,'plain','',0,'info',1),
(30,'wc-admin-store-notice-giving-feedback-2','info','en_US','You\'re invited to share your experience','Now that youâ€™ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','{}','unactioned','woocommerce-admin','2021-04-07 03:59:17',NULL,0,'plain','',0,'info',1),
(32,'wc-admin-customize-store-with-blocks','info','en_US','Customize your online store with WooCommerce blocks','With our blocks, you can select and display products, categories, filters, and more virtually anywhere on your site â€” no need to use shortcodes or edit lines of code. Learn more about how to use each one of them.','{}','unactioned','woocommerce-admin','2021-04-19 09:34:18',NULL,0,'plain','',0,'info',1),
(33,'wc-payments-qualitative-feedback','info','en_US','WooPayments setup - let us know what you think','Congrats on enabling WooPayments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','unactioned','woocommerce.com','2024-05-08 03:30:07',NULL,0,'plain','',0,'info',1),
(35,'wc-admin-coupon-page-moved','update','en_US','Coupon management has moved!','Coupons can now be managed from Marketing &gt; Coupons. Click the button below to remove the legacy WooCommerce &gt; Coupons menu item.','{}','actioned','woocommerce-admin','2021-05-12 19:44:29',NULL,0,'plain','',0,'info',1),
(37,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2021-05-14 03:39:14',NULL,0,'plain','',0,'info',1),
(38,'wcpay_instant_deposits_gtm_2021','marketing','en_US','Get paid within minutes â€“ Instant Deposits for WooCommerce Payments','Stay flexible with immediate access to your funds when you need them â€“ including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, youâ€™re able to transfer your earnings to a debit card within minutes.','{}','pending','woocommerce.com','2021-05-15 03:28:29',NULL,0,'plain','',0,'info',1),
(39,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your siteâ€™s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help â€” just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2021-06-01 04:28:31',NULL,0,'plain','',0,'info',1),
(40,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','unactioned','woocommerce.com','2022-06-05 03:03:36',NULL,0,'plain','',0,'info',1),
(41,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2021-06-11 03:39:17',NULL,0,'plain','',0,'info',1),
(42,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2021-06-12 04:43:26',NULL,0,'plain','',0,'info',1),
(43,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2021-06-12 04:43:26',NULL,0,'plain','',0,'info',1),
(44,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple PayÂ®, and recurring revenue in over 100 currencies.\n				Built into your storeâ€™s WooCommerce dashboard, track cash flow and manage all of your transactions in one place â€“ with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2021-06-12 04:43:26',NULL,0,'plain','',0,'info',1),
(45,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple PayÂ®, and recurring revenue in over 100 currencies.\n				Built into your storeâ€™s WooCommerce dashboard, track cash flow and manage all of your transactions in one place â€“ with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2021-06-12 04:43:26',NULL,0,'plain','',0,'info',1),
(46,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! Thereâ€™s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','unactioned','woocommerce.com','2021-06-23 05:18:02',NULL,0,'plain','',0,'info',1),
(47,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','{}','pending','woocommerce.com','2021-06-23 05:18:02',NULL,0,'plain','',0,'info',1),
(48,'eu_vat_changes_2021','marketing','en_US','Get your business ready for the new EU tax regulations','On July 1, 2021, new taxation rules will come into play when the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\">European Union (EU) Value-Added Tax (VAT) eCommerce package</a> takes effect.<br /><br />The new regulations will impact virtually every B2C business involved in cross-border eCommerce trade with the EU.<br /><br />We therefore recommend <a href=\"https://woocommerce.com/posts/new-eu-vat-regulations\">familiarizing yourself with the new updates</a>, and consult with a tax professional to ensure your business is following regulations and best practice.','{}','unactioned','woocommerce.com','2021-06-24 04:20:37',NULL,0,'plain','',0,'info',1),
(49,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2021-06-28 03:53:45',NULL,0,'plain','',0,'info',1),
(50,'wayflyer_q3_2021','marketing','en_US','Grow your revenue with Wayflyer financing and analytics','Flexible financing tailored to your needs by <a href=\"https://woocommerce.com/products/wayflyer/\">Wayflyer</a> â€“ one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer can provide the financing you need to grow and the analytical insights to help you spend it.','{}','pending','woocommerce.com','2021-07-16 04:28:02',NULL,0,'plain','',0,'info',1),
(51,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-07-16 04:28:02',NULL,0,'plain','',0,'info',1),
(52,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-07-16 04:28:02',NULL,0,'plain','',0,'info',1),
(53,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-07-16 04:28:02',NULL,0,'plain','',0,'info',1),
(54,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-07-16 04:28:02',NULL,0,'plain','',0,'info',1),
(55,'wc-update-db-reminder','update','en_US','WooCommerce database update required','WooCommerce has been updated! To keep things running smoothly, we have to update your database to the newest version. The database update process runs in the background and may take a little while, so please be patient. Advanced users can alternatively update via <a href=\"https://github.com/woocommerce/woocommerce/wiki/Upgrading-the-database-using-WP-CLI\">WP CLI</a>.','{}','unactioned','woocommerce-core','2021-08-19 13:30:23',NULL,0,'plain','',0,'info',1),
(56,'wc-admin-launch-checklist','info','en_US','Ready to launch your store?','To make sure you never get that sinking \"what did I forget\" feeling, we\'ve put together the essential pre-launch checklist.','{}','unactioned','woocommerce-admin','2021-08-20 04:21:17',NULL,0,'plain','',0,'info',1),
(57,'mercadopago_q3_2021_EN','marketing','en_US','Get paid with Mercado Pago Checkout','Latin America\'s leading payment processor is now available for WooCommerce stores. Securely accept debit and credit cards, cash, bank transfers, and installment payments â€“ backed by exclusive fraud prevention tools.','{}','pending','woocommerce.com','2021-09-01 03:38:21',NULL,0,'plain','',0,'info',1),
(58,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2021-09-26 04:04:52',NULL,0,'plain','',0,'info',1),
(59,'bbpos-chipper-launch','marketing','en_US','Ready to grow your business beyond online?','Collect payment in person for orders placed online using WooCommerce In-Person Payments. The BBPOS Chipper card reader can process payments securely, and keep everything synced in your WooCommerce Payments dashboard â€“ no matter where you are.','{}','pending','woocommerce.com','2021-10-16 04:01:09',NULL,0,'plain','',0,'info',1),
(60,'habit-moment-survey','marketing','en_US','Weâ€™re all ears! Share your experience so far with WooCommerce','Weâ€™d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2021-11-05 03:45:13',NULL,0,'plain','',0,'info',1),
(61,'new_in_app_marketplace_2021_1','info','en_US','Grow your business with extensions','Check out our NEW Extensions tab to see our favorite extensions for growing your business, and discover the most popular extensions in the WooCommerce Marketplace.','{}','pending','woocommerce.com','2021-11-09 03:34:26',NULL,0,'plain','',0,'info',1),
(62,'new_in_app_marketplace_2021_2','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','pending','woocommerce.com','2021-11-09 03:34:26',NULL,0,'plain','',0,'info',1),
(63,'stripe_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. Itâ€™s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-12 04:13:16',NULL,0,'plain','',0,'info',1),
(64,'square_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. Itâ€™s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-12 04:13:16',NULL,0,'plain','',0,'info',1),
(65,'wcpay_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. Itâ€™s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-12 04:13:16',NULL,0,'plain','',0,'info',1),
(66,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow â€“ one fee, no interest rates, penalties, equity, or personal guarantees. Based on your storeâ€™s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2021-11-12 04:13:16',NULL,0,'plain','',0,'info',1),
(67,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> â€“ all directly from your mobile device!','{}','pending','woocommerce.com','2021-11-12 04:13:16',NULL,0,'plain','',0,'info',1),
(68,'wc_shipping_mobile_app_q4_2021','marketing','en_US','Print and manage your shipping labels with the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> â€“ all directly from your mobile device!','{}','pending','woocommerce.com','2021-11-12 04:13:16',NULL,0,'plain','',0,'info',1),
(69,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2022-06-05 03:03:36',NULL,0,'plain','',0,'info',1),
(70,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2022-04-25 17:45:02',NULL,0,'plain','',0,'info',1),
(71,'ecomm-wc-navigation-survey','info','en_US','Weâ€™d like your feedback on the WooCommerce navigation','Weâ€™re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2022-06-05 03:03:36',NULL,0,'plain','',0,'info',0),
(72,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). Itâ€™s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.','{}','pending','woocommerce.com','2022-06-05 03:03:36',NULL,0,'plain','',0,'info',0),
(73,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2022-06-05 03:03:36',NULL,0,'plain','',0,'info',0),
(74,'pinterest_03_2022_update','marketing','en_US','Your Pinterest for WooCommerce plugin is out of date!','Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on â€œupdate nowâ€ under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2022-06-05 03:03:36',NULL,0,'plain','',0,'info',0),
(75,'setup_task_initiative_survey_q2_2022','survey','en_US','We want to know what matters most to you','Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.','{}','pending','woocommerce.com','2022-06-05 03:03:36',NULL,0,'plain','',0,'info',0),
(76,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWeâ€™d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2022-06-05 03:03:36',NULL,0,'plain','',0,'info',0),
(77,'wc-admin-EU-consumer-protection','marketing','en_US','Important changes to EU consumer protection laws','New regulations to help modernize and strengthen consumer protection laws in the European Union (EU) take effect on May 28, 2022. These rules impact all merchants selling to the EU, regardless of where their business is located. Further detailed information is available on the European Commission\'s official website.','{}','unactioned','woocommerce.com','2022-06-05 03:03:36',NULL,0,'plain','',0,'info',0),
(78,'wc_ipp_order_creation_GTM_launch_q2_2022','marketing','en_US','Grow your business on the go with WooCommerce In-Person Payments','Quickly create new orders, manage transactions, and take secure payments no matter where your business takes you. With automatic inventory sync, WooCommerce In-Person Payments is the only fully integrated solution for taking your WooCommerce store offline.','{}','pending','woocommerce.com','2022-06-05 03:03:36',NULL,0,'plain','',0,'info',0),
(79,'wc-admin-orders-milestone','info','en_US','Congratulations on processing 10 orders!','You\'ve hit the 10 orders milestone! Look at you go. Browse some WooCommerce success stories for inspiration.','{}','unactioned','woocommerce-admin','2022-06-07 22:05:33',NULL,0,'plain','',0,'info',0),
(80,'wc-admin-edit-products-on-the-move','info','en_US','Edit products on the move','Edit and create new products from your mobile devices with the Woo app','{}','unactioned','woocommerce-admin','2022-06-07 22:13:49',NULL,0,'plain','',0,'info',0),
(81,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','{}','unactioned','woocommerce-admin','2022-06-07 22:13:49',NULL,0,'plain','',0,'info',0),
(82,'wc-admin-navigation-nudge','info','en_US','You now have access to the WooCommerce navigation','Weâ€™re introducing a new navigation for a more intuitive and improved user experience. You can enable the beta version of the new experience in the Advanced Settings. Enable it now for your store.','{}','unactioned','woocommerce-admin','2022-06-07 22:13:49',NULL,0,'plain','',0,'info',0),
(84,'wc-admin-wisepad3','marketing','en_US','Take your business on the go in Canada with WooCommerce In-Person Payments','Quickly create new orders, accept payment in person for orders placed online, and automatically sync your inventory â€“ no matter where your business takes you. With WooCommerce In-Person Payments and the WisePad 3 card reader, you can bring the power of your store anywhere.','{}','pending','woocommerce.com','2022-06-16 03:28:05',NULL,0,'plain','',0,'info',0),
(85,'TikTok q2_2022','marketing','en_US','Give your store a stage on the worldâ€™s fastest-growing advertising channel','With TikTok for WooCommerce, you can sync your catalog, create videos, and track performance in front of TikTokâ€™s one billion global users. Try the Smart Video Generator to make ads using your existing product images â€“ no camera needed. Get $200 in ad credit from TikTok after a $20 spend (terms &amp; conditions apply).','{}','unactioned','woocommerce.com','2022-06-22 03:27:02',NULL,0,'plain','',0,'info',0),
(86,'tiktok-webinar-promo-july2022','marketing','en_US','Free webinar: TikTok for WooCommerce','Join WooCommerce and TikTok live on July 14 to learn about ad types, trends, and the best ways to connect with an audience of one billion active users on the worldâ€™s fastest-growing social platform. Participants have a chance to score a free month of Vimeo Pro, and two winners will get a $5,000 ad credit and more.','{}','unactioned','woocommerce.com','2022-07-09 03:27:39',NULL,0,'plain','',0,'info',0),
(87,'klarna_q3_2022','marketing','en_US','Meet Klarna â€“ your ultimate growth partner','Increase conversions by offering secure, flexible payment solutions â€“ including buy now, pay later â€“ all through a one-click checkout experience. Plus, youâ€™ll tap into a whole new market of the worldâ€™s most engaged shoppers.','{}','unactioned','woocommerce.com','2022-08-08 03:57:17',NULL,0,'plain','',0,'info',0),
(88,'mercado_pago_q3_2022','marketing','en_US','Get paid with Mercado Pago Checkout','Give your customers a checkout they can trust with Latin America\'s leading payment processor. Securely accept debit and credit cards, cash, bank transfers, and installment payments â€“ backed by exclusive fraud prevention tools.','{}','pending','woocommerce.com','2022-08-09 03:41:16',NULL,0,'plain','',0,'info',0),
(89,'woocommerce-payments-august-2022-need-to-update','update','en_US','Action required: Please update WooCommerce Payments','An updated secure version of WooCommerce Payments is available â€“ please ensure that youâ€™re using the latest patch version. For more information on what action you need to take, please review the article below.','{}','pending','woocommerce.com','2022-08-10 04:15:40',NULL,0,'plain','',0,'info',0),
(90,'woocommerce-payments-august-2022-store-patched','update','en_US','WooCommerce Payments has been automatically updated','Youâ€™re now running the latest secure version of WooCommerce Payments. Weâ€™ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.','{}','pending','woocommerce.com','2022-08-10 04:15:40',NULL,0,'plain','',0,'info',0),
(91,'mobile_app_order_management_q3_2022','marketing','en_US','Take order management on the go','The WooCommerce Mobile App continues to get better with added order management functionality! Add or remove products, edit fees, or change the shipping options in any existing order â€“ all from within the app.','{}','unactioned','woocommerce.com','2022-08-17 03:27:38',NULL,0,'plain','',0,'info',0),
(92,'product_creation_usability_test_3_months','survey','en_US','Have a say in the future of WooCommerce','Take an early look at the future of editing products in WooCommerce. Share your thoughts (~5 minutes) and help shape the experience for yourself and other merchants.','{}','pending','woocommerce.com','2022-08-26 03:26:17',NULL,0,'plain','',0,'info',0),
(93,'product_creation_usability_test_6_months','survey','en_US','Try the new product edit form prototype','Take an early look at the future of editing products in WooCommerce. Share your thoughts (~5 minutes) and help shape the experience for yourself and other merchants.','{}','pending','woocommerce.com','2022-08-30 03:26:18',NULL,0,'plain','',0,'info',0),
(94,'product_creation_usability_test_12_months','survey','en_US','Try the new product edit form prototype','Take an early look at the future of editing products in WooCommerce. Share your thoughts (~5 minutes) and help shape the experience for yourself and other merchants.','{}','pending','woocommerce.com','2022-09-07 03:26:22',NULL,0,'plain','',0,'info',0),
(95,'custom_deposit_schedules_inbox','marketing','en_US','Customize your deposit schedule','Receive your funds according to your own business needs with custom deposit schedules from WooCommerce Payments. Youâ€™ll have the flexibility to deposit funds into your bank account daily, weekly, monthly, or even on-demand â€“ youâ€™ve done the work, now get paid on your terms.','{}','unactioned','woocommerce.com','2022-09-15 03:26:30',NULL,0,'plain','',0,'info',0),
(96,'googlelistings_signals2022_hasGLA','marketing','en_US','Show off your products with Ads on Google','Youâ€™re ready to grow with ads. Google optimizes for performance across your products; you only pay for results. If youâ€™re new to Google, you can earn up to $500 in ad credits (T&amp;Cs apply). <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">Contact support</a> if you need guidance with Google Listings &amp; Ads.','{}','pending','woocommerce.com','2022-09-23 03:26:20',NULL,0,'plain','',0,'info',0),
(97,'googlelistings_signals2022_noGLA','marketing','en_US','Show off your products with Ads on Google','Youâ€™re ready to grow with ads. Google optimizes for performance across your products; you only pay for results. If youâ€™re new to Google, you can earn up to $500 in ad credits (T&amp;Cs apply). <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">Contact support</a> if you need guidance with Google Listings &amp; Ads.','{}','pending','woocommerce.com','2022-09-23 03:26:20',NULL,0,'plain','',0,'info',0),
(98,'pre-black-friday-sale-2022-announcement','marketing','en_US','Surprise! Weâ€™re offering 40% off everything at WooCommerce.com','Just in time to get your store Black Friday ready. Sale ends 7 October, 2pm UTC.','{}','unactioned','woocommerce.com','2022-10-04 03:26:16',NULL,0,'plain','',0,'info',0),
(99,'shipping_category_q4_2022','marketing','en_US','Save time on shipping','Is your store all set to ship? Save valuable time (and money!) by automating your fulfillment process for the busiest shopping season. Explore our range of trusted shipping partners to get started.','{}','unactioned','woocommerce.com','2022-10-14 03:30:47',NULL,0,'plain','',0,'info',0),
(100,'tiktok-targeted-q4-2022','marketing','en_US','Get $200 in ad credit from TikTok after you spend $20 on your first campaign','Reach one billion shoppers with TikTok for WooCommerce this holiday season! Sync your product catalog, capture insights, and create ad campaigns right from your dashboard. Connect your store today to unlock this limited time offer! <a href=\"https://ads.tiktok.com/help/article?aid=10011326\">Terms &amp; conditions apply</a>.','{}','pending','woocommerce.com','2022-10-25 04:06:43',NULL,0,'plain','',0,'info',0),
(101,'paypal_paylater_g3_q4_22','marketing','en_US','Turn browsers into buyers with Pay Later','Add PayPal at checkout, plus give customers a buy now, pay later option from the name they trust. With Pay in 4 &amp; Pay Monthly, available in PayPal Payments, you get paid up front while letting customers spread their payments over time. Boost your average order value and convert more sales â€“ at no extra cost to you.','{}','pending','woocommerce.com','2022-11-02 03:28:27',NULL,0,'plain','',0,'info',0),
(102,'paypal_paylater_g2_q4_22','marketing','en_US','Upgrade to PayPal Payments to offer Pay Later at checkout','PayPal Pay Later is included in PayPal Payments at no additional cost to you. Customers can spread their payments over time while you get paid up front. \r\nThereâ€™s never been a better time to upgrade your PayPal plugin. Simply download it and connect with a PayPal Business account.','{}','pending','woocommerce.com','2022-11-04 03:26:20',NULL,0,'plain','',0,'info',0),
(103,'woocommerce_admin_deprecation_q4_2022','info','en_US','WooCommerce Admin is part of WooCommerce!','To make sure your store continues to run smoothly, check that WooCommerce is up-to-date â€“ at least version 6.5 â€“ and then disable the WooCommerce Admin plugin.','{}','pending','woocommerce.com','2022-11-05 03:32:51',NULL,0,'plain','',0,'info',0),
(111,'wc-admin-new-sales-record','info','en_US','New sales record!','Woohoo, November 16th was your record day for sales! Net sales was Â£139.98 beating the previous record of Â£39.93 set on June 6th.','{\"old_record_date\":\"2022-06-06\",\"old_record_amt\":39.92999999999999971578290569595992565155029296875,\"new_record_date\":\"2022-11-16\",\"new_record_amt\":139.979999999999989768184605054557323455810546875}','unactioned','woocommerce-admin','2022-11-17 03:26:23',NULL,0,'plain','',0,'info',0),
(112,'google_listings_ads_custom_attribute_mapping_q4_2022','marketing','en_US','Our latest improvement to the Google Listings & Ads extension: Attribute Mapping','You spoke, we listened. This new feature enables you to easily upload your products, customize your product attributes in one place, and target shoppers with more relevant ads. Extend how far your ad dollars go with each campaign.','{}','pending','woocommerce.com','2022-12-01 03:26:20',NULL,0,'plain','',0,'info',0),
(113,'wc-admin-manualauthcapture','marketing','en_US','Miss fewer manual payments in WooCommerce Payments','Using WooCommerce Payments to manually authorize and capture payments? Weâ€™ve introduced a simplified and more efficient process, so you can miss fewer payments and continue to grow your revenue.','{}','pending','woocommerce.com','2022-12-01 03:26:20',NULL,0,'plain','',0,'info',0),
(114,'apple_pay_square_q422','marketing','en_US','Grow your business with Apple Pay','Start boosting your online conversions today with Apple Pay â€“ shoppers can safely complete a purchase with a touch or a glance and are more likely to come back. Enable Apple Pay with Square by selecting  Settings &gt; Payments &gt; Square.','{}','pending','woocommerce.com','2022-12-08 03:26:16',NULL,0,'plain','',0,'info',0),
(115,'apple_pay_wcpay_q422','marketing','en_US','Grow your business with Apple Pay','Start boosting your online conversions today with Apple Pay â€“ shoppers can safely complete a purchase with a touch or a glance and are more likely to come back. Confirm Apple Pay is enabled by selecting Payments &gt; Settings and making sure Enable express checkouts is checked.','{}','pending','woocommerce.com','2022-12-08 03:26:16',NULL,0,'plain','',0,'info',0),
(116,'meta-hasFB-dec-q4-2022','marketing','en_US','Power up your Facebook ad strategy','Did you know that new privacy policies may be decreasing the effectiveness of your Facebook ads? Get back on track with Metaâ€™s Conversion API. It creates a direct connection between the marketing data from your store and Meta, helping you more accurately track, attribute and improve your Facebook marketing performance.','{}','pending','woocommerce.com','2022-12-10 03:26:22',NULL,0,'plain','',0,'info',0),
(117,'meta-noFB-dec-q4-2022','marketing','en_US','Create highly targeted Facebook ads with Facebook for WooCommerce','Sync your product catalog to create Facebook ads and track their performance â€“ all from within your WooCommerce dashboard. With improved tracking signals and speed, plus more accurate tracking with the introduction of Metaâ€™s Conversion API, youâ€™ll have all the tools you need to run effective ad campaigns.','{}','unactioned','woocommerce.com','2022-12-12 03:26:22',NULL,0,'plain','',0,'info',0),
(118,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, weâ€™ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2023-01-06 03:26:17',NULL,0,'plain','',0,'info',0),
(119,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2023-01-06 03:26:17',NULL,0,'plain','',0,'info',0),
(120,'storeediting_feedback_jan_2023','marketing','en_US','Tell us what you need to customize your store!','We need your feedback. Please spare a few minutes to share your input on what is most important to you when designing and customizing your storefront to help us build the features you need.','{}','unactioned','woocommerce.com','2023-01-13 03:26:17',NULL,0,'plain','',0,'info',0),
(121,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2023-01-17 03:26:18',NULL,0,'plain','',0,'info',0),
(122,'affirm_q1_2023','marketing','en_US','Turn more browsers into buyers with flexible payments','When you offer flexible payment options to shoppers, they\'re more likely to convert. Itâ€™s why businesses offering Affirm see an average order value lift of 63%. Affirm tailors your store\'s payment options with terms proven to reach new customers, boost conversions, and grow sales.','{}','pending','woocommerce.com','2023-03-13 03:26:23',NULL,0,'plain','',0,'info',0),
(123,'google_listings_ads_pmax_i1_q1_2023_no_gla','marketing','en_US','Create more engaging ads â€“ without the hard work','Get in front of millions of shoppers searching for products like yours with Google Listings &amp; Ads. With new customization features, Google automatically tests multiple combinations of text and images to create the most engaging ad to boost your business. Plus, get up to $500 in ad credit â€“ terms and conditions apply.','{}','unactioned','woocommerce.com','2023-03-16 03:26:22',NULL,0,'plain','',0,'info',0),
(124,'google_listings_ads_pmax_i1_q1_2023_with_gla','marketing','en_US','New customization features to boost your business','You can now add custom images, messaging, and URLs to campaigns in Google Listings &amp; Ads. Google then automatically tests multiple combinations to create the most engaging version to help boost your business. Get more sales with dynamic content â€“ edit an existing campaign or create a new ad now.','{}','pending','woocommerce.com','2023-03-16 03:26:22',NULL,0,'plain','',0,'info',0),
(125,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2023-03-24 03:26:20',NULL,0,'plain','',0,'info',0),
(126,'tap_to_pay_iphone_q2_2023_no_wcpay','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up â€” no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.','{}','unactioned','woocommerce.com','2023-04-04 03:26:20',NULL,0,'plain','',0,'info',0),
(127,'tap_to_pay_iphone_q2_2023_with_wcpay','marketing','en_US','New: accept in-person contactless payments on your iPhone','Tap to Pay on iPhone is quick, secure, and simple to set up in WooCommerce Payments â€” no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person in a few short steps!','{}','pending','woocommerce.com','2023-04-04 03:26:20',NULL,0,'plain','',0,'info',0),
(128,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(129,'wc-admin-wcpay-denmark-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Denmark!','Weâ€™ve recently released WooCommerce Payments in Denmark. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(130,'wc-admin-wcpay-greece-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Greece!','Weâ€™ve recently released WooCommerce Payments in Greece. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(131,'wc-admin-wcpay-norway-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Norway!','Weâ€™ve recently released WooCommerce Payments in Norway. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(132,'wc-admin-wcpay-slovakia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Slovakia!','Weâ€™ve recently released WooCommerce Payments in Slovakia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(133,'wc-admin-wcpay-finland-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Finland!','Weâ€™ve recently released WooCommerce Payments in Finland. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(134,'wc-admin-wcpay-estonia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Estonia!','Weâ€™ve recently released WooCommerce Payments in Estonia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(135,'wc-admin-wcpay-lithuania-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Lithuania!','Weâ€™ve recently released WooCommerce Payments in Lithuania. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(136,'wc-admin-wcpay-slovenia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Slovenia!','Weâ€™ve recently released WooCommerce Payments in Slovenia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(137,'wc-admin-wcpay-latvia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Latvia!','Weâ€™ve recently released WooCommerce Payments in Latvia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(138,'wc-admin-wcpay-cyprus-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Cyprus!','Weâ€™ve recently released WooCommerce Payments in Cyprus. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(139,'wc-admin-wcpay-malta-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Malta!','Weâ€™ve recently released WooCommerce Payments in Malta. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(140,'wc-admin-wcpay-luxembourg-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Luxembourg!','Weâ€™ve recently released WooCommerce Payments in Luxembourg. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 03:26:24',NULL,0,'plain','',0,'info',0),
(141,'wc_admin_BNPL_WCPay_coming-soon_Q1_2023','marketing','en_US','Buy now, pay later is heading to WooCommerce Payments','Great news: full integration with Afterpay and Affirm is on its way to WooCommerce Payments! Youâ€™ll soon be able to increase your order values, sell more, and offer customers a payment option theyâ€™ll love â€” with no extra downloads or extensions required.','{}','pending','woocommerce.com','2023-04-27 03:26:23',NULL,0,'plain','',0,'info',0),
(142,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. Weâ€™re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n<br /><br />\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-04-28 03:26:17',NULL,0,'plain','',0,'info',0),
(143,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. Weâ€™re excited to announce that WooPay availability has resumed.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-04-28 03:26:17',NULL,0,'plain','',0,'info',0),
(144,'woopay-beta-existingmerchants-noaction-27APR23-test2','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. Weâ€™re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n<br /><br />\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-04-28 03:26:17',NULL,0,'plain','',0,'info',0),
(145,'woopay-beta-existingmerchants-update-27APR23-test','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. Weâ€™re excited to announce that WooPay availability has resumed.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-04-28 03:26:17',NULL,0,'plain','',0,'info',0),
(146,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay â€” our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available â€”and weâ€™re inviting you to be one of the first to try it. \r\n<br><br>\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br><br>\r\nGet started in seconds.','{}','pending','woocommerce.com','2023-05-05 03:26:22',NULL,0,'plain','',0,'info',0),
(147,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay â€” our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available â€” and youâ€™re invited to try it. \r\n<br /><br />\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br /><br />\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-05-05 03:26:22',NULL,0,'plain','',0,'info',0),
(148,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay â€” our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-05 03:26:22',NULL,0,'plain','',0,'info',0),
(149,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay â€” our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-05-05 03:26:22',NULL,0,'plain','',0,'info',0),
(150,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay â€” our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-07 03:26:19',NULL,0,'plain','',0,'info',0),
(151,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay â€” our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-07 03:26:19',NULL,0,'plain','',0,'info',0),
(152,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay â€” our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-07 03:26:19',NULL,0,'plain','',0,'info',0),
(153,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay â€” our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-07 03:26:19',NULL,0,'plain','',0,'info',0),
(154,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay â€” our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-15 23:04:23',NULL,0,'plain','',0,'info',0),
(155,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay â€” our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-05-15 23:04:23',NULL,0,'plain','',0,'info',0),
(156,'payoneer_q2_2023','marketing','en_US','Grow with the next generation of payment processing','Ready to stand out in the new global economy? Payoneer Checkout gives you the power to securely accept payments worldwide, build a checkout that customers love, and manage your storeâ€™s transactions and finances â€“ all from the same place.','{}','pending','woocommerce.com','2023-05-15 23:04:23',NULL,0,'plain','',0,'info',0),
(157,'ipp_refresh_q2_2023_us_inbox_notification','marketing','en_US','Grow on the go with in-person payments','Sell your products or services on the go with the M2 card reader â€“ a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.','{}','pending','woocommerce.com','2023-05-18 03:26:20',NULL,0,'plain','',0,'info',0),
(158,'ipp_refresh_q2_2023_ca_inbox_notification','marketing','en_US','Grow on the go with in-person payments','Sell your products or services on the go with the WisePad 3 card reader â€“ a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.','{}','pending','woocommerce.com','2023-05-18 03:26:20',NULL,0,'plain','',0,'info',0),
(159,'product_management_card_sorting','survey','en_US','How do you create and edit products?','Have a say in the future of WooCommerce. Take part in a brief exercise and help us understand what information is important to you while editing products.','{}','unactioned','woocommerce.com','2023-05-19 03:26:30',NULL,0,'plain','',0,'info',0),
(160,'woocommerce-WCstripe-May-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Stripe plugin','<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-06-02 03:26:34',NULL,0,'plain','',0,'info',0),
(161,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2023-06-03 03:26:24',NULL,0,'plain','',0,'info',0),
(162,'woocommerce-WCPayments-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Payments','<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-06-07 03:26:19',NULL,0,'plain','',0,'info',0),
(163,'woocommerce-WCSubscriptions-June-2023-updated-needed','marketing','en_US','Action required: Security update of WooCommerce Subscriptions','<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.','{}','unactioned','woocommerce.com','2023-06-07 03:26:19',NULL,0,'plain','',0,'info',0),
(164,'woocommerce_hpos_1st_notification_q2_2023','marketing','en_US','High-Performance Order Storage (HPOS) is on its way','Our team is targeting August 2023 to roll out a major database upgrade that can unlock faster checkout and order creation for your customers â€” and lightning-quick order lookup for you. Enablement is optional and you wonâ€™t be forced to update, but read on to see why this was our most requested new feature.','{}','unactioned','woocommerce.com','2023-06-07 03:26:19',NULL,0,'plain','',0,'info',0),
(165,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2023-06-22 03:26:18',NULL,0,'plain','',0,'info',0),
(166,'wc-admin-wcpay-bulgaria-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Bulgaria!','Weâ€™ve recently released WooCommerce Payments in Bulgaria. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 03:26:19',NULL,0,'plain','',0,'info',0),
(167,'wc-admin-wcpay-czechia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Czechia!','Weâ€™ve recently released WooCommerce Payments in Czechia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 03:26:19',NULL,0,'plain','',0,'info',0),
(168,'wc-admin-wcpay-croatia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Croatia!','Weâ€™ve recently released WooCommerce Payments in Croatia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 03:26:19',NULL,0,'plain','',0,'info',0),
(169,'wc-admin-wcpay-hungary-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Hungary!','Weâ€™ve recently released WooCommerce Payments in Hungary. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 03:26:19',NULL,0,'plain','',0,'info',0),
(170,'wc-admin-wcpay-romania-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Romania!','Weâ€™ve recently released WooCommerce Payments in Romania. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 03:26:19',NULL,0,'plain','',0,'info',0),
(171,'wc-admin-wcpay-sweden-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Sweden!','Weâ€™ve recently released WooCommerce Payments in Sweden. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 03:26:19',NULL,0,'plain','',0,'info',0),
(172,'tiktok-spc_june-2023','marketing','en_US','Take the guesswork out of TikTok advertising','Save time and create smarter ads using new automated campaign management from TikTok for WooCommerce. Simplify your campaign creation and watch TikTokâ€™s machine learning build, target, and optimize ads that support your advertising goals â€” and grow your audience.','{}','unactioned','woocommerce.com','2023-06-30 03:26:19',NULL,0,'plain','',0,'info',0),
(173,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2023-07-05 03:26:16',NULL,0,'plain','',0,'info',0),
(174,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage â€” July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2023-07-06 03:26:41',NULL,0,'plain','',0,'info',0),
(175,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2023-07-12 03:26:17',NULL,0,'plain','',0,'info',0),
(176,'square_payments_q3_2023','marketing','en_US','Square for WooCommerce','Connect your Square account with WooCommerce to accept online and in-person payments (including contactless payments and cross-channel gift cards) quickly and securely. Save time by syncing sales, customers, and items and inventory â€” and manage everything through one centralized platform.','{}','unactioned','woocommerce.com','2023-07-20 03:26:18',NULL,0,'plain','',0,'info',0),
(177,'wc-admin-woopayments-rebrand','marketing','en_US','WooCommerce Payments is now WooPayments','Weâ€™ve changed the name as part of recent updates to the Woo brand. Youâ€™ll still enjoy the same seamless payments experience â€” just look for WooPayments in your WordPress admin.','{}','pending','woocommerce.com','2023-07-29 03:26:24',NULL,0,'plain','',0,'info',0),
(178,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2023-08-03 03:26:50',NULL,0,'plain','',0,'info',0),
(179,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.','{}','pending','woocommerce.com','2023-08-03 03:26:50',NULL,0,'plain','',0,'info',0),
(180,'woocommerce-WooPayments-Aug-2023-update-needed','update','en_US','Action required: Security update for WooPayments (WooCommerce Payments) plugin','<strong>Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension</strong>. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2023-08-03 03:26:50',NULL,0,'plain','',0,'info',0),
(181,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.','{}','pending','woocommerce.com','2023-08-03 03:26:50',NULL,0,'plain','',0,'info',0),
(182,'tiktok-apac-webinar-2023','marketing','en_US','Unlocking TikTok: Live Webinar August 9','Join us on August 9 for a free online masterclass with our partners at TikTok, tailored to Woo merchants in the APAC region (11 am AEST). Youâ€™ll learn how to connect your store to TikTok, unlock expert advertising tools, and reach its one billion active global users â€” all from the comfort of your own home.','{}','pending','woocommerce.com','2023-08-05 03:26:27',NULL,0,'plain','',0,'info',0),
(183,'avalara_q3-2023_noAvaTax','marketing','en_US','Automatically calculate VAT in real time','Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTaxâ€” including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.','{}','unactioned','woocommerce.com','2023-08-09 03:26:26',NULL,0,'plain','',0,'info',0),
(184,'avalara_q3-2023_withAvaTax','marketing','en_US','New in AvaTax: Calculate VAT in real time','Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTaxâ€” including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.','{}','pending','woocommerce.com','2023-08-09 03:26:26',NULL,0,'plain','',0,'info',0),
(185,'google_uxstudy_recruitment_q3-2023','marketing','en_US','Share your feedback in exchange for $150','Woo has teamed up with Google to collect feedback on advertising products and services available to you. If selected, youâ€™ll receive an incentive equal to $150 USD for a 60-minute interview that can help improve the products you use to advertise. If interested, please take 2 minutes to complete the screening survey.','{}','pending','woocommerce.com','2023-08-10 03:26:54',NULL,0,'plain','',0,'info',0),
(186,'woo-activation-survey-blockers-22AUG23','info','en_US','How can we help you get that first sale?','Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!','{}','pending','woocommerce.com','2023-08-23 03:26:16',NULL,0,'plain','',0,'info',0),
(187,'tiktok_shopGTM_q3-2023_hasTikTok','marketing','en_US','You can now sell your products on TikTok Shop','TikTok is changing the way shoppers find and connect with brands. With TikTok Shop, you can sync your entire catalog from within Woo and sell directly to TikTok users through in-feed videos, livestreams, and your product showcase tab.','{}','pending','woocommerce.com','2023-09-07 03:26:38',NULL,0,'plain','',0,'info',0),
(188,'tiktok_shopGTM_q3-2023_noTikTok','marketing','en_US','You can now sell your products on TikTok Shop','TikTok is changing the way shoppers find and connect with brands. With TikTok Shop, you can sync your entire catalog from within Woo and sell directly to TikTok users through in-feed videos, livestreams, and your product showcase tab.','{}','pending','woocommerce.com','2023-09-08 03:26:42',NULL,0,'plain','',0,'info',0),
(189,'klaviyo_q3_2023','marketing','en_US','Build long lasting relationships with Klaviyo for WooCommerce','Increase customer engagement and boost conversions with powerful email and SMS automation from Klaviyo. Fully integrated with your Woo store, Klaviyo enables you to send personalized communications to your customers â€” ensuring that the right message is delivered at the right time for maximum impact.','{}','unactioned','woocommerce.com','2023-09-12 03:26:20',NULL,0,'plain','',0,'info',0),
(190,'wc_admin_BNPL_WCPay_Q3_2023','marketing','en_US','Afterpay and Affirm have arrived in WooCommerce Payments!','Give your customers more power with buy now, pay later from Afterpay and Affirm â€” now included as part of WooCommerce Payments! With this new integration, you can quickly offer a checkout option that converts sales and boosts average order value, all from within the same payments dashboard you already know.','{}','pending','woocommerce.com','2023-09-19 03:26:25',NULL,0,'plain','',0,'info',0),
(191,'wc_admin_afterpay_WCPay_Q3_2023','marketing','en_US','Afterpay has arrived in WooCommerce Payments!','Give your customers more power with buy now, pay later from Afterpay â€” now included as part of WooCommerce Payments! With this new integration, you can quickly offer a checkout option that converts sales and boosts average order value, all from within the same payments dashboard you already know.','{}','pending','woocommerce.com','2023-09-19 03:26:25',NULL,0,'plain','',0,'info',0),
(192,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.','{}','pending','woocommerce.com','2023-09-20 03:26:17',NULL,0,'plain','',0,'info',0),
(193,'Klarna_10OCT23','marketing','en_US','Klarna is now available','This is a test. Klarna is now available.','{}','pending','woocommerce.com','2023-10-11 03:26:17',NULL,0,'plain','',0,'info',0),
(194,'wc_com_in_person_payments_card_sale_US_inbox_note_q4_23','marketing','en_US','Save 35% on a WooPayments card reader','Have you been thinking about selling your products or services in person? Nowâ€™s the perfect time to do so, as weâ€™re discounting our M2 card readers by 35%! Securely process payments wherever your business takes you, with full store and inventory sync. Donâ€™t miss out â€” this offer ends October 29, 2023.','{}','pending','woocommerce.com','2023-10-13 03:26:55',NULL,0,'plain','',0,'info',0),
(195,'wc_com_in_person_payments_card_sale_UK_inbox_note_q4_23','marketing','en_US','Save 35% on a WooPayments card reader','Have you been thinking about selling your products or services in person? Nowâ€™s the perfect time to do so, as weâ€™re discounting our WisePad 3 card readers by 35%! Securely process payments wherever your business takes you, with full store and inventory sync. Donâ€™t miss out â€” this offer ends 29th October 2023.','{}','pending','woocommerce.com','2023-10-13 03:26:55',NULL,0,'plain','',0,'info',0),
(196,'wc_com_in_person_payments_card_sale_CA_inbox_note_q4_23','marketing','en_US','Save 35% on a WooPayments card reader','Have you been thinking about selling your products or services in person? Nowâ€™s the perfect time to do so, as weâ€™re discounting our WisePad 3 card readers by 35%! Securely process payments wherever your business takes you, with full store and inventory sync. Donâ€™t miss out â€” this offer ends October 29, 2023.','{}','pending','woocommerce.com','2023-10-13 03:26:55',NULL,0,'plain','',0,'info',0),
(197,'woocommerce-STRIPE-Oct-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe Gateway','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway</strong>. The fix for this vulnerability was released on October 17. Please update immediately.','{}','pending','woocommerce.com','2023-10-18 03:26:22',NULL,0,'plain','',0,'info',0),
(198,'wc_admin_WooPay_Q4_2023','marketing','en_US','Convert more sales with our fastest checkout yet','Enable WooPay and offer the only single-click checkout experience built by Woo, for Woo. Give shoppers the power to pay instantly and securely speed through checkout, even if it\'s their first visit. Add it for free with one tap in your WooPayments dashboard.','{}','pending','woocommerce.com','2023-10-28 03:26:22',NULL,0,'plain','',0,'info',0),
(199,'wc_admin_WooPay_Oct30_2023','marketing','en_US','Convert more sales with our fastest checkout yet','Enable WooPay and offer the only single-click checkout experience built by Woo, for Woo. Give shoppers the power to pay instantly and securely speed through checkout, even if it\'s their first visit. Add it for free with one tap in your WooPayments dashboard.','{}','pending','woocommerce.com','2023-11-03 03:27:08',NULL,0,'plain','',0,'info',0),
(200,'paypal_paylater_q4_23','marketing','en_US','Boost your sales this holiday season with PayPal','Set yourself up for success this holiday season by allowing customers to pay the way they prefer. With the latest version of PayPal Payments, you can accept PayPal, Venmo (US), Pay Later*, credit and debit cards, and popular alternative payment methods in one secure solution.','{}','pending','woocommerce.com','2023-11-07 03:26:17',NULL,0,'plain','',0,'info',0),
(201,'tap_to_pay_iphone_q4_2023_no_woopayments','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone and WooPayments is quick, secure, and simple to set up â€” no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.','{}','pending','woocommerce.com','2023-12-06 03:26:17',NULL,0,'plain','',0,'info',0),
(202,'tap_to_pay_iphone_q4_2023_with_woopayments','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone is quick, secure, and simple to set up in WooPayments â€” no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person in a few short steps!','{}','pending','woocommerce.com','2023-12-06 03:26:17',NULL,0,'plain','',0,'info',0),
(203,'amazon-mcf-reviews-2023-12-07','marketing','en_US','Enjoying Amazon MCF for WooCommerce?','We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and weâ€™d love to make things right!','{}','pending','woocommerce.com','2023-12-07 03:26:21',NULL,0,'plain','',0,'info',0),
(204,'amazon_pay_reactivate_q1-24','marketing','en_US','Special offer: Activate 0% promo rate for Amazon Pay','For a limited time, Woo merchants who register with Amazon Pay can enjoy a promotional rate of 0% on all transaction fees for 30 days. Valid for businesses based in the United Kingdom. Terms and conditions apply.','{}','pending','woocommerce.com','2024-01-10 03:27:52',NULL,0,'plain','',0,'info',0),
(205,'remove_estimated_deposits_2024','marketing','en_US','Estimated deposits are going away','To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.','{}','pending','woocommerce.com','2024-01-20 03:26:42',NULL,0,'plain','',0,'info',0),
(206,'custom_order_attribution_inbox_q1_2024','marketing','en_US','NEW: Custom Order Attribution','Order attribution tracking is now available for all Woo stores! See whether an order came from a search ad, video, or email. Make better marketing decisions and watch your products go from â€œmaybeâ€ to â€œmust-have.â€','{}','unactioned','woocommerce.com','2024-02-06 03:26:18',NULL,0,'plain','',0,'info',0),
(207,'wc_admin_UKpricingchange_WCPay_Q1_2024','marketing','en_US','Fee Changes for WooPayments in the EEA and UK','WooPayments fees for transactions between the EEA and UK will change as of 1st March, 2024. Transactions between the UK and EEA are now deemed by card networks to be cross-border, thus international payment fees will be applicable. This also changes base processing fees.','{}','pending','woocommerce.com','2024-03-01 03:27:21',NULL,0,'plain','',0,'info',0),
(208,'airwallex_q1_2024','marketing','en_US','Save big on foreign exchange (FX) fees','Boost your international sales by offering Apple Pay, Google Pay, and 60+ local payment methods with Airwallex. Save time and money by settling payments directly in USD, EUR, HKD, SGD, AUD, and more â€” without the extra FX fees. Simple, cost-effective, fast.','{}','unactioned','woocommerce.com','2024-03-01 03:27:21',NULL,0,'plain','',0,'info',0),
(209,'wc-payments-notes-multi-currency-available','info','en_US','Sell worldwide in multiple currencies','Boost your international sales by allowing your customers to shop and pay in their local currency.','{}','unactioned','woocommerce-payments','2024-05-07 22:42:23',NULL,0,'plain','',0,'info',1),
(210,'wc-payments-notes-qualitative-feedback','info','en_US','Help us make improvements to WooPayments','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','unactioned','woocommerce-payments','2024-05-08 12:01:02',NULL,0,'plain','',0,'info',0);
/*!40000 ALTER TABLE `wphu_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_category_lookup`
--

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

--
-- Dumping data for table `wphu_wc_category_lookup`
--

LOCK TABLES `wphu_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wphu_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wphu_wc_category_lookup` VALUES
(25,25),
(401,401),
(401,405),
(401,406),
(401,407),
(401,409),
(401,426),
(401,429),
(401,430),
(402,402),
(402,410),
(402,411),
(402,412),
(402,413),
(402,414),
(403,403),
(403,415),
(403,416),
(403,417),
(403,418),
(403,419),
(403,420),
(403,425),
(404,404),
(404,421),
(404,422),
(404,424),
(405,405),
(406,406),
(407,407),
(408,408),
(408,427),
(408,428),
(409,409),
(410,410),
(411,411),
(412,412),
(413,413),
(414,414),
(415,415),
(416,416),
(417,417),
(418,418),
(419,419),
(420,420),
(421,421),
(422,422),
(423,423),
(424,424),
(425,425),
(426,426),
(427,427),
(428,428),
(429,429),
(430,430),
(431,431);
/*!40000 ALTER TABLE `wphu_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_customer_lookup`
--

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

--
-- Dumping data for table `wphu_wc_customer_lookup`
--

LOCK TABLES `wphu_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wphu_wc_customer_lookup` DISABLE KEYS */;
INSERT INTO `wphu_wc_customer_lookup` VALUES
(1,NULL,'','John','Doe','amnakulongo@gmail.com','2022-06-07 20:49:57',NULL,'GB','ME5 7AE','CHATHAM','Kent'),
(2,1,'admin','Ivan','Kulongo','ivankulongo@gmail.com','2024-05-10 00:35:10','2021-03-30 08:15:01','GB','RM9 5DR','Dagenham','Kent'),
(4,NULL,'','Amna','Kulongo','ivankulongo@gmail.com','2024-05-08 18:11:45',NULL,'GB','E6 5RF','London',''),
(6,NULL,'','John','Doe','sb-duv47d3572858@personal.example.com','2022-06-03 00:42:55',NULL,'GB','RM9 6JR','Dagenham','Essex'),
(16,75,'amna.kulongo','Amna','Kulongo','amnakulongo@gmail.com','2024-07-09 05:00:00','2023-02-17 21:36:08','GB','ME5 7AE','Chatham','');
/*!40000 ALTER TABLE `wphu_wc_customer_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_download_log`
--

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

--
-- Dumping data for table `wphu_wc_download_log`
--

LOCK TABLES `wphu_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wphu_wc_download_log` DISABLE KEYS */;
INSERT INTO `wphu_wc_download_log` VALUES
(1,'2021-05-12 21:37:09',2,2,'213.205.194.165');
/*!40000 ALTER TABLE `wphu_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_order_addresses`
--

DROP TABLE IF EXISTS `wphu_wc_order_addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_wc_order_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `address_type` varchar(20) DEFAULT NULL,
  `first_name` text DEFAULT NULL,
  `last_name` text DEFAULT NULL,
  `company` text DEFAULT NULL,
  `address_1` text DEFAULT NULL,
  `address_2` text DEFAULT NULL,
  `city` text DEFAULT NULL,
  `state` text DEFAULT NULL,
  `postcode` text DEFAULT NULL,
  `country` text DEFAULT NULL,
  `email` varchar(320) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `address_type_order_id` (`address_type`,`order_id`),
  KEY `order_id` (`order_id`),
  KEY `email` (`email`),
  KEY `phone` (`phone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_wc_order_addresses`
--

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

--
-- Table structure for table `wphu_wc_order_coupon_lookup`
--

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

--
-- Dumping data for table `wphu_wc_order_coupon_lookup`
--

LOCK TABLES `wphu_wc_order_coupon_lookup` WRITE;
/*!40000 ALTER TABLE `wphu_wc_order_coupon_lookup` DISABLE KEYS */;
INSERT INTO `wphu_wc_order_coupon_lookup` VALUES
(1062,1060,'2021-05-12 20:51:01',20),
(1069,1060,'2021-05-12 22:11:03',40);
/*!40000 ALTER TABLE `wphu_wc_order_coupon_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_order_operational_data`
--

DROP TABLE IF EXISTS `wphu_wc_order_operational_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_wc_order_operational_data` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `created_via` varchar(100) DEFAULT NULL,
  `woocommerce_version` varchar(20) DEFAULT NULL,
  `prices_include_tax` tinyint(1) DEFAULT NULL,
  `coupon_usages_are_counted` tinyint(1) DEFAULT NULL,
  `download_permission_granted` tinyint(1) DEFAULT NULL,
  `cart_hash` varchar(100) DEFAULT NULL,
  `new_order_email_sent` tinyint(1) DEFAULT NULL,
  `order_key` varchar(100) DEFAULT NULL,
  `order_stock_reduced` tinyint(1) DEFAULT NULL,
  `date_paid_gmt` datetime DEFAULT NULL,
  `date_completed_gmt` datetime DEFAULT NULL,
  `shipping_tax_amount` decimal(26,8) DEFAULT NULL,
  `shipping_total_amount` decimal(26,8) DEFAULT NULL,
  `discount_tax_amount` decimal(26,8) DEFAULT NULL,
  `discount_total_amount` decimal(26,8) DEFAULT NULL,
  `recorded_sales` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `order_id` (`order_id`),
  KEY `order_key` (`order_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_wc_order_operational_data`
--

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

--
-- Table structure for table `wphu_wc_order_product_lookup`
--

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

--
-- Dumping data for table `wphu_wc_order_product_lookup`
--

LOCK TABLES `wphu_wc_order_product_lookup` WRITE;
/*!40000 ALTER TABLE `wphu_wc_order_product_lookup` DISABLE KEYS */;
INSERT INTO `wphu_wc_order_product_lookup` VALUES
(1,1057,1053,0,1,'2021-05-12 18:34:09',1,0,0,0,0,0,0),
(2,1058,1053,0,2,'2021-05-12 18:44:40',1,0,0,0,0,0,0),
(7,1062,1053,0,3,'2021-05-12 20:51:01',1,0,0,20,0,0,0),
(10,1066,1021,0,3,'2021-05-12 21:36:58',2,0,0,0,0,0,0),
(11,1066,1014,0,3,'2021-05-12 21:36:58',1,0,0,0,0,0,0),
(12,1069,1067,0,3,'2021-05-12 22:11:03',1,0,0,40,0,0,0),
(15,4047,3918,0,2,'2021-09-17 14:40:59',1,0,0,0,0,0,0),
(16,4162,3918,0,1,'2021-09-20 13:00:14',1,0,0,0,0,0,0),
(17,4163,3918,0,4,'2021-09-20 13:09:14',1,0,0,0,0,0,0),
(18,5791,5670,0,5,'2022-05-01 13:43:20',1,2.99,2.99,0,0,0,0),
(19,5792,1067,0,3,'2022-05-12 10:10:58',1,40,40,0,0,0,0),
(21,7396,5666,0,2,'2022-06-02 20:22:32',1,1,1,0,0,0,0),
(24,7397,7394,0,2,'2022-06-02 20:34:41',2,198,198,0,0,0,0),
(26,7400,5670,0,6,'2022-06-02 20:42:55',1,2.99,2.99,0,0,0,0),
(29,7401,7394,0,2,'2022-06-02 20:49:17',2,198,198,0,0,0,0),
(31,7406,5666,0,2,'2022-06-02 21:46:46',1,1,1,0,0,0,0),
(32,7407,7394,0,2,'2022-06-02 22:04:46',2,198,198,0,0,0,0),
(34,7411,7394,0,7,'2022-06-02 23:46:34',1,99,99,0,0,0,0),
(36,7421,7394,0,8,'2022-06-03 00:16:03',1,0,0,0,0,0,0),
(38,7427,7394,0,9,'2022-06-03 00:25:48',1,0,0,0,0,0,0),
(52,7645,5663,0,2,'2022-06-06 10:40:34',1,1,1,0,0,0,0),
(53,7645,7158,0,2,'2022-06-06 10:40:34',2,13.98,13.98,0,0,0,0),
(54,7645,5670,0,2,'2022-06-06 10:40:34',2,5.98,5.98,0,0,0,0),
(55,7645,6575,0,2,'2022-06-06 10:40:34',1,3.99,3.99,0,0,0,0),
(56,7645,6569,0,2,'2022-06-06 10:40:34',1,2.99,2.99,0,0,0,0),
(57,7645,6706,0,2,'2022-06-06 10:40:34',1,4.99,4.99,0,0,0,0),
(58,7701,7158,0,2,'2022-06-06 12:39:49',1,6.99,6.99,0,0,0,0),
(59,7702,5660,0,2,'2022-06-06 12:42:58',2,1.98,1.98,0,0,0,0),
(61,7931,7158,0,2,'2022-06-06 13:22:29',2,13.98,13.98,0,0,0,0),
(62,7932,7158,0,2,'2022-06-06 13:27:20',1,6.99,6.99,0,0,0,0),
(63,7944,6575,0,2,'2022-06-06 14:09:37',1,3.99,3.99,0,0,0,0),
(64,7949,5670,0,2,'2022-06-06 14:18:23',1,2.99,2.99,0,0,0,0),
(65,7959,5670,0,2,'2022-06-06 14:24:10',1,2.99,2.99,0,0,0,0),
(68,8243,7158,0,2,'2022-06-06 16:02:35',1,6.99,6.99,0,0,0,0),
(69,8259,6575,0,2,'2022-06-06 16:57:30',1,3.99,3.99,0,0,0,0),
(70,8259,6706,0,2,'2022-06-06 16:57:30',1,4.99,4.99,0,0,0,0),
(71,8272,6706,0,2,'2022-06-06 17:32:39',1,4.99,4.99,0,0,0,0),
(72,8272,7158,0,2,'2022-06-06 17:32:39',1,6.99,6.99,0,0,0,0),
(73,8275,7158,0,2,'2022-06-06 17:47:07',1,6.99,6.99,0,0,0,0),
(74,8284,7158,0,2,'2022-06-06 18:09:06',1,6.99,6.99,0,0,0,0),
(75,8284,6706,0,2,'2022-06-06 18:09:06',1,4.99,4.99,0,0,0,0),
(76,8284,6575,0,2,'2022-06-06 18:09:06',1,3.99,3.99,0,0,0,0),
(77,8284,5663,0,2,'2022-06-06 18:09:06',1,1,1,0,0,0,0),
(78,8284,5666,0,2,'2022-06-06 18:09:06',1,1,1,0,0,0,0),
(79,8285,7158,0,2,'2022-06-06 18:22:23',1,6.99,6.99,0,0,0,0),
(80,8285,6706,0,2,'2022-06-06 18:22:23',1,4.99,4.99,0,0,0,0),
(81,8287,7199,0,2,'2022-06-06 19:26:02',1,2.99,2.99,0,0,0,0),
(83,8354,7158,0,1,'2022-06-07 16:49:57',1,6.99,6.99,0,0,0,0),
(84,8380,7199,0,2,'2022-06-07 20:53:13',1,2.99,2.99,0,0,0,0),
(85,8380,7158,0,2,'2022-06-07 20:53:13',1,6.99,6.99,0,0,0,0),
(86,8392,7158,0,2,'2022-06-07 23:53:32',1,6.99,6.99,0,0,0,0),
(87,8654,7158,0,2,'2022-06-09 17:39:11',1,6.99,6.99,0,0,0,0),
(88,8655,6706,0,2,'2022-06-09 17:41:21',1,4.99,4.99,0,0,0,0),
(89,17406,1067,0,2,'2022-11-16 22:44:10',1,69.99,69.99,0,0,0,0),
(91,17435,1067,0,2,'2022-11-16 23:16:38',1,69.99,69.99,0,0,0,0),
(95,20640,1067,0,13,'2023-01-06 01:57:44',1,69.99,69.99,0,0,0,0),
(97,22678,1067,0,14,'2023-01-25 15:30:10',1,62.5,62.5,0,0,0,0),
(99,22681,1067,0,15,'2023-01-25 15:57:02',1,62.5,62.5,0,0,0,0),
(101,24475,19685,0,16,'2023-02-17 15:36:08',1,1.99,5.94,0,0,3.95,0),
(103,30893,1067,0,2,'2023-11-16 23:17:15',1,69.99,69.99,0,0,0,0),
(104,33730,32827,0,2,'2024-05-07 20:47:13',3,6,9.95,0,0,3.95,0),
(106,33731,32827,0,4,'2024-05-07 22:57:51',1,2,5.95,0,0,3.95,0),
(108,33915,32827,0,2,'2024-05-08 12:00:33',6,12,15.95,0,0,3.95,0),
(110,33956,32827,0,4,'2024-05-08 13:11:45',2,4,7.95,0,0,3.95,0),
(112,33957,32827,0,2,'2024-05-08 13:13:59',4,8,11.95,0,0,3.95,0),
(114,34645,32827,0,2,'2024-05-09 19:25:28',4,8,11.95,0,0,3.95,0),
(116,34654,32827,0,2,'2024-05-09 19:35:10',3,6,9.95,0,0,3.95,0);
/*!40000 ALTER TABLE `wphu_wc_order_product_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_order_stats`
--

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

--
-- Dumping data for table `wphu_wc_order_stats`
--

LOCK TABLES `wphu_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wphu_wc_order_stats` DISABLE KEYS */;
INSERT INTO `wphu_wc_order_stats` VALUES
(1057,0,'2021-05-12 18:34:09','2021-05-12 18:34:09',1,0,0,0,0,0,'wc-processing',1,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(1058,0,'2021-05-12 18:44:40','2021-05-12 18:44:40',1,0,0,0,0,0,'wc-processing',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(1062,0,'2021-05-12 20:51:01','2021-05-12 20:51:01',1,0,0,0,0,0,'wc-processing',3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(1066,0,'2021-05-12 21:36:58','2021-05-12 21:36:58',3,0,0,0,0,1,'wc-completed',3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(1069,0,'2021-05-12 22:11:03','2021-05-12 22:11:03',1,0,0,0,0,1,'wc-processing',3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(4047,0,'2021-09-17 14:40:59','2021-09-17 14:40:59',1,0,0,0,0,1,'wc-processing',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(4162,0,'2021-09-20 13:00:14','2021-09-20 13:00:14',1,0,0,0,0,1,'wc-processing',1,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(4163,0,'2021-09-20 13:09:14','2021-09-20 13:09:14',1,0,0,0,0,0,'wc-processing',4,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(5791,0,'2022-05-01 13:43:20','2022-05-01 13:43:20',1,2.99,0,0,2.99,0,'wc-cancelled',5,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(5792,0,'2022-05-12 10:10:58','2022-05-12 10:10:58',1,40,0,0,40,1,'wc-failed',3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7396,0,'2022-06-02 20:22:32','2022-06-02 20:22:32',1,1,0,0,1,1,'wc-completed',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7397,0,'2022-06-02 20:34:41','2022-06-02 20:34:41',2,198,0,0,198,1,'wc-cancelled',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7400,0,'2022-06-02 20:42:55','2022-06-02 20:42:55',1,2.99,0,0,2.99,0,'wc-cancelled',6,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7401,0,'2022-06-02 20:49:17','2022-06-02 20:49:17',2,198,0,0,198,1,'wc-processing',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7406,0,'2022-06-02 21:46:46','2022-06-02 21:46:46',1,1,0,0,1,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7407,0,'2022-06-02 22:04:46','2022-06-02 22:04:46',2,198,0,0,198,1,'wc-cancelled',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7411,0,'2022-06-02 23:46:34','2022-06-02 23:46:34',1,99,0,0,99,0,'wc-processing',7,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7421,0,'2022-06-03 00:16:03','2022-06-03 00:16:03',1,0,0,0,0,0,'wc-processing',8,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7427,0,'2022-06-03 00:25:48','2022-06-03 00:25:48',1,0,0,0,0,0,'wc-processing',9,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7645,0,'2022-06-06 10:40:34','2022-06-06 10:40:34',8,32.93,0,0,32.93,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7701,0,'2022-06-06 12:39:49','2022-06-06 12:39:49',1,6.99,0,0,6.99,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7702,0,'2022-06-06 12:42:58','2022-06-06 12:42:58',2,1.98,0,0,1.98,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7931,0,'2022-06-06 13:22:29','2022-06-06 13:22:29',2,13.98,0,0,13.98,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7932,0,'2022-06-06 13:27:20','2022-06-06 13:27:20',1,6.99,0,0,6.99,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7944,0,'2022-06-06 14:09:37','2022-06-06 14:09:37',1,3.99,0,0,3.99,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7949,0,'2022-06-06 14:18:23','2022-06-06 14:18:23',1,2.99,0,0,2.99,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(7959,0,'2022-06-06 14:24:10','2022-06-06 14:24:10',1,2.99,0,0,2.99,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8243,0,'2022-06-06 16:02:35','2022-06-06 16:02:35',1,6.99,0,0,6.99,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8259,0,'2022-06-06 16:57:30','2022-06-06 16:57:30',2,8.98,0,0,8.98,1,'wc-cancelled',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8272,0,'2022-06-06 17:32:39','2022-06-06 17:32:39',2,11.98,0,0,11.98,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8275,0,'2022-06-06 17:47:07','2022-06-06 17:47:07',1,6.99,0,0,6.99,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8284,0,'2022-06-06 18:09:06','2022-06-06 18:09:06',5,17.97,0,0,17.97,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8285,0,'2022-06-06 18:22:23','2022-06-06 18:22:23',2,11.98,0,0,11.98,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8287,0,'2022-06-06 19:26:02','2022-06-06 19:26:02',1,2.99,0,0,2.99,1,'wc-cancelled',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8354,0,'2022-06-07 16:49:57','2022-06-07 16:49:57',1,6.99,0,0,6.99,1,'wc-on-hold',1,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8380,0,'2022-06-07 20:53:13','2022-06-07 20:53:13',2,9.98,0,0,9.98,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8392,0,'2022-06-07 23:53:32','2022-06-07 23:53:32',1,6.99,0,0,6.99,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8654,0,'2022-06-09 17:39:11','2022-06-09 17:39:11',1,6.99,0,0,6.99,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(8655,0,'2022-06-09 17:41:21','2022-06-09 17:41:21',1,4.99,0,0,4.99,1,'wc-on-hold',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(17406,0,'2022-11-16 22:44:10','2022-11-16 22:44:10',1,69.99,0,0,69.99,1,'wc-processing',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(17435,0,'2022-11-16 23:16:38','2022-11-16 23:16:38',1,69.99,0,0,69.99,1,'wc-processing',2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(20640,0,'2023-01-06 01:57:44','2023-01-06 01:57:44',1,69.99,0,0,69.99,0,'wc-processing',13,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(22678,0,'2023-01-25 15:30:10','2023-01-25 15:30:10',1,62.5,0,0,62.5,0,'wc-cancelled',14,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(22681,0,'2023-01-25 15:57:02','2023-01-25 15:57:02',1,62.5,0,0,62.5,0,'wc-processing',15,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(24475,0,'2023-02-17 15:36:08','2023-02-17 15:36:08',1,5.94,0,3.95,1.99,0,'wc-on-hold',16,'0000-00-00 00:00:00','0000-00-00 00:00:00'),
(30893,0,'2023-11-16 23:17:15','2023-11-16 23:17:15',1,69.99,0,0,69.99,1,'wc-processing',2,'2023-11-16 23:17:18',NULL),
(33730,0,'2024-05-07 20:47:13','2024-05-07 20:47:13',3,9.95,0,3.95,6,1,'wc-on-hold',2,NULL,NULL),
(33731,0,'2024-05-07 22:57:51','2024-05-07 22:57:51',1,5.95,0,3.95,2,1,'wc-cancelled',4,NULL,NULL),
(33915,0,'2024-05-08 12:00:33','2024-05-08 12:00:33',6,15.95,0,3.95,12,1,'wc-processing',2,'2024-05-08 12:00:37',NULL),
(33956,0,'2024-05-08 13:11:45','2024-05-08 13:11:45',2,7.95,0,3.95,4,1,'wc-processing',4,'2024-05-08 13:11:49',NULL),
(33957,0,'2024-05-08 13:13:59','2024-05-08 13:13:59',4,11.95,0,3.95,8,1,'wc-processing',2,'2024-05-08 13:14:12',NULL),
(34645,0,'2024-05-09 19:25:28','2024-05-09 19:25:28',4,11.95,0,3.95,8,1,'wc-processing',2,'2024-05-09 19:25:32',NULL),
(34654,0,'2024-05-09 19:35:10','2024-05-09 19:35:10',3,9.95,0,3.95,6,1,'wc-processing',2,'2024-05-09 19:35:13',NULL);
/*!40000 ALTER TABLE `wphu_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_order_tax_lookup`
--

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

--
-- Dumping data for table `wphu_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wphu_wc_orders`
--

DROP TABLE IF EXISTS `wphu_wc_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_wc_orders` (
  `id` bigint(20) unsigned NOT NULL,
  `status` varchar(20) DEFAULT NULL,
  `currency` varchar(10) DEFAULT NULL,
  `type` varchar(20) DEFAULT NULL,
  `tax_amount` decimal(26,8) DEFAULT NULL,
  `total_amount` decimal(26,8) DEFAULT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `billing_email` varchar(320) DEFAULT NULL,
  `date_created_gmt` datetime DEFAULT NULL,
  `date_updated_gmt` datetime DEFAULT NULL,
  `parent_order_id` bigint(20) unsigned DEFAULT NULL,
  `payment_method` varchar(100) DEFAULT NULL,
  `payment_method_title` text DEFAULT NULL,
  `transaction_id` varchar(100) DEFAULT NULL,
  `ip_address` varchar(100) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `customer_note` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `status` (`status`),
  KEY `date_created` (`date_created_gmt`),
  KEY `customer_id_billing_email` (`customer_id`,`billing_email`),
  KEY `billing_email` (`billing_email`),
  KEY `type_status` (`type`,`status`),
  KEY `parent_order_id` (`parent_order_id`),
  KEY `date_updated` (`date_updated_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_wc_orders`
--

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

--
-- Table structure for table `wphu_wc_orders_meta`
--

DROP TABLE IF EXISTS `wphu_wc_orders_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_wc_orders_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_key_value` (`meta_key`,`meta_value`(100)),
  KEY `order_id_meta_key_meta_value` (`order_id`,`meta_key`,`meta_value`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_wc_orders_meta`
--

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

--
-- Table structure for table `wphu_wc_product_attributes_lookup`
--

DROP TABLE IF EXISTS `wphu_wc_product_attributes_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_wc_product_attributes_lookup` (
  `product_id` bigint(20) NOT NULL,
  `product_or_parent_id` bigint(20) NOT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `term_id` bigint(20) NOT NULL,
  `is_variation_attribute` tinyint(1) NOT NULL,
  `in_stock` tinyint(1) NOT NULL,
  PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`),
  KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_wc_product_attributes_lookup`
--

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

--
-- Table structure for table `wphu_wc_product_download_directories`
--

DROP TABLE IF EXISTS `wphu_wc_product_download_directories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_wc_product_download_directories` (
  `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(256) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`url_id`),
  KEY `url` (`url`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_wc_product_download_directories`
--

LOCK TABLES `wphu_wc_product_download_directories` WRITE;
/*!40000 ALTER TABLE `wphu_wc_product_download_directories` DISABLE KEYS */;
INSERT INTO `wphu_wc_product_download_directories` VALUES
(1,'file:///home/onetruew/choiceresources.co.uk/wp-content/uploads/woocommerce_uploads/',1),
(2,'http://choiceresources.co.uk/wp-content/uploads/woocommerce_uploads/',1),
(3,'http://choiceresources.co.uk/wp-content/uploads/woocommerce_uploads/2022/06/',0),
(4,'http://choiceresources.co.uk/wp-content/uploads/woocommerce_uploads/2022/05/',0);
/*!40000 ALTER TABLE `wphu_wc_product_download_directories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_product_meta_lookup`
--

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

--
-- Dumping data for table `wphu_wc_product_meta_lookup`
--

LOCK TABLES `wphu_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wphu_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wphu_wc_product_meta_lookup` VALUES
(1053,'',1,0,20.0000,20.0000,0,NULL,'instock',0,0.00,3,'taxable',''),
(1067,'',1,0,54.9900,54.9900,0,NULL,'instock',0,0.00,6,'taxable',''),
(1079,'',1,1,5.9900,5.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(1859,'',0,0,2.9900,2.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(2764,'',0,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(2769,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(2782,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(2789,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(2802,'',0,1,2.6000,2.6000,0,NULL,'instock',0,0.00,0,'taxable',''),
(2813,'',0,1,2.6000,2.6000,0,NULL,'instock',0,0.00,0,'taxable',''),
(2822,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(2826,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(2830,'',0,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(2836,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(2921,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(2929,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(2934,'',0,1,2.6000,2.6000,0,NULL,'instock',0,0.00,0,'taxable',''),
(2940,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(2946,'',0,1,3.0000,3.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(2959,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(2966,'',0,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(2974,'',0,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(2980,'',0,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(2986,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3194,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3198,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3202,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3209,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3218,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3223,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3229,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3233,'',0,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(3239,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3243,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3247,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3253,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3257,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3263,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3270,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(3918,'',1,0,0.0000,0.0000,0,NULL,'instock',0,0.00,3,'',''),
(4832,'',0,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(5660,'',0,1,0.9900,0.9900,1,NULL,'instock',0,0.00,2,'taxable',''),
(5663,'',0,1,1.0000,1.0000,0,NULL,'instock',0,0.00,2,'taxable',''),
(5666,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,3,'taxable',''),
(5670,'',0,1,2.9900,2.9900,0,NULL,'instock',0,0.00,4,'taxable',''),
(6569,'',0,1,2.9900,2.9900,0,NULL,'instock',0,0.00,1,'taxable',''),
(6575,'',0,1,3.9900,3.9900,0,NULL,'instock',0,0.00,3,'taxable',''),
(6706,'',0,1,4.9900,4.9900,0,NULL,'instock',0,0.00,5,'taxable',''),
(7158,'',0,1,6.9900,6.9900,0,NULL,'instock',0,0.00,15,'taxable',''),
(7178,'',0,0,5.9900,5.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(7185,'',0,0,2.9900,2.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(7188,'',0,0,2.9900,2.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(7191,'',0,0,4.9900,4.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(7196,'',0,0,4.9900,4.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(7199,'',0,0,2.9900,2.9900,0,NULL,'instock',0,0.00,1,'taxable',''),
(7202,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(7207,'',0,0,7.9900,7.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(7371,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(7378,'',0,0,99.0000,99.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(7394,'',1,0,0.0000,0.0000,0,NULL,'instock',0,0.00,5,'taxable',''),
(14484,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14487,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14490,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14493,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14496,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14731,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14736,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14740,'',0,0,4.9900,4.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(14743,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(14758,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14761,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14769,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14771,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14773,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14775,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14778,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(14780,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14785,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(14787,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(14792,'',0,0,12.9900,12.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(14795,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(14798,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14801,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(14811,'',0,0,3.9900,3.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(14815,'',0,0,11.9900,11.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(14819,'',0,0,6.9900,6.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(14822,'',0,0,6.9900,6.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(14827,'',0,0,7.9900,7.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(14832,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(14835,'',0,0,6.9900,6.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(14838,'',0,0,6.9900,6.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(14870,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14886,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14888,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14890,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14892,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14894,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14896,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14898,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14900,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14902,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14904,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14906,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14908,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(14910,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(16300,'',0,0,15.9900,15.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(16306,'',0,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(16311,'',0,1,3.9900,3.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(16316,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(16321,'',1,1,3.9900,3.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(16325,'',0,1,8.9900,8.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(16329,'',1,1,6.9900,6.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(16333,'',1,1,6.9900,6.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(16337,'',1,1,4.9900,4.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(16342,'',1,1,12.9900,12.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(16347,'',1,1,13.9900,13.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(17288,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17294,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17296,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17298,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17303,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17309,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17311,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17313,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17361,'',0,1,15.9900,15.9900,0,NULL,'instock',0,0.00,0,'taxable','parent'),
(17362,'',0,0,15.9900,15.9900,0,5,'instock',0,0.00,0,'taxable','parent'),
(17372,'',0,1,3.9900,3.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(17381,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17383,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17385,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17386,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),
(17387,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),
(17389,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17391,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17393,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17399,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17404,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17412,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(17416,'',0,1,3.9900,3.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(18071,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(18081,'',0,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(18879,'',0,1,2.9900,2.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(18967,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(18972,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(18976,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(18980,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(18985,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(18990,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19013,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19026,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19028,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(19030,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19032,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19034,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19036,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19038,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19040,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19042,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19044,'',0,0,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19158,'',0,1,0.5000,0.5000,1,NULL,'instock',0,0.00,0,'taxable',''),
(19162,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19165,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19173,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19177,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19178,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19186,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19190,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19191,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19197,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19203,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19208,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19221,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19224,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(19227,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19230,'',0,1,2.9900,2.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(19233,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19236,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19239,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(19242,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19245,'',0,1,3.9900,3.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(19249,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19251,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19257,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19266,'',0,1,4.9900,4.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(19275,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19277,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19283,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19287,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19291,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19296,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19300,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(19306,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19310,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(19311,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19643,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19685,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,1,'taxable',''),
(19690,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19872,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19877,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(19882,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(19905,'',0,1,3.9900,3.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(19909,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(20885,'',0,0,15.9900,15.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(20886,'',0,0,15.9900,15.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(20891,'',0,1,5.9900,5.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(20893,'',0,0,15.9900,15.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(20902,'',0,0,15.9900,15.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(20908,'',0,0,15.9900,15.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(22218,'',0,1,3.9900,3.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(22688,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(24541,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24558,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24561,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24564,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24567,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24570,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24573,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24576,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24580,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24583,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24586,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24589,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24592,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24594,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24615,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(24619,'',0,1,1.9900,1.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(24627,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24659,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24664,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24675,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24679,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24685,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24725,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24730,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24735,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24762,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24766,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24774,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(24794,'',0,1,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(29626,'',0,0,5.9900,5.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(29628,'',0,0,6.9900,6.9900,0,NULL,'instock',0,0.00,0,'taxable',''),
(29631,'',0,0,19.5000,19.5000,0,NULL,'instock',0,0.00,0,'taxable',''),
(30354,'',0,1,1.2500,1.2500,0,NULL,'instock',0,0.00,0,'taxable',''),
(32821,'',0,1,2.0000,2.0000,1,NULL,'instock',0,0.00,0,'taxable',''),
(32823,'',0,1,2.0000,2.0000,1,NULL,'instock',0,0.00,0,'taxable',''),
(32825,'',0,1,2.0000,2.0000,1,NULL,'instock',0,0.00,0,'taxable',''),
(32827,'',0,1,2.0000,2.0000,1,NULL,'instock',0,0.00,22,'taxable',''),
(35831,'',0,1,2.5000,2.5000,1,NULL,'instock',0,0.00,0,'taxable',''),
(35853,'',0,1,3.5000,3.5000,1,NULL,'instock',0,0.00,0,'taxable',''),
(35934,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),
(36041,'',0,1,3.9500,3.9500,0,NULL,'instock',0,0.00,0,'taxable','');
/*!40000 ALTER TABLE `wphu_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wc_rate_limits`
--

DROP TABLE IF EXISTS `wphu_wc_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_wc_rate_limits` (
  `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `rate_limit_key` varchar(200) NOT NULL,
  `rate_limit_expiry` bigint(20) unsigned NOT NULL,
  `rate_limit_remaining` smallint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`rate_limit_id`),
  UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_wc_rate_limits`
--

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

--
-- Table structure for table `wphu_wc_reserved_stock`
--

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

--
-- Dumping data for table `wphu_wc_reserved_stock`
--

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

--
-- Table structure for table `wphu_wc_tax_rate_classes`
--

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

--
-- Dumping data for table `wphu_wc_tax_rate_classes`
--

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

--
-- Table structure for table `wphu_wc_webhooks`
--

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

--
-- Dumping data for table `wphu_wc_webhooks`
--

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

--
-- Table structure for table `wphu_wcs_payment_retries`
--

DROP TABLE IF EXISTS `wphu_wcs_payment_retries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_wcs_payment_retries` (
  `retry_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `status` varchar(255) NOT NULL,
  `date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `rule_raw` text DEFAULT NULL,
  PRIMARY KEY (`retry_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_wcs_payment_retries`
--

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

--
-- Table structure for table `wphu_wfblockediplog`
--

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

--
-- Dumping data for table `wphu_wfblockediplog`
--

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

--
-- Table structure for table `wphu_wfblocks7`
--

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

--
-- Dumping data for table `wphu_wfblocks7`
--

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

--
-- Table structure for table `wphu_wfconfig`
--

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

--
-- Dumping data for table `wphu_wfconfig`
--

LOCK TABLES `wphu_wfconfig` WRITE;
/*!40000 ALTER TABLE `wphu_wfconfig` DISABLE KEYS */;
INSERT INTO `wphu_wfconfig` VALUES
('activatingIP','85.255.232.111','yes'),
('actUpdateInterval','2','yes'),
('addCacheComment','0','yes'),
('adminUserList','b:0;','yes'),
('advancedCommentScanning','1','yes'),
('ajaxWatcherDisabled_admin','0','yes'),
('ajaxWatcherDisabled_front','0','yes'),
('alertEmails','ivankulongo@gmail.com','yes'),
('alertOn_adminLogin','1','yes'),
('alertOn_block','1','yes'),
('alertOn_breachLogin','1','yes'),
('alertOn_firstAdminLoginOnly','0','yes'),
('alertOn_firstNonAdminLoginOnly','0','yes'),
('alertOn_loginLockout','1','yes'),
('alertOn_lostPasswdForm','1','yes'),
('alertOn_nonAdminLogin','0','yes'),
('alertOn_scanIssues','1','yes'),
('alertOn_severityLevel','25','yes'),
('alertOn_throttle','0','yes'),
('alertOn_update','0','yes'),
('alertOn_wafDeactivated','1','yes'),
('alertOn_wordfenceDeactivated','1','yes'),
('alert_maxHourly','0','yes'),
('allowed404s','/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),
('allowed404s6116Migration','1','yes'),
('allowHTTPSCaching','0','yes'),
('allowLegacy2FA','0','yes'),
('allScansScheduled','a:0:{}','yes'),
('apiKey','743f7c17b3f96ad4305a6dd77266f420293f9d7519339cc6005e617b51f17eaa75890cfa368114d2d162688c91f9f1ace6bde8f6e439290d2aa3a11b78eed89aa5fa9cc69b548ad8cc90ae03cbd1799a','yes'),
('autoBlockScanners','1','yes'),
('autoUpdate','0','yes'),
('autoUpdateAttempts','0','yes'),
('bannedURLs','','yes'),
('betaThreatDefenseFeed','0','yes'),
('blockCustomText','','yes'),
('blockedTime','300','yes'),
('blocks702Migration','1','yes'),
('cacheType','disabled','yes'),
('cbl_action','block','yes'),
('cbl_bypassRedirDest','','yes'),
('cbl_bypassRedirURL','','yes'),
('cbl_bypassViewURL','','yes'),
('cbl_cookieVal','6297d1bdad5f8','yes'),
('cbl_loggedInBlocked','','yes'),
('cbl_redirURL','','yes'),
('cbl_restOfSiteBlocked','1','yes'),
('checkSpamIP','1','yes'),
('config701Migration','1','yes'),
('config720Migration','1','yes'),
('dashboardData','a:4:{s:9:\"generated\";i:1654115150;s:3:\"tdf\";a:3:{s:9:\"community\";i:5100;s:7:\"premium\";i:5118;s:9:\"blacklist\";i:14239;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1654027200;s:1:\"c\";i:8349400;}i:1;a:2:{s:1:\"t\";i:1654030800;s:1:\"c\";i:7890099;}i:2;a:2:{s:1:\"t\";i:1654034400;s:1:\"c\";i:7694883;}i:3;a:2:{s:1:\"t\";i:1654038000;s:1:\"c\";i:7843321;}i:4;a:2:{s:1:\"t\";i:1654041600;s:1:\"c\";i:7832141;}i:5;a:2:{s:1:\"t\";i:1654045200;s:1:\"c\";i:8031300;}i:6;a:2:{s:1:\"t\";i:1654048800;s:1:\"c\";i:8970089;}i:7;a:2:{s:1:\"t\";i:1654052400;s:1:\"c\";i:9599733;}i:8;a:2:{s:1:\"t\";i:1654056000;s:1:\"c\";i:10317219;}i:9;a:2:{s:1:\"t\";i:1654059600;s:1:\"c\";i:9981212;}i:10;a:2:{s:1:\"t\";i:1654063200;s:1:\"c\";i:10066410;}i:11;a:2:{s:1:\"t\";i:1654066800;s:1:\"c\";i:10081665;}i:12;a:2:{s:1:\"t\";i:1654070400;s:1:\"c\";i:10329553;}i:13;a:2:{s:1:\"t\";i:1654074000;s:1:\"c\";i:10493073;}i:14;a:2:{s:1:\"t\";i:1654077600;s:1:\"c\";i:10550405;}i:15;a:2:{s:1:\"t\";i:1654081200;s:1:\"c\";i:10614465;}i:16;a:2:{s:1:\"t\";i:1654084800;s:1:\"c\";i:10623942;}i:17;a:2:{s:1:\"t\";i:1654088400;s:1:\"c\";i:10566536;}i:18;a:2:{s:1:\"t\";i:1654092000;s:1:\"c\";i:10454602;}i:19;a:2:{s:1:\"t\";i:1654095600;s:1:\"c\";i:9394197;}i:20;a:2:{s:1:\"t\";i:1654099200;s:1:\"c\";i:9785075;}i:21;a:2:{s:1:\"t\";i:1654102800;s:1:\"c\";i:9872193;}i:22;a:2:{s:1:\"t\";i:1654106400;s:1:\"c\";i:9221552;}i:23;a:2:{s:1:\"t\";i:1654110000;s:1:\"c\";i:8660970;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1653436800;s:1:\"c\";i:288335729;}i:1;a:2:{s:1:\"t\";i:1653523200;s:1:\"c\";i:263136296;}i:2;a:2:{s:1:\"t\";i:1653609600;s:1:\"c\";i:274573355;}i:3;a:2:{s:1:\"t\";i:1653696000;s:1:\"c\";i:290416302;}i:4;a:2:{s:1:\"t\";i:1653782400;s:1:\"c\";i:290151768;}i:5;a:2:{s:1:\"t\";i:1653868800;s:1:\"c\";i:273888260;}i:6;a:2:{s:1:\"t\";i:1653955200;s:1:\"c\";i:230097345;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1651449600;s:1:\"c\";i:212675859;}i:1;a:2:{s:1:\"t\";i:1651536000;s:1:\"c\";i:205835648;}i:2;a:2:{s:1:\"t\";i:1651622400;s:1:\"c\";i:216597603;}i:3;a:2:{s:1:\"t\";i:1651708800;s:1:\"c\";i:219194541;}i:4;a:2:{s:1:\"t\";i:1651795200;s:1:\"c\";i:213669919;}i:5;a:2:{s:1:\"t\";i:1651881600;s:1:\"c\";i:210486514;}i:6;a:2:{s:1:\"t\";i:1651968000;s:1:\"c\";i:225202679;}i:7;a:2:{s:1:\"t\";i:1652054400;s:1:\"c\";i:223550532;}i:8;a:2:{s:1:\"t\";i:1652140800;s:1:\"c\";i:238700690;}i:9;a:2:{s:1:\"t\";i:1652227200;s:1:\"c\";i:278323718;}i:10;a:2:{s:1:\"t\";i:1652313600;s:1:\"c\";i:225009538;}i:11;a:2:{s:1:\"t\";i:1652400000;s:1:\"c\";i:236497130;}i:12;a:2:{s:1:\"t\";i:1652486400;s:1:\"c\";i:265102936;}i:13;a:2:{s:1:\"t\";i:1652572800;s:1:\"c\";i:276568625;}i:14;a:2:{s:1:\"t\";i:1652659200;s:1:\"c\";i:262301609;}i:15;a:2:{s:1:\"t\";i:1652745600;s:1:\"c\";i:269253776;}i:16;a:2:{s:1:\"t\";i:1652832000;s:1:\"c\";i:275527251;}i:17;a:2:{s:1:\"t\";i:1652918400;s:1:\"c\";i:266312320;}i:18;a:2:{s:1:\"t\";i:1653004800;s:1:\"c\";i:266115566;}i:19;a:2:{s:1:\"t\";i:1653091200;s:1:\"c\";i:274987996;}i:20;a:2:{s:1:\"t\";i:1653177600;s:1:\"c\";i:264463107;}i:21;a:2:{s:1:\"t\";i:1653264000;s:1:\"c\";i:251308961;}i:22;a:2:{s:1:\"t\";i:1653350400;s:1:\"c\";i:270848479;}i:23;a:2:{s:1:\"t\";i:1653436800;s:1:\"c\";i:288335729;}i:24;a:2:{s:1:\"t\";i:1653523200;s:1:\"c\";i:263136296;}i:25;a:2:{s:1:\"t\";i:1653609600;s:1:\"c\";i:274573355;}i:26;a:2:{s:1:\"t\";i:1653696000;s:1:\"c\";i:290416302;}i:27;a:2:{s:1:\"t\";i:1653782400;s:1:\"c\";i:290151768;}i:28;a:2:{s:1:\"t\";i:1653868800;s:1:\"c\";i:273888260;}i:29;a:2:{s:1:\"t\";i:1653955200;s:1:\"c\";i:230097345;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:838928907;}i:1;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:172691583;}i:2;a:2:{s:2:\"cd\";s:2:\"SG\";s:2:\"ct\";i:169711018;}i:3;a:2:{s:2:\"cd\";s:2:\"AU\";s:2:\"ct\";i:143087470;}i:4;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:138721483;}i:5;a:2:{s:2:\"cd\";s:2:\"NL\";s:2:\"ct\";i:122550984;}i:6;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:110842257;}i:7;a:2:{s:2:\"cd\";s:2:\"BR\";s:2:\"ct\";i:80392141;}i:8;a:2:{s:2:\"cd\";s:2:\"RU\";s:2:\"ct\";i:79954691;}i:9;a:2:{s:2:\"cd\";s:2:\"GB\";s:2:\"ct\";i:72053727;}}}}','yes'),
('debugOn','0','yes'),
('deleteTablesOnDeact','0','yes'),
('detectProxyNextCheck','1654721594','no'),
('detectProxyNonce','ba35f4307a05da914f9c3f3ba5b8fa1469cd7cafcec8bfd8611b703555aead38','no'),
('detectProxyRecommendation','','no'),
('diagnosticsWflogsRemovalHistory','[]','no'),
('disableCodeExecutionUploads','0','yes'),
('disableConfigCaching','0','yes'),
('disableWAFIPBlocking','0','yes'),
('dismissAutoPrependNotice','0','yes'),
('displayAutomaticBlocks','1','yes'),
('displayTopLevelBlocking','0','yes'),
('displayTopLevelLiveTraffic','0','yes'),
('displayTopLevelOptions','1','yes'),
('email_summary_dashboard_widget_enabled','1','yes'),
('email_summary_enabled','1','yes'),
('email_summary_excluded_directories','wp-content/cache,wp-content/wflogs','yes'),
('email_summary_interval','weekly','yes'),
('encKey','154280efaa8f5732','yes'),
('fileContentsGSB6315Migration','1','yes'),
('firewallEnabled','1','yes'),
('hasKeyConflict','0','yes'),
('howGetIPs','','yes'),
('howGetIPs_trusted_proxies','','yes'),
('isPaid','','yes'),
('keyType','free','yes'),
('lastBlockAggregation','1654116794','yes'),
('lastDashboardCheck','1654116910','yes'),
('lastEmailHash','1654117432:3baa5d6d205d2121f22203082b3cfc53','yes'),
('lastPermissionsTemplateCheck','1654116801','yes'),
('liveActivityPauseEnabled','1','yes'),
('liveTrafficEnabled','0','yes'),
('liveTraf_displayExpandedRecords','0','no'),
('liveTraf_ignoreIPs','','yes'),
('liveTraf_ignorePublishers','1','yes'),
('liveTraf_ignoreUA','','yes'),
('liveTraf_ignoreUsers','','yes'),
('liveTraf_maxAge','30','yes'),
('liveTraf_maxRows','2000','yes'),
('loginSecurityEnabled','1','yes'),
('loginSec_blockAdminReg','1','yes'),
('loginSec_breachPasswds','admins','yes'),
('loginSec_breachPasswds_enabled','1','yes'),
('loginSec_countFailMins','240','yes'),
('loginSec_disableApplicationPasswords','1','yes'),
('loginSec_disableAuthorScan','1','yes'),
('loginSec_disableOEmbedAuthor','0','yes'),
('loginSec_enableSeparateTwoFactor','','yes'),
('loginSec_lockInvalidUsers','0','yes'),
('loginSec_lockoutMins','240','yes'),
('loginSec_maskLoginErrors','1','yes'),
('loginSec_maxFailures','20','yes'),
('loginSec_maxForgotPasswd','20','yes'),
('loginSec_requireAdminTwoFactor','0','yes'),
('loginSec_strongPasswds','pubs','yes'),
('loginSec_strongPasswds_enabled','1','yes'),
('loginSec_userBlacklist','','yes'),
('longEncKey','55441717306ae15865eb9591462d68def5c25895061bc1925e0212b8c695d60c','yes'),
('lowResourceScansEnabled','0','yes'),
('manualScanType','onceDaily','yes'),
('max404Crawlers','DISABLED','yes'),
('max404Crawlers_action','throttle','yes'),
('max404Humans','DISABLED','yes'),
('max404Humans_action','throttle','yes'),
('maxExecutionTime','0','yes'),
('maxGlobalRequests','DISABLED','yes'),
('maxGlobalRequests_action','throttle','yes'),
('maxMem','256','yes'),
('maxRequestsCrawlers','DISABLED','yes'),
('maxRequestsCrawlers_action','throttle','yes'),
('maxRequestsHumans','DISABLED','yes'),
('maxRequestsHumans_action','throttle','yes'),
('migration636_email_summary_excluded_directories','1','no'),
('needsNewTour_blocking','1','yes'),
('needsNewTour_dashboard','0','yes'),
('needsNewTour_firewall','1','yes'),
('needsNewTour_livetraffic','1','yes'),
('needsNewTour_loginsecurity','0','yes'),
('needsNewTour_scan','1','yes'),
('needsUpgradeTour_blocking','0','yes'),
('needsUpgradeTour_dashboard','0','yes'),
('needsUpgradeTour_firewall','0','yes'),
('needsUpgradeTour_livetraffic','0','yes'),
('needsUpgradeTour_loginsecurity','0','yes'),
('needsUpgradeTour_scan','0','yes'),
('neverBlockBG','neverBlockVerified','yes'),
('notification_blogHighlights','1','yes'),
('notification_productUpdates','1','yes'),
('notification_promotions','1','yes'),
('notification_scanStatus','1','yes'),
('notification_securityAlerts','1','yes'),
('notification_updatesNeeded','1','yes'),
('onboardingAttempt1','skipped','yes'),
('onboardingAttempt2','','no'),
('onboardingAttempt3','license','yes'),
('onboardingAttempt3Initial','1','yes'),
('other_blockBadPOST','0','yes'),
('other_bypassLitespeedNoabort','0','yes'),
('other_hideWPVersion','0','yes'),
('other_pwStrengthOnUpdate','1','yes'),
('other_scanComments','1','yes'),
('other_scanOutside','0','yes'),
('other_WFNet','1','yes'),
('previousWflogsFileList','[\"config-synced.php\",\"GeoLite2-Country.mmdb\",\"attack-data.php\",\"rules.php\",\"config.php\",\"config-livewaf.php\",\"config-transient.php\",\".htaccess\",\"ips.php\",\"template.php\"]','yes'),
('scansEnabled_checkGSB','1','yes'),
('scansEnabled_checkHowGetIPs','1','yes'),
('scansEnabled_checkReadableConfig','1','yes'),
('scansEnabled_comments','1','yes'),
('scansEnabled_core','1','yes'),
('scansEnabled_coreUnknown','1','yes'),
('scansEnabled_diskSpace','1','yes'),
('scansEnabled_fileContents','1','yes'),
('scansEnabled_fileContentsGSB','1','yes'),
('scansEnabled_geoipSupport','1','yes'),
('scansEnabled_highSense','0','yes'),
('scansEnabled_malware','1','yes'),
('scansEnabled_oldVersions','1','yes'),
('scansEnabled_options','1','yes'),
('scansEnabled_passwds','1','yes'),
('scansEnabled_plugins','0','yes'),
('scansEnabled_posts','1','yes'),
('scansEnabled_scanImages','0','yes'),
('scansEnabled_suspectedFiles','1','yes'),
('scansEnabled_suspiciousAdminUsers','1','yes'),
('scansEnabled_suspiciousOptions','1','yes'),
('scansEnabled_themes','0','yes'),
('scansEnabled_wafStatus','1','yes'),
('scansEnabled_wpscan_directoryListingEnabled','1','yes'),
('scansEnabled_wpscan_fullPathDisclosure','1','yes'),
('scanType','standard','yes'),
('scan_exclude','','yes'),
('scan_include_extra','','yes'),
('scan_maxDuration','','yes'),
('scan_maxIssues','1000','yes'),
('schedMode','auto','yes'),
('schedStartHour','23','yes'),
('scheduledScansEnabled','1','yes'),
('serverDNS','1654116801;14400;67.227.188.22','yes'),
('showAdminBarMenu','1','yes'),
('spamvertizeCheck','1','yes'),
('ssl_verify','1','yes'),
('startScansRemotely','0','yes'),
('supportContent','{}','no'),
('supportHash','','no'),
('timeoffset_wf','2','yes'),
('timeoffset_wf_updated','1654116792','yes'),
('totalAlertsSent','2','yes'),
('touppBypassNextCheck','0','yes'),
('touppPromptNeeded','0','yes'),
('wafAlertInterval','600','yes'),
('wafAlertOnAttacks','1','yes'),
('wafAlertThreshold','100','yes'),
('wafAlertWhitelist','','yes'),
('waf_status','learning-mode','yes'),
('whitelisted','','yes'),
('whitelistedServices','{}','yes'),
('whitelistHash','','no'),
('whitelistPresets','{}','no'),
('wordfenceI18n','1','yes'),
('wp_home_url','https://choiceresources.co.uk','yes'),
('wp_site_url','https://choiceresources.co.uk','yes');
/*!40000 ALTER TABLE `wphu_wfconfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wfcrawlers`
--

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

--
-- Dumping data for table `wphu_wfcrawlers`
--

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

--
-- Table structure for table `wphu_wffilechanges`
--

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

--
-- Dumping data for table `wphu_wffilechanges`
--

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

--
-- Table structure for table `wphu_wffilemods`
--

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

--
-- Dumping data for table `wphu_wffilemods`
--

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

--
-- Table structure for table `wphu_wfhits`
--

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

--
-- Dumping data for table `wphu_wfhits`
--

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

--
-- Table structure for table `wphu_wfhoover`
--

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

--
-- Dumping data for table `wphu_wfhoover`
--

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

--
-- Table structure for table `wphu_wfissues`
--

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

--
-- Dumping data for table `wphu_wfissues`
--

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

--
-- Table structure for table `wphu_wfknownfilelist`
--

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

--
-- Dumping data for table `wphu_wfknownfilelist`
--

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

--
-- Table structure for table `wphu_wflivetraffichuman`
--

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

--
-- Dumping data for table `wphu_wflivetraffichuman`
--

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

--
-- Table structure for table `wphu_wflocs`
--

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

--
-- Dumping data for table `wphu_wflocs`
--

LOCK TABLES `wphu_wflocs` WRITE;
/*!40000 ALTER TABLE `wphu_wflocs` DISABLE KEYS */;
INSERT INTO `wphu_wflocs` VALUES
('\0\0\0\0\0\0\0\0\0\0ÿÿUÿèo',1654117432,0,'','','United Kingdom','GB',51.4963989,-0.1224000);
/*!40000 ALTER TABLE `wphu_wflocs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wflogins`
--

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

--
-- Dumping data for table `wphu_wflogins`
--

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

--
-- Table structure for table `wphu_wfls_2fa_secrets`
--

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

--
-- Dumping data for table `wphu_wfls_2fa_secrets`
--

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

--
-- Table structure for table `wphu_wfls_settings`
--

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

--
-- Dumping data for table `wphu_wfls_settings`
--

LOCK TABLES `wphu_wfls_settings` WRITE;
/*!40000 ALTER TABLE `wphu_wfls_settings` DISABLE KEYS */;
INSERT INTO `wphu_wfls_settings` VALUES
('2fa-user-grace-period','10','yes'),
('allow-xml-rpc','1','yes'),
('captcha-stats','{\"counts\":[0,0,0,0,0,0,0,0,0,0,0],\"avg\":0}','yes'),
('delete-deactivation','','yes'),
('enable-auth-captcha','','yes'),
('enable-woocommerce-integration','','yes'),
('global-notices','[]','yes'),
('ip-source','','yes'),
('ip-trusted-proxies','','yes'),
('last-secret-refresh','1654116790','yes'),
('recaptcha-threshold','0.5','yes'),
('remember-device','','yes'),
('remember-device-duration','2592000','yes'),
('require-2fa-grace-period-enabled','','yes'),
('require-2fa.administrator','','yes'),
('shared-hash-secret','aee5b8d5779862c20dd47ead5f6058c7ee822ae47a989097836e1f5df632c306','yes'),
('shared-symmetric-secret','87f41d2bd2987f8efae563f1d2477b1a6ae87c0e48b54091aa411c3b5a107eba','yes'),
('whitelisted','','yes'),
('xmlrpc-enabled','1','yes');
/*!40000 ALTER TABLE `wphu_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wfnotifications`
--

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

--
-- Dumping data for table `wphu_wfnotifications`
--

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

--
-- Table structure for table `wphu_wfpendingissues`
--

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

--
-- Dumping data for table `wphu_wfpendingissues`
--

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

--
-- Table structure for table `wphu_wfreversecache`
--

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

--
-- Dumping data for table `wphu_wfreversecache`
--

LOCK TABLES `wphu_wfreversecache` WRITE;
/*!40000 ALTER TABLE `wphu_wfreversecache` DISABLE KEYS */;
INSERT INTO `wphu_wfreversecache` VALUES
('\0\0\0\0\0\0\0\0\0\0ÿÿUÿèo','85.255.232.111',1654117432);
/*!40000 ALTER TABLE `wphu_wfreversecache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_wfsnipcache`
--

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

--
-- Dumping data for table `wphu_wfsnipcache`
--

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

--
-- Table structure for table `wphu_wfstatus`
--

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

--
-- Dumping data for table `wphu_wfstatus`
--

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

--
-- Table structure for table `wphu_wftrafficrates`
--

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

--
-- Dumping data for table `wphu_wftrafficrates`
--

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

--
-- Table structure for table `wphu_woocommerce_api_keys`
--

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

--
-- Dumping data for table `wphu_woocommerce_api_keys`
--

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

--
-- Table structure for table `wphu_woocommerce_attribute_taxonomies`
--

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

--
-- Dumping data for table `wphu_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wphu_woocommerce_downloadable_product_permissions`
--

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

--
-- Dumping data for table `wphu_woocommerce_downloadable_product_permissions`
--

LOCK TABLES `wphu_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wphu_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
INSERT INTO `wphu_woocommerce_downloadable_product_permissions` VALUES
(1,'82fe6e58-ee3a-4237-b7b4-cb7ec0e94cf8',1021,1066,'wc_order_RX3aEdEeDZRz4','amnakulongo@gmail.com',2,'','2021-05-12 00:00:00','2021-06-11 00:00:00',0),
(2,'ae9e875e-029e-402d-8d89-67fba7cac213',1014,1066,'wc_order_RX3aEdEeDZRz4','amnakulongo@gmail.com',2,'','2021-05-12 00:00:00','2021-06-11 00:00:00',1);
/*!40000 ALTER TABLE `wphu_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_woocommerce_log`
--

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

--
-- Dumping data for table `wphu_woocommerce_log`
--

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

--
-- Table structure for table `wphu_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wphu_woocommerce_order_itemmeta`
--

LOCK TABLES `wphu_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wphu_woocommerce_order_itemmeta` DISABLE KEYS */;
INSERT INTO `wphu_woocommerce_order_itemmeta` VALUES
(1,1,'_product_id','1053'),
(2,1,'_variation_id','0'),
(3,1,'_qty','1'),
(4,1,'_tax_class',''),
(5,1,'_line_subtotal','0'),
(6,1,'_line_subtotal_tax','0'),
(7,1,'_line_total','0'),
(8,1,'_line_tax','0'),
(9,1,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(10,2,'_product_id','1053'),
(11,2,'_variation_id','0'),
(12,2,'_qty','1'),
(13,2,'_tax_class',''),
(14,2,'_line_subtotal','0'),
(15,2,'_line_subtotal_tax','0'),
(16,2,'_line_total','0'),
(17,2,'_line_tax','0'),
(18,2,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(49,7,'_product_id','1053'),
(50,7,'_variation_id','0'),
(51,7,'_qty','1'),
(52,7,'_tax_class',''),
(53,7,'_line_subtotal','20'),
(54,7,'_line_subtotal_tax','0'),
(55,7,'_line_total','0'),
(56,7,'_line_tax','0'),
(57,7,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(58,8,'discount_amount','20'),
(59,8,'discount_amount_tax','0'),
(60,8,'coupon_data','a:24:{s:2:\"id\";i:1060;s:4:\"code\";s:8:\"2qwcafbu\";s:6:\"amount\";s:3:\"100\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2021-05-12 19:56:44.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2021-05-12 20:24:11.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:7:\"percent\";s:11:\"description\";s:0:\"\";s:11:\"usage_count\";i:0;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:0:{}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:1:{i:0;O:12:\"WC_Meta_Data\":2:{s:15:\"\0*\0current_data\";a:3:{s:2:\"id\";i:7826;s:3:\"key\";s:20:\"_wcs_number_payments\";s:5:\"value\";s:0:\"\";}s:7:\"\0*\0data\";a:3:{s:2:\"id\";i:7826;s:3:\"key\";s:20:\"_wcs_number_payments\";s:5:\"value\";s:0:\"\";}}}}'),
(70,10,'_product_id','1021'),
(71,10,'_variation_id','0'),
(72,10,'_qty','2'),
(73,10,'_tax_class',''),
(74,10,'_line_subtotal','0'),
(75,10,'_line_subtotal_tax','0'),
(76,10,'_line_total','0'),
(77,10,'_line_tax','0'),
(78,10,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(79,11,'_product_id','1014'),
(80,11,'_variation_id','0'),
(81,11,'_qty','1'),
(82,11,'_tax_class',''),
(83,11,'_line_subtotal','0'),
(84,11,'_line_subtotal_tax','0'),
(85,11,'_line_total','0'),
(86,11,'_line_tax','0'),
(87,11,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(88,12,'_product_id','1067'),
(89,12,'_variation_id','0'),
(90,12,'_qty','1'),
(91,12,'_tax_class',''),
(92,12,'_line_subtotal','40'),
(93,12,'_line_subtotal_tax','0'),
(94,12,'_line_total','0'),
(95,12,'_line_tax','0'),
(96,12,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(97,13,'discount_amount','40'),
(98,13,'discount_amount_tax','0'),
(99,13,'coupon_data','a:24:{s:2:\"id\";i:1060;s:4:\"code\";s:8:\"2qwcafbu\";s:6:\"amount\";s:3:\"100\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2021-05-12 19:56:44.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2021-05-12 20:24:11.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:7:\"percent\";s:11:\"description\";s:0:\"\";s:11:\"usage_count\";i:1;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:0:{}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:1:{i:0;O:12:\"WC_Meta_Data\":2:{s:15:\"\0*\0current_data\";a:3:{s:2:\"id\";i:7826;s:3:\"key\";s:20:\"_wcs_number_payments\";s:5:\"value\";s:0:\"\";}s:7:\"\0*\0data\";a:3:{s:2:\"id\";i:7826;s:3:\"key\";s:20:\"_wcs_number_payments\";s:5:\"value\";s:0:\"\";}}}}'),
(109,15,'_product_id','3918'),
(110,15,'_variation_id','0'),
(111,15,'_qty','1'),
(112,15,'_tax_class',''),
(113,15,'_line_subtotal','0'),
(114,15,'_line_subtotal_tax','0'),
(115,15,'_line_total','0'),
(116,15,'_line_tax','0'),
(117,15,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(118,15,'ameliabooking','a:21:{s:4:\"type\";s:11:\"appointment\";s:9:\"serviceId\";i:1;s:10:\"providerId\";i:1;s:10:\"locationId\";N;s:4:\"name\";s:30:\"5 Min Free Health Consultation\";s:8:\"couponId\";s:0:\"\";s:10:\"couponCode\";s:0:\"\";s:12:\"bookingStart\";s:16:\"2021-09-23 15:35\";s:10:\"bookingEnd\";s:16:\"2021-09-23 15:40\";s:6:\"status\";s:8:\"approved\";s:14:\"dateTimeValues\";a:1:{i:0;a:2:{s:5:\"start\";s:16:\"2021-09-23 15:35\";s:3:\"end\";s:16:\"2021-09-23 15:40\";}}s:18:\"notifyParticipants\";i:1;s:8:\"bookings\";a:1:{i:0;a:9:{s:10:\"customerId\";i:1;s:8:\"customer\";a:6:{s:5:\"email\";s:21:\"ivankulongo@gmail.com\";s:10:\"externalId\";i:1;s:9:\"firstName\";s:4:\"Ivan\";s:2:\"id\";i:1;s:8:\"lastName\";s:7:\"Kulongo\";s:5:\"phone\";s:16:\"+449000788666554\";}s:4:\"info\";s:129:\"{\"firstName\":\"Ivan\",\"lastName\":\"Kulongo\",\"phone\":\"+449000788666554\",\"locale\":\"en_US\",\"timeZone\":\"Europe/London\",\"urlParams\":null}\";s:7:\"persons\";i:1;s:6:\"extras\";a:0:{}s:6:\"status\";s:8:\"approved\";s:9:\"utcOffset\";i:60;s:12:\"customFields\";N;s:7:\"deposit\";b:0;}}s:7:\"payment\";a:4:{s:7:\"gateway\";s:2:\"wc\";s:12:\"gatewayTitle\";s:0:\"\";s:6:\"amount\";i:0;s:6:\"status\";s:4:\"paid\";}s:9:\"recurring\";a:0:{}s:7:\"package\";a:0:{}s:6:\"locale\";s:5:\"en_US\";s:8:\"timeZone\";s:13:\"Europe/London\";s:28:\"uploadedCustomFieldFilesInfo\";a:0:{}s:6:\"labels\";s:377:\"<br/>Appointment Info<br/><hr><br />\n<br />\n<strong>Local Time:</strong> September 23, 2021 3:35 pm<br />\n<br />\n<strong>Client Time:</strong> (UTC+01:00)September 23, 2021 4:35 pm<br />\n<br />\n<strong>Consultation:</strong> 5 Min Free Health Consultation<br />\n<br />\n<strong>Medical Herbalist :</strong> Marcia Mendoza<br />\n<br />\n<strong>Total Number of Persons:</strong> 1\";s:9:\"processed\";b:1;}'),
(119,16,'_product_id','3918'),
(120,16,'_variation_id','0'),
(121,16,'_qty','1'),
(122,16,'_tax_class',''),
(123,16,'_line_subtotal','0'),
(124,16,'_line_subtotal_tax','0'),
(125,16,'_line_total','0'),
(126,16,'_line_tax','0'),
(127,16,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(128,16,'ameliabooking','a:21:{s:4:\"type\";s:11:\"appointment\";s:9:\"serviceId\";i:1;s:10:\"providerId\";i:1;s:10:\"locationId\";N;s:4:\"name\";s:30:\"5 Min Free Health Consultation\";s:8:\"couponId\";s:0:\"\";s:10:\"couponCode\";s:0:\"\";s:12:\"bookingStart\";s:16:\"2021-09-30 15:32\";s:10:\"bookingEnd\";s:16:\"2021-09-30 15:37\";s:6:\"status\";s:8:\"approved\";s:14:\"dateTimeValues\";a:1:{i:0;a:2:{s:5:\"start\";s:16:\"2021-09-30 15:32\";s:3:\"end\";s:16:\"2021-09-30 15:37\";}}s:18:\"notifyParticipants\";i:1;s:8:\"bookings\";a:1:{i:0;a:9:{s:10:\"customerId\";N;s:8:\"customer\";a:6:{s:5:\"email\";s:21:\"ivankulongo@gmail.com\";s:10:\"externalId\";N;s:9:\"firstName\";s:4:\"Ivan\";s:2:\"id\";N;s:8:\"lastName\";s:7:\"Kulongo\";s:5:\"phone\";s:16:\"+449800098878787\";}s:4:\"info\";s:130:\"{\"firstName\":\"Ivan \",\"lastName\":\"Kulongo\",\"phone\":\"+449800098878787\",\"locale\":\"en_US\",\"timeZone\":\"Europe/London\",\"urlParams\":null}\";s:7:\"persons\";i:1;s:6:\"extras\";a:0:{}s:6:\"status\";s:8:\"approved\";s:9:\"utcOffset\";i:60;s:12:\"customFields\";N;s:7:\"deposit\";b:0;}}s:7:\"payment\";a:4:{s:7:\"gateway\";s:2:\"wc\";s:12:\"gatewayTitle\";s:0:\"\";s:6:\"amount\";i:0;s:6:\"status\";s:4:\"paid\";}s:9:\"recurring\";a:0:{}s:7:\"package\";a:0:{}s:6:\"locale\";s:5:\"en_US\";s:8:\"timeZone\";s:13:\"Europe/London\";s:28:\"uploadedCustomFieldFilesInfo\";a:0:{}s:6:\"labels\";s:377:\"<br/>Appointment Info<br/><hr><br />\n<br />\n<strong>Local Time:</strong> September 30, 2021 3:32 pm<br />\n<br />\n<strong>Client Time:</strong> (UTC+01:00)September 30, 2021 4:32 pm<br />\n<br />\n<strong>Consultation:</strong> 5 Min Free Health Consultation<br />\n<br />\n<strong>Medical Herbalist :</strong> Marcia Mendoza<br />\n<br />\n<strong>Total Number of Persons:</strong> 1\";s:9:\"processed\";b:1;}'),
(129,17,'_product_id','3918'),
(130,17,'_variation_id','0'),
(131,17,'_qty','1'),
(132,17,'_tax_class',''),
(133,17,'_line_subtotal','0'),
(134,17,'_line_subtotal_tax','0'),
(135,17,'_line_total','0'),
(136,17,'_line_tax','0'),
(137,17,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(138,17,'ameliabooking','a:21:{s:4:\"type\";s:11:\"appointment\";s:9:\"serviceId\";i:1;s:10:\"providerId\";i:1;s:10:\"locationId\";N;s:4:\"name\";s:30:\"5 Min Free Health Consultation\";s:8:\"couponId\";s:0:\"\";s:10:\"couponCode\";s:0:\"\";s:12:\"bookingStart\";s:16:\"2021-09-29 15:36\";s:10:\"bookingEnd\";s:16:\"2021-09-29 15:41\";s:6:\"status\";s:8:\"approved\";s:14:\"dateTimeValues\";a:1:{i:0;a:2:{s:5:\"start\";s:16:\"2021-09-29 15:36\";s:3:\"end\";s:16:\"2021-09-29 15:41\";}}s:18:\"notifyParticipants\";i:1;s:8:\"bookings\";a:1:{i:0;a:9:{s:10:\"customerId\";i:3;s:8:\"customer\";a:6:{s:5:\"email\";s:21:\"ivankulongo@gmail.com\";s:10:\"externalId\";N;s:9:\"firstName\";s:4:\"Ivan\";s:2:\"id\";i:3;s:8:\"lastName\";s:7:\"Kulongo\";s:5:\"phone\";s:16:\"+449800907897879\";}s:4:\"info\";s:129:\"{\"firstName\":\"Ivan\",\"lastName\":\"Kulongo\",\"phone\":\"+449800907897879\",\"locale\":\"en_US\",\"timeZone\":\"Europe/London\",\"urlParams\":null}\";s:7:\"persons\";i:1;s:6:\"extras\";a:0:{}s:6:\"status\";s:8:\"approved\";s:9:\"utcOffset\";i:60;s:12:\"customFields\";N;s:7:\"deposit\";b:0;}}s:7:\"payment\";a:4:{s:7:\"gateway\";s:2:\"wc\";s:12:\"gatewayTitle\";s:0:\"\";s:6:\"amount\";i:0;s:6:\"status\";s:4:\"paid\";}s:9:\"recurring\";a:0:{}s:7:\"package\";a:0:{}s:6:\"locale\";s:5:\"en_US\";s:8:\"timeZone\";s:13:\"Europe/London\";s:28:\"uploadedCustomFieldFilesInfo\";a:0:{}s:6:\"labels\";s:377:\"<br/>Appointment Info<br/><hr><br />\n<br />\n<strong>Local Time:</strong> September 29, 2021 3:36 pm<br />\n<br />\n<strong>Client Time:</strong> (UTC+01:00)September 29, 2021 4:36 pm<br />\n<br />\n<strong>Consultation:</strong> 5 Min Free Health Consultation<br />\n<br />\n<strong>Medical Herbalist :</strong> Marcia Mendoza<br />\n<br />\n<strong>Total Number of Persons:</strong> 1\";s:9:\"processed\";b:1;}'),
(139,18,'_product_id','5670'),
(140,18,'_variation_id','0'),
(141,18,'_qty','1'),
(142,18,'_tax_class',''),
(143,18,'_line_subtotal','2.99'),
(144,18,'_line_subtotal_tax','0'),
(145,18,'_line_total','2.99'),
(146,18,'_line_tax','0'),
(147,18,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(148,19,'_product_id','1067'),
(149,19,'_variation_id','0'),
(150,19,'_qty','1'),
(151,19,'_tax_class',''),
(152,19,'_line_subtotal','40'),
(153,19,'_line_subtotal_tax','0'),
(154,19,'_line_total','40'),
(155,19,'_line_tax','0'),
(156,19,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(166,21,'_product_id','5666'),
(167,21,'_variation_id','0'),
(168,21,'_qty','1'),
(169,21,'_tax_class',''),
(170,21,'_line_subtotal','1'),
(171,21,'_line_subtotal_tax','0'),
(172,21,'_line_total','1'),
(173,21,'_line_tax','0'),
(174,21,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(193,24,'_product_id','7394'),
(194,24,'_variation_id','0'),
(195,24,'_qty','2'),
(196,24,'_tax_class',''),
(197,24,'_line_subtotal','198'),
(198,24,'_line_subtotal_tax','0'),
(199,24,'_line_total','198'),
(200,24,'_line_tax','0'),
(201,24,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(211,26,'_product_id','5670'),
(212,26,'_variation_id','0'),
(213,26,'_qty','1'),
(214,26,'_tax_class',''),
(215,26,'_line_subtotal','2.99'),
(216,26,'_line_subtotal_tax','0'),
(217,26,'_line_total','2.99'),
(218,26,'_line_tax','0'),
(219,26,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(238,29,'_product_id','7394'),
(239,29,'_variation_id','0'),
(240,29,'_qty','2'),
(241,29,'_tax_class',''),
(242,29,'_line_subtotal','198'),
(243,29,'_line_subtotal_tax','0'),
(244,29,'_line_total','198'),
(245,29,'_line_tax','0'),
(246,29,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(256,31,'_product_id','5666'),
(257,31,'_variation_id','0'),
(258,31,'_qty','1'),
(259,31,'_tax_class',''),
(260,31,'_line_subtotal','1'),
(261,31,'_line_subtotal_tax','0'),
(262,31,'_line_total','1'),
(263,31,'_line_tax','0'),
(264,31,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(265,32,'_product_id','7394'),
(266,32,'_variation_id','0'),
(267,32,'_qty','2'),
(268,32,'_tax_class',''),
(269,32,'_line_subtotal','198'),
(270,32,'_line_subtotal_tax','0'),
(271,32,'_line_total','198'),
(272,32,'_line_tax','0'),
(273,32,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(283,34,'_product_id','7394'),
(284,34,'_variation_id','0'),
(285,34,'_qty','1'),
(286,34,'_tax_class',''),
(287,34,'_line_subtotal','99'),
(288,34,'_line_subtotal_tax','0'),
(289,34,'_line_total','99'),
(290,34,'_line_tax','0'),
(291,34,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(301,36,'_product_id','7394'),
(302,36,'_variation_id','0'),
(303,36,'_qty','1'),
(304,36,'_tax_class',''),
(305,36,'_line_subtotal','0'),
(306,36,'_line_subtotal_tax','0'),
(307,36,'_line_total','0'),
(308,36,'_line_tax','0'),
(309,36,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(319,38,'_product_id','7394'),
(320,38,'_variation_id','0'),
(321,38,'_qty','1'),
(322,38,'_tax_class',''),
(323,38,'_line_subtotal','0'),
(324,38,'_line_subtotal_tax','0'),
(325,38,'_line_total','0'),
(326,38,'_line_tax','0'),
(327,38,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(445,52,'_product_id','5663'),
(446,52,'_variation_id','0'),
(447,52,'_qty','1'),
(448,52,'_tax_class',''),
(449,52,'_line_subtotal','1'),
(450,52,'_line_subtotal_tax','0'),
(451,52,'_line_total','1'),
(452,52,'_line_tax','0'),
(453,52,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(454,53,'_product_id','7158'),
(455,53,'_variation_id','0'),
(456,53,'_qty','2'),
(457,53,'_tax_class',''),
(458,53,'_line_subtotal','13.98'),
(459,53,'_line_subtotal_tax','0'),
(460,53,'_line_total','13.98'),
(461,53,'_line_tax','0'),
(462,53,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(463,54,'_product_id','5670'),
(464,54,'_variation_id','0'),
(465,54,'_qty','2'),
(466,54,'_tax_class',''),
(467,54,'_line_subtotal','5.98'),
(468,54,'_line_subtotal_tax','0'),
(469,54,'_line_total','5.98'),
(470,54,'_line_tax','0'),
(471,54,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(472,55,'_product_id','6575'),
(473,55,'_variation_id','0'),
(474,55,'_qty','1'),
(475,55,'_tax_class',''),
(476,55,'_line_subtotal','3.99'),
(477,55,'_line_subtotal_tax','0'),
(478,55,'_line_total','3.99'),
(479,55,'_line_tax','0'),
(480,55,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(481,56,'_product_id','6569'),
(482,56,'_variation_id','0'),
(483,56,'_qty','1'),
(484,56,'_tax_class',''),
(485,56,'_line_subtotal','2.99'),
(486,56,'_line_subtotal_tax','0'),
(487,56,'_line_total','2.99'),
(488,56,'_line_tax','0'),
(489,56,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(490,57,'_product_id','6706'),
(491,57,'_variation_id','0'),
(492,57,'_qty','1'),
(493,57,'_tax_class',''),
(494,57,'_line_subtotal','4.99'),
(495,57,'_line_subtotal_tax','0'),
(496,57,'_line_total','4.99'),
(497,57,'_line_tax','0'),
(498,57,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(499,58,'_product_id','7158'),
(500,58,'_variation_id','0'),
(501,58,'_qty','1'),
(502,58,'_tax_class',''),
(503,58,'_line_subtotal','6.99'),
(504,58,'_line_subtotal_tax','0'),
(505,58,'_line_total','6.99'),
(506,58,'_line_tax','0'),
(507,58,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(508,59,'_product_id','5660'),
(509,59,'_variation_id','0'),
(510,59,'_qty','2'),
(511,59,'_tax_class',''),
(512,59,'_line_subtotal','1.98'),
(513,59,'_line_subtotal_tax','0'),
(514,59,'_line_total','1.98'),
(515,59,'_line_tax','0'),
(516,59,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(526,61,'_product_id','7158'),
(527,61,'_variation_id','0'),
(528,61,'_qty','2'),
(529,61,'_tax_class',''),
(530,61,'_line_subtotal','13.98'),
(531,61,'_line_subtotal_tax','0'),
(532,61,'_line_total','13.98'),
(533,61,'_line_tax','0'),
(534,61,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(535,62,'_product_id','7158'),
(536,62,'_variation_id','0'),
(537,62,'_qty','1'),
(538,62,'_tax_class',''),
(539,62,'_line_subtotal','6.99'),
(540,62,'_line_subtotal_tax','0'),
(541,62,'_line_total','6.99'),
(542,62,'_line_tax','0'),
(543,62,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(544,63,'_product_id','6575'),
(545,63,'_variation_id','0'),
(546,63,'_qty','1'),
(547,63,'_tax_class',''),
(548,63,'_line_subtotal','3.99'),
(549,63,'_line_subtotal_tax','0'),
(550,63,'_line_total','3.99'),
(551,63,'_line_tax','0'),
(552,63,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(553,64,'_product_id','5670'),
(554,64,'_variation_id','0'),
(555,64,'_qty','1'),
(556,64,'_tax_class',''),
(557,64,'_line_subtotal','2.99'),
(558,64,'_line_subtotal_tax','0'),
(559,64,'_line_total','2.99'),
(560,64,'_line_tax','0'),
(561,64,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(562,65,'_product_id','5670'),
(563,65,'_variation_id','0'),
(564,65,'_qty','1'),
(565,65,'_tax_class',''),
(566,65,'_line_subtotal','2.99'),
(567,65,'_line_subtotal_tax','0'),
(568,65,'_line_total','2.99'),
(569,65,'_line_tax','0'),
(570,65,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(589,68,'_product_id','7158'),
(590,68,'_variation_id','0'),
(591,68,'_qty','1'),
(592,68,'_tax_class',''),
(593,68,'_line_subtotal','6.99'),
(594,68,'_line_subtotal_tax','0'),
(595,68,'_line_total','6.99'),
(596,68,'_line_tax','0'),
(597,68,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(598,69,'_product_id','6575'),
(599,69,'_variation_id','0'),
(600,69,'_qty','1'),
(601,69,'_tax_class',''),
(602,69,'_line_subtotal','3.99'),
(603,69,'_line_subtotal_tax','0'),
(604,69,'_line_total','3.99'),
(605,69,'_line_tax','0'),
(606,69,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(607,70,'_product_id','6706'),
(608,70,'_variation_id','0'),
(609,70,'_qty','1'),
(610,70,'_tax_class',''),
(611,70,'_line_subtotal','4.99'),
(612,70,'_line_subtotal_tax','0'),
(613,70,'_line_total','4.99'),
(614,70,'_line_tax','0'),
(615,70,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(616,71,'_product_id','6706'),
(617,71,'_variation_id','0'),
(618,71,'_qty','1'),
(619,71,'_tax_class',''),
(620,71,'_line_subtotal','4.99'),
(621,71,'_line_subtotal_tax','0'),
(622,71,'_line_total','4.99'),
(623,71,'_line_tax','0'),
(624,71,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(625,72,'_product_id','7158'),
(626,72,'_variation_id','0'),
(627,72,'_qty','1'),
(628,72,'_tax_class',''),
(629,72,'_line_subtotal','6.99'),
(630,72,'_line_subtotal_tax','0'),
(631,72,'_line_total','6.99'),
(632,72,'_line_tax','0'),
(633,72,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(634,73,'_product_id','7158'),
(635,73,'_variation_id','0'),
(636,73,'_qty','1'),
(637,73,'_tax_class',''),
(638,73,'_line_subtotal','6.99'),
(639,73,'_line_subtotal_tax','0'),
(640,73,'_line_total','6.99'),
(641,73,'_line_tax','0'),
(642,73,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(643,74,'_product_id','7158'),
(644,74,'_variation_id','0'),
(645,74,'_qty','1'),
(646,74,'_tax_class',''),
(647,74,'_line_subtotal','6.99'),
(648,74,'_line_subtotal_tax','0'),
(649,74,'_line_total','6.99'),
(650,74,'_line_tax','0'),
(651,74,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(652,75,'_product_id','6706'),
(653,75,'_variation_id','0'),
(654,75,'_qty','1'),
(655,75,'_tax_class',''),
(656,75,'_line_subtotal','4.99'),
(657,75,'_line_subtotal_tax','0'),
(658,75,'_line_total','4.99'),
(659,75,'_line_tax','0'),
(660,75,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(661,76,'_product_id','6575'),
(662,76,'_variation_id','0'),
(663,76,'_qty','1'),
(664,76,'_tax_class',''),
(665,76,'_line_subtotal','3.99'),
(666,76,'_line_subtotal_tax','0'),
(667,76,'_line_total','3.99'),
(668,76,'_line_tax','0'),
(669,76,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(670,77,'_product_id','5663'),
(671,77,'_variation_id','0'),
(672,77,'_qty','1'),
(673,77,'_tax_class',''),
(674,77,'_line_subtotal','1'),
(675,77,'_line_subtotal_tax','0'),
(676,77,'_line_total','1'),
(677,77,'_line_tax','0'),
(678,77,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(679,78,'_product_id','5666'),
(680,78,'_variation_id','0'),
(681,78,'_qty','1'),
(682,78,'_tax_class',''),
(683,78,'_line_subtotal','1'),
(684,78,'_line_subtotal_tax','0'),
(685,78,'_line_total','1'),
(686,78,'_line_tax','0'),
(687,78,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(688,79,'_product_id','7158'),
(689,79,'_variation_id','0'),
(690,79,'_qty','1'),
(691,79,'_tax_class',''),
(692,79,'_line_subtotal','6.99'),
(693,79,'_line_subtotal_tax','0'),
(694,79,'_line_total','6.99'),
(695,79,'_line_tax','0'),
(696,79,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(697,80,'_product_id','6706'),
(698,80,'_variation_id','0'),
(699,80,'_qty','1'),
(700,80,'_tax_class',''),
(701,80,'_line_subtotal','4.99'),
(702,80,'_line_subtotal_tax','0'),
(703,80,'_line_total','4.99'),
(704,80,'_line_tax','0'),
(705,80,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(706,81,'_product_id','7199'),
(707,81,'_variation_id','0'),
(708,81,'_qty','1'),
(709,81,'_tax_class',''),
(710,81,'_line_subtotal','2.99'),
(711,81,'_line_subtotal_tax','0'),
(712,81,'_line_total','2.99'),
(713,81,'_line_tax','0'),
(714,81,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(724,83,'_product_id','7158'),
(725,83,'_variation_id','0'),
(726,83,'_qty','1'),
(727,83,'_tax_class',''),
(728,83,'_line_subtotal','6.99'),
(729,83,'_line_subtotal_tax','0'),
(730,83,'_line_total','6.99'),
(731,83,'_line_tax','0'),
(732,83,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(733,84,'_product_id','7199'),
(734,84,'_variation_id','0'),
(735,84,'_qty','1'),
(736,84,'_tax_class',''),
(737,84,'_line_subtotal','2.99'),
(738,84,'_line_subtotal_tax','0'),
(739,84,'_line_total','2.99'),
(740,84,'_line_tax','0'),
(741,84,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(742,85,'_product_id','7158'),
(743,85,'_variation_id','0'),
(744,85,'_qty','1'),
(745,85,'_tax_class',''),
(746,85,'_line_subtotal','6.99'),
(747,85,'_line_subtotal_tax','0'),
(748,85,'_line_total','6.99'),
(749,85,'_line_tax','0'),
(750,85,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(751,86,'_product_id','7158'),
(752,86,'_variation_id','0'),
(753,86,'_qty','1'),
(754,86,'_tax_class',''),
(755,86,'_line_subtotal','6.99'),
(756,86,'_line_subtotal_tax','0'),
(757,86,'_line_total','6.99'),
(758,86,'_line_tax','0'),
(759,86,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(760,87,'_product_id','7158'),
(761,87,'_variation_id','0'),
(762,87,'_qty','1'),
(763,87,'_tax_class',''),
(764,87,'_line_subtotal','6.99'),
(765,87,'_line_subtotal_tax','0'),
(766,87,'_line_total','6.99'),
(767,87,'_line_tax','0'),
(768,87,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(769,88,'_product_id','6706'),
(770,88,'_variation_id','0'),
(771,88,'_qty','1'),
(772,88,'_tax_class',''),
(773,88,'_line_subtotal','4.99'),
(774,88,'_line_subtotal_tax','0'),
(775,88,'_line_total','4.99'),
(776,88,'_line_tax','0'),
(777,88,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(778,89,'_product_id','1067'),
(779,89,'_variation_id','0'),
(780,89,'_qty','1'),
(781,89,'_tax_class',''),
(782,89,'_line_subtotal','69.99'),
(783,89,'_line_subtotal_tax','0'),
(784,89,'_line_total','69.99'),
(785,89,'_line_tax','0'),
(786,89,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(796,91,'_product_id','1067'),
(797,91,'_variation_id','0'),
(798,91,'_qty','1'),
(799,91,'_tax_class',''),
(800,91,'_line_subtotal','69.99'),
(801,91,'_line_subtotal_tax','0'),
(802,91,'_line_total','69.99'),
(803,91,'_line_tax','0'),
(804,91,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(805,92,'_product_id','1067'),
(806,92,'_variation_id','0'),
(807,92,'_qty','1'),
(808,92,'_tax_class',''),
(809,92,'_line_subtotal','69.99'),
(810,92,'_line_subtotal_tax','0'),
(811,92,'_line_total','69.99'),
(812,92,'_line_tax','0'),
(813,92,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(832,95,'_product_id','1067'),
(833,95,'_variation_id','0'),
(834,95,'_qty','1'),
(835,95,'_tax_class',''),
(836,95,'_line_subtotal','69.99'),
(837,95,'_line_subtotal_tax','0'),
(838,95,'_line_total','69.99'),
(839,95,'_line_tax','0'),
(840,95,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(850,97,'_product_id','1067'),
(851,97,'_variation_id','0'),
(852,97,'_qty','1'),
(853,97,'_tax_class',''),
(854,97,'_line_subtotal','62.5'),
(855,97,'_line_subtotal_tax','0'),
(856,97,'_line_total','62.5'),
(857,97,'_line_tax','0'),
(858,97,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(868,99,'_product_id','1067'),
(869,99,'_variation_id','0'),
(870,99,'_qty','1'),
(871,99,'_tax_class',''),
(872,99,'_line_subtotal','62.5'),
(873,99,'_line_subtotal_tax','0'),
(874,99,'_line_total','62.5'),
(875,99,'_line_tax','0'),
(876,99,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(886,101,'_product_id','19685'),
(887,101,'_variation_id','0'),
(888,101,'_qty','1'),
(889,101,'_tax_class',''),
(890,101,'_line_subtotal','1.99'),
(891,101,'_line_subtotal_tax','0'),
(892,101,'_line_total','1.99'),
(893,101,'_line_tax','0'),
(894,101,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(895,102,'method_id','flat_rate'),
(896,102,'instance_id','1'),
(897,102,'cost','3.95'),
(898,102,'total_tax','0'),
(899,102,'taxes','a:1:{s:5:\"total\";a:0:{}}'),
(900,102,'Items','Tasty Bread &times; 1'),
(901,103,'_product_id','1067'),
(902,103,'_variation_id','0'),
(903,103,'_qty','1'),
(904,103,'_tax_class',''),
(905,103,'_line_subtotal','69.99'),
(906,103,'_line_subtotal_tax','0'),
(907,103,'_line_total','69.99'),
(908,103,'_line_tax','0'),
(909,103,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(910,104,'_product_id','32827'),
(911,104,'_variation_id','0'),
(912,104,'_qty','3'),
(913,104,'_tax_class',''),
(914,104,'_line_subtotal','6'),
(915,104,'_line_subtotal_tax','0'),
(916,104,'_line_total','6'),
(917,104,'_line_tax','0'),
(918,104,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(919,105,'method_id','flat_rate'),
(920,105,'instance_id','1'),
(921,105,'cost','3.95'),
(922,105,'total_tax','0'),
(923,105,'taxes','a:1:{s:5:\"total\";a:0:{}}'),
(924,105,'Items','Product 4 &times; 3'),
(925,106,'_product_id','32827'),
(926,106,'_variation_id','0'),
(927,106,'_qty','1'),
(928,106,'_tax_class',''),
(929,106,'_line_subtotal','2'),
(930,106,'_line_subtotal_tax','0'),
(931,106,'_line_total','2'),
(932,106,'_line_tax','0'),
(933,106,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(934,107,'method_id','flat_rate'),
(935,107,'instance_id','1'),
(936,107,'cost','3.95'),
(937,107,'total_tax','0'),
(938,107,'taxes','a:1:{s:5:\"total\";a:0:{}}'),
(939,107,'Items','Product 4 &times; 1'),
(940,108,'_product_id','32827'),
(941,108,'_variation_id','0'),
(942,108,'_qty','6'),
(943,108,'_tax_class',''),
(944,108,'_line_subtotal','12'),
(945,108,'_line_subtotal_tax','0'),
(946,108,'_line_total','12'),
(947,108,'_line_tax','0'),
(948,108,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(949,109,'method_id','flat_rate'),
(950,109,'instance_id','1'),
(951,109,'cost','3.95'),
(952,109,'total_tax','0'),
(953,109,'taxes','a:1:{s:5:\"total\";a:0:{}}'),
(954,109,'Items','Product 4 &times; 6'),
(955,110,'_product_id','32827'),
(956,110,'_variation_id','0'),
(957,110,'_qty','2'),
(958,110,'_tax_class',''),
(959,110,'_line_subtotal','4'),
(960,110,'_line_subtotal_tax','0'),
(961,110,'_line_total','4'),
(962,110,'_line_tax','0'),
(963,110,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(964,111,'method_id','flat_rate'),
(965,111,'instance_id','1'),
(966,111,'cost','3.95'),
(967,111,'total_tax','0'),
(968,111,'taxes','a:1:{s:5:\"total\";a:0:{}}'),
(969,111,'Items','Product 4 &times; 2'),
(970,112,'_product_id','32827'),
(971,112,'_variation_id','0'),
(972,112,'_qty','4'),
(973,112,'_tax_class',''),
(974,112,'_line_subtotal','8'),
(975,112,'_line_subtotal_tax','0'),
(976,112,'_line_total','8'),
(977,112,'_line_tax','0'),
(978,112,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(979,113,'method_id','flat_rate'),
(980,113,'instance_id','1'),
(981,113,'cost','3.95'),
(982,113,'total_tax','0'),
(983,113,'taxes','a:1:{s:5:\"total\";a:0:{}}'),
(984,113,'Items','Product 4 &times; 4'),
(985,114,'_product_id','32827'),
(986,114,'_variation_id','0'),
(987,114,'_qty','4'),
(988,114,'_tax_class',''),
(989,114,'_line_subtotal','8'),
(990,114,'_line_subtotal_tax','0'),
(991,114,'_line_total','8'),
(992,114,'_line_tax','0'),
(993,114,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(994,115,'method_id','flat_rate'),
(995,115,'instance_id','1'),
(996,115,'cost','3.95'),
(997,115,'total_tax','0'),
(998,115,'taxes','a:1:{s:5:\"total\";a:0:{}}'),
(999,115,'Items','Product 4 &times; 4'),
(1000,116,'_product_id','32827'),
(1001,116,'_variation_id','0'),
(1002,116,'_qty','3'),
(1003,116,'_tax_class',''),
(1004,116,'_line_subtotal','6'),
(1005,116,'_line_subtotal_tax','0'),
(1006,116,'_line_total','6'),
(1007,116,'_line_tax','0'),
(1008,116,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),
(1009,117,'method_id','flat_rate'),
(1010,117,'instance_id','1'),
(1011,117,'cost','3.95'),
(1012,117,'total_tax','0'),
(1013,117,'taxes','a:1:{s:5:\"total\";a:0:{}}'),
(1014,117,'Items','Product 4 &times; 3');
/*!40000 ALTER TABLE `wphu_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_woocommerce_order_items`
--

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

--
-- Dumping data for table `wphu_woocommerce_order_items`
--

LOCK TABLES `wphu_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wphu_woocommerce_order_items` DISABLE KEYS */;
INSERT INTO `wphu_woocommerce_order_items` VALUES
(1,'Worksheet Resource Membership Plan','line_item',1057),
(2,'Worksheet Resource Membership Plan','line_item',1058),
(7,'Worksheet Resource Membership Plan','line_item',1062),
(8,'2qwcafbu','coupon',1062),
(10,'12 months of the year cut outs','line_item',1066),
(11,'Noticing number 3','line_item',1066),
(12,'1 Year 100% Worksheet Discount  Membership Plan','line_item',1069),
(13,'2qwcafbu','coupon',1069),
(15,'Appointment','line_item',4047),
(16,'Appointment','line_item',4162),
(17,'Appointment','line_item',4163),
(18,'Counting Booklet','line_item',5791),
(19,'1 Year 100% Worksheet Discount  Membership Plan','line_item',5792),
(21,'Bible 4-in-a-Row','line_item',7396),
(24,'1 Year Membership Subscription Plan','line_item',7397),
(26,'Review My Garden','line_item',7400),
(29,'1 Year Membership Subscription Plan','line_item',7401),
(31,'Bible 4-in-a-Row','line_item',7406),
(32,'1 Year Membership Subscription Plan','line_item',7407),
(34,'1 Year Membership Subscription Plan','line_item',7411),
(36,'1 Year Membership Subscription Plan','line_item',7421),
(38,'1 Year Membership Subscription Plan','line_item',7427),
(52,'Letter Changer','line_item',7645),
(53,'Maths Tracker','line_item',7645),
(54,'Review My Garden','line_item',7645),
(55,'Jericho Letter','line_item',7645),
(56,'Legoland Review','line_item',7645),
(57,'Interactive Number Story','line_item',7645),
(58,'Maths Tracker','line_item',7701),
(59,'Psalms 23 Crossword','line_item',7702),
(61,'Maths Tracker','line_item',7931),
(62,'Maths Tracker','line_item',7932),
(63,'Jericho Letter','line_item',7944),
(64,'Review My Garden','line_item',7949),
(65,'Review My Garden','line_item',7959),
(68,'Maths Tracker','line_item',8243),
(69,'Jericho Letter','line_item',8259),
(70,'Interactive Number Story','line_item',8259),
(71,'Interactive Number Story','line_item',8272),
(72,'Maths Tracker','line_item',8272),
(73,'Maths Tracker','line_item',8275),
(74,'Maths Tracker','line_item',8284),
(75,'Interactive Number Story','line_item',8284),
(76,'Jericho Letter','line_item',8284),
(77,'Letter Changer','line_item',8284),
(78,'Bible 4-in-a-Row','line_item',8284),
(79,'Maths Tracker','line_item',8285),
(80,'Interactive Number Story','line_item',8285),
(81,'Music Trackers','line_item',8287),
(83,'Maths Tracker','line_item',8354),
(84,'Music Trackers','line_item',8380),
(85,'Maths Tracker','line_item',8380),
(86,'Maths Tracker','line_item',8392),
(87,'Maths Tracker','line_item',8654),
(88,'Interactive Number Story','line_item',8655),
(89,'1 Year 100% Worksheet Discount  Membership Plan','line_item',17406),
(91,'1 Year 100% Worksheet Discount  Membership Plan','line_item',17435),
(92,'1 Year 100% Worksheet Discount  Membership Plan','line_item',17436),
(95,'1 Year 100% Worksheet Discount  Membership Plan','line_item',20640),
(97,'1 Year 100% Worksheet Discount  Membership Plan','line_item',22678),
(99,'1 Year 100% Worksheet Discount  Membership Plan','line_item',22681),
(101,'Tasty Bread','line_item',24475),
(102,'Flat rate','shipping',24475),
(103,'1 Year 100% Worksheet Discount  Membership Plan','line_item',30893),
(104,'Product 4','line_item',33730),
(105,'Flat rate','shipping',33730),
(106,'Product 4','line_item',33731),
(107,'Flat rate','shipping',33731),
(108,'Product 4','line_item',33915),
(109,'Flat rate','shipping',33915),
(110,'Product 4','line_item',33956),
(111,'Flat rate','shipping',33956),
(112,'Product 4','line_item',33957),
(113,'Flat rate','shipping',33957),
(114,'Product 4','line_item',34645),
(115,'Flat rate','shipping',34645),
(116,'Product 4','line_item',34654),
(117,'Flat rate','shipping',34654);
/*!40000 ALTER TABLE `wphu_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wphu_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wphu_woocommerce_payment_tokens`
--

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

--
-- Dumping data for table `wphu_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wphu_woocommerce_sessions`
--

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

--
-- Dumping data for table `wphu_woocommerce_sessions`
--

LOCK TABLES `wphu_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wphu_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wphu_woocommerce_sessions` VALUES
(12893,'t_5bd70223e084e29a2825fd5d188ee8','a:8:{s:14:\"wcpay_currency\";s:3:\"USD\";s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:716:\"a:27:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1730286924),
(12894,'1','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:897:\"a:27:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2024-07-05T21:10:48+00:00\";s:8:\"postcode\";s:7:\"RM9 5DR\";s:4:\"city\";s:8:\"Dagenham\";s:9:\"address_1\";s:15:\"22 Seymour Road\";s:7:\"address\";s:15:\"22 Seymour Road\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:4:\"Kent\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:7:\"RM9 5DR\";s:13:\"shipping_city\";s:8:\"Dagenham\";s:18:\"shipping_address_1\";s:15:\"22 Seymour Road\";s:16:\"shipping_address\";s:15:\"22 Seymour Road\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:4:\"Kent\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:4:\"Ivan\";s:9:\"last_name\";s:7:\"Kulongo\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:9:\"782873017\";s:5:\"email\";s:21:\"ivankulongo@gmail.com\";s:19:\"shipping_first_name\";s:4:\"Ivan\";s:18:\"shipping_last_name\";s:7:\"Kulongo\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1730286927),
(12895,'t_d973847d88f01300bcbd5a996468e9','a:8:{s:14:\"wcpay_currency\";s:3:\"USD\";s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:716:\"a:27:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1730286931),
(12896,'t_01adfb0c5b241018491a0e25301a7c','a:8:{s:14:\"wcpay_currency\";s:3:\"USD\";s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:716:\"a:27:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1730286934),
(12897,'t_b82be613ad9129df5ed855410dabda','a:8:{s:14:\"wcpay_currency\";s:3:\"GBP\";s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:716:\"a:27:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1730332329),
(12898,'t_6e5efd40f0a8468a4b978d9c5e175b','a:13:{s:14:\"wcpay_currency\";s:3:\"GBP\";s:4:\"cart\";s:411:\"a:1:{s:32:\"33410819536ec64f62d77277c4af5c66\";a:11:{s:3:\"key\";s:32:\"33410819536ec64f62d77277c4af5c66\";s:10:\"product_id\";i:32823;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2;s:8:\"line_tax\";d:0;}}\";s:11:\"cart_totals\";s:393:\"a:15:{s:8:\"subtotal\";s:1:\"2\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"3.95\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:1:\"2\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:4:\"5.95\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:22:\"shipping_for_package_0\";s:375:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_027e586d589fa19f296fbfbe6c6656a3\";s:5:\"rates\";a:1:{s:11:\"flat_rate:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:6:{s:2:\"id\";s:11:\"flat_rate:1\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:1;s:5:\"label\";s:9:\"Flat rate\";s:4:\"cost\";s:4:\"3.95\";s:5:\"taxes\";a:0:{}}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:19:\"Product 2 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:39:\"a:1:{i:0;a:1:{i:0;s:11:\"flat_rate:1\";}}\";s:23:\"chosen_shipping_methods\";s:29:\"a:1:{i:0;s:11:\"flat_rate:1\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:716:\"a:27:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1730340146),
(12900,'t_58f562912a6ddcb88ec3fc5c9537b1','a:13:{s:14:\"wcpay_currency\";s:3:\"GBP\";s:4:\"cart\";s:411:\"a:1:{s:32:\"150784e5fbeb562400a0cd1111471d6a\";a:11:{s:3:\"key\";s:32:\"150784e5fbeb562400a0cd1111471d6a\";s:10:\"product_id\";i:32827;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2;s:8:\"line_tax\";d:0;}}\";s:11:\"cart_totals\";s:393:\"a:15:{s:8:\"subtotal\";s:1:\"2\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"3.95\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:1:\"2\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:4:\"5.95\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:22:\"shipping_for_package_0\";s:375:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_b78f9f571f92bdf57bedc01c4470f389\";s:5:\"rates\";a:1:{s:11:\"flat_rate:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:6:{s:2:\"id\";s:11:\"flat_rate:1\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:1;s:5:\"label\";s:9:\"Flat rate\";s:4:\"cost\";s:4:\"3.95\";s:5:\"taxes\";a:0:{}}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:19:\"Product 4 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:39:\"a:1:{i:0;a:1:{i:0;s:11:\"flat_rate:1\";}}\";s:23:\"chosen_shipping_methods\";s:29:\"a:1:{i:0;s:11:\"flat_rate:1\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:716:\"a:27:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1730347912);
/*!40000 ALTER TABLE `wphu_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_woocommerce_shipping_zone_locations`
--

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

--
-- Dumping data for table `wphu_woocommerce_shipping_zone_locations`
--

LOCK TABLES `wphu_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wphu_woocommerce_shipping_zone_locations` DISABLE KEYS */;
INSERT INTO `wphu_woocommerce_shipping_zone_locations` VALUES
(8,1,'GB','country');
/*!40000 ALTER TABLE `wphu_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_woocommerce_shipping_zone_methods`
--

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

--
-- Dumping data for table `wphu_woocommerce_shipping_zone_methods`
--

LOCK TABLES `wphu_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wphu_woocommerce_shipping_zone_methods` DISABLE KEYS */;
INSERT INTO `wphu_woocommerce_shipping_zone_methods` VALUES
(1,1,'flat_rate',1,1);
/*!40000 ALTER TABLE `wphu_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_woocommerce_shipping_zones`
--

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

--
-- Dumping data for table `wphu_woocommerce_shipping_zones`
--

LOCK TABLES `wphu_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wphu_woocommerce_shipping_zones` DISABLE KEYS */;
INSERT INTO `wphu_woocommerce_shipping_zones` VALUES
(1,'Europe',0);
/*!40000 ALTER TABLE `wphu_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wphu_woocommerce_tax_rate_locations`
--

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

--
-- Dumping data for table `wphu_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wphu_woocommerce_tax_rates`
--

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

--
-- Dumping data for table `wphu_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wphu_wpforms_tasks_meta`
--

DROP TABLE IF EXISTS `wphu_wpforms_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wphu_wpforms_tasks_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `action` varchar(255) NOT NULL,
  `data` longtext NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wphu_wpforms_tasks_meta`
--

LOCK TABLES `wphu_wpforms_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wphu_wpforms_tasks_meta` DISABLE KEYS */;
INSERT INTO `wphu_wpforms_tasks_meta` VALUES
(1,'wpforms_process_forms_locator_scan','W10=','2022-06-06 19:56:19'),
(2,'wpforms_admin_addons_cache_update','W10=','2022-06-06 19:56:23'),
(3,'wpforms_admin_notifications_update','W10=','2022-06-06 19:56:23'),
(4,'wpforms_admin_builder_templates_cache_update','W10=','2022-06-06 19:58:09'),
(5,'wpforms_process_forms_locator_scan','W10=','2022-06-06 20:01:03');
/*!40000 ALTER TABLE `wphu_wpforms_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-10-29  9:25:16
